-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
ProjectMilestones.ts
93 lines (83 loc) · 3 KB
/
ProjectMilestones.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceMilestones } from '../templates';
import type {
AllMilestonesOptions,
BurndownChartEventSchema,
MilestoneSchema,
} from '../templates/ResourceMilestones';
import { RequestHelper, endpoint } from '../infrastructure';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
import type { IssueSchema } from './Issues';
import type { MergeRequestSchema } from './MergeRequests';
export interface ProjectMilestones<C extends boolean = false> extends ResourceMilestones<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: AllMilestonesOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<MilestoneSchema[], C, E, P>>;
allAssignedIssues<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<IssueSchema[], C, E, void>>;
allAssignedMergeRequests<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<MergeRequestSchema[], C, E, void>>;
allBurndownChartEvents<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<BurndownChartEventSchema[], C, E, void>>;
create<E extends boolean = false>(
projectId: string | number,
title: string,
options?: { description?: string; dueDate?: string; startDate?: string } & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
edit<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: {
title?: string;
description?: string;
dueDate?: string;
startDate?: string;
stateEvent?: 'close' | 'activate';
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
remove<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
show<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
}
export class ProjectMilestones<C extends boolean = false> extends ResourceMilestones<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('projects', options);
}
promote<E extends boolean = false>(
projectId: string | number,
milestoneId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>> {
return RequestHelper.post<void>()(
this,
endpoint`${projectId}/milestones/${milestoneId}/promote`,
options,
);
}
}