fix: add api-report
Signed-off-by: Elaine Mattos <elaine.mattos@gmail.com>
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user