@gitbeaker/core 39.10.3 → 39.12.0

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/dist/index.d.ts CHANGED
@@ -9,11 +9,14 @@ type CamelizeString<T extends PropertyKey> = T extends string ? string extends T
9
9
  type Camelize<T> = {
10
10
  [K in keyof T as CamelizeString<K>]: Camelize<T[K]>;
11
11
  };
12
- type Never<T> = {
12
+ type Simplify<T> = T extends infer S ? {
13
+ [K in keyof S]: S[K];
14
+ } : never;
15
+ type Never<T> = Simplify<{
13
16
  [P in keyof T]?: never;
14
- };
17
+ }>;
15
18
  type OneOf<T> = {
16
- [K in keyof T]: Pick<T, K> & Never<Omit<T, K>>;
19
+ [K in keyof T]: Simplify<Pick<T, K> & Never<Omit<T, K>>>;
17
20
  }[keyof T];
18
21
  type OneOrNoneOf<T> = Never<T> | OneOf<T>;
19
22
  type AllOrNone<T extends Record<string, any>> = T | Partial<Record<keyof T, never>>;
@@ -143,25 +146,6 @@ declare class Events<C extends boolean = false> extends BaseResource<C> {
143
146
  }> & AllEventOptions & PaginationRequestOptions<P> & BaseRequestOptions<E>): Promise<GitlabAPIResponse<EventSchema[], C, E, P>>;
144
147
  }
145
148
 
146
- type AccessLevel = 0 | 5 | 10 | 20 | 30 | 40 | 50;
147
- interface AccessRequestSchema extends Record<string, unknown> {
148
- id: number;
149
- username: string;
150
- name: string;
151
- state: string;
152
- created_at: string;
153
- requested_at: string;
154
- }
155
- declare class ResourceAccessRequests<C extends boolean = false> extends BaseResource<C> {
156
- constructor(resourceType: string, options: BaseResourceOptions<C>);
157
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema[], C, E, P>>;
158
- request<E extends boolean = false>(resourceId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema, C, E, void>>;
159
- approve<E extends boolean = false>(resourceId: string | number, userId: number, options?: {
160
- accessLevel?: AccessLevel;
161
- } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema, C, E, void>>;
162
- deny<E extends boolean = false>(resourceId: string | number, userId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
163
- }
164
-
165
149
  interface PersonalAccessTokenSchema extends Record<string, unknown> {
166
150
  id: number;
167
151
  name: string;
@@ -197,6 +181,37 @@ declare class PersonalAccessTokens<C extends boolean = false> extends BaseResour
197
181
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<PersonalAccessTokenSchema, C, E, void>>;
198
182
  }
199
183
 
184
+ interface CustomAttributeSchema extends Record<string, unknown> {
185
+ key: string;
186
+ value: string;
187
+ }
188
+ declare class ResourceCustomAttributes<C extends boolean = false> extends BaseResource<C> {
189
+ constructor(resourceType: string, options: BaseResourceOptions<C>);
190
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema[], C, E, P>>;
191
+ remove<E extends boolean = false>(resourceId: string | number, customAttributeId: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
192
+ set<E extends boolean = false>(resourceId: string | number, customAttributeId: string, value: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema, C, E, void>>;
193
+ show<E extends boolean = false>(resourceId: string | number, customAttributeId: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema, C, E, void>>;
194
+ }
195
+
196
+ type AccessLevel = 0 | 5 | 10 | 20 | 30 | 40 | 50;
197
+ interface AccessRequestSchema extends Record<string, unknown> {
198
+ id: number;
199
+ username: string;
200
+ name: string;
201
+ state: string;
202
+ created_at: string;
203
+ requested_at: string;
204
+ }
205
+ declare class ResourceAccessRequests<C extends boolean = false> extends BaseResource<C> {
206
+ constructor(resourceType: string, options: BaseResourceOptions<C>);
207
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema[], C, E, P>>;
208
+ request<E extends boolean = false>(resourceId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema, C, E, void>>;
209
+ approve<E extends boolean = false>(resourceId: string | number, userId: number, options?: {
210
+ accessLevel?: AccessLevel;
211
+ } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AccessRequestSchema, C, E, void>>;
212
+ deny<E extends boolean = false>(resourceId: string | number, userId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
213
+ }
214
+
200
215
  interface UserSchema extends Record<string, unknown> {
201
216
  id: number;
202
217
  name: string;
@@ -392,6 +407,11 @@ type AllUserProjectsOptions = {
392
407
  };
393
408
  declare class Users<C extends boolean = false> extends BaseResource<C> {
394
409
  activate<E extends boolean = false>(userId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
410
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: AllUsersOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
411
+ withCustomAttributes: true;
412
+ }): Promise<GitlabAPIResponse<((UserSchema | ExpandedUserSchema) & {
413
+ custom_attributes: CustomAttributeSchema[];
414
+ })[], C, E, P>>;
395
415
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: AllUsersOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(UserSchema | ExpandedUserSchema)[], C, E, P>>;
396
416
  allActivities<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: {
397
417
  from?: string;
@@ -571,7 +591,7 @@ type AllGroupProjectsOptions = {
571
591
  withMergeRequestsEnabled?: boolean;
572
592
  withShared?: boolean;
573
593
  includeSubgroups?: boolean;
574
- min_accessLevel?: number;
594
+ minAccessLevel?: number;
575
595
  withCustomAttributes?: boolean;
576
596
  withSecurityReports?: boolean;
577
597
  };
@@ -641,38 +661,37 @@ type AllProvisionedUsersOptions = {
641
661
  createdBefore?: string;
642
662
  };
643
663
  declare class Groups<C extends boolean = false> extends BaseResource<C> {
644
- all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options?: {
664
+ all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options: {
665
+ withCustomAttributes: true;
666
+ } & AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(GroupSchema & {
667
+ custom_attributes: CustomAttributeSchema[];
668
+ })[], C, E, P>>;
669
+ all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options: {
645
670
  statistics: true;
646
671
  } & AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(GroupSchema & {
647
672
  statistics: GroupStatisticsSchema;
648
673
  })[], C, E, P>>;
674
+ all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options?: AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<GroupSchema[], C, E, P>>;
649
675
  allDescendantGroups<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: {
650
676
  statistics: true;
651
677
  } & AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(GroupSchema & {
652
678
  statistics: GroupStatisticsSchema;
653
679
  })[], C, E, P>>;
680
+ allDescendantGroups<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<GroupSchema[], C, E, P>>;
654
681
  allProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
655
682
  simple: true;
656
- sharedOnly?: boolean;
657
- } & AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<SimpleProjectSchema[], C, E, P>>;
658
- allProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
659
- simple?: boolean;
660
- sharedOnly?: boolean;
661
- } & AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectSchema[], C, E, P>>;
683
+ } & AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CondensedProjectSchema[], C, E, P>>;
684
+ allProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectSchema[], C, E, P>>;
662
685
  allSharedProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
663
686
  simple: true;
664
687
  } & AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CondensedProjectSchema[], C, E, P>>;
665
- allSharedProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
666
- simple?: boolean;
667
- } & AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectSchema[], C, E, P>>;
688
+ allSharedProjects<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllGroupProjectsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectSchema[], C, E, P>>;
668
689
  allSubgroups<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
669
690
  statistics: true;
670
691
  } & AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(GroupSchema & {
671
692
  statistics: GroupStatisticsSchema;
672
693
  })[], C, E, P>>;
673
- allSubgroups<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
674
- statistics?: boolean;
675
- } & AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<GroupSchema[], C, E, P>>;
694
+ allSubgroups<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllGroupsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<GroupSchema[], C, E, P>>;
676
695
  allProvisionedUsers<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllProvisionedUsersOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<UserSchema[], C, E, P>>;
677
696
  allTransferLocations<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
678
697
  search?: string;
@@ -1044,6 +1063,11 @@ type AllForksOptions = {
1044
1063
  updatedAfter?: string;
1045
1064
  };
1046
1065
  declare class Projects<C extends boolean = false> extends BaseResource<C> {
1066
+ all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options: PaginationRequestOptions<P> & AllProjectsOptions & Sudo & ShowExpanded<E> & {
1067
+ withCustomAttributes: true;
1068
+ }): Promise<GitlabAPIResponse<(ProjectSchema & {
1069
+ custom_attributes: CustomAttributeSchema[];
1070
+ })[], C, E, P>>;
1047
1071
  all<E extends boolean = false, P extends PaginationTypes = 'keyset'>(options: PaginationRequestOptions<P> & AllProjectsOptions & Sudo & ShowExpanded<E> & {
1048
1072
  simple: true;
1049
1073
  }): Promise<GitlabAPIResponse<SimpleProjectSchema[], C, E, P>>;
@@ -1948,18 +1972,6 @@ declare class ResourceBadges<C extends boolean = false> extends BaseResource<C>
1948
1972
  show<E extends boolean = false>(resourceId: string | number, badgeId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<BadgeSchema, C, E, void>>;
1949
1973
  }
1950
1974
 
1951
- interface CustomAttributeSchema extends Record<string, unknown> {
1952
- key: string;
1953
- value: string;
1954
- }
1955
- declare class ResourceCustomAttributes<C extends boolean = false> extends BaseResource<C> {
1956
- constructor(resourceType: string, options: BaseResourceOptions<C>);
1957
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema[], C, E, P>>;
1958
- remove<E extends boolean = false>(resourceId: string | number, customAttributeId: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
1959
- set<E extends boolean = false>(resourceId: string | number, customAttributeId: string, value: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema, C, E, void>>;
1960
- show<E extends boolean = false>(resourceId: string | number, customAttributeId: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CustomAttributeSchema, C, E, void>>;
1961
- }
1962
-
1963
1975
  type MetricType = 'deployment_frequency' | 'lead_time_for_changes' | 'time_to_restore_service' | 'change_failure_rate';
1964
1976
  interface DORA4MetricSchema extends Record<string, unknown> {
1965
1977
  date: string;
@@ -2175,6 +2187,11 @@ interface CommitAction {
2175
2187
  /** When true/false enables/disables the execute flag on the file. Only considered for chmod action. */
2176
2188
  execute_filemode?: boolean;
2177
2189
  }
2190
+ interface CommitStatsSchema extends Record<string, unknown> {
2191
+ additions: number;
2192
+ deletions: number;
2193
+ total: number;
2194
+ }
2178
2195
  interface CondensedCommitSchema extends Record<string, unknown> {
2179
2196
  id: string;
2180
2197
  short_id: string;
@@ -2200,11 +2217,7 @@ interface ExpandedCommitSchema extends CommitSchema {
2200
2217
  sha: string;
2201
2218
  status: string;
2202
2219
  };
2203
- stats: {
2204
- additions: number;
2205
- deletions: number;
2206
- total: number;
2207
- };
2220
+ stats: CommitStatsSchema;
2208
2221
  status: string;
2209
2222
  }
2210
2223
  interface GPGSignatureSchema extends Record<string, unknown> {
@@ -2318,6 +2331,23 @@ type EditPipelineStatusOptions = {
2318
2331
  pipelineId?: number;
2319
2332
  };
2320
2333
  declare class Commits<C extends boolean = false> extends BaseResource<C> {
2334
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: AllCommitsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
2335
+ withStats: true;
2336
+ }): Promise<GitlabAPIResponse<(CommitSchema & {
2337
+ stats: CommitStatsSchema;
2338
+ })[], C, E, P>>;
2339
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: AllCommitsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
2340
+ trailers: true;
2341
+ }): Promise<GitlabAPIResponse<(CommitSchema & {
2342
+ trailers: Record<string, unknown>;
2343
+ })[], C, E, P>>;
2344
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: AllCommitsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
2345
+ withStats: true;
2346
+ trailers: true;
2347
+ }): Promise<GitlabAPIResponse<(CommitSchema & {
2348
+ trailers: Record<string, unknown>;
2349
+ stats: CommitStatsSchema;
2350
+ })[], C, E, P>>;
2321
2351
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: AllCommitsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CommitSchema[], C, E, P>>;
2322
2352
  allComments<E extends boolean = false>(projectId: string | number, sha: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CondensedCommitCommentSchema[], C, E, void>>;
2323
2353
  allDiscussions<E extends boolean = false>(projectId: string | number, sha: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<DiscussionSchema[], C, E, void>>;
@@ -2383,6 +2413,58 @@ declare class TodoLists<C extends boolean = false> extends BaseResource<C> {
2383
2413
  done<E extends boolean = false>(options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
2384
2414
  }
2385
2415
 
2416
+ interface SimpleLabelSchema extends Record<string, unknown> {
2417
+ id: number;
2418
+ name: string;
2419
+ description: null | string;
2420
+ description_html: string;
2421
+ text_color: string;
2422
+ color: string;
2423
+ }
2424
+ interface LabelSchema extends SimpleLabelSchema {
2425
+ open_issues_count: number;
2426
+ closed_issues_count: number;
2427
+ open_merge_requests_count: number;
2428
+ subscribed: boolean;
2429
+ priority: number;
2430
+ is_project_label: boolean;
2431
+ }
2432
+ interface LabelCountSchema extends Record<string, unknown> {
2433
+ open_issues_count: number;
2434
+ closed_issues_count: number;
2435
+ open_merge_requests_count: number;
2436
+ }
2437
+ declare class ResourceLabels<C extends boolean = false> extends BaseResource<C> {
2438
+ constructor(resourceType: string, options: BaseResourceOptions<C>);
2439
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options: {
2440
+ withCounts: true;
2441
+ includeAncestorGroups?: boolean;
2442
+ search?: string;
2443
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(LabelSchema & LabelCountSchema)[], C, E, P>>;
2444
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: {
2445
+ includeAncestorGroups?: boolean;
2446
+ search?: string;
2447
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
2448
+ create<E extends boolean = false>(resourceId: string | number, labelName: string, color: string, options?: {
2449
+ description?: string;
2450
+ priority?: number;
2451
+ } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2452
+ edit<E extends boolean = false>(resourceId: number | string, labelId: number | string, options: OneOf<{
2453
+ newName: string;
2454
+ color: string;
2455
+ }> & {
2456
+ description?: string;
2457
+ priority?: number;
2458
+ } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2459
+ promote<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2460
+ remove<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
2461
+ show<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: {
2462
+ includeAncestorGroups?: boolean;
2463
+ } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2464
+ subscribe<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2465
+ unsubscribe<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2466
+ }
2467
+
2386
2468
  interface DiffRefsSchema {
2387
2469
  base_sha: string;
2388
2470
  head_sha: string;
@@ -2448,7 +2530,7 @@ interface MergeRequestSchema extends CondensedMergeRequestSchema {
2448
2530
  merged_by: MappedOmit<UserSchema, 'created_at'> | null;
2449
2531
  merged_at: string | null;
2450
2532
  closed_by: MappedOmit<UserSchema, 'created_at'> | null;
2451
- closed_at: MappedOmit<UserSchema, 'created_at'> | null;
2533
+ closed_at: string | null;
2452
2534
  target_branch: string;
2453
2535
  source_branch: string;
2454
2536
  user_notes_count: number;
@@ -2460,7 +2542,7 @@ interface MergeRequestSchema extends CondensedMergeRequestSchema {
2460
2542
  reviewers: MappedOmit<UserSchema, 'created_at'>[] | null;
2461
2543
  source_project_id: number;
2462
2544
  target_project_id: number;
2463
- labels: string[] | null;
2545
+ labels: string[] | SimpleLabelSchema[];
2464
2546
  draft: boolean;
2465
2547
  work_in_progress: boolean;
2466
2548
  milestone: MilestoneSchema | null;
@@ -2496,6 +2578,12 @@ interface ExpandedMergeRequestSchema extends MergeRequestSchema {
2496
2578
  can_merge: boolean;
2497
2579
  };
2498
2580
  }
2581
+ interface MergeRequestSchemaWithExpandedLabels extends MergeRequestSchema {
2582
+ labels: SimpleLabelSchema[];
2583
+ }
2584
+ interface MergeRequestSchemaWithBasicLabels extends MergeRequestSchema {
2585
+ labels: string[];
2586
+ }
2499
2587
  interface MergeRequestTodoSchema extends TodoSchema {
2500
2588
  project: SimpleProjectSchema;
2501
2589
  target_type: 'MergeRequest';
@@ -2588,12 +2676,20 @@ type EditMergeRequestOptions = {
2588
2676
  declare class MergeRequests<C extends boolean = false> extends BaseResource<C> {
2589
2677
  accept<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: AcceptMergeRequestOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ExpandedMergeRequestSchema, C, E, void>>;
2590
2678
  addSpentTime<E extends boolean = false>(projectId: string | number, mergerequestIId: number, duration: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<TimeStatsSchema, C, E, void>>;
2591
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>({ projectId, groupId, ...options }?: AllMergeRequestsOptions & OneOrNoneOf<{
2679
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options: OneOrNoneOf<{
2680
+ projectId: string | number;
2681
+ groupId: string | number;
2682
+ }> & PaginationRequestOptions<P> & AllMergeRequestsOptions & {
2683
+ withLabelsDetails: true;
2684
+ }): Promise<GitlabAPIResponse<MergeRequestSchemaWithExpandedLabels[], C, E, P>>;
2685
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: OneOrNoneOf<{
2592
2686
  projectId: string | number;
2593
2687
  groupId: string | number;
2594
- }> & PaginationRequestOptions<P> & BaseRequestOptions<E>): Promise<GitlabAPIResponse<MergeRequestSchema[], C, E, P>>;
2595
- allDiffs<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestDiffSchema[], C, E, void>>;
2596
- allCommits<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CommitSchema[], C, E, void>>;
2688
+ }> & PaginationRequestOptions<P> & AllMergeRequestsOptions & BaseRequestOptions<E> & {
2689
+ withLabelsDetails?: false;
2690
+ }): Promise<GitlabAPIResponse<MergeRequestSchemaWithBasicLabels[], C, E, P>>;
2691
+ allDiffs<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestDiffSchema[], C, E, P>>;
2692
+ allCommits<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<CommitSchema[], C, E, P>>;
2597
2693
  allDiffVersions<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestDiffVersionsSchema[], C, E, void>>;
2598
2694
  allIssuesClosed<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<IssueSchema[], C, E, void>>;
2599
2695
  allParticipants<E extends boolean = false>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MappedOmit<UserSchema, 'created_at'>[], C, E, void>>;
@@ -2650,7 +2746,7 @@ interface IssueSchema extends Record<string, unknown> {
2650
2746
  created_at: string;
2651
2747
  moved_to_id?: string;
2652
2748
  iid: number;
2653
- labels?: string[];
2749
+ labels: string[] | SimpleLabelSchema[];
2654
2750
  upvotes: number;
2655
2751
  downvotes: number;
2656
2752
  merge_requests_count: number;
@@ -2687,6 +2783,12 @@ interface IssueSchema extends Record<string, unknown> {
2687
2783
  };
2688
2784
  service_desk_reply_to?: string;
2689
2785
  }
2786
+ interface IssueSchemaWithExpandedLabels extends IssueSchema {
2787
+ labels: SimpleLabelSchema[];
2788
+ }
2789
+ interface IssueSchemaWithBasicLabels extends IssueSchema {
2790
+ labels: string[];
2791
+ }
2690
2792
  type AllIssuesOptions = {
2691
2793
  assigneeId?: number;
2692
2794
  assigneeUsername?: string[];
@@ -2760,10 +2862,18 @@ declare class Issues<C extends boolean = false> extends BaseResource<C> {
2760
2862
  summary?: string;
2761
2863
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<TimeStatsSchema, C, E, void>>;
2762
2864
  addTimeEstimate<E extends boolean = false>(projectId: string | number, issueIId: number, duration: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<TimeStatsSchema, C, E, void>>;
2763
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>({ projectId, groupId, ...options }?: OneOrNoneOf<{
2865
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options: OneOrNoneOf<{
2866
+ projectId: string | number;
2867
+ groupId: string | number;
2868
+ }> & PaginationRequestOptions<P> & AllIssuesOptions & {
2869
+ withLabelsDetails: true;
2870
+ }): Promise<GitlabAPIResponse<IssueSchemaWithExpandedLabels[], C, E, P>>;
2871
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: OneOrNoneOf<{
2764
2872
  projectId: string | number;
2765
2873
  groupId: string | number;
2766
- }> & PaginationRequestOptions<P> & AllIssuesOptions & BaseRequestOptions<E>): Promise<GitlabAPIResponse<IssueSchema[], C, E, P>>;
2874
+ }> & PaginationRequestOptions<P> & AllIssuesOptions & BaseRequestOptions<E> & {
2875
+ withLabelsDetails?: false;
2876
+ }): Promise<GitlabAPIResponse<IssueSchemaWithBasicLabels[], C, E, P>>;
2767
2877
  allMetricImages<E extends boolean = false>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MetricImageSchema[], C, E, void>>;
2768
2878
  allParticipants<E extends boolean = false>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MappedOmit<UserSchema, 'created_at'>[], C, E, void>>;
2769
2879
  allRelatedMergeRequests<E extends boolean = false>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestSchema[], C, E, void>>;
@@ -2854,47 +2964,6 @@ declare class ResourceMilestones<C extends boolean = false> extends BaseResource
2854
2964
  show<E extends boolean = false>(resourceId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema, C, E, void>>;
2855
2965
  }
2856
2966
 
2857
- interface LabelSchema extends Record<string, unknown> {
2858
- id: number;
2859
- name: string;
2860
- color: string;
2861
- text_color: string;
2862
- description: string;
2863
- description_html: string;
2864
- open_issues_count: number;
2865
- closed_issues_count: number;
2866
- open_merge_requests_count: number;
2867
- subscribed: boolean;
2868
- priority: number;
2869
- is_project_label: boolean;
2870
- }
2871
- declare class ResourceLabels<C extends boolean = false> extends BaseResource<C> {
2872
- constructor(resourceType: string, options: BaseResourceOptions<C>);
2873
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: {
2874
- withCounts?: boolean;
2875
- includeAncestorGroups?: boolean;
2876
- search?: string;
2877
- } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
2878
- create<E extends boolean = false>(resourceId: string | number, labelName: string, color: string, options?: {
2879
- description?: string;
2880
- priority?: number;
2881
- } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2882
- edit<E extends boolean = false>(resourceId: number | string, labelId: number | string, options: OneOf<{
2883
- newName: string;
2884
- color: string;
2885
- }> & {
2886
- description?: string;
2887
- priority?: number;
2888
- } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2889
- promote<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2890
- remove<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
2891
- show<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: {
2892
- includeAncestorGroups?: boolean;
2893
- } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2894
- subscribe<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2895
- unsubscribe<E extends boolean = false>(resourceId: string | number, labelId: number | string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema, C, E, void>>;
2896
- }
2897
-
2898
2967
  interface IssueBoardListSchema extends Record<string, unknown> {
2899
2968
  id: number;
2900
2969
  label: Pick<LabelSchema, 'name' | 'color' | 'description'>;
@@ -3069,9 +3138,12 @@ interface WikiAttachmentSchema extends Record<string, unknown> {
3069
3138
  }
3070
3139
  declare class ResourceWikis<C extends boolean = false> extends BaseResource<C> {
3071
3140
  constructor(resourceType: string, options: BaseResourceOptions<C>);
3072
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: {
3073
- withContent?: boolean;
3074
- } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
3141
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options: {
3142
+ withContent: true;
3143
+ } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<(WikiSchema & {
3144
+ content: string;
3145
+ })[], C, E, P>>;
3146
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(resourceId: string | number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
3075
3147
  create<E extends boolean = false>(resourceId: string | number, content: string, title: string, options?: {
3076
3148
  format?: string;
3077
3149
  } & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<WikiSchema, C, E, void>>;
@@ -5112,19 +5184,26 @@ interface ProtectedBranchSchema extends Record<string, unknown> {
5112
5184
  allow_force_push: boolean;
5113
5185
  code_owner_approval_required: boolean;
5114
5186
  }
5115
- type ProtectedBranchAllowOptions = OneOf<{
5116
- user_id: number;
5117
- group_id: number;
5118
- access_level: number;
5187
+ type CreateProtectedBranchAllowOptions = OneOf<{
5188
+ userId: number;
5189
+ groupId: number;
5190
+ accessLevel: ProtectedBranchAccessLevel;
5119
5191
  }>;
5120
- type EditsProtectedBranchAllowOptions = {
5192
+ type EditProtectedBranchAllowOptions = {
5121
5193
  _destroy?: boolean;
5122
- } & ProtectedBranchAllowOptions;
5194
+ } & ({
5195
+ userId: number;
5196
+ } | {
5197
+ groupId: number;
5198
+ } | {
5199
+ accessLevel: ProtectedBranchAccessLevel;
5200
+ id: number;
5201
+ });
5123
5202
  type CreateProtectedBranchOptions = {
5124
5203
  allowForcePush?: boolean;
5125
- allowedToMerge?: ProtectedBranchAllowOptions[];
5126
- allowedToPush?: ProtectedBranchAllowOptions[];
5127
- allowedToUnprotect?: ProtectedBranchAllowOptions[];
5204
+ allowedToMerge?: CreateProtectedBranchAllowOptions[];
5205
+ allowedToPush?: CreateProtectedBranchAllowOptions[];
5206
+ allowedToUnprotect?: CreateProtectedBranchAllowOptions[];
5128
5207
  codeOwnerApprovalRequired?: boolean;
5129
5208
  mergeAccessLevel?: ProtectedBranchAccessLevel;
5130
5209
  pushAccessLevel?: ProtectedBranchAccessLevel;
@@ -5132,9 +5211,9 @@ type CreateProtectedBranchOptions = {
5132
5211
  };
5133
5212
  type EditProtectedBranchOptions = {
5134
5213
  allowForcePush?: boolean;
5135
- allowedToMerge?: EditsProtectedBranchAllowOptions[];
5136
- allowedToPush?: EditsProtectedBranchAllowOptions[];
5137
- allowedToUnprotect?: EditsProtectedBranchAllowOptions[];
5214
+ allowedToMerge?: EditProtectedBranchAllowOptions[];
5215
+ allowedToPush?: EditProtectedBranchAllowOptions[];
5216
+ allowedToUnprotect?: EditProtectedBranchAllowOptions[];
5138
5217
  codeOwnerApprovalRequired?: boolean;
5139
5218
  };
5140
5219
  declare class ProtectedBranches<C extends boolean = false> extends BaseResource<C> {
@@ -5847,6 +5926,15 @@ declare class ProjectIterations<C extends boolean = false> extends ResourceItera
5847
5926
  }
5848
5927
 
5849
5928
  interface ProjectLabels<C extends boolean = false> extends ResourceLabels<C> {
5929
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: {
5930
+ withCounts: true;
5931
+ includeAncestorGroups?: boolean;
5932
+ search?: string;
5933
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(LabelSchema & LabelCountSchema)[], C, E, P>>;
5934
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: {
5935
+ includeAncestorGroups?: boolean;
5936
+ search?: string;
5937
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
5850
5938
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: {
5851
5939
  withCounts?: boolean;
5852
5940
  includeAncestorGroups?: boolean;
@@ -5981,7 +6069,6 @@ interface ReleaseSchema extends Record<string, unknown> {
5981
6069
  tag_name: string;
5982
6070
  description: string | null;
5983
6071
  name: string | null;
5984
- description_html: string;
5985
6072
  created_at: string;
5986
6073
  released_at: string | null;
5987
6074
  user: MappedOmit<UserSchema, 'created_at'>;
@@ -5996,8 +6083,22 @@ interface ReleaseSchema extends Record<string, unknown> {
5996
6083
  evidence_file_path: string;
5997
6084
  };
5998
6085
  evidences: ReleaseEvidence[] | null;
6086
+ _links: {
6087
+ closed_issues_url: string;
6088
+ closed_merge_requests_url: string;
6089
+ edit_url: string;
6090
+ merged_merge_requests_url: string;
6091
+ opened_issues_url: string;
6092
+ opened_merge_requests_url: string;
6093
+ self: string;
6094
+ };
5999
6095
  }
6000
6096
  declare class ProjectReleases<C extends boolean = false> extends BaseResource<C> {
6097
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: PaginationRequestOptions<P> & BaseRequestOptions<E> & {
6098
+ includeHtmlDescription: true;
6099
+ }): Promise<GitlabAPIResponse<(ReleaseSchema & {
6100
+ description_html: string;
6101
+ })[], C, E, P>>;
6001
6102
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: PaginationRequestOptions<P> & BaseRequestOptions<E>): Promise<GitlabAPIResponse<ReleaseSchema[], C, E, P>>;
6002
6103
  create<E extends boolean = false>(projectId: string | number, options?: BaseRequestOptions<E>): Promise<GitlabAPIResponse<ReleaseSchema, C, E, void>>;
6003
6104
  createEvidence<E extends boolean = false>(projectId: string | number, tagName: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<number, C, E, void>>;
@@ -6197,6 +6298,12 @@ declare class ProjectVulnerabilities<C extends boolean = false> extends BaseReso
6197
6298
  }
6198
6299
 
6199
6300
  interface ProjectWikis<C extends boolean = false> extends ResourceWikis<C> {
6301
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options: {
6302
+ withContent: true;
6303
+ } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<(WikiSchema & {
6304
+ content: string;
6305
+ })[], C, E, P>>;
6306
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
6200
6307
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: {
6201
6308
  withContent?: boolean;
6202
6309
  } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
@@ -6690,7 +6797,7 @@ interface EpicSchema extends Record<string, unknown> {
6690
6797
  created_at: string;
6691
6798
  updated_at: string;
6692
6799
  closed_at: string;
6693
- labels?: string[];
6800
+ labels: string[] | SimpleLabelSchema[];
6694
6801
  upvotes: number;
6695
6802
  downvotes: number;
6696
6803
  _links: {
@@ -6699,6 +6806,12 @@ interface EpicSchema extends Record<string, unknown> {
6699
6806
  group: string;
6700
6807
  };
6701
6808
  }
6809
+ interface EpicSchemaWithExpandedLabels extends EpicSchema {
6810
+ labels: SimpleLabelSchema[];
6811
+ }
6812
+ interface EpicSchemaWithBasicLabels extends EpicSchema {
6813
+ labels: string[];
6814
+ }
6702
6815
  interface EpicTodoSchema extends TodoSchema {
6703
6816
  group: Pick<GroupSchema, 'id' | 'name' | 'path' | 'kind' | 'full_path' | 'parent_id'>;
6704
6817
  target_type: 'Epic';
@@ -6751,7 +6864,12 @@ type EditEpicOptions = {
6751
6864
  color?: string;
6752
6865
  };
6753
6866
  declare class Epics<C extends boolean = false> extends BaseResource<C> {
6754
- all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllEpicsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<EpicSchema[], C, E, P>>;
6867
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: AllEpicsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
6868
+ withLabelsDetails: true;
6869
+ }): Promise<GitlabAPIResponse<EpicSchemaWithExpandedLabels[], C, E, P>>;
6870
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllEpicsOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E> & {
6871
+ withLabelsDetails?: false;
6872
+ }): Promise<GitlabAPIResponse<EpicSchemaWithBasicLabels[], C, E, P>>;
6755
6873
  create<E extends boolean = false>(groupId: string | number, title: string, options?: CreateEpicOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<EpicSchema, C, E, void>>;
6756
6874
  createTodo<E extends boolean = false>(groupId: string | number, epicIId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<EpicTodoSchema, C, E, void>>;
6757
6875
  edit<E extends boolean = false>(groupId: string | number, epicIId: number, options?: EditEpicOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MappedOmit<EpicSchema, '_links'>, C, E, void>>;
@@ -6924,6 +7042,15 @@ declare class GroupIterations<C extends boolean = false> extends ResourceIterati
6924
7042
  }
6925
7043
 
6926
7044
  interface GroupLabels<C extends boolean = false> extends ResourceLabels<C> {
7045
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: {
7046
+ withCounts: true;
7047
+ includeAncestorGroups?: boolean;
7048
+ search?: string;
7049
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<(LabelSchema & LabelCountSchema)[], C, E, P>>;
7050
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: {
7051
+ includeAncestorGroups?: boolean;
7052
+ search?: string;
7053
+ } & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelSchema[], C, E, P>>;
6927
7054
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
6928
7055
  withCounts?: boolean;
6929
7056
  includeAncestorGroups?: boolean;
@@ -7152,6 +7279,12 @@ declare class GroupVariables<C extends boolean = false> extends ResourceVariable
7152
7279
  }
7153
7280
 
7154
7281
  interface GroupWikis<C extends boolean = false> extends ResourceWikis<C> {
7282
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: {
7283
+ withContent: true;
7284
+ } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<(WikiSchema & {
7285
+ content: string;
7286
+ })[], C, E, P>>;
7287
+ all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
7155
7288
  all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: {
7156
7289
  withContent?: boolean;
7157
7290
  } & Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<WikiSchema[], C, E, P>>;
@@ -7496,4 +7629,4 @@ declare class Gitlab<C extends boolean = false> extends BaseResource<C> {
7496
7629
  constructor(options: BaseResourceOptions<C>);
7497
7630
  }
7498
7631
 
7499
- export { AcceptMergeRequestOptions, AccessLevel, AccessRequestSchema, AccessTokenSchema, AccessTokenScopes, AddMemeberOptions, AddResourceHookOptions, Agents, AlertManagement, AllAuditEventOptions, AllCommitsOptions, AllDeploymentsOptions, AllEpicsOptions, AllEventOptions, AllForksOptions, AllGroupProjectsOptions, AllGroupsOptions, AllIssueStatisticsOptions, AllIssuesOptions, AllIterationsOptions, AllMembersOptions, AllMergeRequestsOptions, AllMilestonesOptions, AllPackageOptions, AllPersonalAccessTokenOptions, AllPipelinesOptions, AllProjectsOptions, AllProvisionedUsersOptions, AllRepositoryTreesOptions, AllRunnersOptions, AllSearchOptions, AllUserProjectsOptions, AllUsersOptions, AllowedAgentSchema, ApplicationAppearance, ApplicationAppearanceSchema, ApplicationPlanLimitOptions, ApplicationPlanLimitSchema, ApplicationPlanLimits, ApplicationSchema, ApplicationSettings, ApplicationSettingsSchema, ApplicationStatisticSchema, ApplicationStatistics, Applications, ApprovalRuleSchema, ApprovalStateSchema, ApprovedByEntity, ArchiveType, ArtifactSchema, AsStream, AuditEventSchema, AuditEvents, Avatar, AvatarSchema, AwardEmojiSchema, BadgeSchema, BaseExternalStatusCheckSchema, BasePaginationRequestOptions, BaseRequestOptions, BillableGroupMemberMembershipSchema, BillableGroupMemberSchema, BlobSchema, BranchSchema, Branches, BridgeSchema, BroadcastMessageOptions, BroadcastMessageSchema, BroadcastMessages, BurndownChartEventSchema, CICDVariableSchema, Camelize, ClusterAgentSchema, ClusterAgentTokenSchema, CommitAction, CommitCommentSchema, CommitDiffSchema, CommitDiscussionNoteSchema, CommitDiscussionSchema, CommitDiscussions, CommitReferenceSchema, CommitSchema, CommitSignatureSchema, CommitStatusSchema, CommitablePipelineStatus, Commits, Composer, ComposerPackageMetadataSchema, ComposerV1BaseRepositorySchema, ComposerV1PackagesSchema, ComposerV2BaseRepositorySchema, Conan, CondensedBadgeSchema, CondensedCommitCommentSchema, CondensedCommitSchema, CondensedDeployKeySchema, CondensedEnvironmentSchema, CondensedEpicLinkSchema, CondensedGroupSchema, CondensedJobSchema, CondensedMemberSchema, CondensedMergeRequestSchema, CondensedNamespaceSchema, CondensedPipelineScheduleSchema, CondensedProjectSchema, CondensedRegistryRepositorySchema, CondensedRegistryRepositoryTagSchema, ContainerRegistry, CreateAndEditPushRuleOptions, CreateApprovalRuleOptions, CreateCommitOptions, CreateEpicOptions, CreateFeatureFlagOptions, CreateGeoNodeOptions, CreateGroupOptions, CreateIssueOptions, CreateMergeRequestOptions, CreateProjectOptions, CreateProtectedBranchOptions, CreateRepositoryFileOptions, CreateRunnerOptions, CreateSnippetOptions, CreateSystemHook, CreateUserCIRunnerOptions, CreateUserOptions, CustomAttributeSchema, CustomSettingLevelEmailEvents, DORA4MetricSchema, DashboardAnnotationSchema, DashboardAnnotations, Debian, DependencyProxy, DeployKeyProjectsSchema, DeployKeySchema, DeployKeys, DeployTokenSchema, DeployTokenScope, DeployTokens, DeployableSchema, DeploymentApprovalStatusSchema, DeploymentSchema, DeploymentStatus, Deployments, DiffRefsSchema, DiscussionNotePositionBaseSchema, DiscussionNotePositionImageSchema, DiscussionNotePositionOptions, DiscussionNotePositionSchema, DiscussionNotePositionTextSchema, DiscussionNoteSchema, DiscussionSchema, DockerfileTemplates, EditApprovalRuleOptions, EditBadgeOptions, EditChangelogOptions, EditConfigurationOptions, EditEpicOptions, EditFeatureFlagOptions, EditGeoNodeOptions, EditGroupOptions, EditIssueOptions, EditMergeRequestOptions, EditNotificationSettingsOptions, EditPipelineStatusOptions, EditProjectOptions, EditProtectedBranchOptions, EditRepositoryFileOptions, EditResourceHookOptions, EditRunnerOptions, EditSnippetOptions, EditUserOptions, EditsProtectedBranchAllowOptions, EnvironmentSchema, EnvironmentTier, Environments, EpicAwardEmojis, EpicDiscussions, EpicIssueSchema, EpicIssues, EpicLabelEvents, EpicLinkSchema, EpicLinks, EpicNoteSchema, EpicNotes, EpicSchema, EpicTodoSchema, Epics, ErrorTrackingClientKeySchema, ErrorTrackingClientKeys, ErrorTrackingSettings, ErrorTrackingSettingsSchema, EventSchema, Events, ExpandedCommitSchema, ExpandedDeployKeySchema, ExpandedEpicIssueSchema, ExpandedGroupSchema, ExpandedHookSchema, ExpandedIssueLinkSchema, ExpandedMergeRequestDiffVersionsSchema, ExpandedMergeRequestSchema, ExpandedPackageSchema, ExpandedPipelineScheduleSchema, ExpandedPipelineSchema, ExpandedRepositoryImportStatusSchema, ExpandedResponse, ExpandedRunnerSchema, ExpandedSnippetSchema, ExpandedUserSchema, ExperimentGateSchema, ExperimentSchema, Experiments, ExportStatusSchema, ExtendedProtectedBranchAccessLevelSchema, ExternalStatusCheckProtectedBranchesSchema, ExternalStatusChecks, FailedRelationSchema, FeatureFlagSchema, FeatureFlagStrategySchema, FeatureFlagStrategyScopeSchema, FeatureFlagUserListSchema, FeatureFlagUserLists, FeatureFlags, ForkProjectOptions, FreezePeriodSchema, FreezePeriods, GPGSignatureSchema, GeoNodeFailureSchema, GeoNodeSchema, GeoNodeStatusSchema, GeoNodes, GitLabCIYMLTemplates, GitignoreTemplates, Gitlab, GitlabAPIResponse, GitlabPages, GoProxy, GoProxyModuleVersionSchema, GroupAccessRequests, GroupAccessTokens, GroupActivityAnalytics, GroupAnalyticsIssuesCountSchema, GroupAnalyticsMRsCountSchema, GroupAnalyticsNewMembersCountSchema, GroupBadgeSchema, GroupBadges, GroupCustomAttributes, GroupDORA4Metrics, GroupHookSchema, GroupHooks, GroupImportExports, GroupInvitations, GroupIssueBoards, GroupIterations, GroupLDAPLinks, GroupLabels, GroupMemberRoles, GroupMembers, GroupMilestones, GroupProtectedEnvironments, GroupPushRules, GroupRelationExportStatusSchema, GroupRelationExports, GroupReleases, GroupRepositoryStorageMoveSchema, GroupRepositoryStorageMoves, GroupSAMLIdentities, GroupSCIMIdentities, GroupSchema, GroupStatisticsSchema, GroupVariables, GroupWikis, Groups, GrouptIssueBoardSchema, Helm, HookSchema, IdentitySchema, ImpersonationTokenScope, ImpersonationTokenState, Import, ImportStatusSchema, IncludeInherited, InstanceLevelCICDVariables, IntegrationSchema, Integrations, InvitationSchema, IsForm, IssueAwardEmojis, IssueBoardListSchema, IssueBoardSchema, IssueDiscussions, IssueIterationEvents, IssueLabelEvents, IssueLinkSchema, IssueLinks, IssueMilestoneEvents, IssueNoteAwardEmojis, IssueNoteSchema, IssueNotes, IssueSchema, IssueStateEvents, IssueWeightEvents, Issues, IssuesStatistics, IterationEventSchema, IterationSchema, JobArtifacts, JobKubernetesAgentsSchema, JobSchema, JobScope, JobVariableAttributeOption, Jobs, KeySchema, Keys, KeysetPagination, KeysetPaginationRequestOptions, LabelEventSchema, LabelSchema, License, LicenseSchema, LicenseTemplateSchema, LicenseTemplates, LinkedEpics, Lint, LintSchema, Markdown, MarkdownSchema, Maven, MemberRoleSchema, MemberSchema, MergeRequestApprovals, MergeRequestAwardEmojis, MergeRequestChangesSchema, MergeRequestContextCommitSchema, MergeRequestContextCommits, MergeRequestDiffSchema, MergeRequestDiffVersionsSchema, MergeRequestDiscussionNotePositionOptions, MergeRequestDiscussionNoteSchema, MergeRequestDiscussions, MergeRequestDraftNoteSchema, MergeRequestDraftNotes, MergeRequestExternalStatusCheckSchema, MergeRequestLabelEvents, MergeRequestLevelApprovalRuleSchema, MergeRequestLevelMergeRequestApprovalSchema, MergeRequestMilestoneEvents, MergeRequestNoteAwardEmojis, MergeRequestNoteSchema, MergeRequestNotes, MergeRequestRebaseSchema, MergeRequestSchema, MergeRequestTodoSchema, MergeRequests, MergeTrainSchema, MergeTrains, Metadata, MetadataSchema, MetricImageSchema, MetricType, MigrationEntityFailure, MigrationEntityOptions, MigrationEntitySchema, MigrationStatus, MigrationStatusSchema, Migrations, MilestoneEventSchema, MilestoneSchema, MissingSignatureSchema, NPM, NPMPackageMetadataSchema, NPMVersionSchema, NamespaceSchema, Namespaces, NoteSchema, NotificationSettingLevel, NotificationSettingSchema, NotificationSettings, NuGet, NuGetPackageIndexSchema, NuGetResourceSchema, NuGetSearchResultSchema, NuGetSearchResultsSchema, NuGetServiceIndexSchema, NuGetServiceMetadataItemSchema, NuGetServiceMetadataSchema, NuGetServiceMetadataVersionSchema, OffsetPagination, OffsetPaginationRequestOptions, OverrodeGroupMemberSchema, PackageFileSchema, PackageMetadata, PackageRegistry, PackageRegistrySchema, PackageSchema, PackageSnapshotSchema, Packages, PagesDomainSchema, PagesDomains, PaginatedResponse, PaginationRequestOptions, PaginationRequestSubOptions, PaginationTypes, PersonalAccessTokenSchema, PersonalAccessTokenScopes, PersonalAccessTokens, PipelineScheduleSchema, PipelineScheduleVariables, PipelineSchedules, PipelineSchema, PipelineStatus, PipelineTestCaseSchema, PipelineTestReportSchema, PipelineTestReportSummarySchema, PipelineTestSuiteSchema, PipelineTriggerTokenSchema, PipelineTriggerTokens, PipelineVariableSchema, Pipelines, ProcessMetricSchema, ProductAnalytics, ProjectAccessRequests, ProjectAccessTokens, ProjectAliasSchema, ProjectAliases, ProjectBadgeSchema, ProjectBadges, ProjectCustomAttributes, ProjectDORA4Metrics, ProjectExternalStatusCheckSchema, ProjectFileUploadSchema, ProjectHookSchema, ProjectHooks, ProjectImportExports, ProjectInvitations, ProjectIssueBoardSchema, ProjectIssueBoards, ProjectIterations, ProjectLabels, ProjectLevelApprovalRuleSchema, ProjectLevelMergeRequestApprovalSchema, ProjectMembers, ProjectMilestones, ProjectProtectedEnvironments, ProjectPushRules, ProjectRelationsExport, ProjectReleases, ProjectRemoteMirrorSchema, ProjectRemoteMirrors, ProjectRepositoryStorageMoveSchema, ProjectRepositoryStorageMoves, ProjectSchema, ProjectSnippetAwardEmojis, ProjectSnippetDiscussions, ProjectSnippetNotes, ProjectSnippets, ProjectStarrerSchema, ProjectStatisticSchema, ProjectStatistics, ProjectStatisticsSchema, ProjectStoragePath, ProjectTemplateSchema, ProjectTemplateType, ProjectTemplates, ProjectVariableSchema, ProjectVariables, ProjectVulnerabilities, ProjectVulnerabilitySchema, ProjectWikis, Projects, ProtectedBranchAccessLevel, ProtectedBranchAllowOptions, ProtectedBranchSchema, ProtectedBranches, ProtectedEnvironmentAccessLevel, ProtectedEnvironmentAccessLevelEntity, ProtectedEnvironmentAccessLevelSummarySchema, ProtectedEnvironmentSchema, ProtectedTagAccessLevel, ProtectedTagAccessLevelEntity, ProtectedTagAccessLevelSummarySchema, ProtectedTagSchema, ProtectedTags, PushRuleSchema, PyPI, RecipeSnapshotSchema, ReferenceSchema, RegistryRepositorySchema, RegistryRepositoryTagSchema, RelatedEpicLinkSchema, RelatedEpicLinkType, RelatedEpicSchema, RelationsExportStatusSchema, ReleaseAssetLink, ReleaseAssetSource, ReleaseEvidence, ReleaseLinkSchema, ReleaseLinks, ReleaseSchema, RemoveRepositoryFileOptions, RemoveSidekiqQueueOptions, Repositories, RepositoryBlobSchema, RepositoryChangelogSchema, RepositoryCompareSchema, RepositoryContributorSchema, RepositoryFileBlameSchema, RepositoryFileExpandedSchema, RepositoryFileSchema, RepositoryFiles, RepositoryImportStatusSchema, RepositoryStorageMoveSchema, RepositorySubmoduleSchema, RepositorySubmodules, RepositoryTreeSchema, ResourceAccessRequests, ResourceAccessTokens, ResourceAwardEmojis, ResourceBadges, ResourceCustomAttributes, ResourceDORA4Metrics, ResourceDiscussions, ResourceGroupSchema, ResourceGroups, ResourceHooks, ResourceInvitations, ResourceIssueBoards, ResourceIterationEvents, ResourceIterations, ResourceLabelEvents, ResourceLabels, ResourceMembers, ResourceMilestoneEvents, ResourceMilestones, ResourceNoteAwardEmojis, ResourceNotes, ResourceProtectedEnvironments, ResourcePushRules, ResourceRepositoryStorageMoves, ResourceStateEvents, ResourceTemplates, ResourceVariables, ResourceWeightEvents, ResourceWikis, ReviewAppSchema, RubyGems, RunnerSchema, RunnerToken, Runners, Search, SearchScopes, SecureFileSchema, SecureFiles, ServiceData, ShowChangelogOptions, ShowExpanded, SidekickCompoundMetricsSchema, SidekickJobStatsSchema, SidekickProcessMetricsSchema, SidekickQueueMetricsSchema, SidekiqMetrics, SidekiqQueueStatus, SidekiqQueues, SimpleGroupSchema, SimpleMemberSchema, SimpleProjectSchema, SimpleSnippetSchema, SnippetNoteSchema, SnippetRepositoryStorageMoveSchema, SnippetRepositoryStorageMoves, SnippetSchema, SnippetVisibility, Snippets, StarredDashboardSchema, StateEventSchema, StatisticsSchema, Sudo, SuggestionSchema, Suggestions, SupportedIntegration, SystemHookTestResponse, SystemHooks, TagSchema, TagSignatureSchema, Tags, TaskCompletionStatusSchema, TemplateSchema, TimeStatsSchema, TodoAction, TodoLists, TodoSchema, TodoState, TodoType, TopicSchema, Topics, UserActivitySchema, UserAgentDetailSchema, UserAssociationCountSchema, UserCountSchema, UserCustomAttributes, UserEmailSchema, UserEmails, UserGPGKeySchema, UserGPGKeys, UserImpersonationTokenSchema, UserImpersonationTokens, UserMembershipSchema, UserPreferenceSchema, UserRunnerSchema, UserSSHKeySchema, UserSSHKeys, UserSchema, UserStarredMetricsDashboard, UserStatusSchema, Users, VariableFilter, VariableSchema, VariableType, WeightEventSchema, WikiAttachmentSchema, WikiSchema, X509SignatureSchema };
7632
+ export { AcceptMergeRequestOptions, AccessLevel, AccessRequestSchema, AccessTokenSchema, AccessTokenScopes, AddMemeberOptions, AddResourceHookOptions, Agents, AlertManagement, AllAuditEventOptions, AllCommitsOptions, AllDeploymentsOptions, AllEpicsOptions, AllEventOptions, AllForksOptions, AllGroupProjectsOptions, AllGroupsOptions, AllIssueStatisticsOptions, AllIssuesOptions, AllIterationsOptions, AllMembersOptions, AllMergeRequestsOptions, AllMilestonesOptions, AllPackageOptions, AllPersonalAccessTokenOptions, AllPipelinesOptions, AllProjectsOptions, AllProvisionedUsersOptions, AllRepositoryTreesOptions, AllRunnersOptions, AllSearchOptions, AllUserProjectsOptions, AllUsersOptions, AllowedAgentSchema, ApplicationAppearance, ApplicationAppearanceSchema, ApplicationPlanLimitOptions, ApplicationPlanLimitSchema, ApplicationPlanLimits, ApplicationSchema, ApplicationSettings, ApplicationSettingsSchema, ApplicationStatisticSchema, ApplicationStatistics, Applications, ApprovalRuleSchema, ApprovalStateSchema, ApprovedByEntity, ArchiveType, ArtifactSchema, AsStream, AuditEventSchema, AuditEvents, Avatar, AvatarSchema, AwardEmojiSchema, BadgeSchema, BaseExternalStatusCheckSchema, BasePaginationRequestOptions, BaseRequestOptions, BillableGroupMemberMembershipSchema, BillableGroupMemberSchema, BlobSchema, BranchSchema, Branches, BridgeSchema, BroadcastMessageOptions, BroadcastMessageSchema, BroadcastMessages, BurndownChartEventSchema, CICDVariableSchema, Camelize, ClusterAgentSchema, ClusterAgentTokenSchema, CommitAction, CommitCommentSchema, CommitDiffSchema, CommitDiscussionNoteSchema, CommitDiscussionSchema, CommitDiscussions, CommitReferenceSchema, CommitSchema, CommitSignatureSchema, CommitStatsSchema, CommitStatusSchema, CommitablePipelineStatus, Commits, Composer, ComposerPackageMetadataSchema, ComposerV1BaseRepositorySchema, ComposerV1PackagesSchema, ComposerV2BaseRepositorySchema, Conan, CondensedBadgeSchema, CondensedCommitCommentSchema, CondensedCommitSchema, CondensedDeployKeySchema, CondensedEnvironmentSchema, CondensedEpicLinkSchema, CondensedGroupSchema, CondensedJobSchema, CondensedMemberSchema, CondensedMergeRequestSchema, CondensedNamespaceSchema, CondensedPipelineScheduleSchema, CondensedProjectSchema, CondensedRegistryRepositorySchema, CondensedRegistryRepositoryTagSchema, ContainerRegistry, CreateAndEditPushRuleOptions, CreateApprovalRuleOptions, CreateCommitOptions, CreateEpicOptions, CreateFeatureFlagOptions, CreateGeoNodeOptions, CreateGroupOptions, CreateIssueOptions, CreateMergeRequestOptions, CreateProjectOptions, CreateProtectedBranchAllowOptions, CreateProtectedBranchOptions, CreateRepositoryFileOptions, CreateRunnerOptions, CreateSnippetOptions, CreateSystemHook, CreateUserCIRunnerOptions, CreateUserOptions, CustomAttributeSchema, CustomSettingLevelEmailEvents, DORA4MetricSchema, DashboardAnnotationSchema, DashboardAnnotations, Debian, DependencyProxy, DeployKeyProjectsSchema, DeployKeySchema, DeployKeys, DeployTokenSchema, DeployTokenScope, DeployTokens, DeployableSchema, DeploymentApprovalStatusSchema, DeploymentSchema, DeploymentStatus, Deployments, DiffRefsSchema, DiscussionNotePositionBaseSchema, DiscussionNotePositionImageSchema, DiscussionNotePositionOptions, DiscussionNotePositionSchema, DiscussionNotePositionTextSchema, DiscussionNoteSchema, DiscussionSchema, DockerfileTemplates, EditApprovalRuleOptions, EditBadgeOptions, EditChangelogOptions, EditConfigurationOptions, EditEpicOptions, EditFeatureFlagOptions, EditGeoNodeOptions, EditGroupOptions, EditIssueOptions, EditMergeRequestOptions, EditNotificationSettingsOptions, EditPipelineStatusOptions, EditProjectOptions, EditProtectedBranchAllowOptions, EditProtectedBranchOptions, EditRepositoryFileOptions, EditResourceHookOptions, EditRunnerOptions, EditSnippetOptions, EditUserOptions, EnvironmentSchema, EnvironmentTier, Environments, EpicAwardEmojis, EpicDiscussions, EpicIssueSchema, EpicIssues, EpicLabelEvents, EpicLinkSchema, EpicLinks, EpicNoteSchema, EpicNotes, EpicSchema, EpicSchemaWithBasicLabels, EpicSchemaWithExpandedLabels, EpicTodoSchema, Epics, ErrorTrackingClientKeySchema, ErrorTrackingClientKeys, ErrorTrackingSettings, ErrorTrackingSettingsSchema, EventSchema, Events, ExpandedCommitSchema, ExpandedDeployKeySchema, ExpandedEpicIssueSchema, ExpandedGroupSchema, ExpandedHookSchema, ExpandedIssueLinkSchema, ExpandedMergeRequestDiffVersionsSchema, ExpandedMergeRequestSchema, ExpandedPackageSchema, ExpandedPipelineScheduleSchema, ExpandedPipelineSchema, ExpandedRepositoryImportStatusSchema, ExpandedResponse, ExpandedRunnerSchema, ExpandedSnippetSchema, ExpandedUserSchema, ExperimentGateSchema, ExperimentSchema, Experiments, ExportStatusSchema, ExtendedProtectedBranchAccessLevelSchema, ExternalStatusCheckProtectedBranchesSchema, ExternalStatusChecks, FailedRelationSchema, FeatureFlagSchema, FeatureFlagStrategySchema, FeatureFlagStrategyScopeSchema, FeatureFlagUserListSchema, FeatureFlagUserLists, FeatureFlags, ForkProjectOptions, FreezePeriodSchema, FreezePeriods, GPGSignatureSchema, GeoNodeFailureSchema, GeoNodeSchema, GeoNodeStatusSchema, GeoNodes, GitLabCIYMLTemplates, GitignoreTemplates, Gitlab, GitlabAPIResponse, GitlabPages, GoProxy, GoProxyModuleVersionSchema, GroupAccessRequests, GroupAccessTokens, GroupActivityAnalytics, GroupAnalyticsIssuesCountSchema, GroupAnalyticsMRsCountSchema, GroupAnalyticsNewMembersCountSchema, GroupBadgeSchema, GroupBadges, GroupCustomAttributes, GroupDORA4Metrics, GroupHookSchema, GroupHooks, GroupImportExports, GroupInvitations, GroupIssueBoards, GroupIterations, GroupLDAPLinks, GroupLabels, GroupMemberRoles, GroupMembers, GroupMilestones, GroupProtectedEnvironments, GroupPushRules, GroupRelationExportStatusSchema, GroupRelationExports, GroupReleases, GroupRepositoryStorageMoveSchema, GroupRepositoryStorageMoves, GroupSAMLIdentities, GroupSCIMIdentities, GroupSchema, GroupStatisticsSchema, GroupVariables, GroupWikis, Groups, GrouptIssueBoardSchema, Helm, HookSchema, IdentitySchema, ImpersonationTokenScope, ImpersonationTokenState, Import, ImportStatusSchema, IncludeInherited, InstanceLevelCICDVariables, IntegrationSchema, Integrations, InvitationSchema, IsForm, IssueAwardEmojis, IssueBoardListSchema, IssueBoardSchema, IssueDiscussions, IssueIterationEvents, IssueLabelEvents, IssueLinkSchema, IssueLinks, IssueMilestoneEvents, IssueNoteAwardEmojis, IssueNoteSchema, IssueNotes, IssueSchema, IssueSchemaWithBasicLabels, IssueSchemaWithExpandedLabels, IssueStateEvents, IssueWeightEvents, Issues, IssuesStatistics, IterationEventSchema, IterationSchema, JobArtifacts, JobKubernetesAgentsSchema, JobSchema, JobScope, JobVariableAttributeOption, Jobs, KeySchema, Keys, KeysetPagination, KeysetPaginationRequestOptions, LabelCountSchema, LabelEventSchema, LabelSchema, License, LicenseSchema, LicenseTemplateSchema, LicenseTemplates, LinkedEpics, Lint, LintSchema, Markdown, MarkdownSchema, Maven, MemberRoleSchema, MemberSchema, MergeRequestApprovals, MergeRequestAwardEmojis, MergeRequestChangesSchema, MergeRequestContextCommitSchema, MergeRequestContextCommits, MergeRequestDiffSchema, MergeRequestDiffVersionsSchema, MergeRequestDiscussionNotePositionOptions, MergeRequestDiscussionNoteSchema, MergeRequestDiscussions, MergeRequestDraftNoteSchema, MergeRequestDraftNotes, MergeRequestExternalStatusCheckSchema, MergeRequestLabelEvents, MergeRequestLevelApprovalRuleSchema, MergeRequestLevelMergeRequestApprovalSchema, MergeRequestMilestoneEvents, MergeRequestNoteAwardEmojis, MergeRequestNoteSchema, MergeRequestNotes, MergeRequestRebaseSchema, MergeRequestSchema, MergeRequestSchemaWithBasicLabels, MergeRequestSchemaWithExpandedLabels, MergeRequestTodoSchema, MergeRequests, MergeTrainSchema, MergeTrains, Metadata, MetadataSchema, MetricImageSchema, MetricType, MigrationEntityFailure, MigrationEntityOptions, MigrationEntitySchema, MigrationStatus, MigrationStatusSchema, Migrations, MilestoneEventSchema, MilestoneSchema, MissingSignatureSchema, NPM, NPMPackageMetadataSchema, NPMVersionSchema, NamespaceSchema, Namespaces, NoteSchema, NotificationSettingLevel, NotificationSettingSchema, NotificationSettings, NuGet, NuGetPackageIndexSchema, NuGetResourceSchema, NuGetSearchResultSchema, NuGetSearchResultsSchema, NuGetServiceIndexSchema, NuGetServiceMetadataItemSchema, NuGetServiceMetadataSchema, NuGetServiceMetadataVersionSchema, OffsetPagination, OffsetPaginationRequestOptions, OverrodeGroupMemberSchema, PackageFileSchema, PackageMetadata, PackageRegistry, PackageRegistrySchema, PackageSchema, PackageSnapshotSchema, Packages, PagesDomainSchema, PagesDomains, PaginatedResponse, PaginationRequestOptions, PaginationRequestSubOptions, PaginationTypes, PersonalAccessTokenSchema, PersonalAccessTokenScopes, PersonalAccessTokens, PipelineScheduleSchema, PipelineScheduleVariables, PipelineSchedules, PipelineSchema, PipelineStatus, PipelineTestCaseSchema, PipelineTestReportSchema, PipelineTestReportSummarySchema, PipelineTestSuiteSchema, PipelineTriggerTokenSchema, PipelineTriggerTokens, PipelineVariableSchema, Pipelines, ProcessMetricSchema, ProductAnalytics, ProjectAccessRequests, ProjectAccessTokens, ProjectAliasSchema, ProjectAliases, ProjectBadgeSchema, ProjectBadges, ProjectCustomAttributes, ProjectDORA4Metrics, ProjectExternalStatusCheckSchema, ProjectFileUploadSchema, ProjectHookSchema, ProjectHooks, ProjectImportExports, ProjectInvitations, ProjectIssueBoardSchema, ProjectIssueBoards, ProjectIterations, ProjectLabels, ProjectLevelApprovalRuleSchema, ProjectLevelMergeRequestApprovalSchema, ProjectMembers, ProjectMilestones, ProjectProtectedEnvironments, ProjectPushRules, ProjectRelationsExport, ProjectReleases, ProjectRemoteMirrorSchema, ProjectRemoteMirrors, ProjectRepositoryStorageMoveSchema, ProjectRepositoryStorageMoves, ProjectSchema, ProjectSnippetAwardEmojis, ProjectSnippetDiscussions, ProjectSnippetNotes, ProjectSnippets, ProjectStarrerSchema, ProjectStatisticSchema, ProjectStatistics, ProjectStatisticsSchema, ProjectStoragePath, ProjectTemplateSchema, ProjectTemplateType, ProjectTemplates, ProjectVariableSchema, ProjectVariables, ProjectVulnerabilities, ProjectVulnerabilitySchema, ProjectWikis, Projects, ProtectedBranchAccessLevel, ProtectedBranchSchema, ProtectedBranches, ProtectedEnvironmentAccessLevel, ProtectedEnvironmentAccessLevelEntity, ProtectedEnvironmentAccessLevelSummarySchema, ProtectedEnvironmentSchema, ProtectedTagAccessLevel, ProtectedTagAccessLevelEntity, ProtectedTagAccessLevelSummarySchema, ProtectedTagSchema, ProtectedTags, PushRuleSchema, PyPI, RecipeSnapshotSchema, ReferenceSchema, RegistryRepositorySchema, RegistryRepositoryTagSchema, RelatedEpicLinkSchema, RelatedEpicLinkType, RelatedEpicSchema, RelationsExportStatusSchema, ReleaseAssetLink, ReleaseAssetSource, ReleaseEvidence, ReleaseLinkSchema, ReleaseLinks, ReleaseSchema, RemoveRepositoryFileOptions, RemoveSidekiqQueueOptions, Repositories, RepositoryBlobSchema, RepositoryChangelogSchema, RepositoryCompareSchema, RepositoryContributorSchema, RepositoryFileBlameSchema, RepositoryFileExpandedSchema, RepositoryFileSchema, RepositoryFiles, RepositoryImportStatusSchema, RepositoryStorageMoveSchema, RepositorySubmoduleSchema, RepositorySubmodules, RepositoryTreeSchema, ResourceAccessRequests, ResourceAccessTokens, ResourceAwardEmojis, ResourceBadges, ResourceCustomAttributes, ResourceDORA4Metrics, ResourceDiscussions, ResourceGroupSchema, ResourceGroups, ResourceHooks, ResourceInvitations, ResourceIssueBoards, ResourceIterationEvents, ResourceIterations, ResourceLabelEvents, ResourceLabels, ResourceMembers, ResourceMilestoneEvents, ResourceMilestones, ResourceNoteAwardEmojis, ResourceNotes, ResourceProtectedEnvironments, ResourcePushRules, ResourceRepositoryStorageMoves, ResourceStateEvents, ResourceTemplates, ResourceVariables, ResourceWeightEvents, ResourceWikis, ReviewAppSchema, RubyGems, RunnerSchema, RunnerToken, Runners, Search, SearchScopes, SecureFileSchema, SecureFiles, ServiceData, ShowChangelogOptions, ShowExpanded, SidekickCompoundMetricsSchema, SidekickJobStatsSchema, SidekickProcessMetricsSchema, SidekickQueueMetricsSchema, SidekiqMetrics, SidekiqQueueStatus, SidekiqQueues, SimpleGroupSchema, SimpleLabelSchema, SimpleMemberSchema, SimpleProjectSchema, SimpleSnippetSchema, SnippetNoteSchema, SnippetRepositoryStorageMoveSchema, SnippetRepositoryStorageMoves, SnippetSchema, SnippetVisibility, Snippets, StarredDashboardSchema, StateEventSchema, StatisticsSchema, Sudo, SuggestionSchema, Suggestions, SupportedIntegration, SystemHookTestResponse, SystemHooks, TagSchema, TagSignatureSchema, Tags, TaskCompletionStatusSchema, TemplateSchema, TimeStatsSchema, TodoAction, TodoLists, TodoSchema, TodoState, TodoType, TopicSchema, Topics, UserActivitySchema, UserAgentDetailSchema, UserAssociationCountSchema, UserCountSchema, UserCustomAttributes, UserEmailSchema, UserEmails, UserGPGKeySchema, UserGPGKeys, UserImpersonationTokenSchema, UserImpersonationTokens, UserMembershipSchema, UserPreferenceSchema, UserRunnerSchema, UserSSHKeySchema, UserSSHKeys, UserSchema, UserStarredMetricsDashboard, UserStatusSchema, Users, VariableFilter, VariableSchema, VariableType, WeightEventSchema, WikiAttachmentSchema, WikiSchema, X509SignatureSchema };