fix: add changes to api report

Signed-off-by: ElaineDeMattosSilvaB <elaine.de-mattos-silva-bezerra@deutschebahn.com>
This commit is contained in:
ElaineDeMattosSilvaB
2024-05-27 12:58:46 +02:00
parent 5c5622290e
commit 595819b6ad
@@ -33,11 +33,11 @@ export const createGitlabIssueAction: (options: {
projectId: number;
labels?: string | undefined;
description?: string | undefined;
weight?: number | undefined;
token?: string | undefined;
weight?: number | undefined;
assignees?: number[] | undefined;
createdAt?: string | undefined;
confidential?: boolean | undefined;
createdAt?: string | undefined;
milestoneId?: number | undefined;
epicId?: number | undefined;
dueDate?: string | undefined;
@@ -61,8 +61,8 @@ export const createGitlabProjectAccessTokenAction: (options: {
projectId: string | number;
name?: string | undefined;
token?: string | undefined;
scopes?: string[] | undefined;
expiresAt?: string | undefined;
scopes?: string[] | undefined;
accessLevel?: number | undefined;
},
{
@@ -78,8 +78,8 @@ export const createGitlabProjectDeployTokenAction: (options: {
name: string;
repoUrl: string;
projectId: string | number;
username?: string | undefined;
token?: string | undefined;
username?: string | undefined;
scopes?: string[] | undefined;
},
{
@@ -118,7 +118,7 @@ export const createGitlabRepoPushAction: (options: {
sourcePath?: string | undefined;
targetPath?: string | undefined;
token?: string | undefined;
commitAction?: 'update' | 'delete' | 'create' | undefined;
commitAction?: 'update' | 'create' | 'delete' | undefined;
},
JsonObject
>;
@@ -149,8 +149,8 @@ export function createPublishGitlabAction(options: {
squash_option?:
| 'always'
| 'never'
| 'default_on'
| 'default_off'
| 'default_on'
| undefined;
topics?: string[] | undefined;
visibility?: 'internal' | 'private' | 'public' | undefined;
@@ -193,7 +193,7 @@ export const createPublishGitlabMergeRequestAction: (options: {
sourcePath?: string | undefined;
targetPath?: string | undefined;
token?: string | undefined;
commitAction?: 'update' | 'delete' | 'create' | undefined;
commitAction?: 'update' | 'create' | 'delete' | undefined;
projectid?: string | undefined;
removeSourceBranch?: boolean | undefined;
assignee?: string | undefined;
@@ -201,6 +201,22 @@ export const createPublishGitlabMergeRequestAction: (options: {
JsonObject
>;
// @public
export const createTriggerGitlabPipelineAction: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<
{
repoUrl: string;
branch: string;
projectId: number;
tokenDescription: string;
token?: string | undefined;
},
{
pipelineUrl: string;
}
>;
// @public
const gitlabModule: () => BackendFeature;
export default gitlabModule;