forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBroadcastMessages.ts
86 lines (79 loc) · 2.62 KB
/
BroadcastMessages.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
import { BaseResource } from '@gitbeaker/requester-utils';
import { RequestHelper } from '../infrastructure';
import type {
GitlabAPIResponse,
PaginationRequestOptions,
PaginationTypes,
ShowExpanded,
Sudo,
} from '../infrastructure';
import { AccessLevel } from '../constants';
export interface BroadcastMessageSchema extends Record<string, unknown> {
message: string;
starts_at: string;
ends_at: string;
color: string;
font: string;
id: number;
active: boolean;
target_path: string;
target_access_levels: Exclude<
AccessLevel,
AccessLevel.MINIMAL_ACCESS | AccessLevel.NO_ACCESS | AccessLevel.ADMIN
>[];
broadcast_type: string;
dismissable: boolean;
}
export interface BroadcastMessageOptions extends Record<string, unknown> {
message?: string;
startsAt?: string;
endsAt?: string;
color?: string;
font?: string;
active?: boolean;
targetPath?: string;
targetAccessLevels?: Exclude<
AccessLevel,
AccessLevel.MINIMAL_ACCESS | AccessLevel.NO_ACCESS | AccessLevel.ADMIN
>[];
broadcastType?: string;
dismissable?: boolean;
}
export class BroadcastMessages<C extends boolean = false> extends BaseResource<C> {
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(
options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<BroadcastMessageSchema[], C, E, P>> {
return RequestHelper.get<BroadcastMessageSchema[]>()(this, 'broadcast_messages', options);
}
create<E extends boolean = false>(
options?: BroadcastMessageOptions & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<BroadcastMessageSchema, C, E, void>> {
return RequestHelper.post<BroadcastMessageSchema>()(this, 'broadcast_messages', options);
}
edit<E extends boolean = false>(
broadcastMessageId: number,
options?: BroadcastMessageOptions & Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<BroadcastMessageSchema, C, E, void>> {
return RequestHelper.put<BroadcastMessageSchema>()(
this,
`broadcast_messages/${broadcastMessageId}`,
options,
);
}
remove<E extends boolean = false>(
broadcastMessageId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<void, C, E, void>> {
return RequestHelper.del()(this, `broadcast_messages/${broadcastMessageId}`, options);
}
show<E extends boolean = false>(
broadcastMessageId: number,
options?: Sudo & ShowExpanded<E>,
): Promise<GitlabAPIResponse<BroadcastMessageSchema, C, E, void>> {
return RequestHelper.get<BroadcastMessageSchema>()(
this,
`broadcast_messages/${broadcastMessageId}`,
options,
);
}
}