api-reports

Signed-off-by: John Redwood <john.r.k.redwood@gmail.com>
This commit is contained in:
John Redwood
2024-05-28 02:46:18 +00:00
parent d7c6fdf8a9
commit 2c9615a386
3 changed files with 10 additions and 13 deletions
@@ -29,8 +29,8 @@ export const createGitlabIssueAction: (options: {
}) => TemplateAction<
{
title: string;
projectId: number;
repoUrl: string;
projectId: number;
labels?: string | undefined;
description?: string | undefined;
token?: string | undefined;
@@ -57,8 +57,8 @@ export const createGitlabProjectAccessTokenAction: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<
{
projectId: string | number;
repoUrl: string;
projectId: string | number;
name?: string | undefined;
token?: string | undefined;
expiresAt?: string | undefined;
@@ -76,8 +76,8 @@ export const createGitlabProjectDeployTokenAction: (options: {
}) => TemplateAction<
{
name: string;
projectId: string | number;
repoUrl: string;
projectId: string | number;
token?: string | undefined;
username?: string | undefined;
scopes?: string[] | undefined;
@@ -95,8 +95,8 @@ export const createGitlabProjectVariableAction: (options: {
{
key: string;
value: string;
projectId: string | number;
repoUrl: string;
projectId: string | number;
variableType: string;
raw?: boolean | undefined;
token?: string | undefined;
@@ -207,8 +207,8 @@ export const createTriggerGitlabPipelineAction: (options: {
}) => TemplateAction<
{
branch: string;
projectId: number;
repoUrl: string;
projectId: number;
tokenDescription: string;
token?: string | undefined;
},
@@ -222,8 +222,8 @@ export const editGitlabIssueAction: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<
{
projectId: number;
repoUrl: string;
projectId: number;
issueIid: number;
title?: string | undefined;
labels?: string | undefined;
+2 -5
View File
@@ -145,8 +145,8 @@ export function createFetchCatalogEntityAction(options: {
entityRefs?: string[] | undefined;
},
{
entities?: any[] | undefined;
entity?: any;
entities?: any[] | undefined;
}
>;
@@ -287,10 +287,7 @@ export const createPublishGithubPullRequestAction: (
commitMessage?: string | undefined;
update?: boolean | undefined;
forceFork?: boolean | undefined;
gitAuthorName?: string | undefined
/**
* @public @deprecated use import from \@backstage/plugin-scaffolder-backend-module-azure instead
*/;
gitAuthorName?: string | undefined;
gitAuthorEmail?: string | undefined;
},
JsonObject
+2 -2
View File
@@ -410,8 +410,8 @@ export const RepoUrlPickerFieldExtension: FieldExtensionComponent_2<
azure?: string[] | undefined;
github?: string[] | undefined;
bitbucket?: string[] | undefined;
gerrit?: string[] | undefined;
gitlab?: string[] | undefined;
gerrit?: string[] | undefined;
gitea?: string[] | undefined;
}
| undefined;
@@ -437,8 +437,8 @@ export const RepoUrlPickerFieldSchema: FieldSchema<
azure?: string[] | undefined;
github?: string[] | undefined;
bitbucket?: string[] | undefined;
gerrit?: string[] | undefined;
gitlab?: string[] | undefined;
gerrit?: string[] | undefined;
gitea?: string[] | undefined;
}
| undefined;