Fix API reports

Signed-off-by: Raghunandan Balachandran <raghunandan@spotify.com>
This commit is contained in:
Raghunandan Balachandran
2024-09-16 02:15:13 +02:00
parent 68a7072d45
commit e3c0b4472e
2 changed files with 6 additions and 0 deletions
@@ -4,6 +4,7 @@
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
import { CatalogApi } from '@backstage/catalog-client';
import { Config } from '@backstage/config';
import { createPullRequest } from 'octokit-plugin-create-pull-request';
import { GithubCredentialsProvider } from '@backstage/integration';
@@ -66,6 +67,7 @@ export function createGithubDeployKeyAction(options: {
// @public
export function createGithubEnvironmentAction(options: {
integrations: ScmIntegrationRegistry;
catalogClient: CatalogApi;
}): TemplateAction<
{
repoUrl: string;
@@ -89,6 +91,9 @@ export function createGithubEnvironmentAction(options: {
}
| undefined;
token?: string | undefined;
waitTimer?: number | undefined;
preventSelfReview?: boolean | undefined;
reviewers?: string[] | undefined;
},
JsonObject
>;
+1
View File
@@ -235,6 +235,7 @@ export const MultiEntityPickerFieldExtension: FieldExtensionComponent_2<
>[]
| undefined;
allowArbitraryValues?: boolean | undefined;
maxNoOfEntities?: number | undefined;
}
>;