updating api report

Signed-off-by: Hghtwr <johannes.sonner@outlook.com>
This commit is contained in:
Hghtwr
2024-12-29 10:37:07 +01:00
committed by blam
parent 9bcd3f582e
commit 2cc4b5944a
@@ -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;
},
{
@@ -76,8 +76,8 @@ export const createGitlabProjectDeployTokenAction: (options: {
}) => TemplateAction<
{
name: string;
scopes: string[];
repoUrl: string;
scopes: string[];
projectId: string | number;
username?: string | undefined;
token?: 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
>;
@@ -198,10 +198,11 @@ export const createPublishGitlabMergeRequestAction: (options: {
sourcePath?: string | undefined;
targetPath?: string | undefined;
token?: string | undefined;
commitAction?: 'auto' | 'update' | 'delete' | 'create' | 'skip' | undefined;
commitAction?: 'auto' | 'update' | 'skip' | 'create' | 'delete' | undefined;
projectid?: string | undefined;
removeSourceBranch?: boolean | undefined;
assignee?: string | undefined;
reviewers?: string[] | undefined;
},
JsonObject
>;
@@ -211,8 +212,8 @@ export const createTriggerGitlabPipelineAction: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<
{
branch: string;
repoUrl: string;
branch: string;
projectId: number;
tokenDescription: string;
token?: string | undefined;
@@ -234,8 +235,8 @@ export const editGitlabIssueAction: (options: {
title?: string | undefined;
labels?: string | undefined;
description?: string | undefined;
weight?: number | undefined;
token?: string | undefined;
weight?: number | undefined;
assignees?: number[] | undefined;
addLabels?: string | undefined;
confidential?: boolean | undefined;