forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GroupLabels.ts
99 lines (88 loc) · 3.12 KB
/
GroupLabels.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
94
95
96
97
98
99
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceLabels } from '../templates';
import type { LabelCountSchema, LabelSchema } from '../templates/ResourceLabels';
import type {
GitlabAPIResponse,
OneOf,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface GroupLabels<C extends boolean = false> extends ResourceLabels<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
groupId: string | number,
options: {
withCounts: true;
includeAncestorGroups?: boolean;
search?: string;
} & PaginationRequestOptions<P> &
Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<(LabelSchema & LabelCountSchema)[], C, E, P>>;
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
groupId: string | number,
options: {
includeAncestorGroups?: boolean;
search?: string;
} & PaginationRequestOptions<P> &
Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
groupId: string | number,
options?: {
withCounts?: boolean;
includeAncestorGroups?: boolean;
search?: string;
} & PaginationRequestOptions<P> &
Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
create<E extends boolean = false>(
groupId: string | number,
labelName: string,
color: string,
options?: { description?: string; priority?: number } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
edit<E extends boolean = false>(
groupId: string | number,
labelId: number | string,
options: OneOf<{ newName: string; color: string }> & {
description?: string;
priority?: number;
} & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
promote<E extends boolean = false>(
groupId: string | number,
labelId: number | string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
remove<E extends boolean = false>(
groupId: string | number,
labelId: number | string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
show<E extends boolean = false>(
projectId: string | number,
labelId: number | string,
options?: { includeAncestorGroups?: boolean } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
subscribe<E extends boolean = false>(
groupId: string | number,
labelId: number | string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
unsubscribe<E extends boolean = false>(
groupId: string | number,
labelId: number | string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
}
export class GroupLabels<C extends boolean = false> extends ResourceLabels<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('groups', options);
}
}