@gitbeaker/core 0.0.0-canary-20260118165457
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1964 -0
- package/dist/index.d.mts +9098 -0
- package/dist/index.d.ts +9098 -0
- package/dist/index.js +7361 -0
- package/dist/index.mjs +7163 -0
- package/dist/map.json +4898 -0
- package/package.json +65 -0
package/README.md
ADDED
|
@@ -0,0 +1,1964 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<br>
|
|
3
|
+
<br>
|
|
4
|
+
<img alt="gitbeaker" src="../../.github/ASSETS/header.svg">
|
|
5
|
+
<br>
|
|
6
|
+
<br>
|
|
7
|
+
<br>
|
|
8
|
+
</div>
|
|
9
|
+
<hr>
|
|
10
|
+
<div align="center">
|
|
11
|
+
<p>
|
|
12
|
+
<sup>
|
|
13
|
+
<a href="https://github.com/jdalrymple">My open source work is supported by the community</a>
|
|
14
|
+
</sup>
|
|
15
|
+
</p>
|
|
16
|
+
<br>
|
|
17
|
+
<sup>Special thanks to:</sup>
|
|
18
|
+
<br>
|
|
19
|
+
<br>
|
|
20
|
+
<a href="http://coderabbit.ai">
|
|
21
|
+
<img src="../../.github/ASSETS/coderabbit.png" width="180">
|
|
22
|
+
</a>
|
|
23
|
+
<br>
|
|
24
|
+
<br>
|
|
25
|
+
<hr>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<p align="center">
|
|
29
|
+
<a href="https://dl.circleci.com/status-badge/redirect/gh/jdalrymple/gitbeaker/tree/main">
|
|
30
|
+
<img alt="CircleCI" src="https://dl.circleci.com/status-badge/img/gh/jdalrymple/gitbeaker/tree/main.svg?style=svg" />
|
|
31
|
+
</a>
|
|
32
|
+
<a href="https://codecov.io/gh/jdalrymple/gitbeaker">
|
|
33
|
+
<img alt="Core Coverage" src="https://img.shields.io/codecov/c/github/jdalrymple/gitbeaker?flag=core&logo=codecov&label=coverage"/>
|
|
34
|
+
</a>
|
|
35
|
+
|
|
36
|
+
<a href="https://github.com/intuit/auto">
|
|
37
|
+
<img src="https://img.shields.io/badge/release-auto.svg?colorA=888888&colorB=9B065A&label=auto" alt="Auto">
|
|
38
|
+
</a>
|
|
39
|
+
<a href="#contributors-">
|
|
40
|
+
<img src="https://img.shields.io/badge/all_contributors-orange.svg?style=round" alt="All Contributors" />
|
|
41
|
+
</a>
|
|
42
|
+
<img src="https://img.shields.io/badge/code%20style-prettier-ff69b4.svg" alt="Prettier">
|
|
43
|
+
<a href="LICENSE.md">
|
|
44
|
+
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="Licence: MIT">
|
|
45
|
+
</a>
|
|
46
|
+
<a href="https://packagephobia.com/result?p=@gitbeaker/core">
|
|
47
|
+
<img src="https://packagephobia.com/badge?p=@gitbeaker/core" alt="Install Size: Core">
|
|
48
|
+
</a>
|
|
49
|
+
</p>
|
|
50
|
+
|
|
51
|
+
> Core SDK for the [GitLab](https://gitlab.com/gitlab-org/gitlab/) API. This is not intended for direct use, see [@gitbeaker/rest](https://www.npmjs.com/package/@gitbeaker/rest) or [gitbeaker/cli](https://www.npmjs.com/package/@gitbeaker/cli) instead.
|
|
52
|
+
|
|
53
|
+
## Table of Contents
|
|
54
|
+
|
|
55
|
+
- [Table of Contents](#table-of-contents)
|
|
56
|
+
- [Usage](#usage)
|
|
57
|
+
- [Supported APIs](#supported-apis)
|
|
58
|
+
- [Contributors](#contributors)
|
|
59
|
+
|
|
60
|
+
## Usage
|
|
61
|
+
|
|
62
|
+
<table>
|
|
63
|
+
<tbody valign=top align=left>
|
|
64
|
+
<tr><th>
|
|
65
|
+
Browsers
|
|
66
|
+
</th><td width=100%>
|
|
67
|
+
Load <code>@gitbeaker/core</code> directly from <a href="https://esm.sh">esm.sh</a>
|
|
68
|
+
|
|
69
|
+
```html
|
|
70
|
+
<script type="module">
|
|
71
|
+
import { Gitlab } from 'https://esm.sh/@gitbeaker/core';
|
|
72
|
+
</script>
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
</td></tr>
|
|
76
|
+
<tr><th>
|
|
77
|
+
Deno
|
|
78
|
+
</th><td width=100%>
|
|
79
|
+
Load <code>@gitbeaker/core</code> directly from <a href="https://esm.sh">esm.sh</a>
|
|
80
|
+
|
|
81
|
+
```ts
|
|
82
|
+
import { Gitlab } from 'https://esm.sh/@gitbeaker/core?dts';
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
</td></tr>
|
|
86
|
+
<tr><th>
|
|
87
|
+
Node 18+
|
|
88
|
+
</th><td>
|
|
89
|
+
|
|
90
|
+
Install with <code>npm install @gitbeaker/core</code>, or <code>yarn add @gitbeaker/core</code>
|
|
91
|
+
|
|
92
|
+
```js
|
|
93
|
+
import { Gitlab } from '@gitbeaker/core';
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
</td></tr>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
|
|
100
|
+
## Supported APIs
|
|
101
|
+
|
|
102
|
+
<table>
|
|
103
|
+
<tbody valign=top align=left>
|
|
104
|
+
|
|
105
|
+
<tr>
|
|
106
|
+
<th>Agents</th>
|
|
107
|
+
<td>
|
|
108
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/cluster_agents.html">🦊</a>
|
|
109
|
+
</td>
|
|
110
|
+
<td>
|
|
111
|
+
<a href="./src/resources/Agents.ts">⌨️</a>
|
|
112
|
+
</td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<th>AlertManagement</th>
|
|
116
|
+
<td>
|
|
117
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/alert_management_alerts.html">🦊</a>
|
|
118
|
+
</td>
|
|
119
|
+
<td>
|
|
120
|
+
<a href="./src/resources/AlertManagement.ts">⌨️</a>
|
|
121
|
+
</td>
|
|
122
|
+
</tr>
|
|
123
|
+
<tr>
|
|
124
|
+
<th>ApplicationAppearance</th>
|
|
125
|
+
<td>
|
|
126
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/appearance.html">🦊</a>
|
|
127
|
+
</td>
|
|
128
|
+
<td>
|
|
129
|
+
<a href="./src/resources/ApplicationAppearance.ts">⌨️</a>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<th>ApplicationPlanLimits</th>
|
|
134
|
+
<td>
|
|
135
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/plan_limits.html">🦊</a>
|
|
136
|
+
</td>
|
|
137
|
+
<td>
|
|
138
|
+
<a href="./src/resources/ApplicationPlanLimits.ts">⌨️</a>
|
|
139
|
+
</td>
|
|
140
|
+
</tr>
|
|
141
|
+
<tr>
|
|
142
|
+
<th>ApplicationSettings</th>
|
|
143
|
+
<td>
|
|
144
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/settings.html">🦊</a>
|
|
145
|
+
</td>
|
|
146
|
+
<td>
|
|
147
|
+
<a href="./src/resources/ApplicationSettings.ts">⌨️</a>
|
|
148
|
+
</td>
|
|
149
|
+
</tr>
|
|
150
|
+
<tr>
|
|
151
|
+
<th>ApplicationStatistics</th>
|
|
152
|
+
<td>
|
|
153
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/statistics.html">🦊</a>
|
|
154
|
+
</td>
|
|
155
|
+
<td>
|
|
156
|
+
<a href="./src/resources/ApplicationStatistics.ts">⌨️</a>
|
|
157
|
+
</td>
|
|
158
|
+
</tr>
|
|
159
|
+
<tr>
|
|
160
|
+
<th>Applications</th>
|
|
161
|
+
<td>
|
|
162
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/applications.html">🦊</a>
|
|
163
|
+
</td>
|
|
164
|
+
<td>
|
|
165
|
+
<a href="./src/resources/Applications.ts">⌨️</a>
|
|
166
|
+
</td>
|
|
167
|
+
</tr>
|
|
168
|
+
<tr>
|
|
169
|
+
<th>AuditEvents</th>
|
|
170
|
+
<td>
|
|
171
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/audit_events.html">🦊</a>
|
|
172
|
+
</td>
|
|
173
|
+
<td>
|
|
174
|
+
<a href="./src/resources/AuditEvents.ts">⌨️</a>
|
|
175
|
+
</td>
|
|
176
|
+
</tr>
|
|
177
|
+
<tr>
|
|
178
|
+
<th>Avatar</th>
|
|
179
|
+
<td>
|
|
180
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/avatar.html">🦊</a>
|
|
181
|
+
</td>
|
|
182
|
+
<td>
|
|
183
|
+
<a href="./src/resources/Avatar.ts">⌨️</a>
|
|
184
|
+
</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr>
|
|
187
|
+
<th>Branches</th>
|
|
188
|
+
<td>
|
|
189
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/branches.html">🦊</a>
|
|
190
|
+
</td>
|
|
191
|
+
<td>
|
|
192
|
+
<a href="./src/resources/Branches.ts">⌨️</a>
|
|
193
|
+
</td>
|
|
194
|
+
</tr>
|
|
195
|
+
<tr>
|
|
196
|
+
<th>BroadcastMessages</th>
|
|
197
|
+
<td>
|
|
198
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/broadcast_messages.html">🦊</a>
|
|
199
|
+
</td>
|
|
200
|
+
<td>
|
|
201
|
+
<a href="./src/resources/BroadcastMessages.ts">⌨️</a>
|
|
202
|
+
</td>
|
|
203
|
+
</tr>
|
|
204
|
+
<tr>
|
|
205
|
+
<th>CommitDiscussions</th>
|
|
206
|
+
<td>
|
|
207
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/discussions.html#commits">🦊</a>
|
|
208
|
+
</td>
|
|
209
|
+
<td>
|
|
210
|
+
<a href="./src/resources/CommitDiscussions.ts">⌨️</a>
|
|
211
|
+
</td>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<th>Code Suggestions</th>
|
|
215
|
+
<td>
|
|
216
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/code_suggestions.html">🦊</a>
|
|
217
|
+
</td>
|
|
218
|
+
<td>
|
|
219
|
+
<a href="./src/resources/CodeSuggestions.ts">⌨️</a>
|
|
220
|
+
</td>
|
|
221
|
+
</tr>
|
|
222
|
+
<tr>
|
|
223
|
+
<th>Commits</th>
|
|
224
|
+
<td>
|
|
225
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/commits.html">🦊</a>
|
|
226
|
+
</td>
|
|
227
|
+
<td>
|
|
228
|
+
<a href="./src/resources/Commits.ts">⌨️</a>
|
|
229
|
+
</td>
|
|
230
|
+
</tr>
|
|
231
|
+
<tr>
|
|
232
|
+
<th>Composer</th>
|
|
233
|
+
<td>
|
|
234
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/composer.html">🦊</a>
|
|
235
|
+
</td>
|
|
236
|
+
<td>
|
|
237
|
+
<a href="./src/resources/Composer.ts">⌨️</a>
|
|
238
|
+
</td>
|
|
239
|
+
</tr>
|
|
240
|
+
<tr>
|
|
241
|
+
<th>Conan</th>
|
|
242
|
+
<td>
|
|
243
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/conan.html">🦊</a>
|
|
244
|
+
</td>
|
|
245
|
+
<td>
|
|
246
|
+
<a href="./src/resources/Conan.ts">⌨️</a>
|
|
247
|
+
</td>
|
|
248
|
+
</tr>
|
|
249
|
+
<tr>
|
|
250
|
+
<th>ContainerRegistry</th>
|
|
251
|
+
<td>
|
|
252
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/container_registry.html">🦊</a>
|
|
253
|
+
</td>
|
|
254
|
+
<td>
|
|
255
|
+
<a href="./src/resources/ContainerRegistry.ts">⌨️</a>
|
|
256
|
+
</td>
|
|
257
|
+
</tr>
|
|
258
|
+
<tr>
|
|
259
|
+
<th>DashboardAnnotations</th>
|
|
260
|
+
<td>
|
|
261
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/metrics_dashboard_annotations.html">🦊</a>
|
|
262
|
+
</td>
|
|
263
|
+
<td>
|
|
264
|
+
<a href="./src/resources/DashboardAnnotations.ts">⌨️</a>
|
|
265
|
+
</td>
|
|
266
|
+
</tr>
|
|
267
|
+
<tr>
|
|
268
|
+
<th>Debian</th>
|
|
269
|
+
<td>
|
|
270
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/debian.html">🦊</a>
|
|
271
|
+
</td>
|
|
272
|
+
<td>
|
|
273
|
+
<a href="./src/resources/Debian.ts">⌨️</a>
|
|
274
|
+
</td>
|
|
275
|
+
</tr>
|
|
276
|
+
<tr>
|
|
277
|
+
<th>DependencyProxy</th>
|
|
278
|
+
<td>
|
|
279
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/dependency_proxy.html">🦊</a>
|
|
280
|
+
</td>
|
|
281
|
+
<td>
|
|
282
|
+
<a href="./src/resources/DependencyProxy.ts">⌨️</a>
|
|
283
|
+
</td>
|
|
284
|
+
</tr>
|
|
285
|
+
<tr>
|
|
286
|
+
<th>DeployKeys</th>
|
|
287
|
+
<td>
|
|
288
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/deploy_keys.html">🦊</a>
|
|
289
|
+
</td>
|
|
290
|
+
<td>
|
|
291
|
+
<a href="./src/resources/DeployKeys.ts">⌨️</a>
|
|
292
|
+
</td>
|
|
293
|
+
</tr>
|
|
294
|
+
<tr>
|
|
295
|
+
<th>DeployTokens</th>
|
|
296
|
+
<td>
|
|
297
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/deploy_tokens.html">🦊</a>
|
|
298
|
+
</td>
|
|
299
|
+
<td>
|
|
300
|
+
<a href="./src/resources/DeployTokens.ts">⌨️</a>
|
|
301
|
+
</td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr>
|
|
304
|
+
<th>Deployments</th>
|
|
305
|
+
<td>
|
|
306
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/deployments.html">🦊</a>
|
|
307
|
+
</td>
|
|
308
|
+
<td>
|
|
309
|
+
<a href="./src/resources/Deployments.ts">⌨️</a>
|
|
310
|
+
</td>
|
|
311
|
+
</tr>
|
|
312
|
+
<tr>
|
|
313
|
+
<th>DockerfileTemplates</th>
|
|
314
|
+
<td>
|
|
315
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/templates/dockerfiles.html">🦊</a>
|
|
316
|
+
</td>
|
|
317
|
+
<td>
|
|
318
|
+
<a href="./src/resources/DockerfileTemplates.ts">⌨️</a>
|
|
319
|
+
</td>
|
|
320
|
+
</tr>
|
|
321
|
+
<tr>
|
|
322
|
+
<th>Environments</th>
|
|
323
|
+
<td>
|
|
324
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/environments.html">🦊</a>
|
|
325
|
+
</td>
|
|
326
|
+
<td>
|
|
327
|
+
<a href="./src/resources/Environments.ts">⌨️</a>
|
|
328
|
+
</td>
|
|
329
|
+
</tr>
|
|
330
|
+
<tr>
|
|
331
|
+
<th>EpicAwardEmojis</th>
|
|
332
|
+
<td>
|
|
333
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
334
|
+
</td>
|
|
335
|
+
<td>
|
|
336
|
+
<a href="./src/resources/EpicAwardEmojis.ts">⌨️</a>
|
|
337
|
+
</td>
|
|
338
|
+
</tr>
|
|
339
|
+
<tr>
|
|
340
|
+
<th>EpicDiscussions</th>
|
|
341
|
+
<td>
|
|
342
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/discussions.html#epics">🦊</a>
|
|
343
|
+
</td>
|
|
344
|
+
<td>
|
|
345
|
+
<a href="./src/resources/EpicDiscussions.ts">⌨️</a>
|
|
346
|
+
</td>
|
|
347
|
+
</tr>
|
|
348
|
+
<tr>
|
|
349
|
+
<th>EpicIssues</th>
|
|
350
|
+
<td>
|
|
351
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/epic_issues.html">🦊</a>
|
|
352
|
+
</td>
|
|
353
|
+
<td>
|
|
354
|
+
<a href="./src/resources/EpicIssues.ts">⌨️</a>
|
|
355
|
+
</td>
|
|
356
|
+
</tr>
|
|
357
|
+
<tr>
|
|
358
|
+
<th>EpicLabelEvents</th>
|
|
359
|
+
<td>
|
|
360
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_label_events.html#epics">🦊</a>
|
|
361
|
+
</td>
|
|
362
|
+
<td>
|
|
363
|
+
<a href="./src/resources/EpicLabelEvents.ts">⌨️</a>
|
|
364
|
+
</td>
|
|
365
|
+
</tr>
|
|
366
|
+
<tr>
|
|
367
|
+
<th>EpicLinks</th>
|
|
368
|
+
<td>
|
|
369
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/epic_links.html">🦊</a>
|
|
370
|
+
</td>
|
|
371
|
+
<td>
|
|
372
|
+
<a href="./src/resources/EpicLinks.ts">⌨️</a>
|
|
373
|
+
</td>
|
|
374
|
+
</tr>
|
|
375
|
+
<tr>
|
|
376
|
+
<th>EpicNotes</th>
|
|
377
|
+
<td>
|
|
378
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/notes.html#epics">🦊</a>
|
|
379
|
+
</td>
|
|
380
|
+
<td>
|
|
381
|
+
<a href="./src/resources/EpicNotes.ts">⌨️</a>
|
|
382
|
+
</td>
|
|
383
|
+
</tr>
|
|
384
|
+
<tr>
|
|
385
|
+
<th>Epics</th>
|
|
386
|
+
<td>
|
|
387
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/epics.html">🦊</a>
|
|
388
|
+
</td>
|
|
389
|
+
<td>
|
|
390
|
+
<a href="./src/resources/Epics.ts">⌨️</a>
|
|
391
|
+
</td>
|
|
392
|
+
</tr>
|
|
393
|
+
<tr>
|
|
394
|
+
<th>ErrorTrackingClientKeys</th>
|
|
395
|
+
<td>
|
|
396
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/error_tracking.html#error-tracking-client-keys">🦊</a>
|
|
397
|
+
</td>
|
|
398
|
+
<td>
|
|
399
|
+
<a href="./src/resources/ErrorTrackingClientKeys.ts">⌨️</a>
|
|
400
|
+
</td>
|
|
401
|
+
</tr>
|
|
402
|
+
<tr>
|
|
403
|
+
<th>ErrorTrackingSettings</th>
|
|
404
|
+
<td>
|
|
405
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/error_tracking.html#error-tracking-project-settings">🦊</a>
|
|
406
|
+
</td>
|
|
407
|
+
<td>
|
|
408
|
+
<a href="./src/resources/ErrorTrackingSettings.ts">⌨️</a>
|
|
409
|
+
</td>
|
|
410
|
+
</tr>
|
|
411
|
+
<tr>
|
|
412
|
+
<th>Events</th>
|
|
413
|
+
<td>
|
|
414
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/events.html">🦊</a>
|
|
415
|
+
</td>
|
|
416
|
+
<td>
|
|
417
|
+
<a href="./src/resources/Events.ts">⌨️</a>
|
|
418
|
+
</td>
|
|
419
|
+
</tr>
|
|
420
|
+
<tr>
|
|
421
|
+
<th>Experiments</th>
|
|
422
|
+
<td>
|
|
423
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/experiments.html">🦊</a>
|
|
424
|
+
</td>
|
|
425
|
+
<td>
|
|
426
|
+
<a href="./src/resources/Experiments.ts">⌨️</a>
|
|
427
|
+
</td>
|
|
428
|
+
</tr>
|
|
429
|
+
<tr>
|
|
430
|
+
<th>ExternalStatusChecks</th>
|
|
431
|
+
<td>
|
|
432
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/status_checks.html">🦊</a>
|
|
433
|
+
</td>
|
|
434
|
+
<td>
|
|
435
|
+
<a href="./src/resources/ExternalStatusChecks.ts">⌨️</a>
|
|
436
|
+
</td>
|
|
437
|
+
</tr>
|
|
438
|
+
<tr>
|
|
439
|
+
<th>FeatureFlagUserLists</th>
|
|
440
|
+
<td>
|
|
441
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/feature_flag_user_lists.html">🦊</a>
|
|
442
|
+
</td>
|
|
443
|
+
<td>
|
|
444
|
+
<a href="./src/resources/FeatureFlagUserLists.ts">⌨️</a>
|
|
445
|
+
</td>
|
|
446
|
+
</tr>
|
|
447
|
+
<tr>
|
|
448
|
+
<th>FeatureFlags</th>
|
|
449
|
+
<td>
|
|
450
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/feature_flags.html">🦊</a>
|
|
451
|
+
</td>
|
|
452
|
+
<td>
|
|
453
|
+
<a href="./src/resources/FeatureFlags.ts">⌨️</a>
|
|
454
|
+
</td>
|
|
455
|
+
</tr>
|
|
456
|
+
<tr>
|
|
457
|
+
<th>FreezePeriods</th>
|
|
458
|
+
<td>
|
|
459
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/freeze_periods.html">🦊</a>
|
|
460
|
+
</td>
|
|
461
|
+
<td>
|
|
462
|
+
<a href="./src/resources/FreezePeriods.ts">⌨️</a>
|
|
463
|
+
</td>
|
|
464
|
+
</tr>
|
|
465
|
+
<tr>
|
|
466
|
+
<th>GeoNodes</th>
|
|
467
|
+
<td>
|
|
468
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/geo_nodes.html">🦊</a>
|
|
469
|
+
</td>
|
|
470
|
+
<td>
|
|
471
|
+
<a href="./src/resources/GeoNodes.ts">⌨️</a>
|
|
472
|
+
</td>
|
|
473
|
+
</tr>
|
|
474
|
+
<tr>
|
|
475
|
+
<th>GeoSites</th>
|
|
476
|
+
<td>
|
|
477
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/geo_sites.html">🦊</a>
|
|
478
|
+
</td>
|
|
479
|
+
<td>
|
|
480
|
+
<a href="./src/resources/GeoSites.ts">⌨️</a>
|
|
481
|
+
</td>
|
|
482
|
+
</tr>
|
|
483
|
+
<tr>
|
|
484
|
+
<th>GitLabCIYMLTemplates</th>
|
|
485
|
+
<td>
|
|
486
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/gitlab_ci_ymls.html">🦊</a>
|
|
487
|
+
</td>
|
|
488
|
+
<td>
|
|
489
|
+
<a href="./src/resources/GitLabCIYMLTemplates.ts">⌨️</a>
|
|
490
|
+
</td>
|
|
491
|
+
</tr>
|
|
492
|
+
<tr>
|
|
493
|
+
<th>GitignoreTemplates</th>
|
|
494
|
+
<td>
|
|
495
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/templates/gitignores.html">🦊</a>
|
|
496
|
+
</td>
|
|
497
|
+
<td>
|
|
498
|
+
<a href="./src/resources/GitignoreTemplates.ts">⌨️</a>
|
|
499
|
+
</td>
|
|
500
|
+
</tr>
|
|
501
|
+
<tr>
|
|
502
|
+
<th>GitlabPages</th>
|
|
503
|
+
<td>
|
|
504
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pages.html">🦊</a>
|
|
505
|
+
</td>
|
|
506
|
+
<td>
|
|
507
|
+
<a href="./src/resources/GitlabPages.ts">⌨️</a>
|
|
508
|
+
</td>
|
|
509
|
+
</tr>
|
|
510
|
+
<tr>
|
|
511
|
+
<th>GoProxy</th>
|
|
512
|
+
<td>
|
|
513
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/go_proxy.html">🦊</a>
|
|
514
|
+
</td>
|
|
515
|
+
<td>
|
|
516
|
+
<a href="./src/resources/GoProxy.ts">⌨️</a>
|
|
517
|
+
</td>
|
|
518
|
+
</tr>
|
|
519
|
+
<tr>
|
|
520
|
+
<th>GroupAccessRequests</th>
|
|
521
|
+
<td>
|
|
522
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/access_requests.html">🦊</a>
|
|
523
|
+
</td>
|
|
524
|
+
<td>
|
|
525
|
+
<a href="./src/resources/GroupAccessRequests.ts">⌨️</a>
|
|
526
|
+
</td>
|
|
527
|
+
</tr>
|
|
528
|
+
<tr>
|
|
529
|
+
<th>GroupAccessTokens</th>
|
|
530
|
+
<td>
|
|
531
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_access_tokens.html">🦊</a>
|
|
532
|
+
</td>
|
|
533
|
+
<td>
|
|
534
|
+
<a href="./src/resources/GroupAccessTokens.ts">⌨️</a>
|
|
535
|
+
</td>
|
|
536
|
+
</tr>
|
|
537
|
+
<tr>
|
|
538
|
+
<th>GroupActivityAnalytics</th>
|
|
539
|
+
<td>
|
|
540
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_activity_analytics.html">🦊</a>
|
|
541
|
+
</td>
|
|
542
|
+
<td>
|
|
543
|
+
<a href="./src/resources/GroupActivityAnalytics.ts">⌨️</a>
|
|
544
|
+
</td>
|
|
545
|
+
</tr>
|
|
546
|
+
<tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<th>GroupEpicBoards</th>
|
|
549
|
+
<td>
|
|
550
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_epic_boards.html">🦊</a>
|
|
551
|
+
</td>
|
|
552
|
+
<td>
|
|
553
|
+
<a href="./src/resources/GroupEpicBoards.ts">⌨️</a>
|
|
554
|
+
</td>
|
|
555
|
+
</tr>
|
|
556
|
+
<th>GroupBadges</th>
|
|
557
|
+
<td>
|
|
558
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_badges.html">🦊</a>
|
|
559
|
+
</td>
|
|
560
|
+
<td>
|
|
561
|
+
<a href="./src/resources/GroupBadges.ts">⌨️</a>
|
|
562
|
+
</td>
|
|
563
|
+
</tr>
|
|
564
|
+
<tr>
|
|
565
|
+
<th>GroupCustomAttributes</th>
|
|
566
|
+
<td>
|
|
567
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/custom_attributes.html">🦊</a>
|
|
568
|
+
</td>
|
|
569
|
+
<td>
|
|
570
|
+
<a href="./src/resources/GroupCustomAttributes.ts">⌨️</a>
|
|
571
|
+
</td>
|
|
572
|
+
</tr>
|
|
573
|
+
<tr>
|
|
574
|
+
<th>GroupDORA4Metrics</th>
|
|
575
|
+
<td>
|
|
576
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/dora/metrics.html#get-group-level-dora-metrics">🦊</a>
|
|
577
|
+
</td>
|
|
578
|
+
<td>
|
|
579
|
+
<a href="./src/resources/GroupDORA4Metrics.ts">⌨️</a>
|
|
580
|
+
</td>
|
|
581
|
+
</tr>
|
|
582
|
+
<tr>
|
|
583
|
+
<th>GroupHooks</th>
|
|
584
|
+
<td>
|
|
585
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html#hooks">🦊</a>
|
|
586
|
+
</td>
|
|
587
|
+
<td>
|
|
588
|
+
<a href="./src/resources/GroupHooks.ts">⌨️</a>
|
|
589
|
+
</td>
|
|
590
|
+
</tr>
|
|
591
|
+
<tr>
|
|
592
|
+
<th>GroupImportExports</th>
|
|
593
|
+
<td>
|
|
594
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_import_export.html">🦊</a>
|
|
595
|
+
</td>
|
|
596
|
+
<td>
|
|
597
|
+
<a href="./src/resources/GroupImportExports.ts">⌨️</a>
|
|
598
|
+
</td>
|
|
599
|
+
</tr>
|
|
600
|
+
<tr>
|
|
601
|
+
<th>GroupInvitations</th>
|
|
602
|
+
<td>
|
|
603
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/invitations.html">🦊</a>
|
|
604
|
+
</td>
|
|
605
|
+
<td>
|
|
606
|
+
<a href="./src/resources/GroupInvitations.ts">⌨️</a>
|
|
607
|
+
</td>
|
|
608
|
+
</tr>
|
|
609
|
+
<tr>
|
|
610
|
+
<th>GroupIssueBoards</th>
|
|
611
|
+
<td>
|
|
612
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_boards.html">🦊</a>
|
|
613
|
+
</td>
|
|
614
|
+
<td>
|
|
615
|
+
<a href="./src/resources/GroupIssueBoards.ts">⌨️</a>
|
|
616
|
+
</td>
|
|
617
|
+
</tr>
|
|
618
|
+
<tr>
|
|
619
|
+
<th>GroupIterations</th>
|
|
620
|
+
<td>
|
|
621
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_iterations.html">🦊</a>
|
|
622
|
+
</td>
|
|
623
|
+
<td>
|
|
624
|
+
<a href="./src/resources/GroupIterations.ts">⌨️</a>
|
|
625
|
+
</td>
|
|
626
|
+
</tr>
|
|
627
|
+
<tr>
|
|
628
|
+
<th>GroupLDAPLinks</th>
|
|
629
|
+
<td>
|
|
630
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html#ldap-group-links">🦊</a>
|
|
631
|
+
</td>
|
|
632
|
+
<td>
|
|
633
|
+
<a href="./src/resources/GroupLDAPLinks.ts">⌨️</a>
|
|
634
|
+
</td>
|
|
635
|
+
</tr>
|
|
636
|
+
<tr>
|
|
637
|
+
<th>GroupLabels</th>
|
|
638
|
+
<td>
|
|
639
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_labels.html">🦊</a>
|
|
640
|
+
</td>
|
|
641
|
+
<td>
|
|
642
|
+
<a href="./src/resources/GroupLabels.ts">⌨️</a>
|
|
643
|
+
</td>
|
|
644
|
+
</tr>
|
|
645
|
+
<tr>
|
|
646
|
+
<th>GroupMarkdownUploads</th>
|
|
647
|
+
<td>
|
|
648
|
+
<a href="https://docs.gitlab.com/17.9/api/group_markdown_uploads.html">🦊</a>
|
|
649
|
+
</td>
|
|
650
|
+
<td>
|
|
651
|
+
<a href="./src/resources/GroupMarkdownUploads.ts">⌨️</a>
|
|
652
|
+
</td>
|
|
653
|
+
</tr>
|
|
654
|
+
<tr>
|
|
655
|
+
<th>GroupMemberRoles</th>
|
|
656
|
+
<td>
|
|
657
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/member_roles.html">🦊</a>
|
|
658
|
+
</td>
|
|
659
|
+
<td>
|
|
660
|
+
<a href="./src/resources/GroupMemberRoles.ts">⌨️</a>
|
|
661
|
+
</td>
|
|
662
|
+
</tr>
|
|
663
|
+
<tr>
|
|
664
|
+
<th>GroupMembers</th>
|
|
665
|
+
<td>
|
|
666
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/members.html">🦊</a>
|
|
667
|
+
</td>
|
|
668
|
+
<td>
|
|
669
|
+
<a href="./src/resources/GroupMembers.ts">⌨️</a>
|
|
670
|
+
</td>
|
|
671
|
+
</tr>
|
|
672
|
+
<tr>
|
|
673
|
+
<th>GroupMilestones</th>
|
|
674
|
+
<td>
|
|
675
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_milestones.html">🦊</a>
|
|
676
|
+
</td>
|
|
677
|
+
<td>
|
|
678
|
+
<a href="./src/resources/GroupMilestones.ts">⌨️</a>
|
|
679
|
+
</td>
|
|
680
|
+
</tr>
|
|
681
|
+
<tr>
|
|
682
|
+
<th>GroupProtectedEnvironments</th>
|
|
683
|
+
<td>
|
|
684
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_protected_environments.html">🦊</a>
|
|
685
|
+
</td>
|
|
686
|
+
<td>
|
|
687
|
+
<a href="./src/resources/GroupProtectedEnvironments.ts">⌨️</a>
|
|
688
|
+
</td>
|
|
689
|
+
</tr>
|
|
690
|
+
<tr>
|
|
691
|
+
<th>GroupPushRules</th>
|
|
692
|
+
<td>
|
|
693
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html#push-rules">🦊</a>
|
|
694
|
+
</td>
|
|
695
|
+
<td>
|
|
696
|
+
<a href="./src/resources/GroupPushRules.ts">⌨️</a>
|
|
697
|
+
</td>
|
|
698
|
+
</tr>
|
|
699
|
+
<tr>
|
|
700
|
+
<th>GroupRelationExports</th>
|
|
701
|
+
<td>
|
|
702
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_relations_export.html">🦊</a>
|
|
703
|
+
</td>
|
|
704
|
+
<td>
|
|
705
|
+
<a href="./src/resources/GroupRelationExports.ts">⌨️</a>
|
|
706
|
+
</td>
|
|
707
|
+
</tr>
|
|
708
|
+
<tr>
|
|
709
|
+
<th>GroupReleases</th>
|
|
710
|
+
<td>
|
|
711
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_releases.html">🦊</a>
|
|
712
|
+
</td>
|
|
713
|
+
<td>
|
|
714
|
+
<a href="./src/resources/GroupReleases.ts">⌨️</a>
|
|
715
|
+
</td>
|
|
716
|
+
</tr>
|
|
717
|
+
<tr>
|
|
718
|
+
<th>GroupRepositoryStorageMoves</th>
|
|
719
|
+
<td>
|
|
720
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_repository_storage_moves.html">🦊</a>
|
|
721
|
+
</td>
|
|
722
|
+
<td>
|
|
723
|
+
<a href="./src/resources/GroupRepositoryStorageMoves.ts">⌨️</a>
|
|
724
|
+
</td>
|
|
725
|
+
</tr>
|
|
726
|
+
<tr>
|
|
727
|
+
<th>GroupSAMLIdentities</th>
|
|
728
|
+
<td>
|
|
729
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/saml.html">🦊</a>
|
|
730
|
+
</td>
|
|
731
|
+
<td>
|
|
732
|
+
<a href="./src/resources/GroupSAMLIdentities.ts">⌨️</a>
|
|
733
|
+
</td>
|
|
734
|
+
</tr>
|
|
735
|
+
<tr>
|
|
736
|
+
<th>GroupSAMLLinks</th>
|
|
737
|
+
<td>
|
|
738
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html#saml-group-links">🦊</a>
|
|
739
|
+
</td>
|
|
740
|
+
<td>
|
|
741
|
+
<a href="./src/resources/GroupSAMLLinks.ts">⌨️</a>
|
|
742
|
+
</td>
|
|
743
|
+
</tr>
|
|
744
|
+
<tr>
|
|
745
|
+
<th>GroupSCIMIdentities</th>
|
|
746
|
+
<td>
|
|
747
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/scim.html">🦊</a>
|
|
748
|
+
</td>
|
|
749
|
+
<td>
|
|
750
|
+
<a href="./src/resources/GroupSCIMIdentities.ts">⌨️</a>
|
|
751
|
+
</td>
|
|
752
|
+
</tr>
|
|
753
|
+
<tr>
|
|
754
|
+
<th>GroupServiceAccounts</th>
|
|
755
|
+
<td>
|
|
756
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html#create-personal-access-token-for-service-account-user">🦊</a>
|
|
757
|
+
</td>
|
|
758
|
+
<td>
|
|
759
|
+
<a href="./src/resources/GroupServiceAccounts.ts">⌨️</a>
|
|
760
|
+
</td>
|
|
761
|
+
</tr>
|
|
762
|
+
<tr>
|
|
763
|
+
<th>GroupVariables</th>
|
|
764
|
+
<td>
|
|
765
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_level_variables.html">🦊</a>
|
|
766
|
+
</td>
|
|
767
|
+
<td>
|
|
768
|
+
<a href="./src/resources/GroupVariables.ts">⌨️</a>
|
|
769
|
+
</td>
|
|
770
|
+
</tr>
|
|
771
|
+
<tr>
|
|
772
|
+
<th>GroupWikis</th>
|
|
773
|
+
<td>
|
|
774
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/group_wikis.html">🦊</a>
|
|
775
|
+
</td>
|
|
776
|
+
<td>
|
|
777
|
+
<a href="./src/resources/GroupWikis.ts">⌨️</a>
|
|
778
|
+
</td>
|
|
779
|
+
</tr>
|
|
780
|
+
<tr>
|
|
781
|
+
<th>Groups</th>
|
|
782
|
+
<td>
|
|
783
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/groups.html">🦊</a>
|
|
784
|
+
</td>
|
|
785
|
+
<td>
|
|
786
|
+
<a href="./src/resources/Groups.ts">⌨️</a>
|
|
787
|
+
</td>
|
|
788
|
+
</tr>
|
|
789
|
+
<tr>
|
|
790
|
+
<th>Helm</th>
|
|
791
|
+
<td>
|
|
792
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/helm.html">🦊</a>
|
|
793
|
+
</td>
|
|
794
|
+
<td>
|
|
795
|
+
<a href="./src/resources/Helm.ts">⌨️</a>
|
|
796
|
+
</td>
|
|
797
|
+
</tr>
|
|
798
|
+
<tr>
|
|
799
|
+
<th>Import</th>
|
|
800
|
+
<td>
|
|
801
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/import.html">🦊</a>
|
|
802
|
+
</td>
|
|
803
|
+
<td>
|
|
804
|
+
<a href="./src/resources/Import.ts">⌨️</a>
|
|
805
|
+
</td>
|
|
806
|
+
</tr>
|
|
807
|
+
<tr>
|
|
808
|
+
<th>InstanceLevelCICDVariables</th>
|
|
809
|
+
<td>
|
|
810
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/instance_level_ci_variables.html">🦊</a>
|
|
811
|
+
</td>
|
|
812
|
+
<td>
|
|
813
|
+
<a href="./src/resources/InstanceLevelCICDVariables.ts">⌨️</a>
|
|
814
|
+
</td>
|
|
815
|
+
</tr>
|
|
816
|
+
<tr>
|
|
817
|
+
<th>Integrations</th>
|
|
818
|
+
<td>
|
|
819
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/integrations.html">🦊</a>
|
|
820
|
+
</td>
|
|
821
|
+
<td>
|
|
822
|
+
<a href="./src/resources/Integrations.ts">⌨️</a>
|
|
823
|
+
</td>
|
|
824
|
+
</tr>
|
|
825
|
+
<tr>
|
|
826
|
+
<th>IssueAwardEmojis</th>
|
|
827
|
+
<td>
|
|
828
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
829
|
+
</td>
|
|
830
|
+
<td>
|
|
831
|
+
<a href="./src/resources/IssueAwardEmojis.ts">⌨️</a>
|
|
832
|
+
</td>
|
|
833
|
+
</tr>
|
|
834
|
+
<tr>
|
|
835
|
+
<th>IssueDiscussions</th>
|
|
836
|
+
<td>
|
|
837
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/discussions.html#issues">🦊</a>
|
|
838
|
+
</td>
|
|
839
|
+
<td>
|
|
840
|
+
<a href="./src/resources/IssueDiscussions.ts">⌨️</a>
|
|
841
|
+
</td>
|
|
842
|
+
</tr>
|
|
843
|
+
<tr>
|
|
844
|
+
<th>IssueIterationEvents</th>
|
|
845
|
+
<td>
|
|
846
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_iteration_events.html#issues">🦊</a>
|
|
847
|
+
</td>
|
|
848
|
+
<td>
|
|
849
|
+
<a href="./src/resources/IssueIterationEvents.ts">⌨️</a>
|
|
850
|
+
</td>
|
|
851
|
+
</tr>
|
|
852
|
+
<tr>
|
|
853
|
+
<th>IssueLabelEvents</th>
|
|
854
|
+
<td>
|
|
855
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_label_events.html#issues">🦊</a>
|
|
856
|
+
</td>
|
|
857
|
+
<td>
|
|
858
|
+
<a href="./src/resources/IssueLabelEvents.ts">⌨️</a>
|
|
859
|
+
</td>
|
|
860
|
+
</tr>
|
|
861
|
+
<tr>
|
|
862
|
+
<th>IssueLinks</th>
|
|
863
|
+
<td>
|
|
864
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/issue_links.html">🦊</a>
|
|
865
|
+
</td>
|
|
866
|
+
<td>
|
|
867
|
+
<a href="./src/resources/IssueLinks.ts">⌨️</a>
|
|
868
|
+
</td>
|
|
869
|
+
</tr>
|
|
870
|
+
<tr>
|
|
871
|
+
<th>IssueMilestoneEvents</th>
|
|
872
|
+
<td>
|
|
873
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_milestone_events.html#issues">🦊</a>
|
|
874
|
+
</td>
|
|
875
|
+
<td>
|
|
876
|
+
<a href="./src/resources/IssueMilestoneEvents.ts">⌨️</a>
|
|
877
|
+
</td>
|
|
878
|
+
</tr>
|
|
879
|
+
<tr>
|
|
880
|
+
<th>IssueNoteAwardEmojis</th>
|
|
881
|
+
<td>
|
|
882
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
883
|
+
</td>
|
|
884
|
+
<td>
|
|
885
|
+
<a href="./src/resources/IssueNoteAwardEmojis.ts">⌨️</a>
|
|
886
|
+
</td>
|
|
887
|
+
</tr>
|
|
888
|
+
<tr>
|
|
889
|
+
<th>IssueNotes</th>
|
|
890
|
+
<td>
|
|
891
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/notes.html#issues">🦊</a>
|
|
892
|
+
</td>
|
|
893
|
+
<td>
|
|
894
|
+
<a href="./src/resources/IssueNotes.ts">⌨️</a>
|
|
895
|
+
</td>
|
|
896
|
+
</tr>
|
|
897
|
+
<tr>
|
|
898
|
+
<th>IssueStateEvents</th>
|
|
899
|
+
<td>
|
|
900
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_state_events.html#issues">🦊</a>
|
|
901
|
+
</td>
|
|
902
|
+
<td>
|
|
903
|
+
<a href="./src/resources/IssueStateEvents.ts">⌨️</a>
|
|
904
|
+
</td>
|
|
905
|
+
</tr>
|
|
906
|
+
<tr>
|
|
907
|
+
<th>IssueWeightEvents</th>
|
|
908
|
+
<td>
|
|
909
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_weight_events.html">🦊</a>
|
|
910
|
+
</td>
|
|
911
|
+
<td>
|
|
912
|
+
<a href="./src/resources/IssueWeightEvents.ts">⌨️</a>
|
|
913
|
+
</td>
|
|
914
|
+
</tr>
|
|
915
|
+
<tr>
|
|
916
|
+
<th>Issues</th>
|
|
917
|
+
<td>
|
|
918
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/issues.html">🦊</a>
|
|
919
|
+
</td>
|
|
920
|
+
<td>
|
|
921
|
+
<a href="./src/resources/Issues.ts">⌨️</a>
|
|
922
|
+
</td>
|
|
923
|
+
</tr>
|
|
924
|
+
<tr>
|
|
925
|
+
<th>IssuesStatistics</th>
|
|
926
|
+
<td>
|
|
927
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/issues_statistics.html">🦊</a>
|
|
928
|
+
</td>
|
|
929
|
+
<td>
|
|
930
|
+
<a href="./src/resources/IssuesStatistics.ts">⌨️</a>
|
|
931
|
+
</td>
|
|
932
|
+
</tr>
|
|
933
|
+
<tr>
|
|
934
|
+
<th>JobArtifacts</th>
|
|
935
|
+
<td>
|
|
936
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/job_artifacts.html">🦊</a>
|
|
937
|
+
</td>
|
|
938
|
+
<td>
|
|
939
|
+
<a href="./src/resources/JobArtifacts.ts">⌨️</a>
|
|
940
|
+
</td>
|
|
941
|
+
</tr>
|
|
942
|
+
<tr>
|
|
943
|
+
<th>Jobs</th>
|
|
944
|
+
<td>
|
|
945
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/jobs.html">🦊</a>
|
|
946
|
+
</td>
|
|
947
|
+
<td>
|
|
948
|
+
<a href="./src/resources/Jobs.ts">⌨️</a>
|
|
949
|
+
</td>
|
|
950
|
+
</tr>
|
|
951
|
+
<tr>
|
|
952
|
+
<th>Keys</th>
|
|
953
|
+
<td>
|
|
954
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/keys.html">🦊</a>
|
|
955
|
+
</td>
|
|
956
|
+
<td>
|
|
957
|
+
<a href="./src/resources/Keys.ts">⌨️</a>
|
|
958
|
+
</td>
|
|
959
|
+
</tr>
|
|
960
|
+
<tr>
|
|
961
|
+
<th>License</th>
|
|
962
|
+
<td>
|
|
963
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/license.html">🦊</a>
|
|
964
|
+
</td>
|
|
965
|
+
<td>
|
|
966
|
+
<a href="./src/resources/License.ts">⌨️</a>
|
|
967
|
+
</td>
|
|
968
|
+
</tr>
|
|
969
|
+
<tr>
|
|
970
|
+
<th>LicenseTemplates</th>
|
|
971
|
+
<td>
|
|
972
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/templates/licenses.html">🦊</a>
|
|
973
|
+
</td>
|
|
974
|
+
<td>
|
|
975
|
+
<a href="./src/resources/LicenseTemplates.ts">⌨️</a>
|
|
976
|
+
</td>
|
|
977
|
+
</tr>
|
|
978
|
+
<tr>
|
|
979
|
+
<th>LinkedEpics</th>
|
|
980
|
+
<td>
|
|
981
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/linked_epics.html">🦊</a>
|
|
982
|
+
</td>
|
|
983
|
+
<td>
|
|
984
|
+
<a href="./src/resources/LinkedEpics.ts">⌨️</a>
|
|
985
|
+
</td>
|
|
986
|
+
</tr>
|
|
987
|
+
<tr>
|
|
988
|
+
<th>Lint</th>
|
|
989
|
+
<td>
|
|
990
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/lint.html">🦊</a>
|
|
991
|
+
</td>
|
|
992
|
+
<td>
|
|
993
|
+
<a href="./src/resources/Lint.ts">⌨️</a>
|
|
994
|
+
</td>
|
|
995
|
+
</tr>
|
|
996
|
+
<tr>
|
|
997
|
+
<th>Markdown</th>
|
|
998
|
+
<td>
|
|
999
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/markdown.html">🦊</a>
|
|
1000
|
+
</td>
|
|
1001
|
+
<td>
|
|
1002
|
+
<a href="./src/resources/Markdown.ts">⌨️</a>
|
|
1003
|
+
</td>
|
|
1004
|
+
</tr>
|
|
1005
|
+
<tr>
|
|
1006
|
+
<th>Maven</th>
|
|
1007
|
+
<td>
|
|
1008
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/maven.html">🦊</a>
|
|
1009
|
+
</td>
|
|
1010
|
+
<td>
|
|
1011
|
+
<a href="./src/resources/Maven.ts">⌨️</a>
|
|
1012
|
+
</td>
|
|
1013
|
+
</tr>
|
|
1014
|
+
<tr>
|
|
1015
|
+
<th>MergeRequestApprovals</th>
|
|
1016
|
+
<td>
|
|
1017
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/merge_request_approvals.html">🦊</a>
|
|
1018
|
+
</td>
|
|
1019
|
+
<td>
|
|
1020
|
+
<a href="./src/resources/MergeRequestApprovals.ts">⌨️</a>
|
|
1021
|
+
</td>
|
|
1022
|
+
</tr>
|
|
1023
|
+
<tr>
|
|
1024
|
+
<th>MergeRequestAwardEmojis</th>
|
|
1025
|
+
<td>
|
|
1026
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
1027
|
+
</td>
|
|
1028
|
+
<td>
|
|
1029
|
+
<a href="./src/resources/MergeRequestAwardEmojis.ts">⌨️</a>
|
|
1030
|
+
</td>
|
|
1031
|
+
</tr>
|
|
1032
|
+
<tr>
|
|
1033
|
+
<th>MergeRequestContextCommits</th>
|
|
1034
|
+
<td>
|
|
1035
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/merge_request_context_commits.html">🦊</a>
|
|
1036
|
+
</td>
|
|
1037
|
+
<td>
|
|
1038
|
+
<a href="./src/resources/MergeRequestContextCommits.ts">⌨️</a>
|
|
1039
|
+
</td>
|
|
1040
|
+
</tr>
|
|
1041
|
+
<tr>
|
|
1042
|
+
<th>MergeRequestDiscussions</th>
|
|
1043
|
+
<td>
|
|
1044
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/discussions.html#merge-requests">🦊</a>
|
|
1045
|
+
</td>
|
|
1046
|
+
<td>
|
|
1047
|
+
<a href="./src/resources/MergeRequestDiscussions.ts">⌨️</a>
|
|
1048
|
+
</td>
|
|
1049
|
+
</tr>
|
|
1050
|
+
<tr>
|
|
1051
|
+
<th>MergeRequestDraftNotes</th>
|
|
1052
|
+
<td>
|
|
1053
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/draft_notes.html">🦊</a>
|
|
1054
|
+
</td>
|
|
1055
|
+
<td>
|
|
1056
|
+
<a href="./src/resources/MergeRequestDraftNotes.ts">⌨️</a>
|
|
1057
|
+
</td>
|
|
1058
|
+
</tr>
|
|
1059
|
+
<tr>
|
|
1060
|
+
<th>MergeRequestLabelEvents</th>
|
|
1061
|
+
<td>
|
|
1062
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_label_events.html#merge-requests">🦊</a>
|
|
1063
|
+
</td>
|
|
1064
|
+
<td>
|
|
1065
|
+
<a href="./src/resources/MergeRequestLabelEvents.ts">⌨️</a>
|
|
1066
|
+
</td>
|
|
1067
|
+
</tr>
|
|
1068
|
+
<tr>
|
|
1069
|
+
<th>MergeRequestMilestoneEvents</th>
|
|
1070
|
+
<td>
|
|
1071
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_milestone_events.html#merge-requests">🦊</a>
|
|
1072
|
+
</td>
|
|
1073
|
+
<td>
|
|
1074
|
+
<a href="./src/resources/MergeRequestMilestoneEvents.ts">⌨️</a>
|
|
1075
|
+
</td>
|
|
1076
|
+
</tr>
|
|
1077
|
+
<tr>
|
|
1078
|
+
<th>MergeRequestNoteAwardEmojis</th>
|
|
1079
|
+
<td>
|
|
1080
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
1081
|
+
</td>
|
|
1082
|
+
<td>
|
|
1083
|
+
<a href="./src/resources/MergeRequestNoteAwardEmojis.ts">⌨️</a>
|
|
1084
|
+
</td>
|
|
1085
|
+
</tr>
|
|
1086
|
+
<tr>
|
|
1087
|
+
<th>MergeRequestNotes</th>
|
|
1088
|
+
<td>
|
|
1089
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/notes.html#merge-requests">🦊</a>
|
|
1090
|
+
</td>
|
|
1091
|
+
<td>
|
|
1092
|
+
<a href="./src/resources/MergeRequestNotes.ts">⌨️</a>
|
|
1093
|
+
</td>
|
|
1094
|
+
</tr>
|
|
1095
|
+
<tr>
|
|
1096
|
+
<th>MergeRequests</th>
|
|
1097
|
+
<td>
|
|
1098
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/merge_requests.html">🦊</a>
|
|
1099
|
+
</td>
|
|
1100
|
+
<td>
|
|
1101
|
+
<a href="./src/resources/MergeRequests.ts">⌨️</a>
|
|
1102
|
+
</td>
|
|
1103
|
+
</tr>
|
|
1104
|
+
<tr>
|
|
1105
|
+
<th>MergeTrains</th>
|
|
1106
|
+
<td>
|
|
1107
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/merge_trains.html">🦊</a>
|
|
1108
|
+
</td>
|
|
1109
|
+
<td>
|
|
1110
|
+
<a href="./src/resources/MergeTrains.ts">⌨️</a>
|
|
1111
|
+
</td>
|
|
1112
|
+
</tr>
|
|
1113
|
+
<tr>
|
|
1114
|
+
<th>Metadata</th>
|
|
1115
|
+
<td>
|
|
1116
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/metadata.html">🦊</a>
|
|
1117
|
+
</td>
|
|
1118
|
+
<td>
|
|
1119
|
+
<a href="./src/resources/Metadata.ts">⌨️</a>
|
|
1120
|
+
</td>
|
|
1121
|
+
</tr>
|
|
1122
|
+
<tr>
|
|
1123
|
+
<th>Migrations</th>
|
|
1124
|
+
<td>
|
|
1125
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/bulk_imports.html">🦊</a>
|
|
1126
|
+
</td>
|
|
1127
|
+
<td>
|
|
1128
|
+
<a href="./src/resources/Migrations.ts">⌨️</a>
|
|
1129
|
+
</td>
|
|
1130
|
+
</tr>
|
|
1131
|
+
<tr>
|
|
1132
|
+
<th>NPM</th>
|
|
1133
|
+
<td>
|
|
1134
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/npm.html">🦊</a>
|
|
1135
|
+
</td>
|
|
1136
|
+
<td>
|
|
1137
|
+
<a href="./src/resources/NPM.ts">⌨️</a>
|
|
1138
|
+
</td>
|
|
1139
|
+
</tr>
|
|
1140
|
+
<tr>
|
|
1141
|
+
<th>Namespaces</th>
|
|
1142
|
+
<td>
|
|
1143
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/namespaces.html">🦊</a>
|
|
1144
|
+
</td>
|
|
1145
|
+
<td>
|
|
1146
|
+
<a href="./src/resources/Namespaces.ts">⌨️</a>
|
|
1147
|
+
</td>
|
|
1148
|
+
</tr>
|
|
1149
|
+
<tr>
|
|
1150
|
+
<th>NotificationSettings</th>
|
|
1151
|
+
<td>
|
|
1152
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/notification_settings.html">🦊</a>
|
|
1153
|
+
</td>
|
|
1154
|
+
<td>
|
|
1155
|
+
<a href="./src/resources/NotificationSettings.ts">⌨️</a>
|
|
1156
|
+
</td>
|
|
1157
|
+
</tr>
|
|
1158
|
+
<tr>
|
|
1159
|
+
<th>NuGet</th>
|
|
1160
|
+
<td>
|
|
1161
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/nuget.html">🦊</a>
|
|
1162
|
+
</td>
|
|
1163
|
+
<td>
|
|
1164
|
+
<a href="./src/resources/NuGet.ts">⌨️</a>
|
|
1165
|
+
</td>
|
|
1166
|
+
</tr>
|
|
1167
|
+
<tr>
|
|
1168
|
+
<th>PackageRegistry</th>
|
|
1169
|
+
<td>
|
|
1170
|
+
<a href="https://docs.gitlab.com/17.3/ee/user/packages/generic_packages/">🦊</a>
|
|
1171
|
+
</td>
|
|
1172
|
+
<td>
|
|
1173
|
+
<a href="./src/resources/PackageRegistry.ts">⌨️</a>
|
|
1174
|
+
</td>
|
|
1175
|
+
</tr>
|
|
1176
|
+
<tr>
|
|
1177
|
+
<th>Packages</th>
|
|
1178
|
+
<td>
|
|
1179
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages.html">🦊</a>
|
|
1180
|
+
</td>
|
|
1181
|
+
<td>
|
|
1182
|
+
<a href="./src/resources/Packages.ts">⌨️</a>
|
|
1183
|
+
</td>
|
|
1184
|
+
</tr>
|
|
1185
|
+
<tr>
|
|
1186
|
+
<th>PagesDomains</th>
|
|
1187
|
+
<td>
|
|
1188
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pages_domains.html">🦊</a>
|
|
1189
|
+
</td>
|
|
1190
|
+
<td>
|
|
1191
|
+
<a href="./src/resources/PagesDomains.ts">⌨️</a>
|
|
1192
|
+
</td>
|
|
1193
|
+
</tr>
|
|
1194
|
+
<tr>
|
|
1195
|
+
<th>PersonalAccessTokens</th>
|
|
1196
|
+
<td>
|
|
1197
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/personal_access_tokens.html">🦊</a>
|
|
1198
|
+
</td>
|
|
1199
|
+
<td>
|
|
1200
|
+
<a href="./src/resources/PersonalAccessTokens.ts">⌨️</a>
|
|
1201
|
+
</td>
|
|
1202
|
+
</tr>
|
|
1203
|
+
<tr>
|
|
1204
|
+
<th>PipelineScheduleVariables</th>
|
|
1205
|
+
<td>
|
|
1206
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pipeline_schedules.html#pipeline-schedule-variables">🦊</a>
|
|
1207
|
+
</td>
|
|
1208
|
+
<td>
|
|
1209
|
+
<a href="./src/resources/PipelineScheduleVariables.ts">⌨️</a>
|
|
1210
|
+
</td>
|
|
1211
|
+
</tr>
|
|
1212
|
+
<tr>
|
|
1213
|
+
<th>PipelineSchedules</th>
|
|
1214
|
+
<td>
|
|
1215
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pipeline_schedules.html#get-all-pipeline-schedules>🦊</a>
|
|
1216
|
+
</td>
|
|
1217
|
+
<td>
|
|
1218
|
+
<a href="./src/resources/PipelineSchedules.ts">⌨️</a>
|
|
1219
|
+
</td>
|
|
1220
|
+
</tr>
|
|
1221
|
+
<tr>
|
|
1222
|
+
<th>PipelineTriggerTokens</th>
|
|
1223
|
+
<td>
|
|
1224
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pipeline_triggers.html">🦊</a>
|
|
1225
|
+
</td>
|
|
1226
|
+
<td>
|
|
1227
|
+
<a href="./src/resources/PipelineTriggerTokens.ts">⌨️</a>
|
|
1228
|
+
</td>
|
|
1229
|
+
</tr>
|
|
1230
|
+
<tr>
|
|
1231
|
+
<th>Pipelines</th>
|
|
1232
|
+
<td>
|
|
1233
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/pipelines.html">🦊</a>
|
|
1234
|
+
</td>
|
|
1235
|
+
<td>
|
|
1236
|
+
<a href="./src/resources/Pipelines.ts">⌨️</a>
|
|
1237
|
+
</td>
|
|
1238
|
+
</tr>
|
|
1239
|
+
<tr>
|
|
1240
|
+
<th>ProductAnalytics</th>
|
|
1241
|
+
<td>
|
|
1242
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/product_analytics.html">🦊</a>
|
|
1243
|
+
</td>
|
|
1244
|
+
<td>
|
|
1245
|
+
<a href="./src/resources/ProductAnalytics.ts">⌨️</a>
|
|
1246
|
+
</td>
|
|
1247
|
+
</tr>
|
|
1248
|
+
<tr>
|
|
1249
|
+
<th>ProjectAccessRequests</th>
|
|
1250
|
+
<td>
|
|
1251
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/access_requests.html">🦊</a>
|
|
1252
|
+
</td>
|
|
1253
|
+
<td>
|
|
1254
|
+
<a href="./src/resources/ProjectAccessRequests.ts">⌨️</a>
|
|
1255
|
+
</td>
|
|
1256
|
+
</tr>
|
|
1257
|
+
<tr>
|
|
1258
|
+
<th>ProjectAccessTokens</th>
|
|
1259
|
+
<td>
|
|
1260
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_access_tokens.html">🦊</a>
|
|
1261
|
+
</td>
|
|
1262
|
+
<td>
|
|
1263
|
+
<a href="./src/resources/ProjectAccessTokens.ts">⌨️</a>
|
|
1264
|
+
</td>
|
|
1265
|
+
</tr>
|
|
1266
|
+
<tr>
|
|
1267
|
+
<th>ProjectAliases</th>
|
|
1268
|
+
<td>
|
|
1269
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_aliases.html">🦊</a>
|
|
1270
|
+
</td>
|
|
1271
|
+
<td>
|
|
1272
|
+
<a href="./src/resources/ProjectAliases.ts">⌨️</a>
|
|
1273
|
+
</td>
|
|
1274
|
+
</tr>
|
|
1275
|
+
<tr>
|
|
1276
|
+
<th>ProjectBadges</th>
|
|
1277
|
+
<td>
|
|
1278
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_badges.html">🦊</a>
|
|
1279
|
+
</td>
|
|
1280
|
+
<td>
|
|
1281
|
+
<a href="./src/resources/ProjectBadges.ts">⌨️</a>
|
|
1282
|
+
</td>
|
|
1283
|
+
</tr>
|
|
1284
|
+
<tr>
|
|
1285
|
+
<th>ProjectCustomAttributes</th>
|
|
1286
|
+
<td>
|
|
1287
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/custom_attributes.html">🦊</a>
|
|
1288
|
+
</td>
|
|
1289
|
+
<td>
|
|
1290
|
+
<a href="./src/resources/ProjectCustomAttributes.ts">⌨️</a>
|
|
1291
|
+
</td>
|
|
1292
|
+
</tr>
|
|
1293
|
+
<tr>
|
|
1294
|
+
<th>ProjectDORA4Metrics</th>
|
|
1295
|
+
<td>
|
|
1296
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/metrics.html#get-project-level-dora-metrics">🦊</a>
|
|
1297
|
+
</td>
|
|
1298
|
+
<td>
|
|
1299
|
+
<a href="./src/resources/ProjectDORA4Metrics.ts">⌨️</a>
|
|
1300
|
+
</td>
|
|
1301
|
+
</tr>
|
|
1302
|
+
<tr>
|
|
1303
|
+
<th>ProjectHooks</th>
|
|
1304
|
+
<td>
|
|
1305
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/projects.html#hooks">🦊</a>
|
|
1306
|
+
</td>
|
|
1307
|
+
<td>
|
|
1308
|
+
<a href="./src/resources/ProjectHooks.ts">⌨️</a>
|
|
1309
|
+
</td>
|
|
1310
|
+
</tr>
|
|
1311
|
+
<tr>
|
|
1312
|
+
<th>ProjectImportExports</th>
|
|
1313
|
+
<td>
|
|
1314
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_import_export.html">🦊</a>
|
|
1315
|
+
</td>
|
|
1316
|
+
<td>
|
|
1317
|
+
<a href="./src/resources/ProjectImportExports.ts">⌨️</a>
|
|
1318
|
+
</td>
|
|
1319
|
+
</tr>
|
|
1320
|
+
<tr>
|
|
1321
|
+
<th>ProjectInvitations</th>
|
|
1322
|
+
<td>
|
|
1323
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/invitations.html">🦊</a>
|
|
1324
|
+
</td>
|
|
1325
|
+
<td>
|
|
1326
|
+
<a href="./src/resources/ProjectInvitations.ts">⌨️</a>
|
|
1327
|
+
</td>
|
|
1328
|
+
</tr>
|
|
1329
|
+
<tr>
|
|
1330
|
+
<th>ProjectIssueBoards</th>
|
|
1331
|
+
<td>
|
|
1332
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/boards.html">🦊</a>
|
|
1333
|
+
</td>
|
|
1334
|
+
<td>
|
|
1335
|
+
<a href="./src/resources/ProjectIssueBoards.ts">⌨️</a>
|
|
1336
|
+
</td>
|
|
1337
|
+
</tr>
|
|
1338
|
+
<tr>
|
|
1339
|
+
<th>ProjectIterations</th>
|
|
1340
|
+
<td>
|
|
1341
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/iterations.html">🦊</a>
|
|
1342
|
+
</td>
|
|
1343
|
+
<td>
|
|
1344
|
+
<a href="./src/resources/ProjectIterations.ts">⌨️</a>
|
|
1345
|
+
</td>
|
|
1346
|
+
</tr>
|
|
1347
|
+
<tr>
|
|
1348
|
+
<th>ProjectJobTokenScopes</th>
|
|
1349
|
+
<td>
|
|
1350
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_job_token_scopes.html">🦊</a>
|
|
1351
|
+
</td>
|
|
1352
|
+
<td>
|
|
1353
|
+
<a href="./src/resources/ProjectJobTokenScopes.ts">⌨️</a>
|
|
1354
|
+
</td>
|
|
1355
|
+
</tr>
|
|
1356
|
+
<tr>
|
|
1357
|
+
<th>ProjectLabels</th>
|
|
1358
|
+
<td>
|
|
1359
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/labels.html">🦊</a>
|
|
1360
|
+
</td>
|
|
1361
|
+
<td>
|
|
1362
|
+
<a href="./src/resources/ProjectLabels.ts">⌨️</a>
|
|
1363
|
+
</td>
|
|
1364
|
+
</tr>
|
|
1365
|
+
<tr>
|
|
1366
|
+
<th>ProjectMarkdownUploads</th>
|
|
1367
|
+
<td>
|
|
1368
|
+
<a href="https://docs.gitlab.com/17.9/api/project_markdown_uploads.html">🦊</a>
|
|
1369
|
+
</td>
|
|
1370
|
+
<td>
|
|
1371
|
+
<a href="./src/resources/ProjectMarkdownUploads.ts">⌨️</a>
|
|
1372
|
+
</td>
|
|
1373
|
+
</tr>
|
|
1374
|
+
<tr>
|
|
1375
|
+
<th>ProjectMembers</th>
|
|
1376
|
+
<td>
|
|
1377
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/members.html">🦊</a>
|
|
1378
|
+
</td>
|
|
1379
|
+
<td>
|
|
1380
|
+
<a href="./src/resources/ProjectMembers.ts">⌨️</a>
|
|
1381
|
+
</td>
|
|
1382
|
+
</tr>
|
|
1383
|
+
<tr>
|
|
1384
|
+
<th>ProjectMilestones</th>
|
|
1385
|
+
<td>
|
|
1386
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/milestones.html">🦊</a>
|
|
1387
|
+
</td>
|
|
1388
|
+
<td>
|
|
1389
|
+
<a href="./src/resources/ProjectMilestones.ts">⌨️</a>
|
|
1390
|
+
</td>
|
|
1391
|
+
</tr>
|
|
1392
|
+
<tr>
|
|
1393
|
+
<th>ProjectProtectedEnvironments</th>
|
|
1394
|
+
<td>
|
|
1395
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/protected_environments.html">🦊</a>
|
|
1396
|
+
</td>
|
|
1397
|
+
<td>
|
|
1398
|
+
<a href="./src/resources/ProjectProtectedEnvironments.ts">⌨️</a>
|
|
1399
|
+
</td>
|
|
1400
|
+
</tr>
|
|
1401
|
+
<tr>
|
|
1402
|
+
<th>ProjectPushRules</th>
|
|
1403
|
+
<td>
|
|
1404
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/projects.html#push-rules">🦊</a>
|
|
1405
|
+
</td>
|
|
1406
|
+
<td>
|
|
1407
|
+
<a href="./src/resources/ProjectPushRules.ts">⌨️</a>
|
|
1408
|
+
</td>
|
|
1409
|
+
</tr>
|
|
1410
|
+
<tr>
|
|
1411
|
+
<th>ProjectRelationsExport</th>
|
|
1412
|
+
<td>
|
|
1413
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_relations_export.html">🦊</a>
|
|
1414
|
+
</td>
|
|
1415
|
+
<td>
|
|
1416
|
+
<a href="./src/resources/ProjectRelationsExport.ts">⌨️</a>
|
|
1417
|
+
</td>
|
|
1418
|
+
</tr>
|
|
1419
|
+
<tr>
|
|
1420
|
+
<th>ProjectReleases</th>
|
|
1421
|
+
<td>
|
|
1422
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/releases/">🦊</a>
|
|
1423
|
+
</td>
|
|
1424
|
+
<td>
|
|
1425
|
+
<a href="./src/resources/ProjectReleases.ts">⌨️</a>
|
|
1426
|
+
</td>
|
|
1427
|
+
</tr>
|
|
1428
|
+
<tr>
|
|
1429
|
+
<th>ProjectRemoteMirrors</th>
|
|
1430
|
+
<td>
|
|
1431
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/remote_mirrors.html">🦊</a>
|
|
1432
|
+
</td>
|
|
1433
|
+
<td>
|
|
1434
|
+
<a href="./src/resources/ProjectRemoteMirrors.ts">⌨️</a>
|
|
1435
|
+
</td>
|
|
1436
|
+
</tr>
|
|
1437
|
+
<tr>
|
|
1438
|
+
<th>ProjectRepositoryStorageMoves</th>
|
|
1439
|
+
<td>
|
|
1440
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_repository_storage_moves.html">🦊</a>
|
|
1441
|
+
</td>
|
|
1442
|
+
<td>
|
|
1443
|
+
<a href="./src/resources/ProjectRepositoryStorageMoves.ts">⌨️</a>
|
|
1444
|
+
</td>
|
|
1445
|
+
</tr>
|
|
1446
|
+
<tr>
|
|
1447
|
+
<th>ProjectSnippetAwardEmojis</th>
|
|
1448
|
+
<td>
|
|
1449
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/emoji_reactions.html">🦊</a>
|
|
1450
|
+
</td>
|
|
1451
|
+
<td>
|
|
1452
|
+
<a href="./src/resources/ProjectSnippetAwardEmojis.ts">⌨️</a>
|
|
1453
|
+
</td>
|
|
1454
|
+
</tr>
|
|
1455
|
+
<tr>
|
|
1456
|
+
<th>ProjectSnippetDiscussions</th>
|
|
1457
|
+
<td>
|
|
1458
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/discussions.html#snippets">🦊</a>
|
|
1459
|
+
</td>
|
|
1460
|
+
<td>
|
|
1461
|
+
<a href="./src/resources/ProjectSnippetDiscussions.ts">⌨️</a>
|
|
1462
|
+
</td>
|
|
1463
|
+
</tr>
|
|
1464
|
+
<tr>
|
|
1465
|
+
<th>ProjectSnippetNotes</th>
|
|
1466
|
+
<td>
|
|
1467
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/notes.html#snippets">🦊</a>
|
|
1468
|
+
</td>
|
|
1469
|
+
<td>
|
|
1470
|
+
<a href="./src/resources/ProjectSnippetNotes.ts">⌨️</a>
|
|
1471
|
+
</td>
|
|
1472
|
+
</tr>
|
|
1473
|
+
<tr>
|
|
1474
|
+
<th>ProjectSnippets</th>
|
|
1475
|
+
<td>
|
|
1476
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_snippets.html">🦊</a>
|
|
1477
|
+
</td>
|
|
1478
|
+
<td>
|
|
1479
|
+
<a href="./src/resources/ProjectSnippets.ts">⌨️</a>
|
|
1480
|
+
</td>
|
|
1481
|
+
</tr>
|
|
1482
|
+
<tr>
|
|
1483
|
+
<th>ProjectStatistics</th>
|
|
1484
|
+
<td>
|
|
1485
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_statistics.html">🦊</a>
|
|
1486
|
+
</td>
|
|
1487
|
+
<td>
|
|
1488
|
+
<a href="./src/resources/ProjectStatistics.ts">⌨️</a>
|
|
1489
|
+
</td>
|
|
1490
|
+
</tr>
|
|
1491
|
+
<tr>
|
|
1492
|
+
<th>ProjectTemplates</th>
|
|
1493
|
+
<td>
|
|
1494
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_templates.html">🦊</a>
|
|
1495
|
+
</td>
|
|
1496
|
+
<td>
|
|
1497
|
+
<a href="./src/resources/ProjectTemplates.ts">⌨️</a>
|
|
1498
|
+
</td>
|
|
1499
|
+
</tr>
|
|
1500
|
+
<tr>
|
|
1501
|
+
<th>ProjectVariables</th>
|
|
1502
|
+
<td>
|
|
1503
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_level_variables.html">🦊</a>
|
|
1504
|
+
</td>
|
|
1505
|
+
<td>
|
|
1506
|
+
<a href="./src/resources/ProjectVariables.ts">⌨️</a>
|
|
1507
|
+
</td>
|
|
1508
|
+
</tr>
|
|
1509
|
+
<tr>
|
|
1510
|
+
<th>ProjectVulnerabilities</th>
|
|
1511
|
+
<td>
|
|
1512
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/project_vulnerabilities.html">🦊</a>
|
|
1513
|
+
</td>
|
|
1514
|
+
<td>
|
|
1515
|
+
<a href="./src/resources/ProjectVulnerabilities.ts">⌨️</a>
|
|
1516
|
+
</td>
|
|
1517
|
+
</tr>
|
|
1518
|
+
<tr>
|
|
1519
|
+
<th>ProjectWikis</th>
|
|
1520
|
+
<td>
|
|
1521
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/wikis.html">🦊</a>
|
|
1522
|
+
</td>
|
|
1523
|
+
<td>
|
|
1524
|
+
<a href="./src/resources/ProjectWikis.ts">⌨️</a>
|
|
1525
|
+
</td>
|
|
1526
|
+
</tr>
|
|
1527
|
+
<tr>
|
|
1528
|
+
<th>Projects</th>
|
|
1529
|
+
<td>
|
|
1530
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/projects.html">🦊</a>
|
|
1531
|
+
</td>
|
|
1532
|
+
<td>
|
|
1533
|
+
<a href="./src/resources/Projects.ts">⌨️</a>
|
|
1534
|
+
</td>
|
|
1535
|
+
</tr>
|
|
1536
|
+
<tr>
|
|
1537
|
+
<th>ProtectedBranches</th>
|
|
1538
|
+
<td>
|
|
1539
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/protected_branches.html">🦊</a>
|
|
1540
|
+
</td>
|
|
1541
|
+
<td>
|
|
1542
|
+
<a href="./src/resources/ProtectedBranches.ts">⌨️</a>
|
|
1543
|
+
</td>
|
|
1544
|
+
</tr>
|
|
1545
|
+
<tr>
|
|
1546
|
+
<th>ProtectedTags</th>
|
|
1547
|
+
<td>
|
|
1548
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/protected_tags.html">🦊</a>
|
|
1549
|
+
</td>
|
|
1550
|
+
<td>
|
|
1551
|
+
<a href="./src/resources/ProtectedTags.ts">⌨️</a>
|
|
1552
|
+
</td>
|
|
1553
|
+
</tr>
|
|
1554
|
+
<tr>
|
|
1555
|
+
<th>PyPI</th>
|
|
1556
|
+
<td>
|
|
1557
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/pypi.html">🦊</a>
|
|
1558
|
+
</td>
|
|
1559
|
+
<td>
|
|
1560
|
+
<a href="./src/resources/PyPI.ts">⌨️</a>
|
|
1561
|
+
</td>
|
|
1562
|
+
</tr>
|
|
1563
|
+
<tr>
|
|
1564
|
+
<th>ReleaseLinks</th>
|
|
1565
|
+
<td>
|
|
1566
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/releases/links.html">🦊</a>
|
|
1567
|
+
</td>
|
|
1568
|
+
<td>
|
|
1569
|
+
<a href="./src/resources/ReleaseLinks.ts">⌨️</a>
|
|
1570
|
+
</td>
|
|
1571
|
+
</tr>
|
|
1572
|
+
<tr>
|
|
1573
|
+
<th>Repositories</th>
|
|
1574
|
+
<td>
|
|
1575
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/">🦊</a>
|
|
1576
|
+
</td>
|
|
1577
|
+
<td>
|
|
1578
|
+
<a href="./src/resources/Repositories.ts">⌨️</a>
|
|
1579
|
+
</td>
|
|
1580
|
+
</tr>
|
|
1581
|
+
<tr>
|
|
1582
|
+
<th>RepositoryFiles</th>
|
|
1583
|
+
<td>
|
|
1584
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/repository_files.html">🦊</a>
|
|
1585
|
+
</td>
|
|
1586
|
+
<td>
|
|
1587
|
+
<a href="./src/resources/RepositoryFiles.ts">⌨️</a>
|
|
1588
|
+
</td>
|
|
1589
|
+
</tr>
|
|
1590
|
+
<tr>
|
|
1591
|
+
<th>RepositorySubmodules</th>
|
|
1592
|
+
<td>
|
|
1593
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/repository_submodules.html">🦊</a>
|
|
1594
|
+
</td>
|
|
1595
|
+
<td>
|
|
1596
|
+
<a href="./src/resources/RepositorySubmodules.ts">⌨️</a>
|
|
1597
|
+
</td>
|
|
1598
|
+
</tr>
|
|
1599
|
+
<tr>
|
|
1600
|
+
<th>ResourceGroups</th>
|
|
1601
|
+
<td>
|
|
1602
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/resource_groups.html">🦊</a>
|
|
1603
|
+
</td>
|
|
1604
|
+
<td>
|
|
1605
|
+
<a href="./src/resources/ResourceGroups.ts">⌨️</a>
|
|
1606
|
+
</td>
|
|
1607
|
+
</tr>
|
|
1608
|
+
<tr>
|
|
1609
|
+
<th>RubyGems</th>
|
|
1610
|
+
<td>
|
|
1611
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/packages/rubygems.html">🦊</a>
|
|
1612
|
+
</td>
|
|
1613
|
+
<td>
|
|
1614
|
+
<a href="./src/resources/RubyGems.ts">⌨️</a>
|
|
1615
|
+
</td>
|
|
1616
|
+
</tr>
|
|
1617
|
+
<tr>
|
|
1618
|
+
<th>Runners</th>
|
|
1619
|
+
<td>
|
|
1620
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/runners.html">🦊</a>
|
|
1621
|
+
</td>
|
|
1622
|
+
<td>
|
|
1623
|
+
<a href="./src/resources/Runners.ts">⌨️</a>
|
|
1624
|
+
</td>
|
|
1625
|
+
</tr>
|
|
1626
|
+
<tr>
|
|
1627
|
+
<th>Search</th>
|
|
1628
|
+
<td>
|
|
1629
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/search.html">🦊</a>
|
|
1630
|
+
</td>
|
|
1631
|
+
<td>
|
|
1632
|
+
<a href="./src/resources/Search.ts">⌨️</a>
|
|
1633
|
+
</td>
|
|
1634
|
+
</tr>
|
|
1635
|
+
<tr>
|
|
1636
|
+
<th>SearchAdmin</th>
|
|
1637
|
+
<td>
|
|
1638
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/search_admin.html">🦊</a>
|
|
1639
|
+
</td>
|
|
1640
|
+
<td>
|
|
1641
|
+
<a href="./src/resources/SearchAdmin.ts">⌨️</a>
|
|
1642
|
+
</td>
|
|
1643
|
+
</tr>
|
|
1644
|
+
<tr>
|
|
1645
|
+
<th>SecureFiles</th>
|
|
1646
|
+
<td>
|
|
1647
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/secure_files.html">🦊</a>
|
|
1648
|
+
</td>
|
|
1649
|
+
<td>
|
|
1650
|
+
<a href="./src/resources/SecureFiles.ts">⌨️</a>
|
|
1651
|
+
</td>
|
|
1652
|
+
</tr>
|
|
1653
|
+
<tr>
|
|
1654
|
+
<th>ServiceAccounts</th>
|
|
1655
|
+
<td>
|
|
1656
|
+
<a href="https://docs.gitlab.com/api/users.html#create-service-account-user">🦊</a>
|
|
1657
|
+
</td>
|
|
1658
|
+
<td>
|
|
1659
|
+
<a href="./src/resources/ServiceAccounts.ts">⌨️</a>
|
|
1660
|
+
</td>
|
|
1661
|
+
</tr>
|
|
1662
|
+
<tr>
|
|
1663
|
+
<th>ServiceData</th>
|
|
1664
|
+
<td>
|
|
1665
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/usage_data.html">🦊</a>
|
|
1666
|
+
</td>
|
|
1667
|
+
<td>
|
|
1668
|
+
<a href="./src/resources/ServiceData.ts">⌨️</a>
|
|
1669
|
+
</td>
|
|
1670
|
+
</tr>
|
|
1671
|
+
<tr>
|
|
1672
|
+
<th>SidekiqMetrics</th>
|
|
1673
|
+
<td>
|
|
1674
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/sidekiq_metrics.html">🦊</a>
|
|
1675
|
+
</td>
|
|
1676
|
+
<td>
|
|
1677
|
+
<a href="./src/resources/SidekiqMetrics.ts">⌨️</a>
|
|
1678
|
+
</td>
|
|
1679
|
+
</tr>
|
|
1680
|
+
<tr>
|
|
1681
|
+
<th>SidekiqQueues</th>
|
|
1682
|
+
<td>
|
|
1683
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/admin_sidekiq_queues.html">🦊</a>
|
|
1684
|
+
</td>
|
|
1685
|
+
<td>
|
|
1686
|
+
<a href="./src/resources/SidekiqQueues.ts">⌨️</a>
|
|
1687
|
+
</td>
|
|
1688
|
+
</tr>
|
|
1689
|
+
<tr>
|
|
1690
|
+
<th>SnippetRepositoryStorageMoves</th>
|
|
1691
|
+
<td>
|
|
1692
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/snippet_repository_storage_moves.html">🦊</a>
|
|
1693
|
+
</td>
|
|
1694
|
+
<td>
|
|
1695
|
+
<a href="./src/resources/SnippetRepositoryStorageMoves.ts">⌨️</a>
|
|
1696
|
+
</td>
|
|
1697
|
+
</tr>
|
|
1698
|
+
<tr>
|
|
1699
|
+
<th>Snippets</th>
|
|
1700
|
+
<td>
|
|
1701
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/snippets.html">🦊</a>
|
|
1702
|
+
</td>
|
|
1703
|
+
<td>
|
|
1704
|
+
<a href="./src/resources/Snippets.ts">⌨️</a>
|
|
1705
|
+
</td>
|
|
1706
|
+
</tr>
|
|
1707
|
+
<tr>
|
|
1708
|
+
<th>Suggestions</th>
|
|
1709
|
+
<td>
|
|
1710
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/suggestions.html">🦊</a>
|
|
1711
|
+
</td>
|
|
1712
|
+
<td>
|
|
1713
|
+
<a href="./src/resources/Suggestions.ts">⌨️</a>
|
|
1714
|
+
</td>
|
|
1715
|
+
</tr>
|
|
1716
|
+
<tr>
|
|
1717
|
+
<th>SystemHooks</th>
|
|
1718
|
+
<td>
|
|
1719
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/system_hooks.html">🦊</a>
|
|
1720
|
+
</td>
|
|
1721
|
+
<td>
|
|
1722
|
+
<a href="./src/resources/SystemHooks.ts">⌨️</a>
|
|
1723
|
+
</td>
|
|
1724
|
+
</tr>
|
|
1725
|
+
<tr>
|
|
1726
|
+
<th>Tags</th>
|
|
1727
|
+
<td>
|
|
1728
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/tags.html">🦊</a>
|
|
1729
|
+
</td>
|
|
1730
|
+
<td>
|
|
1731
|
+
<a href="./src/resources/Tags.ts">⌨️</a>
|
|
1732
|
+
</td>
|
|
1733
|
+
</tr>
|
|
1734
|
+
<tr>
|
|
1735
|
+
<th>TodoLists</th>
|
|
1736
|
+
<td>
|
|
1737
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/todos.html">🦊</a>
|
|
1738
|
+
</td>
|
|
1739
|
+
<td>
|
|
1740
|
+
<a href="./src/resources/TodoLists.ts">⌨️</a>
|
|
1741
|
+
</td>
|
|
1742
|
+
</tr>
|
|
1743
|
+
<tr>
|
|
1744
|
+
<th>Topics</th>
|
|
1745
|
+
<td>
|
|
1746
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/topics.html">🦊</a>
|
|
1747
|
+
</td>
|
|
1748
|
+
<td>
|
|
1749
|
+
<a href="./src/resources/Topics.ts">⌨️</a>
|
|
1750
|
+
</td>
|
|
1751
|
+
</tr>
|
|
1752
|
+
<tr>
|
|
1753
|
+
<th>UserCustomAttributes</th>
|
|
1754
|
+
<td>
|
|
1755
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/custom_attributes.html">🦊</a>
|
|
1756
|
+
</td>
|
|
1757
|
+
<td>
|
|
1758
|
+
<a href="./src/resources/UserCustomAttributes.ts">⌨️</a>
|
|
1759
|
+
</td>
|
|
1760
|
+
</tr>
|
|
1761
|
+
<tr>
|
|
1762
|
+
<th>UserEmails</th>
|
|
1763
|
+
<td>
|
|
1764
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/users.html#list-emails">🦊</a>
|
|
1765
|
+
</td>
|
|
1766
|
+
<td>
|
|
1767
|
+
<a href="./src/resources/UserEmails.ts">⌨️</a>
|
|
1768
|
+
</td>
|
|
1769
|
+
</tr>
|
|
1770
|
+
<tr>
|
|
1771
|
+
<th>UserGPGKeys</th>
|
|
1772
|
+
<td>
|
|
1773
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/users.html#list-all-gpg-keys">🦊</a>
|
|
1774
|
+
</td>
|
|
1775
|
+
<td>
|
|
1776
|
+
<a href="./src/resources/UserGPGKeys.ts">⌨️</a>
|
|
1777
|
+
</td>
|
|
1778
|
+
</tr>
|
|
1779
|
+
<tr>
|
|
1780
|
+
<th>UserImpersonationTokens</th>
|
|
1781
|
+
<td>
|
|
1782
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/users.html#get-an-impersonation-token-of-a-user">🦊</a>
|
|
1783
|
+
</td>
|
|
1784
|
+
<td>
|
|
1785
|
+
<a href="./src/resources/UserImpersonationTokens.ts">⌨️</a>
|
|
1786
|
+
</td>
|
|
1787
|
+
</tr>
|
|
1788
|
+
<tr>
|
|
1789
|
+
<th>UserSSHKeys</th>
|
|
1790
|
+
<td>
|
|
1791
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/users.html#list-ssh-keys">🦊</a>
|
|
1792
|
+
</td>
|
|
1793
|
+
<td>
|
|
1794
|
+
<a href="./src/resources/UserSSHKeys.ts">⌨️</a>
|
|
1795
|
+
</td>
|
|
1796
|
+
</tr>
|
|
1797
|
+
<tr>
|
|
1798
|
+
<th>UserStarredMetricsDashboard</th>
|
|
1799
|
+
<td>
|
|
1800
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/metrics_user_starred_dashboards.html">🦊</a>
|
|
1801
|
+
</td>
|
|
1802
|
+
<td>
|
|
1803
|
+
<a href="./src/resources/UserStarredMetricsDashboard.ts">⌨️</a>
|
|
1804
|
+
</td>
|
|
1805
|
+
</tr>
|
|
1806
|
+
<tr>
|
|
1807
|
+
<th>Users</th>
|
|
1808
|
+
<td>
|
|
1809
|
+
<a href="https://docs.gitlab.com/17.3/ee/api/users.html">🦊</a>
|
|
1810
|
+
</td>
|
|
1811
|
+
<td>
|
|
1812
|
+
<a href="./src/resources/Users.ts">⌨️</a>
|
|
1813
|
+
</td>
|
|
1814
|
+
</tr>
|
|
1815
|
+
|
|
1816
|
+
</tbody>
|
|
1817
|
+
</table>
|
|
1818
|
+
|
|
1819
|
+
## Contributors
|
|
1820
|
+
|
|
1821
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
1822
|
+
<!-- prettier-ignore-start -->
|
|
1823
|
+
<!-- markdownlint-disable -->
|
|
1824
|
+
<p>
|
|
1825
|
+
<tr>
|
|
1826
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/jdalrymple"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/3743662?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Justin Dalrymple"/></td>
|
|
1827
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/dylandesrosier"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/13701258?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Dylan DesRosier"/></td>
|
|
1828
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/mikew"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4729?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Mike Wyatt"/></td>
|
|
1829
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/coryzibell"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/7986014?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Cory Zibeill"/></td>
|
|
1830
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/shadygrove"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5209850?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Martin Bour"/></td>
|
|
1831
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/akira345"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/655764?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="akira345"/></td>
|
|
1832
|
+
<td align="center" valign="top" width="0.33%"><a href="https://birukov.me"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/1861546?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Pavel Birukov "/></td>
|
|
1833
|
+
<td align="center" valign="top" width="0.33%"><a href="http://jetersen.dev"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/1661688?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Joseph Petersen"/></td>
|
|
1834
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Musinux"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/563373?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Louis Cherel"/></td>
|
|
1835
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.arsdehnel.net"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/1697162?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Adam Dehnel"/></td>
|
|
1836
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.haus.gg/"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/226640?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Ev Haus"/></td>
|
|
1837
|
+
<td align="center" valign="top" width="0.33%"><a href="http://iGLOO.be"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/900947?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Loïc Mahieu"/></td>
|
|
1838
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.giuseppeangri.com"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/9075163?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Giuseppe Angri"/></td>
|
|
1839
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/jennparise"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/4134086?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="jennparise"/></td>
|
|
1840
|
+
<td align="center" valign="top" width="0.33%"><a href="http://obartra.github.io"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/3877773?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Oscar"/></td>
|
|
1841
|
+
<td align="center" valign="top" width="0.33%"><a href="https://daniel-ruf.de"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/827205?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Daniel Ruf"/></td>
|
|
1842
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/schindld"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/1659632?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="schindld"/></td>
|
|
1843
|
+
<td align="center" valign="top" width="0.33%"><a href="https://alvarobg.com"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/12004383?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Alvaro"/></td>
|
|
1844
|
+
<td align="center" valign="top" width="0.33%"><a href="http://northhorizon.net"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/616152?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Daniel Moore"/></td>
|
|
1845
|
+
<td align="center" valign="top" width="0.33%"><a href="https://dylanmtaylor.com"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/277927?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Dylan M. Taylor"/></td>
|
|
1846
|
+
<td align="center" valign="top" width="0.33%"><a href="https://pixelswap.fr/"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/4266283?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Corentin Mors"/></td>
|
|
1847
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/xatavian"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/17217965?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="xatavian"/></td>
|
|
1848
|
+
<td align="center" valign="top" width="0.33%"><a href="https://stackoverflow.com/story/yepninja"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/11796206?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Yevgeny Petukhov"/></td>
|
|
1849
|
+
<td align="center" valign="top" width="0.33%"><a href="https://about.me/mickaeltr"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/378910?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Mickaël Tricot"/></td>
|
|
1850
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/andreasciamanna"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/181780?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Andrea"/></td>
|
|
1851
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.ircad.fr/"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/8638653?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Flavien Bridault"/></td>
|
|
1852
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/s-kazuki"><img src="https://images.weserv.nl/?url=https://avatars2.githubusercontent.com/u/9253374?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="s-kazuki"/></td>
|
|
1853
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/kiprasmel"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/29430509?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kipras Melnikovas"/></td>
|
|
1854
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Gkxie"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/27680715?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="xieyu"/></td>
|
|
1855
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/st1gok"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/13641693?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="st1gok"/></td>
|
|
1856
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/max-wittig"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/6639323?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Max Wittig"/></td>
|
|
1857
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/nlochschmidt"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/759624?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Niklas Lochschmidt"/></td>
|
|
1858
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/illyaMs"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/26578665?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Ilya Dus"/></td>
|
|
1859
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/wamry"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/32439651?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Omar Awamry"/></td>
|
|
1860
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Sumragen"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/15640910?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Hennadii Varava"/></td>
|
|
1861
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/xiezht"><img src="https://images.weserv.nl/?url=https://avatars1.githubusercontent.com/u/18051618?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="xiezht"/></td>
|
|
1862
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.martin-helmich.de/en"><img src="https://images.weserv.nl/?url=https://avatars3.githubusercontent.com/u/2538958?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Martin Helmich"/></td>
|
|
1863
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/smcgivern"><img src="https://images.weserv.nl/?url=https://avatars0.githubusercontent.com/u/1120328?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Sean McGivern"/></td>
|
|
1864
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Vogel612"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/7288995?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Clemens Lieb"/></td>
|
|
1865
|
+
<td align="center" valign="top" width="0.33%"><a href="https://sajdl.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5222912?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Vojtěch Sajdl"/></td>
|
|
1866
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/divido"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4614626?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="divido"/></td>
|
|
1867
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/vboulaye"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/652767?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Vincent Boulaye"/></td>
|
|
1868
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Aliyss"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/33941859?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Aliyss Snow"/></td>
|
|
1869
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/saada"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1087987?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Mahmoud Saada"/></td>
|
|
1870
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/F3n67u"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/12343178?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Feng Yu"/></td>
|
|
1871
|
+
<td align="center" valign="top" width="0.33%"><a href="https://datatra.sh/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/173822?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Roy Jacobs"/></td>
|
|
1872
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.paullemke.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/976010?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Paul Lemke"/></td>
|
|
1873
|
+
<td align="center" valign="top" width="0.33%"><a href="http://jenko.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/131355?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Ian Jenkins"/></td>
|
|
1874
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.nilennoct.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4055220?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="nilennoct"/></td>
|
|
1875
|
+
<td align="center" valign="top" width="0.33%"><a href="http://michael.laffargue.fr/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/503129?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Laffargue Michael"/></td>
|
|
1876
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/MartinHowarth"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/7187425?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Martin Howarth"/></td>
|
|
1877
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/christophlehmann"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4953689?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Christoph Lehmann"/></td>
|
|
1878
|
+
<td align="center" valign="top" width="0.33%"><a href="https://theopensourceu.org/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/253471?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Frank V"/></td>
|
|
1879
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Salimlou"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/357286?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Salim Benabbou"/></td>
|
|
1880
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/tvtamas"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1945260?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Tamás Török-Vistai"/></td>
|
|
1881
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/MartinBenninger"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/20296116?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Martin Benninger"/></td>
|
|
1882
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/fewieden"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9334168?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="fewieden"/></td>
|
|
1883
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.jeffpelton.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/36627?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Jeff Pelton"/></td>
|
|
1884
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/claude-abounegm"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/11809881?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Claude Abounegm"/></td>
|
|
1885
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Marethyu1"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/17978203?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Stefan Hall"/></td>
|
|
1886
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Mr-Wallet"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/799000?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Jordan Wallet"/></td>
|
|
1887
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/zhao0"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/7556666?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="zhao0"/></td>
|
|
1888
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.linkedin.com/in/joshuagrosso"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4530584?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Joshua Grosso"/></td>
|
|
1889
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/yonguelink"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9469187?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Isaac Ouellet Therrien"/></td>
|
|
1890
|
+
<td align="center" valign="top" width="0.33%"><a href="https://wearecws.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/24895138?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Rajat Sharma"/></td>
|
|
1891
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Casz"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/65105345?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Cesar B."/></td>
|
|
1892
|
+
<td align="center" valign="top" width="0.33%"><a href="https://blog.katsuba.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/10637135?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Igor Katsuba"/></td>
|
|
1893
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.doublespeakgames.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4884483?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Michael Townsend"/></td>
|
|
1894
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/bodtx"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1039550?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="bodtx"/></td>
|
|
1895
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/arthot"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1815294?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Artem"/></td>
|
|
1896
|
+
<td align="center" valign="top" width="0.33%"><a href="https://muniftanjim.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/8050659?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Munif Tanjim"/></td>
|
|
1897
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.qkdreyer.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/717869?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Quentin Dreyer"/></td>
|
|
1898
|
+
<td align="center" valign="top" width="0.33%"><a href="https://iwritethe.codes/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/192728?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Norm MacLennan"/></td>
|
|
1899
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/jnovick"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/7881319?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="jnovick"/></td>
|
|
1900
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.fabianaussems.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/57530?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Fabian Aussems"/></td>
|
|
1901
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/mima0815"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/14311597?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Michael Matzka"/></td>
|
|
1902
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/CraigAllardyce"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9052289?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="CraigAllardyce"/></td>
|
|
1903
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/brunobastosg"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/320122?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bruno Guimarães"/></td>
|
|
1904
|
+
<td align="center" valign="top" width="0.33%"><a href="http://leipert.io/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/2906107?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Lukas Eipert"/></td>
|
|
1905
|
+
<td align="center" valign="top" width="0.33%"><a href="https://max.krauss.io/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/914671?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Maximilian Krauß"/></td>
|
|
1906
|
+
<td align="center" valign="top" width="0.33%"><a href="https://eng.evolution.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/15799569?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Evolution Engineering"/></td>
|
|
1907
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Neonox31"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1135958?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="WEBER Logan"/></td>
|
|
1908
|
+
<td align="center" valign="top" width="0.33%"><a href="https://t.me/mister_cheater"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5055654?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Anton Zhukov"/></td>
|
|
1909
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/beaverusiv"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4149031?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Nicholas Loomans"/></td>
|
|
1910
|
+
<td align="center" valign="top" width="0.33%"><a href="https://icedream.pw/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/807772?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Carl Kittelberger"/></td>
|
|
1911
|
+
<td align="center" valign="top" width="0.33%"><a href="https://patrik.votocek.cz/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/112567?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Patrik Votoček"/></td>
|
|
1912
|
+
<td align="center" valign="top" width="0.33%"><a href="https://kyr.github.io/CV/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/426462?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kyrylo Fedorov"/></td>
|
|
1913
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/claudio-vellage"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/28930612?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Claudio Vellage"/></td>
|
|
1914
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/seb0uil"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5122626?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Seb0uil"/></td>
|
|
1915
|
+
<td align="center" valign="top" width="0.33%"><a href="http://merorafael.info/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3404989?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Rafael Mello"/></td>
|
|
1916
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/tbazin"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9104039?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Théis Bazin"/></td>
|
|
1917
|
+
<td align="center" valign="top" width="0.33%"><a href="http://spencersalisbury.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/8053224?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Spencer Salisbury"/></td>
|
|
1918
|
+
<td align="center" valign="top" width="0.33%"><a href="https://simonecorsi.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5617452?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Simone Corsi"/></td>
|
|
1919
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Bambii556"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/34485027?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bambii"/></td>
|
|
1920
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/ravewill"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/128541928?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Will"/></td>
|
|
1921
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/ArnaudTA"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/33383276?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="ArnaudTA"/></td>
|
|
1922
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/kouak"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/48335?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Benjamin Beret"/></td>
|
|
1923
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/demedos"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/16702156?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Alessandro Diez"/></td>
|
|
1924
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/artlist-scottambrose"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/124692101?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="artlist-scottambrose"/></td>
|
|
1925
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/mercutiodesign"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1114120?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Martin Dreher"/></td>
|
|
1926
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/glensc"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/199095?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Elan Ruusamäe"/></td>
|
|
1927
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Artemoire"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/18062266?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="artemoire"/></td>
|
|
1928
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/pataar"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3403851?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Pieter Willekens"/></td>
|
|
1929
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Djcd"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/761764?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="David Claybourne"/></td>
|
|
1930
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/domharrington"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/848223?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Dom Harrington"/></td>
|
|
1931
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/kseino"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/1378066?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kohei Seino"/></td>
|
|
1932
|
+
<td align="center" valign="top" width="0.33%"><a href="https://www.1stg.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/8336744?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="JounQin"/></td>
|
|
1933
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/elaine-mattos"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/79633988?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Elaine Mattos"/></td>
|
|
1934
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/vitamindck"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/10766587?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="DK"/></td>
|
|
1935
|
+
<td align="center" valign="top" width="0.33%"><a href="http://www.koenbrouwer.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3260168?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Koen Brouwer"/></td>
|
|
1936
|
+
<td align="center" valign="top" width="0.33%"><a href="https://scrumplex.net/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/11587657?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Sefa Eyeoglu"/></td>
|
|
1937
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/crazfb"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/157008803?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Carmi Raz"/></td>
|
|
1938
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/unilynx"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/2772353?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Arnold Hendriks"/></td>
|
|
1939
|
+
<td align="center" valign="top" width="0.33%"><a href="https://baylee.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/119542904?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Baylee Schmeisser"/></td>
|
|
1940
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/andys8"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/13085980?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Andy"/></td>
|
|
1941
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/roberta-pavel"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/26488965?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="roberta-pavel"/></td>
|
|
1942
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/yousinix"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/41103290?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Youssef"/></td>
|
|
1943
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/mpsanchis"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/33475618?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Miguel"/></td>
|
|
1944
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Retr0-01"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/61121754?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Giannis Kepas"/></td>
|
|
1945
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/talyssonoc"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/4325587?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Talysson de Oliveira Cassiano"/></td>
|
|
1946
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Sephyr0s"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/34128667?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Marco"/></td>
|
|
1947
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/enduity"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/19674002?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Endrik Einberg"/></td>
|
|
1948
|
+
<td align="center" valign="top" width="0.33%"><a href="https://note.itswhat.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/38807139?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bryan Lee"/></td>
|
|
1949
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/zk-kb4"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/42388953?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Zack"/></td>
|
|
1950
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/kayw-geek"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/29700073?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kay W."/></td>
|
|
1951
|
+
<td align="center" valign="top" width="0.33%"><a href="https://ffflorian.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5497598?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Florian Imdahl"/></td>
|
|
1952
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/lanthier"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9666344?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="lanthier"/></td>
|
|
1953
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/Teo-ShaoWei"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/6925907?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="ShaoWei Teo"/></td>
|
|
1954
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/danielrentz"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5064304?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Daniel Rentz"/></td>
|
|
1955
|
+
<td align="center" valign="top" width="0.33%"><a href="https://github.com/matejsmisek"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3141623?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Matěj Smíšek"/></td>
|
|
1956
|
+
</tr>
|
|
1957
|
+
</p>
|
|
1958
|
+
|
|
1959
|
+
<!-- markdownlint-restore -->
|
|
1960
|
+
<!-- prettier-ignore-end -->
|
|
1961
|
+
|
|
1962
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
1963
|
+
|
|
1964
|
+
This started as a fork from [node-gitlab-legacy](https://github.com/rest-gitlab/rest-gitlab-legacy) but I ended up rewriting much of the code. Here are the original work's [contributors](https://github.com/rest-gitlab/rest-gitlab-legacy#contributors).
|