-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
ProjectWikis.ts
67 lines (58 loc) · 2.47 KB
/
ProjectWikis.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
import type { BaseResourceOptions } from '@gitbeaker/requester-utils';
import { ResourceWikis } from '../templates';
import type { WikiAttachmentSchema, WikiSchema } from '../templates/ResourceWikis';
import type {
GitlabAPIResponse,
OneOf,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
export interface ProjectWikis<C extends boolean = false> extends ResourceWikis<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options: { withContent: true } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>,
): Promise<GitlabAPIResponse<(WikiSchema & { content: string })[], C, E, P>>;
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>,
): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
projectId: string | number,
options?: { withContent?: boolean } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>,
): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
create<E extends boolean = false>(
projectId: string | number,
content: string,
title: string,
options?: { format?: string } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<WikiSchema, C, E, void>>;
edit<E extends boolean = false>(
projectId: string | number,
slug: string,
options?: OneOf<{ content: string; title: string }> & { format?: string } & Sudo &
ShowExpanded<E>,
): Promise<GitlabAPIResponse<WikiSchema, C, E, void>>;
remove<E extends boolean = false>(
projectId: string | number,
slug: string,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>>;
show<E extends boolean = false>(
projectId: string | number,
slug: string,
options?: { renderHtml?: boolean; version?: string } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<WikiSchema, C, E, void>>;
uploadAttachment<E extends boolean = false>(
projectId: string | number,
file: { content: Blob; filename: string },
options?: { branch?: string } & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<WikiAttachmentSchema, C, E, void>>;
}
export class ProjectWikis<C extends boolean = false> extends ResourceWikis<C> {
constructor(options: BaseResourceOptions<C>) {
/* istanbul ignore next */
super('projects', options);
}
}