-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
ProjectHooks.ts
56 lines (50 loc) · 1.73 KB
/
ProjectHooks.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
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceHooks } from '../templates';
import type {
AddResourceHookOptions,
EditResourceHookOptions,
ExpandedHookSchema,
} from '../templates/ResourceHooks';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface ProjectHookSchema extends ExpandedHookSchema {
projectId: number;
}
export interface ProjectHooks<C extends boolean = false> {
add<E extends boolean = false>(
projectId: string | number,
url: string,
options?: AddResourceHookOptions & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProjectHookSchema, C, E, void>>;
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProjectHookSchema[], C, E, P>>;
edit<E extends boolean = false>(
projectId: string | number,
hookId: number,
url: string,
options?: EditResourceHookOptions & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProjectHookSchema, C, E, void>>;
remove<E extends boolean = false>(
projectId: string | number,
hookId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
show<E extends boolean = false>(
projectId: string | number,
hookId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<ProjectHookSchema, C, E, void>>;
}
export class ProjectHooks<C extends boolean = false> extends ResourceHooks<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('projects', options);
}
}