@gitbeaker/core 39.32.0 → 39.33.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/README.md +1 -0
- package/dist/index.d.mts +820 -142
- package/dist/index.d.ts +820 -142
- package/dist/index.js +603 -603
- package/dist/index.mjs +603 -603
- package/dist/map.json +575 -575
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1340,22 +1340,6 @@ declare class ApplicationPlanLimits<C extends boolean = false> extends BaseResou
|
|
|
1340
1340
|
edit<E extends boolean = false>(planName: string, options?: ApplicationPlanLimitOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationPlanLimitSchema, C, E, void>>;
|
|
1341
1341
|
}
|
|
1342
1342
|
|
|
1343
|
-
interface ApplicationSchema extends Record<string, unknown> {
|
|
1344
|
-
id: number;
|
|
1345
|
-
application_id: string;
|
|
1346
|
-
application_name: string;
|
|
1347
|
-
secret: string;
|
|
1348
|
-
callback_url: string;
|
|
1349
|
-
confidential: boolean;
|
|
1350
|
-
}
|
|
1351
|
-
declare class Applications<C extends boolean = false> extends BaseResource<C> {
|
|
1352
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationSchema[], C, E, P>>;
|
|
1353
|
-
create<E extends boolean = false>(name: string, redirectUri: string, scopes: string, options?: {
|
|
1354
|
-
confidential?: boolean;
|
|
1355
|
-
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationSchema, C, E, void>>;
|
|
1356
|
-
remove<E extends boolean = false>(applicationId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
1343
|
interface ApplicationSettingsSchema extends Record<string, unknown> {
|
|
1360
1344
|
admin_mode?: boolean;
|
|
1361
1345
|
admin_notification_email?: string;
|
|
@@ -1634,6 +1618,22 @@ declare class ApplicationStatistics<C extends boolean = false> extends BaseResou
|
|
|
1634
1618
|
show<E extends boolean = false>(options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationStatisticSchema, C, E, void>>;
|
|
1635
1619
|
}
|
|
1636
1620
|
|
|
1621
|
+
interface ApplicationSchema extends Record<string, unknown> {
|
|
1622
|
+
id: number;
|
|
1623
|
+
application_id: string;
|
|
1624
|
+
application_name: string;
|
|
1625
|
+
secret: string;
|
|
1626
|
+
callback_url: string;
|
|
1627
|
+
confidential: boolean;
|
|
1628
|
+
}
|
|
1629
|
+
declare class Applications<C extends boolean = false> extends BaseResource<C> {
|
|
1630
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationSchema[], C, E, P>>;
|
|
1631
|
+
create<E extends boolean = false>(name: string, redirectUri: string, scopes: string, options?: {
|
|
1632
|
+
confidential?: boolean;
|
|
1633
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ApplicationSchema, C, E, void>>;
|
|
1634
|
+
remove<E extends boolean = false>(applicationId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
1637
|
interface AuditEventSchema extends Record<string, unknown> {
|
|
1638
1638
|
id: number;
|
|
1639
1639
|
author_id: number;
|
|
@@ -4046,11 +4046,11 @@ declare class GeoSites<C extends boolean = false> extends BaseResource<C> {
|
|
|
4046
4046
|
showStatus<E extends boolean = false>(geositeId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<GeoSiteStatusSchema, C, E, void>>;
|
|
4047
4047
|
}
|
|
4048
4048
|
|
|
4049
|
-
declare class
|
|
4049
|
+
declare class GitLabCIYMLTemplates<C extends boolean = false> extends ResourceTemplates<C> {
|
|
4050
4050
|
constructor(options: BaseResourceOptions<C>);
|
|
4051
4051
|
}
|
|
4052
4052
|
|
|
4053
|
-
declare class
|
|
4053
|
+
declare class GitignoreTemplates<C extends boolean = false> extends ResourceTemplates<C> {
|
|
4054
4054
|
constructor(options: BaseResourceOptions<C>);
|
|
4055
4055
|
}
|
|
4056
4056
|
|
|
@@ -4292,6 +4292,40 @@ declare class Migrations<C extends boolean = false> extends BaseResource<C> {
|
|
|
4292
4292
|
showEntity<E extends boolean = false>(bulkImportId: number, entitityId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MigrationEntitySchema, C, E, void>>;
|
|
4293
4293
|
}
|
|
4294
4294
|
|
|
4295
|
+
interface NPMVersionSchema {
|
|
4296
|
+
name: string;
|
|
4297
|
+
version: string;
|
|
4298
|
+
dist: {
|
|
4299
|
+
shasum: string;
|
|
4300
|
+
tarball: string;
|
|
4301
|
+
};
|
|
4302
|
+
}
|
|
4303
|
+
interface NPMPackageMetadataSchema extends Record<string, unknown> {
|
|
4304
|
+
name: string;
|
|
4305
|
+
versions: {
|
|
4306
|
+
[version: string]: NPMVersionSchema;
|
|
4307
|
+
};
|
|
4308
|
+
'dist-tags': {
|
|
4309
|
+
[tag: string]: string;
|
|
4310
|
+
};
|
|
4311
|
+
}
|
|
4312
|
+
declare class NPM<C extends boolean = false> extends BaseResource<C> {
|
|
4313
|
+
downloadPackageFile<E extends boolean = false>(projectId: string | number, packageName: string, filename: string, options?: ShowExpanded<E>): Promise<GitlabAPIResponse<Blob, void, E, void>>;
|
|
4314
|
+
removeDistTag<E extends boolean = false>(packageName: string, tag: string, options?: {
|
|
4315
|
+
projectId?: string | number;
|
|
4316
|
+
} & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
4317
|
+
setDistTag<E extends boolean = false>(packageName: string, tag: string, options?: {
|
|
4318
|
+
projectId?: string | number;
|
|
4319
|
+
} & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
4320
|
+
showDistTags<E extends boolean = false>(packageName: string, options?: {
|
|
4321
|
+
projectId?: string | number;
|
|
4322
|
+
} & ShowExpanded<E>): Promise<GitlabAPIResponse<Record<string, string>, C, E, void>>;
|
|
4323
|
+
showMetadata<E extends boolean = false>(packageName: string, options?: {
|
|
4324
|
+
projectId?: string | number;
|
|
4325
|
+
} & ShowExpanded<E>): Promise<GitlabAPIResponse<NPMPackageMetadataSchema, C, E, void>>;
|
|
4326
|
+
uploadPackageFile<E extends boolean = false>(projectId: string | number, packageName: string, versions: string, metadata: Record<string, unknown>, options?: ShowExpanded<E>): Promise<GitlabAPIResponse<Record<string, unknown>, C, E, void>>;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4295
4329
|
type NotificationSettingLevel = 'disabled' | 'participating' | 'watch' | 'global' | 'mention' | 'custom';
|
|
4296
4330
|
type CustomSettingLevelEmailEvents = 'new_note' | 'new_issue' | 'reopen_issue' | 'close_issue' | 'reassign_issue' | 'issue_due' | 'new_merge_request' | 'push_to_merge_request' | 'reopen_merge_request' | 'close_merge_request' | 'reassign_merge_request' | 'merge_merge_request' | 'failed_pipeline' | 'fixed_pipeline' | 'success_pipeline' | 'moved_project' | 'merge_when_pipeline_succeeds' | 'new_epic ';
|
|
4297
4331
|
interface NotificationSettingSchema extends Record<string, unknown> {
|
|
@@ -4331,40 +4365,6 @@ declare class NotificationSettings<C extends boolean = false> extends BaseResour
|
|
|
4331
4365
|
}> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<NotificationSettingSchema, C, E, void>>;
|
|
4332
4366
|
}
|
|
4333
4367
|
|
|
4334
|
-
interface NPMVersionSchema {
|
|
4335
|
-
name: string;
|
|
4336
|
-
version: string;
|
|
4337
|
-
dist: {
|
|
4338
|
-
shasum: string;
|
|
4339
|
-
tarball: string;
|
|
4340
|
-
};
|
|
4341
|
-
}
|
|
4342
|
-
interface NPMPackageMetadataSchema extends Record<string, unknown> {
|
|
4343
|
-
name: string;
|
|
4344
|
-
versions: {
|
|
4345
|
-
[version: string]: NPMVersionSchema;
|
|
4346
|
-
};
|
|
4347
|
-
'dist-tags': {
|
|
4348
|
-
[tag: string]: string;
|
|
4349
|
-
};
|
|
4350
|
-
}
|
|
4351
|
-
declare class NPM<C extends boolean = false> extends BaseResource<C> {
|
|
4352
|
-
downloadPackageFile<E extends boolean = false>(projectId: string | number, packageName: string, filename: string, options?: ShowExpanded<E>): Promise<GitlabAPIResponse<Blob, void, E, void>>;
|
|
4353
|
-
removeDistTag<E extends boolean = false>(packageName: string, tag: string, options?: {
|
|
4354
|
-
projectId?: string | number;
|
|
4355
|
-
} & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
4356
|
-
setDistTag<E extends boolean = false>(packageName: string, tag: string, options?: {
|
|
4357
|
-
projectId?: string | number;
|
|
4358
|
-
} & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
4359
|
-
showDistTags<E extends boolean = false>(packageName: string, options?: {
|
|
4360
|
-
projectId?: string | number;
|
|
4361
|
-
} & ShowExpanded<E>): Promise<GitlabAPIResponse<Record<string, string>, C, E, void>>;
|
|
4362
|
-
showMetadata<E extends boolean = false>(packageName: string, options?: {
|
|
4363
|
-
projectId?: string | number;
|
|
4364
|
-
} & ShowExpanded<E>): Promise<GitlabAPIResponse<NPMPackageMetadataSchema, C, E, void>>;
|
|
4365
|
-
uploadPackageFile<E extends boolean = false>(projectId: string | number, packageName: string, versions: string, metadata: Record<string, unknown>, options?: ShowExpanded<E>): Promise<GitlabAPIResponse<Record<string, unknown>, C, E, void>>;
|
|
4366
|
-
}
|
|
4367
|
-
|
|
4368
4368
|
interface NuGetPackageIndexSchema extends Record<string, unknown> {
|
|
4369
4369
|
versions: string[];
|
|
4370
4370
|
}
|
|
@@ -5255,6 +5255,28 @@ declare class ExternalStatusChecks<C extends boolean = false> extends BaseResour
|
|
|
5255
5255
|
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<ProjectExternalStatusCheckSchema, C, E, void>>;
|
|
5256
5256
|
}
|
|
5257
5257
|
|
|
5258
|
+
interface FeatureFlagUserListSchema extends Record<string, unknown> {
|
|
5259
|
+
name: string;
|
|
5260
|
+
user_xids: string;
|
|
5261
|
+
id: number;
|
|
5262
|
+
iid: number;
|
|
5263
|
+
project_id: string | number;
|
|
5264
|
+
created_at: string;
|
|
5265
|
+
updated_at: string;
|
|
5266
|
+
}
|
|
5267
|
+
declare class FeatureFlagUserLists<C extends boolean = false> extends BaseResource<C> {
|
|
5268
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: {
|
|
5269
|
+
search?: string;
|
|
5270
|
+
} & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema[], C, E, P>>;
|
|
5271
|
+
create<E extends boolean = false>(projectId: string | number, name: string, userXids: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5272
|
+
edit<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: {
|
|
5273
|
+
name?: string;
|
|
5274
|
+
userXIds?: string;
|
|
5275
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5276
|
+
remove<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
5277
|
+
show<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5278
|
+
}
|
|
5279
|
+
|
|
5258
5280
|
interface FeatureFlagStrategyScopeSchema {
|
|
5259
5281
|
id: number;
|
|
5260
5282
|
environment_scope: string;
|
|
@@ -5307,28 +5329,6 @@ declare class FeatureFlags<C extends boolean = false> extends BaseResource<C> {
|
|
|
5307
5329
|
show<E extends boolean = false>(projectId: string | number, flagName: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagSchema, C, E, void>>;
|
|
5308
5330
|
}
|
|
5309
5331
|
|
|
5310
|
-
interface FeatureFlagUserListSchema extends Record<string, unknown> {
|
|
5311
|
-
name: string;
|
|
5312
|
-
user_xids: string;
|
|
5313
|
-
id: number;
|
|
5314
|
-
iid: number;
|
|
5315
|
-
project_id: string | number;
|
|
5316
|
-
created_at: string;
|
|
5317
|
-
updated_at: string;
|
|
5318
|
-
}
|
|
5319
|
-
declare class FeatureFlagUserLists<C extends boolean = false> extends BaseResource<C> {
|
|
5320
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, options?: {
|
|
5321
|
-
search?: string;
|
|
5322
|
-
} & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema[], C, E, P>>;
|
|
5323
|
-
create<E extends boolean = false>(projectId: string | number, name: string, userXids: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5324
|
-
edit<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: {
|
|
5325
|
-
name?: string;
|
|
5326
|
-
userXIds?: string;
|
|
5327
|
-
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5328
|
-
remove<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
5329
|
-
show<E extends boolean = false>(projectId: string | number, featureFlagUserListIId: string | number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<FeatureFlagUserListSchema, C, E, void>>;
|
|
5330
|
-
}
|
|
5331
|
-
|
|
5332
5332
|
interface FreezePeriodSchema extends Record<string, unknown> {
|
|
5333
5333
|
id: number;
|
|
5334
5334
|
freeze_start: string;
|
|
@@ -5524,6 +5524,22 @@ declare class IssueNotes<C extends boolean = false> extends ResourceNotes<C> {
|
|
|
5524
5524
|
constructor(options: BaseResourceOptions<C>);
|
|
5525
5525
|
}
|
|
5526
5526
|
|
|
5527
|
+
interface IssueStateEvents<C extends boolean = false> {
|
|
5528
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<StateEventSchema[], C, E, P>>;
|
|
5529
|
+
show<E extends boolean = false>(projectId: string | number, issueIId: number, stateEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<StateEventSchema, C, E, void>>;
|
|
5530
|
+
}
|
|
5531
|
+
declare class IssueStateEvents<C extends boolean = false> extends ResourceStateEvents<C> {
|
|
5532
|
+
constructor(options: BaseResourceOptions<C>);
|
|
5533
|
+
}
|
|
5534
|
+
|
|
5535
|
+
interface IssueWeightEvents<C extends boolean = false> {
|
|
5536
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<StateEventSchema[], C, E, P>>;
|
|
5537
|
+
show<E extends boolean = false>(projectId: string | number, issueIId: number, weightEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<StateEventSchema, C, E, void>>;
|
|
5538
|
+
}
|
|
5539
|
+
declare class IssueWeightEvents<C extends boolean = false> extends ResourceStateEvents<C> {
|
|
5540
|
+
constructor(options: BaseResourceOptions<C>);
|
|
5541
|
+
}
|
|
5542
|
+
|
|
5527
5543
|
interface StatisticsSchema extends Record<string, unknown> {
|
|
5528
5544
|
statistics: {
|
|
5529
5545
|
counts: {
|
|
@@ -5561,22 +5577,6 @@ declare class IssuesStatistics<C extends boolean = false> extends BaseResource<C
|
|
|
5561
5577
|
}> & AllIssueStatisticsOptions & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<StatisticsSchema, C, E, void>>;
|
|
5562
5578
|
}
|
|
5563
5579
|
|
|
5564
|
-
interface IssueStateEvents<C extends boolean = false> {
|
|
5565
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<StateEventSchema[], C, E, P>>;
|
|
5566
|
-
show<E extends boolean = false>(projectId: string | number, issueIId: number, stateEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<StateEventSchema, C, E, void>>;
|
|
5567
|
-
}
|
|
5568
|
-
declare class IssueStateEvents<C extends boolean = false> extends ResourceStateEvents<C> {
|
|
5569
|
-
constructor(options: BaseResourceOptions<C>);
|
|
5570
|
-
}
|
|
5571
|
-
|
|
5572
|
-
interface IssueWeightEvents<C extends boolean = false> {
|
|
5573
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, issueIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<StateEventSchema[], C, E, P>>;
|
|
5574
|
-
show<E extends boolean = false>(projectId: string | number, issueIId: number, weightEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<StateEventSchema, C, E, void>>;
|
|
5575
|
-
}
|
|
5576
|
-
declare class IssueWeightEvents<C extends boolean = false> extends ResourceStateEvents<C> {
|
|
5577
|
-
constructor(options: BaseResourceOptions<C>);
|
|
5578
|
-
}
|
|
5579
|
-
|
|
5580
5580
|
declare class JobArtifacts<C extends boolean = false> extends BaseResource<C> {
|
|
5581
5581
|
downloadArchive<E extends boolean = false>(projectId: string | number, { jobId, artifactPath, ref, ...options }?: ({
|
|
5582
5582
|
jobId: number;
|
|
@@ -5842,22 +5842,6 @@ declare class MergeRequestDiscussions<C extends boolean = false> extends Resourc
|
|
|
5842
5842
|
constructor(options: BaseResourceOptions<C>);
|
|
5843
5843
|
}
|
|
5844
5844
|
|
|
5845
|
-
interface MergeRequestLabelEvents<C extends boolean = false> {
|
|
5846
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<LabelEventSchema[], C, E, P>>;
|
|
5847
|
-
show<E extends boolean = false>(projectId: string | number, mergerequestIId: number, labelEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelEventSchema, C, E, void>>;
|
|
5848
|
-
}
|
|
5849
|
-
declare class MergeRequestLabelEvents<C extends boolean = false> extends ResourceLabelEvents<C> {
|
|
5850
|
-
constructor(options: BaseResourceOptions<C>);
|
|
5851
|
-
}
|
|
5852
|
-
|
|
5853
|
-
interface MergeRequestMilestoneEvents<C extends boolean = false> {
|
|
5854
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<MilestoneEventSchema[], C, E, P>>;
|
|
5855
|
-
show<E extends boolean = false>(projectId: string | number, mergerequestIId: number, milestoneEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneEventSchema, C, E, void>>;
|
|
5856
|
-
}
|
|
5857
|
-
declare class MergeRequestMilestoneEvents<C extends boolean = false> extends ResourceMilestoneEvents<C> {
|
|
5858
|
-
constructor(options: BaseResourceOptions<C>);
|
|
5859
|
-
}
|
|
5860
|
-
|
|
5861
5845
|
type MergeRequestDraftNotePositionSchema = DiscussionNotePositionSchema & {
|
|
5862
5846
|
line_range?: number;
|
|
5863
5847
|
};
|
|
@@ -5890,6 +5874,32 @@ declare class MergeRequestDraftNotes<C extends boolean = false> extends BaseReso
|
|
|
5890
5874
|
show<E extends boolean = false>(projectId: string | number, mergerequestIId: number, draftNoteId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MergeRequestDraftNoteSchema, C, E, void>>;
|
|
5891
5875
|
}
|
|
5892
5876
|
|
|
5877
|
+
interface MergeRequestLabelEvents<C extends boolean = false> {
|
|
5878
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<LabelEventSchema[], C, E, P>>;
|
|
5879
|
+
show<E extends boolean = false>(projectId: string | number, mergerequestIId: number, labelEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<LabelEventSchema, C, E, void>>;
|
|
5880
|
+
}
|
|
5881
|
+
declare class MergeRequestLabelEvents<C extends boolean = false> extends ResourceLabelEvents<C> {
|
|
5882
|
+
constructor(options: BaseResourceOptions<C>);
|
|
5883
|
+
}
|
|
5884
|
+
|
|
5885
|
+
interface MergeRequestMilestoneEvents<C extends boolean = false> {
|
|
5886
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergerequestIId: number, options?: Sudo & ShowExpanded<E> & PaginationRequestOptions<P>): Promise<GitlabAPIResponse<MilestoneEventSchema[], C, E, P>>;
|
|
5887
|
+
show<E extends boolean = false>(projectId: string | number, mergerequestIId: number, milestoneEventId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneEventSchema, C, E, void>>;
|
|
5888
|
+
}
|
|
5889
|
+
declare class MergeRequestMilestoneEvents<C extends boolean = false> extends ResourceMilestoneEvents<C> {
|
|
5890
|
+
constructor(options: BaseResourceOptions<C>);
|
|
5891
|
+
}
|
|
5892
|
+
|
|
5893
|
+
interface MergeRequestNoteAwardEmojis<C extends boolean = false> extends ResourceNoteAwardEmojis<C> {
|
|
5894
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergeRequestIId: number, noteId: number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema[], C, E, P>>;
|
|
5895
|
+
award<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, name: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema, C, E, void>>;
|
|
5896
|
+
remove<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, awardId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
5897
|
+
show<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, awardId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema, C, E, void>>;
|
|
5898
|
+
}
|
|
5899
|
+
declare class MergeRequestNoteAwardEmojis<C extends boolean = false> extends ResourceNoteAwardEmojis<C> {
|
|
5900
|
+
constructor(options: BaseResourceOptions<C>);
|
|
5901
|
+
}
|
|
5902
|
+
|
|
5893
5903
|
interface MergeRequestNoteSchema extends NoteSchema {
|
|
5894
5904
|
noteable_type: 'MergeRequest';
|
|
5895
5905
|
}
|
|
@@ -5912,16 +5922,6 @@ declare class MergeRequestNotes<C extends boolean = false> extends ResourceNotes
|
|
|
5912
5922
|
constructor(options: BaseResourceOptions<C>);
|
|
5913
5923
|
}
|
|
5914
5924
|
|
|
5915
|
-
interface MergeRequestNoteAwardEmojis<C extends boolean = false> extends ResourceNoteAwardEmojis<C> {
|
|
5916
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(projectId: string | number, mergeRequestIId: number, noteId: number, options?: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema[], C, E, P>>;
|
|
5917
|
-
award<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, name: string, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema, C, E, void>>;
|
|
5918
|
-
remove<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, awardId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
5919
|
-
show<E extends boolean = false>(projectId: string | number, mergeRequestIId: number, noteId: number, awardId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<AwardEmojiSchema, C, E, void>>;
|
|
5920
|
-
}
|
|
5921
|
-
declare class MergeRequestNoteAwardEmojis<C extends boolean = false> extends ResourceNoteAwardEmojis<C> {
|
|
5922
|
-
constructor(options: BaseResourceOptions<C>);
|
|
5923
|
-
}
|
|
5924
|
-
|
|
5925
5925
|
interface MergeTrainSchema extends Record<string, unknown> {
|
|
5926
5926
|
id: number;
|
|
5927
5927
|
merge_request: CondensedMergeRequestSchema;
|
|
@@ -7497,6 +7497,19 @@ declare class GroupIterations<C extends boolean = false> extends ResourceIterati
|
|
|
7497
7497
|
constructor(options: BaseResourceOptions<C>);
|
|
7498
7498
|
}
|
|
7499
7499
|
|
|
7500
|
+
declare class GroupLDAPLinks<C extends boolean = false> extends BaseResource<C> {
|
|
7501
|
+
add<E extends boolean = false>(groupId: string | number, groupAccess: number, provider: string, options?: {
|
|
7502
|
+
cn?: string;
|
|
7503
|
+
groupAccess?: Exclude<AccessLevel, AccessLevel.ADMIN>;
|
|
7504
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<string, C, E, void>>;
|
|
7505
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<string[], C, E, P>>;
|
|
7506
|
+
remove<E extends boolean = false>(groupId: string | number, provider: string, options?: {
|
|
7507
|
+
cn?: string;
|
|
7508
|
+
filter?: string;
|
|
7509
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
7510
|
+
sync(groupId: string | number, options?: Sudo & ShowExpanded): Promise<string | number | void | ReadableStream<any> | Blob | string[] | CamelizedResponse<Record<string, unknown>, C> | CamelizedResponse<Record<string, unknown>, C>[] | null>;
|
|
7511
|
+
}
|
|
7512
|
+
|
|
7500
7513
|
interface GroupLabels<C extends boolean = false> extends ResourceLabels<C> {
|
|
7501
7514
|
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: {
|
|
7502
7515
|
withCounts: true;
|
|
@@ -7535,17 +7548,18 @@ declare class GroupLabels<C extends boolean = false> extends ResourceLabels<C> {
|
|
|
7535
7548
|
constructor(options: BaseResourceOptions<C>);
|
|
7536
7549
|
}
|
|
7537
7550
|
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<
|
|
7548
|
-
|
|
7551
|
+
interface MemberRoleSchema extends Record<string, unknown> {
|
|
7552
|
+
id: number;
|
|
7553
|
+
group_id: number;
|
|
7554
|
+
base_access_level: number;
|
|
7555
|
+
read_code: boolean;
|
|
7556
|
+
}
|
|
7557
|
+
declare class GroupMemberRoles<C extends boolean = false> extends BaseResource<C> {
|
|
7558
|
+
add<E extends boolean = false>(groupId: string | number, baseAccessLevel: Exclude<AccessLevel, AccessLevel.NO_ACCESS | AccessLevel.MINIMAL_ACCESS | AccessLevel.ADMIN>, options?: {
|
|
7559
|
+
readCode?: boolean;
|
|
7560
|
+
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MemberRoleSchema, C, E, void>>;
|
|
7561
|
+
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MemberRoleSchema[], C, E, P>>;
|
|
7562
|
+
remove<E extends boolean = false>(groupId: string | number, memberRoleId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
7549
7563
|
}
|
|
7550
7564
|
|
|
7551
7565
|
interface BillableGroupMemberSchema extends CondensedMemberSchema {
|
|
@@ -7594,20 +7608,6 @@ declare class GroupMembers<C extends boolean = false> extends ResourceMembers<C>
|
|
|
7594
7608
|
setOverrideFlag<E extends boolean = false>(groupId: string | number, userId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<OverrodeGroupMemberSchema, C, E, void>>;
|
|
7595
7609
|
}
|
|
7596
7610
|
|
|
7597
|
-
interface MemberRoleSchema extends Record<string, unknown> {
|
|
7598
|
-
id: number;
|
|
7599
|
-
group_id: number;
|
|
7600
|
-
base_access_level: number;
|
|
7601
|
-
read_code: boolean;
|
|
7602
|
-
}
|
|
7603
|
-
declare class GroupMemberRoles<C extends boolean = false> extends BaseResource<C> {
|
|
7604
|
-
add<E extends boolean = false>(groupId: string | number, baseAccessLevel: Exclude<AccessLevel, AccessLevel.NO_ACCESS | AccessLevel.MINIMAL_ACCESS | AccessLevel.ADMIN>, options?: {
|
|
7605
|
-
readCode?: boolean;
|
|
7606
|
-
} & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MemberRoleSchema, C, E, void>>;
|
|
7607
|
-
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options: PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MemberRoleSchema[], C, E, P>>;
|
|
7608
|
-
remove<E extends boolean = false>(groupId: string | number, memberRoleId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<void, C, E, void>>;
|
|
7609
|
-
}
|
|
7610
|
-
|
|
7611
7611
|
interface GroupMilestones<C extends boolean = false> extends ResourceMilestones<C> {
|
|
7612
7612
|
all<E extends boolean = false, P extends PaginationTypes = 'offset'>(groupId: string | number, options?: AllMilestonesOptions & PaginationRequestOptions<P> & Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<MilestoneSchema[], C, E, P>>;
|
|
7613
7613
|
allAssignedIssues<E extends boolean = false>(groupId: string | number, milestoneId: number, options?: Sudo & ShowExpanded<E>): Promise<GitlabAPIResponse<IssueSchema[], C, E, void>>;
|
|
@@ -8116,4 +8116,682 @@ declare class Gitlab<C extends boolean = false> extends BaseResource<C> {
|
|
|
8116
8116
|
constructor(options: BaseResourceOptions<C>);
|
|
8117
8117
|
}
|
|
8118
8118
|
|
|
8119
|
-
export { type AcceptMergeRequestOptions, AccessLevel, type AccessLevelSettingState, type AccessRequestSchema, type AccessTokenSchema, type AccessTokenScopes, type AddMemeberOptions, type AddResourceHookOptions, Agents, AlertManagement, type AllAuditEventOptions, type AllCommitsOptions, type AllDeploymentsOptions, type AllEpicsOptions, type AllEventOptions, type AllForksOptions, type AllGroupProjectsOptions, type AllGroupsOptions, type AllIssueStatisticsOptions, type AllIssuesOptions, type AllIterationsOptions, type AllMembersOptions, type AllMergeRequestsOptions, type AllMilestonesOptions, type AllPackageOptions, type AllPersonalAccessTokenOptions, type AllPipelinesOptions, type AllProjectsOptions, type AllProvisionedUsersOptions, type AllRepositoryTreesOptions, type AllRunnersOptions, type AllSearchOptions, type AllUserProjectsOptions, type AllUsersOptions, type AllowedAgentSchema, ApplicationAppearance, type ApplicationAppearanceSchema, type ApplicationPlanLimitOptions, type ApplicationPlanLimitSchema, ApplicationPlanLimits, type ApplicationSchema, ApplicationSettings, type ApplicationSettingsSchema, type ApplicationStatisticSchema, ApplicationStatistics, Applications, type ApprovalRuleSchema, type ApprovalStateSchema, type ApprovedByEntity, type ArchiveType, type ArtifactSchema, type AsStream, type AuditEventSchema, AuditEvents, Avatar, type AvatarSchema, type AwardEmojiSchema, type BadgeSchema, type BaseExternalStatusCheckSchema, type BasePaginationRequestOptions, type BaseRequestOptions, type BillableGroupMemberMembershipSchema, type BillableGroupMemberSchema, type BlobSchema, type BranchSchema, Branches, type BridgeSchema, type BroadcastMessageOptions, type BroadcastMessageSchema, BroadcastMessages, type BurndownChartEventSchema, type CICDVariableSchema, type Camelize, type ClusterAgentSchema, type ClusterAgentTokenSchema, type CodeCompletionSchema, type CodeSuggestionSchema, CodeSuggestions, type CommitAction, type CommitCommentSchema, type CommitDiffSchema, type CommitDiscussionNoteSchema, type CommitDiscussionSchema, CommitDiscussions, type CommitReferenceSchema, type CommitSchema, type CommitSignatureSchema, type CommitStatsSchema, type CommitStatusSchema, type CommitablePipelineStatus, Commits, Composer, type ComposerPackageMetadataSchema, type ComposerV1BaseRepositorySchema, type ComposerV1PackagesSchema, type ComposerV2BaseRepositorySchema, Conan, type CondensedBadgeSchema, type CondensedCommitCommentSchema, type CondensedCommitSchema, type CondensedDeployKeySchema, type CondensedEnvironmentSchema, type CondensedEpicLinkSchema, type CondensedGroupSchema, type CondensedJobSchema, type CondensedMemberSchema, type CondensedMergeRequestSchema, type CondensedNamespaceSchema, type CondensedPipelineScheduleSchema, type CondensedProjectSchema, type CondensedRegistryRepositorySchema, type CondensedRegistryRepositoryTagSchema, ContainerRegistry, type CreateAndEditPushRuleOptions, type CreateApprovalRuleOptions, type CreateCommitOptions, type CreateEpicOptions, type CreateFeatureFlagOptions, type CreateGeoNodeOptions, type CreateGeoSiteOptions, type CreateGroupOptions, type CreateIssueOptions, type CreateMergeRequestOptions, type CreateProjectOptions, type CreateProtectedBranchAllowOptions, type CreateProtectedBranchOptions, type CreateRepositoryFileOptions, type CreateRunnerOptions, type CreateSnippetOptions, type CreateSystemHook, type CreateUserCIRunnerOptions, type CreateUserOptions, type CustomAttributeSchema, type CustomSettingLevelEmailEvents, type DORA4MetricSchema, type DashboardAnnotationSchema, DashboardAnnotations, Debian, DependencyProxy, type DeployKeyProjectsSchema, type DeployKeySchema, DeployKeys, type DeployTokenSchema, type DeployTokenScope, DeployTokens, type DeployableSchema, type DeploymentApprovalStatusSchema, type DeploymentSchema, type DeploymentStatus, Deployments, type DiffRefsSchema, type DiscussionNotePositionBaseSchema, type DiscussionNotePositionImageSchema, type DiscussionNotePositionOptions, type DiscussionNotePositionSchema, type DiscussionNotePositionTextSchema, type DiscussionNoteSchema, type DiscussionSchema, DockerfileTemplates, type EditApprovalRuleOptions, type EditBadgeOptions, type EditChangelogOptions, type EditConfigurationOptions, type EditEpicOptions, type EditFeatureFlagOptions, type EditGeoNodeOptions, type EditGeoSiteOptions, type EditGroupOptions, type EditIssueOptions, type EditMergeRequestOptions, type EditNotificationSettingsOptions, type EditPipelineStatusOptions, type EditProjectOptions, type EditProtectedBranchAllowOptions, type EditProtectedBranchOptions, type EditRepositoryFileOptions, type EditResourceHookOptions, type EditRunnerOptions, type EditSnippetOptions, type EditUserOptions, type EnvironmentSchema, type EnvironmentTier, Environments, EpicAwardEmojis, EpicDiscussions, type EpicIssueSchema, EpicIssues, EpicLabelEvents, type EpicLinkSchema, EpicLinks, type EpicNoteSchema, EpicNotes, type EpicSchema, type EpicSchemaWithBasicLabels, type EpicSchemaWithExpandedLabels, type EpicTodoSchema, Epics, type ErrorTrackingClientKeySchema, ErrorTrackingClientKeys, ErrorTrackingSettings, type ErrorTrackingSettingsSchema, type EventSchema, Events, type ExpandedCommitSchema, type ExpandedDeployKeySchema, type ExpandedEpicIssueSchema, type ExpandedGroupSchema, type ExpandedHookSchema, type ExpandedIssueLinkSchema, type ExpandedMergeRequestDiffVersionsSchema, type ExpandedMergeRequestSchema, type ExpandedPackageSchema, type ExpandedPipelineScheduleSchema, type ExpandedPipelineSchema, type ExpandedRepositoryImportStatusSchema, type ExpandedResponse, type ExpandedRunnerSchema, type ExpandedSnippetSchema, type ExpandedUserSchema, type ExperimentGateSchema, type ExperimentSchema, Experiments, type ExportStatusSchema, type ExtendedProtectedBranchAccessLevelSchema, type ExternalStatusCheckProtectedBranchesSchema, ExternalStatusChecks, type FailedRelationSchema, type FeatureFlagSchema, type FeatureFlagStrategySchema, type FeatureFlagStrategyScopeSchema, type FeatureFlagUserListSchema, FeatureFlagUserLists, FeatureFlags, type ForkProjectOptions, type FreezePeriodSchema, FreezePeriods, type GPGSignatureSchema, type GeoNodeFailureSchema, type GeoNodeSchema, type GeoNodeStatusSchema, GeoNodes, type GeoSiteFailureSchema, type GeoSiteSchema, type GeoSiteStatusSchema, GeoSites, GitLabCIYMLTemplates, GitignoreTemplates, Gitlab, type GitlabAPIResponse, GitlabPages, GoProxy, type GoProxyModuleVersionSchema, GroupAccessRequests, GroupAccessTokens, GroupActivityAnalytics, type GroupAnalyticsIssuesCountSchema, type GroupAnalyticsMRsCountSchema, type GroupAnalyticsNewMembersCountSchema, type GroupBadgeSchema, GroupBadges, GroupCustomAttributes, GroupDORA4Metrics, type GroupEpicBoardListSchema, type GroupEpicBoardSchema, GroupEpicBoards, type GroupHookSchema, GroupHooks, GroupImportExports, GroupInvitations, GroupIssueBoards, GroupIterations, GroupLDAPLinks, GroupLabels, GroupMemberRoles, GroupMembers, GroupMilestones, GroupProtectedEnvironments, GroupPushRules, type GroupRelationExportStatusSchema, GroupRelationExports, GroupReleases, type GroupRepositoryStorageMoveSchema, GroupRepositoryStorageMoves, GroupSAMLIdentities, GroupSAMLLinks, GroupSCIMIdentities, type GroupSchema, type GroupServiceAccountSchema, GroupServiceAccounts, type GroupStatisticsSchema, GroupVariables, GroupWikis, Groups, type GrouptIssueBoardSchema, Helm, type HookSchema, type IdentitySchema, type ImpersonationTokenScope, type ImpersonationTokenState, Import, type ImportStatusSchema, type IncludeInherited, InstanceLevelCICDVariables, type IntegrationSchema, Integrations, type InvitationSchema, type IsForm, IssueAwardEmojis, type IssueBoardListSchema, type IssueBoardSchema, IssueDiscussions, IssueIterationEvents, IssueLabelEvents, type IssueLinkSchema, IssueLinks, IssueMilestoneEvents, IssueNoteAwardEmojis, type IssueNoteSchema, IssueNotes, type IssueSchema, type IssueSchemaWithBasicLabels, type IssueSchemaWithExpandedLabels, IssueStateEvents, IssueWeightEvents, Issues, IssuesStatistics, type IterationEventSchema, type IterationSchema, JobArtifacts, type JobKubernetesAgentsSchema, type JobSchema, type JobScope, type JobVariableAttributeOption, Jobs, type KeySchema, Keys, type KeysetPagination, type KeysetPaginationRequestOptions, type LabelCountSchema, type LabelEventSchema, type LabelSchema, License, type LicenseSchema, type LicenseTemplateSchema, LicenseTemplates, LinkedEpics, Lint, type LintSchema, Markdown, type MarkdownSchema, Maven, type MemberRoleSchema, type MemberSchema, MergeRequestApprovals, MergeRequestAwardEmojis, type MergeRequestChangesSchema, type MergeRequestContextCommitSchema, MergeRequestContextCommits, type MergeRequestDiffSchema, type MergeRequestDiffVersionsSchema, type MergeRequestDiscussionNotePositionOptions, type MergeRequestDiscussionNoteSchema, MergeRequestDiscussions, type MergeRequestDraftNotePositionSchema, type MergeRequestDraftNoteSchema, MergeRequestDraftNotes, type MergeRequestExternalStatusCheckSchema, MergeRequestLabelEvents, type MergeRequestLevelApprovalRuleSchema, type MergeRequestLevelMergeRequestApprovalSchema, MergeRequestMilestoneEvents, MergeRequestNoteAwardEmojis, type MergeRequestNoteSchema, MergeRequestNotes, type MergeRequestRebaseSchema, type MergeRequestSchema, type MergeRequestSchemaWithBasicLabels, type MergeRequestSchemaWithExpandedLabels, type MergeRequestTodoSchema, MergeRequests, type MergeTrainSchema, MergeTrains, Metadata, type MetadataSchema, type MetricImageSchema, type MetricType, type MigrationEntityFailure, type MigrationEntityOptions, type MigrationEntitySchema, type MigrationStatus, type MigrationStatusSchema, Migrations, type MilestoneEventSchema, type MilestoneSchema, type MissingSignatureSchema, NPM, type NPMPackageMetadataSchema, type NPMVersionSchema, type NamespaceSchema, Namespaces, type NoteSchema, type NotificationSettingLevel, type NotificationSettingSchema, NotificationSettings, NuGet, type NuGetPackageIndexSchema, type NuGetResourceSchema, type NuGetSearchResultSchema, type NuGetSearchResultsSchema, type NuGetServiceIndexSchema, type NuGetServiceMetadataItemSchema, type NuGetServiceMetadataSchema, type NuGetServiceMetadataVersionSchema, type OffsetPagination, type OffsetPaginationRequestOptions, type OverrodeGroupMemberSchema, type PackageFileSchema, type PackageMetadata, PackageRegistry, type PackageRegistrySchema, type PackageSchema, type PackageSnapshotSchema, Packages, type PagesDomainSchema, PagesDomains, type PaginatedResponse, type PaginationRequestOptions, type PaginationRequestSubOptions, type PaginationTypes, type PersonalAccessTokenSchema, type PersonalAccessTokenScopes, PersonalAccessTokens, type PipelineScheduleSchema, PipelineScheduleVariables, PipelineSchedules, type PipelineSchema, type PipelineStatus, type PipelineTestCaseSchema, type PipelineTestReportSchema, type PipelineTestReportSummarySchema, type PipelineTestSuiteSchema, type PipelineTriggerTokenSchema, PipelineTriggerTokens, type PipelineVariableSchema, Pipelines, type ProcessMetricSchema, ProductAnalytics, ProjectAccessRequests, ProjectAccessTokens, type ProjectAliasSchema, ProjectAliases, type ProjectBadgeSchema, ProjectBadges, ProjectCustomAttributes, ProjectDORA4Metrics, type ProjectExternalStatusCheckSchema, type ProjectFileUploadSchema, type ProjectHookSchema, ProjectHooks, ProjectImportExports, ProjectInvitations, type ProjectIssueBoardSchema, ProjectIssueBoards, ProjectIterations, ProjectLabels, type ProjectLevelApprovalRuleSchema, type ProjectLevelMergeRequestApprovalSchema, type ProjectLicenseSchema, ProjectMembers, ProjectMilestones, ProjectProtectedEnvironments, ProjectPushRules, ProjectRelationsExport, ProjectReleases, type ProjectRemoteMirrorSchema, ProjectRemoteMirrors, type ProjectRepositoryStorageMoveSchema, ProjectRepositoryStorageMoves, type ProjectSchema, ProjectSnippetAwardEmojis, ProjectSnippetDiscussions, ProjectSnippetNotes, ProjectSnippets, type ProjectStarrerSchema, type ProjectStatisticSchema, ProjectStatistics, type ProjectStatisticsSchema, type ProjectStoragePath, type ProjectTemplateSchema, type ProjectTemplateType, ProjectTemplates, type ProjectVariableSchema, ProjectVariables, ProjectVulnerabilities, type ProjectVulnerabilitySchema, ProjectWikis, Projects, type ProtectedBranchAccessLevel, type ProtectedBranchSchema, ProtectedBranches, type ProtectedEnvironmentAccessLevelEntity, type ProtectedEnvironmentAccessLevelSummarySchema, type ProtectedEnvironmentSchema, type ProtectedTagAccessLevel, type ProtectedTagAccessLevelEntity, type ProtectedTagAccessLevelSummarySchema, type ProtectedTagSchema, ProtectedTags, type PushRuleSchema, PyPI, type RecipeSnapshotSchema, type ReferenceSchema, type RegistryRepositorySchema, type RegistryRepositoryTagSchema, type RelatedEpicLinkSchema, type RelatedEpicLinkType, type RelatedEpicSchema, type RelationsExportStatusSchema, type ReleaseAssetLink, type ReleaseAssetSource, type ReleaseEvidence, type ReleaseLinkSchema, ReleaseLinks, type ReleaseSchema, type RemoveRepositoryFileOptions, type RemoveSidekiqQueueOptions, Repositories, type RepositoryBlobSchema, type RepositoryChangelogSchema, type RepositoryCompareSchema, type RepositoryContributorSchema, type RepositoryFileBlameSchema, type RepositoryFileExpandedSchema, type RepositoryFileSchema, RepositoryFiles, type RepositoryImportStatusSchema, type RepositoryStorageMoveSchema, type RepositorySubmoduleSchema, RepositorySubmodules, type RepositoryTreeSchema, ResourceAccessRequests, ResourceAccessTokens, ResourceAwardEmojis, ResourceBadges, ResourceCustomAttributes, ResourceDORA4Metrics, ResourceDiscussions, type ResourceGroupSchema, ResourceGroups, ResourceHooks, ResourceInvitations, ResourceIssueBoards, ResourceIterationEvents, ResourceIterations, ResourceLabelEvents, ResourceLabels, ResourceMembers, ResourceMilestoneEvents, ResourceMilestones, ResourceNoteAwardEmojis, ResourceNotes, ResourceProtectedEnvironments, ResourcePushRules, ResourceRepositoryStorageMoves, ResourceStateEvents, ResourceTemplates, ResourceVariables, ResourceWeightEvents, ResourceWikis, type ReviewAppSchema, RubyGems, type RunnerSchema, type RunnerToken, Runners, type SAMLGroupSchema, Search, SearchAdmin, type SearchMigrationSchema, type SearchScopes, type SecureFileSchema, SecureFiles, type ServiceAccountAccessTokenSchema, type ServiceAccountSchema, ServiceAccounts, ServiceData, type ShowChangelogOptions, type ShowExpanded, type SidekickCompoundMetricsSchema, type SidekickJobStatsSchema, type SidekickProcessMetricsSchema, type SidekickQueueMetricsSchema, SidekiqMetrics, type SidekiqQueueStatus, SidekiqQueues, type SimpleGroupSchema, type SimpleLabelSchema, type SimpleMemberSchema, type SimpleProjectSchema, type SimpleSnippetSchema, type SnippetNoteSchema, type SnippetRepositoryStorageMoveSchema, SnippetRepositoryStorageMoves, type SnippetSchema, type SnippetVisibility, Snippets, type StarredDashboardSchema, type StateEventSchema, type StatisticsSchema, type Sudo, type SuggestionSchema, Suggestions, type SupportedIntegration, type SystemHookTestResponse, SystemHooks, type TagSchema, type TagSignatureSchema, Tags, type TaskCompletionStatusSchema, type TemplateSchema, type TimeStatsSchema, type TodoAction, TodoLists, type TodoSchema, type TodoState, type TodoType, type TopicSchema, Topics, type UserActivitySchema, type UserAgentDetailSchema, type UserAssociationCountSchema, type UserCountSchema, UserCustomAttributes, type UserEmailSchema, UserEmails, type UserGPGKeySchema, UserGPGKeys, type UserImpersonationTokenSchema, UserImpersonationTokens, type UserMembershipSchema, type UserPreferenceSchema, type UserRunnerSchema, type UserSSHKeySchema, UserSSHKeys, type UserSchema, UserStarredMetricsDashboard, type UserStatusSchema, Users, type VariableFilter, type VariableSchema, type VariableType, type WeightEventSchema, type WikiAttachmentSchema, type WikiSchema, type X509SignatureSchema };
|
|
8119
|
+
interface WebhookRepositorySchema {
|
|
8120
|
+
name: string;
|
|
8121
|
+
url: string;
|
|
8122
|
+
description: string;
|
|
8123
|
+
homepage: string;
|
|
8124
|
+
git_http_url: string;
|
|
8125
|
+
git_ssh_url: string;
|
|
8126
|
+
visibility_level: number;
|
|
8127
|
+
}
|
|
8128
|
+
interface WebhookLabelSchema {
|
|
8129
|
+
id: number;
|
|
8130
|
+
title: string;
|
|
8131
|
+
color: string;
|
|
8132
|
+
project_id: number;
|
|
8133
|
+
created_at: string;
|
|
8134
|
+
updated_at: string;
|
|
8135
|
+
template: boolean;
|
|
8136
|
+
description: string;
|
|
8137
|
+
type: string;
|
|
8138
|
+
group_id: number;
|
|
8139
|
+
}
|
|
8140
|
+
interface WebhookProjectSchema {
|
|
8141
|
+
name: string;
|
|
8142
|
+
description: string;
|
|
8143
|
+
web_url: string;
|
|
8144
|
+
avatar_url: string | null;
|
|
8145
|
+
git_ssh_url: string;
|
|
8146
|
+
git_http_url: string;
|
|
8147
|
+
namespace: string;
|
|
8148
|
+
visibility_level: number;
|
|
8149
|
+
path_with_namespace: string;
|
|
8150
|
+
default_branch: string;
|
|
8151
|
+
homepage: string;
|
|
8152
|
+
url: string;
|
|
8153
|
+
ssh_url: string;
|
|
8154
|
+
http_url: string;
|
|
8155
|
+
}
|
|
8156
|
+
interface WebhookPipelineSchema {
|
|
8157
|
+
project: {
|
|
8158
|
+
id: number;
|
|
8159
|
+
web_url: string;
|
|
8160
|
+
path_with_namespace: string;
|
|
8161
|
+
};
|
|
8162
|
+
pipeline_id: number;
|
|
8163
|
+
job_id: number;
|
|
8164
|
+
}
|
|
8165
|
+
interface WebhookDiffSchema {
|
|
8166
|
+
diff: string;
|
|
8167
|
+
new_path: string;
|
|
8168
|
+
old_path: string;
|
|
8169
|
+
a_mode: string;
|
|
8170
|
+
b_mode: string;
|
|
8171
|
+
new_file: boolean;
|
|
8172
|
+
renamed_file: boolean;
|
|
8173
|
+
deleted_file: boolean;
|
|
8174
|
+
}
|
|
8175
|
+
interface BaseWebhookEventSchema {
|
|
8176
|
+
object_kind: string;
|
|
8177
|
+
event_name: string;
|
|
8178
|
+
project: WebhookProjectSchema;
|
|
8179
|
+
user: MappedOmit<UserSchema, 'created_at'>;
|
|
8180
|
+
}
|
|
8181
|
+
interface WebhookBaseNoteEventSchema extends BaseWebhookEventSchema {
|
|
8182
|
+
object_kind: 'note';
|
|
8183
|
+
event_type: 'note';
|
|
8184
|
+
project_id: number;
|
|
8185
|
+
repository: {
|
|
8186
|
+
name: string;
|
|
8187
|
+
url: string;
|
|
8188
|
+
description: string;
|
|
8189
|
+
homepage: string;
|
|
8190
|
+
};
|
|
8191
|
+
object_attributes: {
|
|
8192
|
+
id: number;
|
|
8193
|
+
note: string;
|
|
8194
|
+
noteable_type: string;
|
|
8195
|
+
author_id: number;
|
|
8196
|
+
created_at: string;
|
|
8197
|
+
updated_at: string;
|
|
8198
|
+
project_id: number;
|
|
8199
|
+
attachment: string | null;
|
|
8200
|
+
line_code: string;
|
|
8201
|
+
commit_id: string;
|
|
8202
|
+
noteable_id: string | null;
|
|
8203
|
+
system: boolean;
|
|
8204
|
+
st_diff: WebhookDiffSchema | null;
|
|
8205
|
+
url: string;
|
|
8206
|
+
};
|
|
8207
|
+
}
|
|
8208
|
+
interface WebhookBasePushEventSchema extends MappedOmit<BaseWebhookEventSchema, 'user'> {
|
|
8209
|
+
before: string;
|
|
8210
|
+
after: string;
|
|
8211
|
+
ref: string;
|
|
8212
|
+
ref_protected: boolean;
|
|
8213
|
+
checkout_sha: string;
|
|
8214
|
+
user_id: number;
|
|
8215
|
+
user_name: string;
|
|
8216
|
+
user_avatar: string;
|
|
8217
|
+
project_id: number;
|
|
8218
|
+
repository: WebhookRepositorySchema;
|
|
8219
|
+
commits: {
|
|
8220
|
+
id: string;
|
|
8221
|
+
message: string;
|
|
8222
|
+
title: string;
|
|
8223
|
+
timestamp: string;
|
|
8224
|
+
url: string;
|
|
8225
|
+
author: {
|
|
8226
|
+
name: string;
|
|
8227
|
+
email: string;
|
|
8228
|
+
};
|
|
8229
|
+
added: string[] | null;
|
|
8230
|
+
modified: string[] | null;
|
|
8231
|
+
removed: string[] | null;
|
|
8232
|
+
}[] | null;
|
|
8233
|
+
total_commits_count: number;
|
|
8234
|
+
}
|
|
8235
|
+
interface WebhookTagEventSchema extends WebhookBasePushEventSchema {
|
|
8236
|
+
object_kind: 'tag_push';
|
|
8237
|
+
event_name: 'tag_push';
|
|
8238
|
+
}
|
|
8239
|
+
interface WebhookPushEventSchema extends WebhookBasePushEventSchema {
|
|
8240
|
+
object_kind: 'push';
|
|
8241
|
+
event_name: 'push';
|
|
8242
|
+
user_username: string;
|
|
8243
|
+
user_email: string;
|
|
8244
|
+
}
|
|
8245
|
+
interface WebhookIssueEventSchema extends BaseWebhookEventSchema {
|
|
8246
|
+
object_kind: 'issue';
|
|
8247
|
+
event_type: 'issue';
|
|
8248
|
+
object_attributes: {
|
|
8249
|
+
id: number;
|
|
8250
|
+
title: string;
|
|
8251
|
+
assignee_ids: number[] | null;
|
|
8252
|
+
assignee_id: number;
|
|
8253
|
+
author_id: number;
|
|
8254
|
+
project_id: number;
|
|
8255
|
+
created_at: string;
|
|
8256
|
+
updated_at: string;
|
|
8257
|
+
updated_by_id: number;
|
|
8258
|
+
last_edited_at: string | null;
|
|
8259
|
+
last_edited_by_id: number | null;
|
|
8260
|
+
relative_position: number;
|
|
8261
|
+
description: string;
|
|
8262
|
+
milestone_id: number | null;
|
|
8263
|
+
state_id: number;
|
|
8264
|
+
confidential: boolean;
|
|
8265
|
+
discussion_locked: boolean;
|
|
8266
|
+
due_date: string | null;
|
|
8267
|
+
moved_to_id: number | null;
|
|
8268
|
+
duplicated_to_id: number | null;
|
|
8269
|
+
time_estimate: number;
|
|
8270
|
+
total_time_spent: number;
|
|
8271
|
+
time_change: number;
|
|
8272
|
+
human_total_time_spent: string | null;
|
|
8273
|
+
human_time_estimate: string | null;
|
|
8274
|
+
human_time_change: string | null;
|
|
8275
|
+
weight: number | null;
|
|
8276
|
+
health_status: string;
|
|
8277
|
+
iid: number;
|
|
8278
|
+
url: string;
|
|
8279
|
+
state: string;
|
|
8280
|
+
action: string;
|
|
8281
|
+
severity: string;
|
|
8282
|
+
escalation_status: string;
|
|
8283
|
+
escalation_policy: {
|
|
8284
|
+
id: number;
|
|
8285
|
+
name: string;
|
|
8286
|
+
};
|
|
8287
|
+
labels: WebhookLabelSchema[] | null;
|
|
8288
|
+
};
|
|
8289
|
+
repository: {
|
|
8290
|
+
name: string;
|
|
8291
|
+
url: string;
|
|
8292
|
+
description: string;
|
|
8293
|
+
homepage: string;
|
|
8294
|
+
};
|
|
8295
|
+
assignees: Pick<UserSchema, 'name|username|avatar_url'>[] | null;
|
|
8296
|
+
assignee: Pick<UserSchema, 'name|username|avatar_url'> | null;
|
|
8297
|
+
labels: WebhookLabelSchema[] | null;
|
|
8298
|
+
changes: {
|
|
8299
|
+
updated_by_id: {
|
|
8300
|
+
previous: string | null;
|
|
8301
|
+
current: string;
|
|
8302
|
+
};
|
|
8303
|
+
updated_at: {
|
|
8304
|
+
previous: string;
|
|
8305
|
+
current: string;
|
|
8306
|
+
};
|
|
8307
|
+
labels: {
|
|
8308
|
+
previous: WebhookLabelSchema[] | null;
|
|
8309
|
+
current: WebhookLabelSchema[] | null;
|
|
8310
|
+
};
|
|
8311
|
+
};
|
|
8312
|
+
}
|
|
8313
|
+
interface WebhookCommitNoteEventSchema extends WebhookBaseNoteEventSchema {
|
|
8314
|
+
commit: {
|
|
8315
|
+
id: string;
|
|
8316
|
+
message: string;
|
|
8317
|
+
timestamp: string;
|
|
8318
|
+
url: string;
|
|
8319
|
+
author: {
|
|
8320
|
+
name: string;
|
|
8321
|
+
email: string;
|
|
8322
|
+
};
|
|
8323
|
+
};
|
|
8324
|
+
}
|
|
8325
|
+
interface WebhookMergeRequestNoteEventSchema extends WebhookBaseNoteEventSchema {
|
|
8326
|
+
merge_request: {
|
|
8327
|
+
id: number;
|
|
8328
|
+
target_branch: string;
|
|
8329
|
+
source_branch: string;
|
|
8330
|
+
source_project_id: number;
|
|
8331
|
+
author_id: number;
|
|
8332
|
+
assignee_id: number;
|
|
8333
|
+
title: string;
|
|
8334
|
+
created_at: string;
|
|
8335
|
+
updated_at: string;
|
|
8336
|
+
milestone_id: number;
|
|
8337
|
+
state: string;
|
|
8338
|
+
merge_status: string;
|
|
8339
|
+
target_project_id: number;
|
|
8340
|
+
iid: number;
|
|
8341
|
+
description: string;
|
|
8342
|
+
position: number;
|
|
8343
|
+
labels: WebhookLabelSchema[] | null;
|
|
8344
|
+
source: WebhookProjectSchema;
|
|
8345
|
+
target: WebhookProjectSchema;
|
|
8346
|
+
last_commit: {
|
|
8347
|
+
id: string;
|
|
8348
|
+
message: string;
|
|
8349
|
+
timestamp: string;
|
|
8350
|
+
url: string;
|
|
8351
|
+
author: {
|
|
8352
|
+
name: string;
|
|
8353
|
+
email: string;
|
|
8354
|
+
};
|
|
8355
|
+
};
|
|
8356
|
+
work_in_progress: boolean;
|
|
8357
|
+
draft: boolean;
|
|
8358
|
+
assignee: Pick<UserSchema, 'name|username|avatar_url'> | null;
|
|
8359
|
+
detailed_merge_status: string;
|
|
8360
|
+
};
|
|
8361
|
+
}
|
|
8362
|
+
interface WebhookIssueNoteEventSchema extends WebhookBaseNoteEventSchema {
|
|
8363
|
+
issue: {
|
|
8364
|
+
id: number;
|
|
8365
|
+
title: string;
|
|
8366
|
+
assignee_ids: number[] | null;
|
|
8367
|
+
assignee_id: number | null;
|
|
8368
|
+
author_id: number;
|
|
8369
|
+
project_id: number;
|
|
8370
|
+
created_at: string;
|
|
8371
|
+
updated_at: string;
|
|
8372
|
+
position: number;
|
|
8373
|
+
branch_name: string | null;
|
|
8374
|
+
description: string;
|
|
8375
|
+
milestone_id: number | null;
|
|
8376
|
+
state: string;
|
|
8377
|
+
iid: number;
|
|
8378
|
+
labels: WebhookLabelSchema[] | null;
|
|
8379
|
+
};
|
|
8380
|
+
}
|
|
8381
|
+
interface WebhookSnippetNoteEventSchema extends WebhookBaseNoteEventSchema {
|
|
8382
|
+
snippet: {
|
|
8383
|
+
id: number;
|
|
8384
|
+
title: string;
|
|
8385
|
+
content: string;
|
|
8386
|
+
author_id: number;
|
|
8387
|
+
project_id: number;
|
|
8388
|
+
created_at: string;
|
|
8389
|
+
updated_at: string;
|
|
8390
|
+
file_name: string;
|
|
8391
|
+
expires_at: string | null;
|
|
8392
|
+
type: string;
|
|
8393
|
+
visibility_level: number;
|
|
8394
|
+
url: string;
|
|
8395
|
+
};
|
|
8396
|
+
}
|
|
8397
|
+
interface WebhookMergeRequestEventSchema extends BaseWebhookEventSchema {
|
|
8398
|
+
object_kind: 'merge_request';
|
|
8399
|
+
event_type: 'merge_request';
|
|
8400
|
+
repository: WebhookRepositorySchema;
|
|
8401
|
+
object_attributes: {
|
|
8402
|
+
id: number;
|
|
8403
|
+
iid: number;
|
|
8404
|
+
target_branch: string;
|
|
8405
|
+
source_branch: string;
|
|
8406
|
+
source_project_id: number;
|
|
8407
|
+
author_id: number;
|
|
8408
|
+
assignee_ids: number[] | null;
|
|
8409
|
+
assignee_id: number;
|
|
8410
|
+
reviewer_ids: number[] | null;
|
|
8411
|
+
title: string;
|
|
8412
|
+
created_at: string;
|
|
8413
|
+
updated_at: string;
|
|
8414
|
+
last_edited_at: string;
|
|
8415
|
+
last_edited_by_id: number;
|
|
8416
|
+
milestone_id: number | null;
|
|
8417
|
+
state_id: number;
|
|
8418
|
+
state: string;
|
|
8419
|
+
blocking_discussions_resolved: boolean;
|
|
8420
|
+
work_in_progress: boolean;
|
|
8421
|
+
draft: boolean;
|
|
8422
|
+
first_contribution: boolean;
|
|
8423
|
+
merge_status: string;
|
|
8424
|
+
target_project_id: number;
|
|
8425
|
+
description: string;
|
|
8426
|
+
total_time_spent: number;
|
|
8427
|
+
time_change: number;
|
|
8428
|
+
human_total_time_spent: string;
|
|
8429
|
+
human_time_change: string;
|
|
8430
|
+
human_time_estimate: string;
|
|
8431
|
+
url: string;
|
|
8432
|
+
source: WebhookProjectSchema;
|
|
8433
|
+
target: WebhookProjectSchema;
|
|
8434
|
+
last_commit: {
|
|
8435
|
+
id: string;
|
|
8436
|
+
message: string;
|
|
8437
|
+
title: string;
|
|
8438
|
+
timestamp: string;
|
|
8439
|
+
url: string;
|
|
8440
|
+
author: {
|
|
8441
|
+
name: string;
|
|
8442
|
+
email: string;
|
|
8443
|
+
};
|
|
8444
|
+
};
|
|
8445
|
+
labels: WebhookLabelSchema[] | null;
|
|
8446
|
+
action: string;
|
|
8447
|
+
detailed_merge_status: string;
|
|
8448
|
+
};
|
|
8449
|
+
labels: WebhookLabelSchema[] | null;
|
|
8450
|
+
changes: {
|
|
8451
|
+
updated_by_id: {
|
|
8452
|
+
previous: number | null;
|
|
8453
|
+
current: number | null;
|
|
8454
|
+
};
|
|
8455
|
+
draft: {
|
|
8456
|
+
previous: boolean | null;
|
|
8457
|
+
current: boolean | null;
|
|
8458
|
+
};
|
|
8459
|
+
updated_at: {
|
|
8460
|
+
previous: string | null;
|
|
8461
|
+
current: string | null;
|
|
8462
|
+
};
|
|
8463
|
+
labels: {
|
|
8464
|
+
previous: WebhookLabelSchema[] | null;
|
|
8465
|
+
current: WebhookLabelSchema[] | null;
|
|
8466
|
+
};
|
|
8467
|
+
last_edited_at: {
|
|
8468
|
+
previous: string | null;
|
|
8469
|
+
current: string | null;
|
|
8470
|
+
};
|
|
8471
|
+
last_edited_by_id: {
|
|
8472
|
+
previous: number | null;
|
|
8473
|
+
current: number | null;
|
|
8474
|
+
};
|
|
8475
|
+
};
|
|
8476
|
+
assignees: Pick<UserSchema, 'name|username|avatar_url'>[] | null;
|
|
8477
|
+
reviewers: WebhookLabelSchema[] | null;
|
|
8478
|
+
}
|
|
8479
|
+
interface WebhookWikiEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8480
|
+
object_kind: 'wiki_page';
|
|
8481
|
+
wiki: {
|
|
8482
|
+
web_url: string;
|
|
8483
|
+
git_ssh_url: string;
|
|
8484
|
+
git_http_url: string;
|
|
8485
|
+
path_with_namespace: string;
|
|
8486
|
+
default_branch: string;
|
|
8487
|
+
};
|
|
8488
|
+
object_attributes: {
|
|
8489
|
+
title: string;
|
|
8490
|
+
content: string;
|
|
8491
|
+
format: string;
|
|
8492
|
+
message: string;
|
|
8493
|
+
slug: string;
|
|
8494
|
+
url: string;
|
|
8495
|
+
action: string;
|
|
8496
|
+
diff_url: string;
|
|
8497
|
+
};
|
|
8498
|
+
}
|
|
8499
|
+
interface WebhookPipelineEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8500
|
+
object_kind: 'pipeline';
|
|
8501
|
+
object_attributes: {
|
|
8502
|
+
id: number;
|
|
8503
|
+
iid: number;
|
|
8504
|
+
name: string;
|
|
8505
|
+
ref: string;
|
|
8506
|
+
tag: boolean;
|
|
8507
|
+
sha: string;
|
|
8508
|
+
before_sha: string;
|
|
8509
|
+
source: string;
|
|
8510
|
+
status: string;
|
|
8511
|
+
stages: string[] | null;
|
|
8512
|
+
created_at: string;
|
|
8513
|
+
finished_at: string;
|
|
8514
|
+
duration: number;
|
|
8515
|
+
variables: {
|
|
8516
|
+
key: string;
|
|
8517
|
+
value: string;
|
|
8518
|
+
}[] | null;
|
|
8519
|
+
url: string;
|
|
8520
|
+
};
|
|
8521
|
+
merge_request: {
|
|
8522
|
+
id: number;
|
|
8523
|
+
iid: number;
|
|
8524
|
+
title: string;
|
|
8525
|
+
source_branch: string;
|
|
8526
|
+
source_project_id: number;
|
|
8527
|
+
target_branch: string;
|
|
8528
|
+
target_project_id: number;
|
|
8529
|
+
state: string;
|
|
8530
|
+
merge_status: string;
|
|
8531
|
+
detailed_merge_status: string;
|
|
8532
|
+
url: string;
|
|
8533
|
+
};
|
|
8534
|
+
commit: {
|
|
8535
|
+
id: string;
|
|
8536
|
+
message: string;
|
|
8537
|
+
timestamp: string;
|
|
8538
|
+
url: string;
|
|
8539
|
+
author: {
|
|
8540
|
+
name: string;
|
|
8541
|
+
email: string;
|
|
8542
|
+
};
|
|
8543
|
+
};
|
|
8544
|
+
source_pipeline: WebhookPipelineSchema;
|
|
8545
|
+
builds: {
|
|
8546
|
+
id: number;
|
|
8547
|
+
stage: string;
|
|
8548
|
+
name: string;
|
|
8549
|
+
status: string;
|
|
8550
|
+
created_at: string;
|
|
8551
|
+
started_at: string | null;
|
|
8552
|
+
finished_at: string | null;
|
|
8553
|
+
duration: number | null;
|
|
8554
|
+
queued_duration: number | null;
|
|
8555
|
+
failure_reason: string | null;
|
|
8556
|
+
when: string;
|
|
8557
|
+
manual: boolean;
|
|
8558
|
+
allow_failure: boolean;
|
|
8559
|
+
user: MappedOmit<UserSchema, 'created_at'>;
|
|
8560
|
+
runner: {
|
|
8561
|
+
id: number;
|
|
8562
|
+
description: string;
|
|
8563
|
+
active: boolean;
|
|
8564
|
+
runner_type: string;
|
|
8565
|
+
is_shared: boolean;
|
|
8566
|
+
tags: string[] | null;
|
|
8567
|
+
} | null;
|
|
8568
|
+
artifacts_file: {
|
|
8569
|
+
filename: string | null;
|
|
8570
|
+
size: string | null;
|
|
8571
|
+
};
|
|
8572
|
+
environment: {
|
|
8573
|
+
name: string;
|
|
8574
|
+
action: string;
|
|
8575
|
+
deployment_tier: string;
|
|
8576
|
+
} | null;
|
|
8577
|
+
}[] | null;
|
|
8578
|
+
}
|
|
8579
|
+
interface WebhookJobEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8580
|
+
object_kind: 'build';
|
|
8581
|
+
ref: string;
|
|
8582
|
+
tag: boolean;
|
|
8583
|
+
before_sha: string;
|
|
8584
|
+
sha: string;
|
|
8585
|
+
build_id: number;
|
|
8586
|
+
build_name: string;
|
|
8587
|
+
build_stage: string;
|
|
8588
|
+
build_status: string;
|
|
8589
|
+
build_created_at: string;
|
|
8590
|
+
build_started_at: string | null;
|
|
8591
|
+
build_finished_at: string | null;
|
|
8592
|
+
build_duration: number | null;
|
|
8593
|
+
build_queued_duration: number;
|
|
8594
|
+
build_allow_failure: boolean;
|
|
8595
|
+
build_failure_reason: string;
|
|
8596
|
+
retries_count: number;
|
|
8597
|
+
pipeline_id: number;
|
|
8598
|
+
project_id: number;
|
|
8599
|
+
project_name: string;
|
|
8600
|
+
commit: {
|
|
8601
|
+
id: number;
|
|
8602
|
+
name: string;
|
|
8603
|
+
sha: string;
|
|
8604
|
+
message: string;
|
|
8605
|
+
author_name: string;
|
|
8606
|
+
author_email: string;
|
|
8607
|
+
status: string;
|
|
8608
|
+
duration: number | null;
|
|
8609
|
+
started_at: string | null;
|
|
8610
|
+
finished_at: string | null;
|
|
8611
|
+
};
|
|
8612
|
+
repository: WebhookRepositorySchema;
|
|
8613
|
+
runner: {
|
|
8614
|
+
active: boolean;
|
|
8615
|
+
runner_type: string;
|
|
8616
|
+
is_shared: boolean;
|
|
8617
|
+
id: number;
|
|
8618
|
+
description: string;
|
|
8619
|
+
tags: string[] | null;
|
|
8620
|
+
};
|
|
8621
|
+
environment: {
|
|
8622
|
+
name: string;
|
|
8623
|
+
action: string;
|
|
8624
|
+
deployment_tier: string;
|
|
8625
|
+
} | null;
|
|
8626
|
+
source_pipeline: WebhookPipelineSchema;
|
|
8627
|
+
}
|
|
8628
|
+
interface WebhookDeploymentEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8629
|
+
object_kind: 'deployment';
|
|
8630
|
+
status: string;
|
|
8631
|
+
status_changed_at: string;
|
|
8632
|
+
deployment_id: number;
|
|
8633
|
+
deployable_id: number;
|
|
8634
|
+
deployable_url: string;
|
|
8635
|
+
environment: string;
|
|
8636
|
+
environment_tier: string;
|
|
8637
|
+
environment_slug: string;
|
|
8638
|
+
environment_external_url: string;
|
|
8639
|
+
short_sha: string;
|
|
8640
|
+
user_url: string;
|
|
8641
|
+
commit_url: string;
|
|
8642
|
+
commit_title: string;
|
|
8643
|
+
}
|
|
8644
|
+
interface WebhookGroupMemberEventSchema {
|
|
8645
|
+
event_name: 'user_remove_from_group' | 'user_update_for_group';
|
|
8646
|
+
created_at: string;
|
|
8647
|
+
updated_at: string;
|
|
8648
|
+
group_name: string;
|
|
8649
|
+
group_path: string;
|
|
8650
|
+
group_id: number;
|
|
8651
|
+
user_username: string;
|
|
8652
|
+
user_name: string;
|
|
8653
|
+
user_email: string;
|
|
8654
|
+
user_id: number;
|
|
8655
|
+
group_access: string;
|
|
8656
|
+
group_plan: string | null;
|
|
8657
|
+
expires_at: string;
|
|
8658
|
+
}
|
|
8659
|
+
interface WebhookSubGroupEventSchema {
|
|
8660
|
+
event_name: 'subgroup_create' | 'subgroup_destroy';
|
|
8661
|
+
created_at: string;
|
|
8662
|
+
updated_at: string;
|
|
8663
|
+
name: string;
|
|
8664
|
+
path: string;
|
|
8665
|
+
full_path: string;
|
|
8666
|
+
group_id: number;
|
|
8667
|
+
parent_group_id: number;
|
|
8668
|
+
parent_name: string;
|
|
8669
|
+
parent_path: string;
|
|
8670
|
+
parent_full_path: string;
|
|
8671
|
+
}
|
|
8672
|
+
interface WebhookFeatureFlagEventSchema extends MappedOmit<BaseWebhookEventSchema, 'event_name'> {
|
|
8673
|
+
object_kind: 'feature_flag';
|
|
8674
|
+
user_url: string;
|
|
8675
|
+
object_attributes: {
|
|
8676
|
+
id: number;
|
|
8677
|
+
name: string;
|
|
8678
|
+
description: string;
|
|
8679
|
+
active: boolean;
|
|
8680
|
+
};
|
|
8681
|
+
}
|
|
8682
|
+
interface WebhookReleaseEventSchema {
|
|
8683
|
+
object_kind: 'release';
|
|
8684
|
+
project: WebhookProjectSchema;
|
|
8685
|
+
id: number;
|
|
8686
|
+
created_at: string;
|
|
8687
|
+
description: string;
|
|
8688
|
+
name: string;
|
|
8689
|
+
released_at: string;
|
|
8690
|
+
tag: string;
|
|
8691
|
+
url: string;
|
|
8692
|
+
action: string;
|
|
8693
|
+
assets: {
|
|
8694
|
+
count: number;
|
|
8695
|
+
links: {
|
|
8696
|
+
id: number;
|
|
8697
|
+
link_type: string;
|
|
8698
|
+
name: string;
|
|
8699
|
+
url: string;
|
|
8700
|
+
}[] | null;
|
|
8701
|
+
sources: {
|
|
8702
|
+
format: string;
|
|
8703
|
+
url: string;
|
|
8704
|
+
}[] | null;
|
|
8705
|
+
};
|
|
8706
|
+
commit: {
|
|
8707
|
+
id: string;
|
|
8708
|
+
message: string;
|
|
8709
|
+
title: string;
|
|
8710
|
+
timestamp: string;
|
|
8711
|
+
url: string;
|
|
8712
|
+
author: {
|
|
8713
|
+
name: string;
|
|
8714
|
+
email: string;
|
|
8715
|
+
};
|
|
8716
|
+
};
|
|
8717
|
+
}
|
|
8718
|
+
interface WebhookEmojiEventSchema extends BaseWebhookEventSchema {
|
|
8719
|
+
object_kind: 'emoji';
|
|
8720
|
+
event_type: 'award';
|
|
8721
|
+
project_id: number;
|
|
8722
|
+
object_attributes: {
|
|
8723
|
+
user_id: number;
|
|
8724
|
+
created_at: string;
|
|
8725
|
+
id: number;
|
|
8726
|
+
name: string;
|
|
8727
|
+
awardable_type: string;
|
|
8728
|
+
awardable_id: number;
|
|
8729
|
+
updated_at: string;
|
|
8730
|
+
action: string;
|
|
8731
|
+
awarded_on_url: string;
|
|
8732
|
+
};
|
|
8733
|
+
note: {
|
|
8734
|
+
attachment: string | null;
|
|
8735
|
+
author_id: number;
|
|
8736
|
+
change_position: boolean | null;
|
|
8737
|
+
commit_id: number | null;
|
|
8738
|
+
created_at: string;
|
|
8739
|
+
discussion_id: string;
|
|
8740
|
+
id: number;
|
|
8741
|
+
line_code: string | null;
|
|
8742
|
+
note: string;
|
|
8743
|
+
noteable_id: number;
|
|
8744
|
+
noteable_type: string;
|
|
8745
|
+
original_position: number | null;
|
|
8746
|
+
position: number | null;
|
|
8747
|
+
project_id: number;
|
|
8748
|
+
resolved_at: string | null;
|
|
8749
|
+
resolved_by_id: number | null;
|
|
8750
|
+
resolved_by_push: boolean | null;
|
|
8751
|
+
st_diff: WebhookDiffSchema | null;
|
|
8752
|
+
system: boolean;
|
|
8753
|
+
type: string | null;
|
|
8754
|
+
updated_at: string;
|
|
8755
|
+
updated_by_id: number | null;
|
|
8756
|
+
description: string;
|
|
8757
|
+
url: string;
|
|
8758
|
+
};
|
|
8759
|
+
issue: {
|
|
8760
|
+
author_id: number;
|
|
8761
|
+
closed_at: string | null;
|
|
8762
|
+
confidential: boolean;
|
|
8763
|
+
created_at: string;
|
|
8764
|
+
description: string;
|
|
8765
|
+
discussion_locked: boolean | null;
|
|
8766
|
+
due_date: string | null;
|
|
8767
|
+
id: number;
|
|
8768
|
+
iid: number;
|
|
8769
|
+
last_edited_at: string | null;
|
|
8770
|
+
last_edited_by_id: number | null;
|
|
8771
|
+
milestone_id: number | null;
|
|
8772
|
+
moved_to_id: number | null;
|
|
8773
|
+
duplicated_to_id: number | null;
|
|
8774
|
+
project_id: number;
|
|
8775
|
+
relative_position: number;
|
|
8776
|
+
state_id: number;
|
|
8777
|
+
time_estimate: number;
|
|
8778
|
+
title: string;
|
|
8779
|
+
updated_at: string;
|
|
8780
|
+
updated_by_id: number | null;
|
|
8781
|
+
weight: number | null;
|
|
8782
|
+
health_status: string | null;
|
|
8783
|
+
url: string;
|
|
8784
|
+
total_time_spent: number;
|
|
8785
|
+
time_change: number;
|
|
8786
|
+
human_total_time_spent: string | null;
|
|
8787
|
+
human_time_change: string | null;
|
|
8788
|
+
human_time_estimate: string | null;
|
|
8789
|
+
assignee_ids: number[] | null;
|
|
8790
|
+
assignee_id: number;
|
|
8791
|
+
labels: WebhookLabelSchema[] | null;
|
|
8792
|
+
state: string;
|
|
8793
|
+
severity: string;
|
|
8794
|
+
};
|
|
8795
|
+
}
|
|
8796
|
+
|
|
8797
|
+
export { type AcceptMergeRequestOptions, AccessLevel, type AccessLevelSettingState, type AccessRequestSchema, type AccessTokenSchema, type AccessTokenScopes, type AddMemeberOptions, type AddResourceHookOptions, Agents, AlertManagement, type AllAuditEventOptions, type AllCommitsOptions, type AllDeploymentsOptions, type AllEpicsOptions, type AllEventOptions, type AllForksOptions, type AllGroupProjectsOptions, type AllGroupsOptions, type AllIssueStatisticsOptions, type AllIssuesOptions, type AllIterationsOptions, type AllMembersOptions, type AllMergeRequestsOptions, type AllMilestonesOptions, type AllPackageOptions, type AllPersonalAccessTokenOptions, type AllPipelinesOptions, type AllProjectsOptions, type AllProvisionedUsersOptions, type AllRepositoryTreesOptions, type AllRunnersOptions, type AllSearchOptions, type AllUserProjectsOptions, type AllUsersOptions, type AllowedAgentSchema, ApplicationAppearance, type ApplicationAppearanceSchema, type ApplicationPlanLimitOptions, type ApplicationPlanLimitSchema, ApplicationPlanLimits, type ApplicationSchema, ApplicationSettings, type ApplicationSettingsSchema, type ApplicationStatisticSchema, ApplicationStatistics, Applications, type ApprovalRuleSchema, type ApprovalStateSchema, type ApprovedByEntity, type ArchiveType, type ArtifactSchema, type AsStream, type AuditEventSchema, AuditEvents, Avatar, type AvatarSchema, type AwardEmojiSchema, type BadgeSchema, type BaseExternalStatusCheckSchema, type BasePaginationRequestOptions, type BaseRequestOptions, type BaseWebhookEventSchema, type BillableGroupMemberMembershipSchema, type BillableGroupMemberSchema, type BlobSchema, type BranchSchema, Branches, type BridgeSchema, type BroadcastMessageOptions, type BroadcastMessageSchema, BroadcastMessages, type BurndownChartEventSchema, type CICDVariableSchema, type Camelize, type ClusterAgentSchema, type ClusterAgentTokenSchema, type CodeCompletionSchema, type CodeSuggestionSchema, CodeSuggestions, type CommitAction, type CommitCommentSchema, type CommitDiffSchema, type CommitDiscussionNoteSchema, type CommitDiscussionSchema, CommitDiscussions, type CommitReferenceSchema, type CommitSchema, type CommitSignatureSchema, type CommitStatsSchema, type CommitStatusSchema, type CommitablePipelineStatus, Commits, Composer, type ComposerPackageMetadataSchema, type ComposerV1BaseRepositorySchema, type ComposerV1PackagesSchema, type ComposerV2BaseRepositorySchema, Conan, type CondensedBadgeSchema, type CondensedCommitCommentSchema, type CondensedCommitSchema, type CondensedDeployKeySchema, type CondensedEnvironmentSchema, type CondensedEpicLinkSchema, type CondensedGroupSchema, type CondensedJobSchema, type CondensedMemberSchema, type CondensedMergeRequestSchema, type CondensedNamespaceSchema, type CondensedPipelineScheduleSchema, type CondensedProjectSchema, type CondensedRegistryRepositorySchema, type CondensedRegistryRepositoryTagSchema, ContainerRegistry, type CreateAndEditPushRuleOptions, type CreateApprovalRuleOptions, type CreateCommitOptions, type CreateEpicOptions, type CreateFeatureFlagOptions, type CreateGeoNodeOptions, type CreateGeoSiteOptions, type CreateGroupOptions, type CreateIssueOptions, type CreateMergeRequestOptions, type CreateProjectOptions, type CreateProtectedBranchAllowOptions, type CreateProtectedBranchOptions, type CreateRepositoryFileOptions, type CreateRunnerOptions, type CreateSnippetOptions, type CreateSystemHook, type CreateUserCIRunnerOptions, type CreateUserOptions, type CustomAttributeSchema, type CustomSettingLevelEmailEvents, type DORA4MetricSchema, type DashboardAnnotationSchema, DashboardAnnotations, Debian, DependencyProxy, type DeployKeyProjectsSchema, type DeployKeySchema, DeployKeys, type DeployTokenSchema, type DeployTokenScope, DeployTokens, type DeployableSchema, type DeploymentApprovalStatusSchema, type DeploymentSchema, type DeploymentStatus, Deployments, type DiffRefsSchema, type DiscussionNotePositionBaseSchema, type DiscussionNotePositionImageSchema, type DiscussionNotePositionOptions, type DiscussionNotePositionSchema, type DiscussionNotePositionTextSchema, type DiscussionNoteSchema, type DiscussionSchema, DockerfileTemplates, type EditApprovalRuleOptions, type EditBadgeOptions, type EditChangelogOptions, type EditConfigurationOptions, type EditEpicOptions, type EditFeatureFlagOptions, type EditGeoNodeOptions, type EditGeoSiteOptions, type EditGroupOptions, type EditIssueOptions, type EditMergeRequestOptions, type EditNotificationSettingsOptions, type EditPipelineStatusOptions, type EditProjectOptions, type EditProtectedBranchAllowOptions, type EditProtectedBranchOptions, type EditRepositoryFileOptions, type EditResourceHookOptions, type EditRunnerOptions, type EditSnippetOptions, type EditUserOptions, type EnvironmentSchema, type EnvironmentTier, Environments, EpicAwardEmojis, EpicDiscussions, type EpicIssueSchema, EpicIssues, EpicLabelEvents, type EpicLinkSchema, EpicLinks, type EpicNoteSchema, EpicNotes, type EpicSchema, type EpicSchemaWithBasicLabels, type EpicSchemaWithExpandedLabels, type EpicTodoSchema, Epics, type ErrorTrackingClientKeySchema, ErrorTrackingClientKeys, ErrorTrackingSettings, type ErrorTrackingSettingsSchema, type EventSchema, Events, type ExpandedCommitSchema, type ExpandedDeployKeySchema, type ExpandedEpicIssueSchema, type ExpandedGroupSchema, type ExpandedHookSchema, type ExpandedIssueLinkSchema, type ExpandedMergeRequestDiffVersionsSchema, type ExpandedMergeRequestSchema, type ExpandedPackageSchema, type ExpandedPipelineScheduleSchema, type ExpandedPipelineSchema, type ExpandedRepositoryImportStatusSchema, type ExpandedResponse, type ExpandedRunnerSchema, type ExpandedSnippetSchema, type ExpandedUserSchema, type ExperimentGateSchema, type ExperimentSchema, Experiments, type ExportStatusSchema, type ExtendedProtectedBranchAccessLevelSchema, type ExternalStatusCheckProtectedBranchesSchema, ExternalStatusChecks, type FailedRelationSchema, type FeatureFlagSchema, type FeatureFlagStrategySchema, type FeatureFlagStrategyScopeSchema, type FeatureFlagUserListSchema, FeatureFlagUserLists, FeatureFlags, type ForkProjectOptions, type FreezePeriodSchema, FreezePeriods, type GPGSignatureSchema, type GeoNodeFailureSchema, type GeoNodeSchema, type GeoNodeStatusSchema, GeoNodes, type GeoSiteFailureSchema, type GeoSiteSchema, type GeoSiteStatusSchema, GeoSites, GitLabCIYMLTemplates, GitignoreTemplates, Gitlab, type GitlabAPIResponse, GitlabPages, GoProxy, type GoProxyModuleVersionSchema, GroupAccessRequests, GroupAccessTokens, GroupActivityAnalytics, type GroupAnalyticsIssuesCountSchema, type GroupAnalyticsMRsCountSchema, type GroupAnalyticsNewMembersCountSchema, type GroupBadgeSchema, GroupBadges, GroupCustomAttributes, GroupDORA4Metrics, type GroupEpicBoardListSchema, type GroupEpicBoardSchema, GroupEpicBoards, type GroupHookSchema, GroupHooks, GroupImportExports, GroupInvitations, GroupIssueBoards, GroupIterations, GroupLDAPLinks, GroupLabels, GroupMemberRoles, GroupMembers, GroupMilestones, GroupProtectedEnvironments, GroupPushRules, type GroupRelationExportStatusSchema, GroupRelationExports, GroupReleases, type GroupRepositoryStorageMoveSchema, GroupRepositoryStorageMoves, GroupSAMLIdentities, GroupSAMLLinks, GroupSCIMIdentities, type GroupSchema, type GroupServiceAccountSchema, GroupServiceAccounts, type GroupStatisticsSchema, GroupVariables, GroupWikis, Groups, type GrouptIssueBoardSchema, Helm, type HookSchema, type IdentitySchema, type ImpersonationTokenScope, type ImpersonationTokenState, Import, type ImportStatusSchema, type IncludeInherited, InstanceLevelCICDVariables, type IntegrationSchema, Integrations, type InvitationSchema, type IsForm, IssueAwardEmojis, type IssueBoardListSchema, type IssueBoardSchema, IssueDiscussions, IssueIterationEvents, IssueLabelEvents, type IssueLinkSchema, IssueLinks, IssueMilestoneEvents, IssueNoteAwardEmojis, type IssueNoteSchema, IssueNotes, type IssueSchema, type IssueSchemaWithBasicLabels, type IssueSchemaWithExpandedLabels, IssueStateEvents, IssueWeightEvents, Issues, IssuesStatistics, type IterationEventSchema, type IterationSchema, JobArtifacts, type JobKubernetesAgentsSchema, type JobSchema, type JobScope, type JobVariableAttributeOption, Jobs, type KeySchema, Keys, type KeysetPagination, type KeysetPaginationRequestOptions, type LabelCountSchema, type LabelEventSchema, type LabelSchema, License, type LicenseSchema, type LicenseTemplateSchema, LicenseTemplates, LinkedEpics, Lint, type LintSchema, Markdown, type MarkdownSchema, Maven, type MemberRoleSchema, type MemberSchema, MergeRequestApprovals, MergeRequestAwardEmojis, type MergeRequestChangesSchema, type MergeRequestContextCommitSchema, MergeRequestContextCommits, type MergeRequestDiffSchema, type MergeRequestDiffVersionsSchema, type MergeRequestDiscussionNotePositionOptions, type MergeRequestDiscussionNoteSchema, MergeRequestDiscussions, type MergeRequestDraftNotePositionSchema, type MergeRequestDraftNoteSchema, MergeRequestDraftNotes, type MergeRequestExternalStatusCheckSchema, MergeRequestLabelEvents, type MergeRequestLevelApprovalRuleSchema, type MergeRequestLevelMergeRequestApprovalSchema, MergeRequestMilestoneEvents, MergeRequestNoteAwardEmojis, type MergeRequestNoteSchema, MergeRequestNotes, type MergeRequestRebaseSchema, type MergeRequestSchema, type MergeRequestSchemaWithBasicLabels, type MergeRequestSchemaWithExpandedLabels, type MergeRequestTodoSchema, MergeRequests, type MergeTrainSchema, MergeTrains, Metadata, type MetadataSchema, type MetricImageSchema, type MetricType, type MigrationEntityFailure, type MigrationEntityOptions, type MigrationEntitySchema, type MigrationStatus, type MigrationStatusSchema, Migrations, type MilestoneEventSchema, type MilestoneSchema, type MissingSignatureSchema, NPM, type NPMPackageMetadataSchema, type NPMVersionSchema, type NamespaceSchema, Namespaces, type NoteSchema, type NotificationSettingLevel, type NotificationSettingSchema, NotificationSettings, NuGet, type NuGetPackageIndexSchema, type NuGetResourceSchema, type NuGetSearchResultSchema, type NuGetSearchResultsSchema, type NuGetServiceIndexSchema, type NuGetServiceMetadataItemSchema, type NuGetServiceMetadataSchema, type NuGetServiceMetadataVersionSchema, type OffsetPagination, type OffsetPaginationRequestOptions, type OverrodeGroupMemberSchema, type PackageFileSchema, type PackageMetadata, PackageRegistry, type PackageRegistrySchema, type PackageSchema, type PackageSnapshotSchema, Packages, type PagesDomainSchema, PagesDomains, type PaginatedResponse, type PaginationRequestOptions, type PaginationRequestSubOptions, type PaginationTypes, type PersonalAccessTokenSchema, type PersonalAccessTokenScopes, PersonalAccessTokens, type PipelineScheduleSchema, PipelineScheduleVariables, PipelineSchedules, type PipelineSchema, type PipelineStatus, type PipelineTestCaseSchema, type PipelineTestReportSchema, type PipelineTestReportSummarySchema, type PipelineTestSuiteSchema, type PipelineTriggerTokenSchema, PipelineTriggerTokens, type PipelineVariableSchema, Pipelines, type ProcessMetricSchema, ProductAnalytics, ProjectAccessRequests, ProjectAccessTokens, type ProjectAliasSchema, ProjectAliases, type ProjectBadgeSchema, ProjectBadges, ProjectCustomAttributes, ProjectDORA4Metrics, type ProjectExternalStatusCheckSchema, type ProjectFileUploadSchema, type ProjectHookSchema, ProjectHooks, ProjectImportExports, ProjectInvitations, type ProjectIssueBoardSchema, ProjectIssueBoards, ProjectIterations, ProjectLabels, type ProjectLevelApprovalRuleSchema, type ProjectLevelMergeRequestApprovalSchema, type ProjectLicenseSchema, ProjectMembers, ProjectMilestones, ProjectProtectedEnvironments, ProjectPushRules, ProjectRelationsExport, ProjectReleases, type ProjectRemoteMirrorSchema, ProjectRemoteMirrors, type ProjectRepositoryStorageMoveSchema, ProjectRepositoryStorageMoves, type ProjectSchema, ProjectSnippetAwardEmojis, ProjectSnippetDiscussions, ProjectSnippetNotes, ProjectSnippets, type ProjectStarrerSchema, type ProjectStatisticSchema, ProjectStatistics, type ProjectStatisticsSchema, type ProjectStoragePath, type ProjectTemplateSchema, type ProjectTemplateType, ProjectTemplates, type ProjectVariableSchema, ProjectVariables, ProjectVulnerabilities, type ProjectVulnerabilitySchema, ProjectWikis, Projects, type ProtectedBranchAccessLevel, type ProtectedBranchSchema, ProtectedBranches, type ProtectedEnvironmentAccessLevelEntity, type ProtectedEnvironmentAccessLevelSummarySchema, type ProtectedEnvironmentSchema, type ProtectedTagAccessLevel, type ProtectedTagAccessLevelEntity, type ProtectedTagAccessLevelSummarySchema, type ProtectedTagSchema, ProtectedTags, type PushRuleSchema, PyPI, type RecipeSnapshotSchema, type ReferenceSchema, type RegistryRepositorySchema, type RegistryRepositoryTagSchema, type RelatedEpicLinkSchema, type RelatedEpicLinkType, type RelatedEpicSchema, type RelationsExportStatusSchema, type ReleaseAssetLink, type ReleaseAssetSource, type ReleaseEvidence, type ReleaseLinkSchema, ReleaseLinks, type ReleaseSchema, type RemoveRepositoryFileOptions, type RemoveSidekiqQueueOptions, Repositories, type RepositoryBlobSchema, type RepositoryChangelogSchema, type RepositoryCompareSchema, type RepositoryContributorSchema, type RepositoryFileBlameSchema, type RepositoryFileExpandedSchema, type RepositoryFileSchema, RepositoryFiles, type RepositoryImportStatusSchema, type RepositoryStorageMoveSchema, type RepositorySubmoduleSchema, RepositorySubmodules, type RepositoryTreeSchema, ResourceAccessRequests, ResourceAccessTokens, ResourceAwardEmojis, ResourceBadges, ResourceCustomAttributes, ResourceDORA4Metrics, ResourceDiscussions, type ResourceGroupSchema, ResourceGroups, ResourceHooks, ResourceInvitations, ResourceIssueBoards, ResourceIterationEvents, ResourceIterations, ResourceLabelEvents, ResourceLabels, ResourceMembers, ResourceMilestoneEvents, ResourceMilestones, ResourceNoteAwardEmojis, ResourceNotes, ResourceProtectedEnvironments, ResourcePushRules, ResourceRepositoryStorageMoves, ResourceStateEvents, ResourceTemplates, ResourceVariables, ResourceWeightEvents, ResourceWikis, type ReviewAppSchema, RubyGems, type RunnerSchema, type RunnerToken, Runners, type SAMLGroupSchema, Search, SearchAdmin, type SearchMigrationSchema, type SearchScopes, type SecureFileSchema, SecureFiles, type ServiceAccountAccessTokenSchema, type ServiceAccountSchema, ServiceAccounts, ServiceData, type ShowChangelogOptions, type ShowExpanded, type SidekickCompoundMetricsSchema, type SidekickJobStatsSchema, type SidekickProcessMetricsSchema, type SidekickQueueMetricsSchema, SidekiqMetrics, type SidekiqQueueStatus, SidekiqQueues, type SimpleGroupSchema, type SimpleLabelSchema, type SimpleMemberSchema, type SimpleProjectSchema, type SimpleSnippetSchema, type SnippetNoteSchema, type SnippetRepositoryStorageMoveSchema, SnippetRepositoryStorageMoves, type SnippetSchema, type SnippetVisibility, Snippets, type StarredDashboardSchema, type StateEventSchema, type StatisticsSchema, type Sudo, type SuggestionSchema, Suggestions, type SupportedIntegration, type SystemHookTestResponse, SystemHooks, type TagSchema, type TagSignatureSchema, Tags, type TaskCompletionStatusSchema, type TemplateSchema, type TimeStatsSchema, type TodoAction, TodoLists, type TodoSchema, type TodoState, type TodoType, type TopicSchema, Topics, type UserActivitySchema, type UserAgentDetailSchema, type UserAssociationCountSchema, type UserCountSchema, UserCustomAttributes, type UserEmailSchema, UserEmails, type UserGPGKeySchema, UserGPGKeys, type UserImpersonationTokenSchema, UserImpersonationTokens, type UserMembershipSchema, type UserPreferenceSchema, type UserRunnerSchema, type UserSSHKeySchema, UserSSHKeys, type UserSchema, UserStarredMetricsDashboard, type UserStatusSchema, Users, type VariableFilter, type VariableSchema, type VariableType, type WebhookBaseNoteEventSchema, type WebhookBasePushEventSchema, type WebhookCommitNoteEventSchema, type WebhookDeploymentEventSchema, type WebhookDiffSchema, type WebhookEmojiEventSchema, type WebhookFeatureFlagEventSchema, type WebhookGroupMemberEventSchema, type WebhookIssueEventSchema, type WebhookIssueNoteEventSchema, type WebhookJobEventSchema, type WebhookLabelSchema, type WebhookMergeRequestEventSchema, type WebhookMergeRequestNoteEventSchema, type WebhookPipelineEventSchema, type WebhookPipelineSchema, type WebhookProjectSchema, type WebhookPushEventSchema, type WebhookReleaseEventSchema, type WebhookRepositorySchema, type WebhookSnippetNoteEventSchema, type WebhookSubGroupEventSchema, type WebhookTagEventSchema, type WebhookWikiEventSchema, type WeightEventSchema, type WikiAttachmentSchema, type WikiSchema, type X509SignatureSchema };
|