fix: add api-report

Signed-off-by: Elaine Mattos <elaine.mattos@gmail.com>
This commit is contained in:
Elaine Mattos
2023-12-26 10:07:57 +01:00
parent 578a529865
commit fd3d01c946
2 changed files with 16 additions and 1 deletions
@@ -39,7 +39,7 @@ export const createGitlabIssueAction: (options: {
discussionToResolve?: string | undefined;
epicId?: number | undefined;
labels?: string | undefined;
issueType?: string | undefined;
issueType?: IssueType | undefined;
mergeRequestToResolveDiscussionsOf?: number | undefined;
milestoneId?: number | undefined;
weight?: number | undefined;
@@ -174,4 +174,14 @@ export const createPublishGitlabMergeRequestAction: (options: {
},
JsonObject
>;
// @public
export enum IssueType {
// (undocumented)
INCIDENT = 'incident',
// (undocumented)
ISSUE = 'issue',
// (undocumented)
TEST = 'test_case',
}
```
@@ -23,6 +23,11 @@ import { z } from 'zod';
import { checkEpicScope, convertDate, getClient, parseRepoUrl } from '../util';
import { Gitlab, CreateIssueOptions, IssueSchema } from '@gitbeaker/rest';
/**
* Gitlab issue types
*
* @public
*/
export enum IssueType {
ISSUE = 'issue',
INCIDENT = 'incident',