vercel-api-js 0.23.5 → 0.24.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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +16 -0
- package/dist/index.cjs +2 -32
- package/dist/index.d.cts +165 -446
- package/dist/index.d.mts +165 -446
- package/dist/index.d.ts +165 -446
- package/dist/index.mjs +2 -32
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -518,10 +518,6 @@ type UserEvent = {
|
|
|
518
518
|
* The value of the Shared Env Var.
|
|
519
519
|
*/
|
|
520
520
|
value?: string;
|
|
521
|
-
/**
|
|
522
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
523
|
-
*/
|
|
524
|
-
vsmValue?: string;
|
|
525
521
|
/**
|
|
526
522
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
527
523
|
*
|
|
@@ -625,10 +621,6 @@ type UserEvent = {
|
|
|
625
621
|
* The value of the Shared Env Var.
|
|
626
622
|
*/
|
|
627
623
|
value?: string;
|
|
628
|
-
/**
|
|
629
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
630
|
-
*/
|
|
631
|
-
vsmValue?: string;
|
|
632
624
|
/**
|
|
633
625
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
634
626
|
*
|
|
@@ -731,10 +723,6 @@ type UserEvent = {
|
|
|
731
723
|
* The value of the Shared Env Var.
|
|
732
724
|
*/
|
|
733
725
|
value?: string;
|
|
734
|
-
/**
|
|
735
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
736
|
-
*/
|
|
737
|
-
vsmValue?: string;
|
|
738
726
|
/**
|
|
739
727
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
740
728
|
*
|
|
@@ -956,6 +944,11 @@ type UserEvent = {
|
|
|
956
944
|
microfrontendProjectsPerGroup?: number;
|
|
957
945
|
flagsExplorerOverridesThreshold?: number;
|
|
958
946
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
947
|
+
buildMachine?: {
|
|
948
|
+
purchaseType?: 'enhanced';
|
|
949
|
+
cores?: number;
|
|
950
|
+
memory?: number;
|
|
951
|
+
};
|
|
959
952
|
};
|
|
960
953
|
/**
|
|
961
954
|
* User | Team resource limits
|
|
@@ -1839,6 +1832,8 @@ type UserEvent = {
|
|
|
1839
1832
|
username: string;
|
|
1840
1833
|
};
|
|
1841
1834
|
previousCanceledAt?: string;
|
|
1835
|
+
} | {
|
|
1836
|
+
enforced: boolean;
|
|
1842
1837
|
} | {
|
|
1843
1838
|
name?: string;
|
|
1844
1839
|
} | {
|
|
@@ -2028,7 +2023,7 @@ type UserEvent = {
|
|
|
2028
2023
|
*/
|
|
2029
2024
|
isDefaultApp?: boolean;
|
|
2030
2025
|
/**
|
|
2031
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
2026
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
2032
2027
|
*/
|
|
2033
2028
|
defaultRoute?: string;
|
|
2034
2029
|
/**
|
|
@@ -2068,7 +2063,7 @@ type UserEvent = {
|
|
|
2068
2063
|
*/
|
|
2069
2064
|
isDefaultApp?: boolean;
|
|
2070
2065
|
/**
|
|
2071
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
2066
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
2072
2067
|
*/
|
|
2073
2068
|
defaultRoute?: string;
|
|
2074
2069
|
/**
|
|
@@ -2519,6 +2514,23 @@ type AuthUser = {
|
|
|
2519
2514
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2520
2515
|
*/
|
|
2521
2516
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
2517
|
+
/**
|
|
2518
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2519
|
+
*/
|
|
2520
|
+
buildMachine?: {
|
|
2521
|
+
/**
|
|
2522
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2523
|
+
*/
|
|
2524
|
+
purchaseType?: 'enhanced';
|
|
2525
|
+
/**
|
|
2526
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2527
|
+
*/
|
|
2528
|
+
cores?: number;
|
|
2529
|
+
/**
|
|
2530
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2531
|
+
*/
|
|
2532
|
+
memory?: number;
|
|
2533
|
+
};
|
|
2522
2534
|
};
|
|
2523
2535
|
/**
|
|
2524
2536
|
* Prefix that will be used in the URL of "Preview" deployments created by the User account.
|
|
@@ -4441,7 +4453,13 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4441
4453
|
aliasFinal?: string | null;
|
|
4442
4454
|
automaticAliases?: string[];
|
|
4443
4455
|
branchMatcher?: {
|
|
4456
|
+
/**
|
|
4457
|
+
* The type of matching to perform
|
|
4458
|
+
*/
|
|
4444
4459
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
4460
|
+
/**
|
|
4461
|
+
* The pattern to match against branch names
|
|
4462
|
+
*/
|
|
4445
4463
|
pattern: string;
|
|
4446
4464
|
};
|
|
4447
4465
|
buildingAt?: number;
|
|
@@ -4586,7 +4604,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4586
4604
|
*/
|
|
4587
4605
|
isDefaultApp?: boolean;
|
|
4588
4606
|
/**
|
|
4589
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
4607
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
4590
4608
|
*/
|
|
4591
4609
|
defaultRoute?: string;
|
|
4592
4610
|
/**
|
|
@@ -4621,6 +4639,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4621
4639
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4622
4640
|
functionZeroConfigFailover?: boolean;
|
|
4623
4641
|
elasticConcurrencyEnabled?: boolean;
|
|
4642
|
+
buildMachineType?: 'enhanced';
|
|
4624
4643
|
};
|
|
4625
4644
|
rollingRelease?: {
|
|
4626
4645
|
/**
|
|
@@ -4648,6 +4667,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4648
4667
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4649
4668
|
functionZeroConfigFailover?: boolean;
|
|
4650
4669
|
elasticConcurrencyEnabled?: boolean;
|
|
4670
|
+
buildMachineType?: 'enhanced';
|
|
4651
4671
|
};
|
|
4652
4672
|
rootDirectory?: string | null;
|
|
4653
4673
|
serverlessFunctionRegion?: string | null;
|
|
@@ -4672,7 +4692,13 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4672
4692
|
aliasFinal?: string | null;
|
|
4673
4693
|
automaticAliases?: string[];
|
|
4674
4694
|
branchMatcher?: {
|
|
4695
|
+
/**
|
|
4696
|
+
* The type of matching to perform
|
|
4697
|
+
*/
|
|
4675
4698
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
4699
|
+
/**
|
|
4700
|
+
* The pattern to match against branch names
|
|
4701
|
+
*/
|
|
4676
4702
|
pattern: string;
|
|
4677
4703
|
};
|
|
4678
4704
|
buildingAt?: number;
|
|
@@ -4857,6 +4883,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4857
4883
|
teamInvite?: ACLAction[];
|
|
4858
4884
|
teamInviteCode?: ACLAction[];
|
|
4859
4885
|
teamJoin?: ACLAction[];
|
|
4886
|
+
teamMemberMfaStatus?: ACLAction[];
|
|
4860
4887
|
teamMicrofrontends?: ACLAction[];
|
|
4861
4888
|
teamOwnMembership?: ACLAction[];
|
|
4862
4889
|
teamOwnMembershipDisconnectSAML?: ACLAction[];
|
|
@@ -4874,6 +4901,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4874
4901
|
endpointVerification?: ACLAction[];
|
|
4875
4902
|
projectTransferIn?: ACLAction[];
|
|
4876
4903
|
oauth2Application?: ACLAction[];
|
|
4904
|
+
vercelRun?: ACLAction[];
|
|
4905
|
+
vercelRunExec?: ACLAction[];
|
|
4877
4906
|
aliasProject?: ACLAction[];
|
|
4878
4907
|
aliasProtectionBypass?: ACLAction[];
|
|
4879
4908
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -4950,14 +4979,14 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4950
4979
|
};
|
|
4951
4980
|
hasActiveBranches?: boolean;
|
|
4952
4981
|
trustedIps?: {
|
|
4953
|
-
deploymentType: '
|
|
4982
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
4954
4983
|
addresses: {
|
|
4955
4984
|
value: string;
|
|
4956
4985
|
note?: string;
|
|
4957
4986
|
}[];
|
|
4958
4987
|
protectionMode: 'additional' | 'exclusive';
|
|
4959
4988
|
} | {
|
|
4960
|
-
deploymentType: '
|
|
4989
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
4961
4990
|
} | null;
|
|
4962
4991
|
gitComments?: {
|
|
4963
4992
|
/**
|
|
@@ -8377,56 +8406,6 @@ type DeleteDomainVariables = {
|
|
|
8377
8406
|
* Delete a previously registered domain name from Vercel. Deleting a domain will automatically remove any associated aliases.
|
|
8378
8407
|
*/
|
|
8379
8408
|
declare const deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
8380
|
-
type GetConfigurableLogDrainPathParams = {
|
|
8381
|
-
id: string;
|
|
8382
|
-
};
|
|
8383
|
-
type GetConfigurableLogDrainQueryParams = {
|
|
8384
|
-
/**
|
|
8385
|
-
* The Team identifier to perform the request on behalf of.
|
|
8386
|
-
*/
|
|
8387
|
-
teamId?: string;
|
|
8388
|
-
/**
|
|
8389
|
-
* The Team slug to perform the request on behalf of.
|
|
8390
|
-
*/
|
|
8391
|
-
slug?: string;
|
|
8392
|
-
};
|
|
8393
|
-
type GetConfigurableLogDrainError = ErrorWrapper<undefined>;
|
|
8394
|
-
type GetConfigurableLogDrainResponse = {
|
|
8395
|
-
clientId?: string;
|
|
8396
|
-
configurationId?: string;
|
|
8397
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8398
|
-
environments: ('preview' | 'production')[];
|
|
8399
|
-
disabledBy?: string;
|
|
8400
|
-
firstErrorTimestamp?: number;
|
|
8401
|
-
samplingRate?: number;
|
|
8402
|
-
hideIpAddresses?: boolean;
|
|
8403
|
-
id: string;
|
|
8404
|
-
createdAt: number;
|
|
8405
|
-
deletedAt: number | null;
|
|
8406
|
-
updatedAt: number;
|
|
8407
|
-
url: string;
|
|
8408
|
-
headers?: {
|
|
8409
|
-
[key: string]: string;
|
|
8410
|
-
};
|
|
8411
|
-
projectIds?: string[];
|
|
8412
|
-
name: string;
|
|
8413
|
-
teamId?: string | null;
|
|
8414
|
-
ownerId: string;
|
|
8415
|
-
createdFrom?: 'integration' | 'self-served';
|
|
8416
|
-
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8417
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8418
|
-
disabledAt?: number;
|
|
8419
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8420
|
-
secret: string;
|
|
8421
|
-
};
|
|
8422
|
-
type GetConfigurableLogDrainVariables = {
|
|
8423
|
-
pathParams: GetConfigurableLogDrainPathParams;
|
|
8424
|
-
queryParams?: GetConfigurableLogDrainQueryParams;
|
|
8425
|
-
} & FetcherExtraProps;
|
|
8426
|
-
/**
|
|
8427
|
-
* Retrieves a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be accessed.
|
|
8428
|
-
*/
|
|
8429
|
-
declare const getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
8430
8409
|
type DeleteConfigurableLogDrainPathParams = {
|
|
8431
8410
|
id: string;
|
|
8432
8411
|
};
|
|
@@ -8449,158 +8428,6 @@ type DeleteConfigurableLogDrainVariables = {
|
|
|
8449
8428
|
* Deletes a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be deleted.
|
|
8450
8429
|
*/
|
|
8451
8430
|
declare const deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
8452
|
-
type GetAllLogDrainsQueryParams = {
|
|
8453
|
-
/**
|
|
8454
|
-
* @pattern ^[a-zA-z0-9_]+$
|
|
8455
|
-
*/
|
|
8456
|
-
projectId?: string;
|
|
8457
|
-
projectIdOrName?: string;
|
|
8458
|
-
/**
|
|
8459
|
-
* The Team identifier to perform the request on behalf of.
|
|
8460
|
-
*/
|
|
8461
|
-
teamId?: string;
|
|
8462
|
-
/**
|
|
8463
|
-
* The Team slug to perform the request on behalf of.
|
|
8464
|
-
*/
|
|
8465
|
-
slug?: string;
|
|
8466
|
-
};
|
|
8467
|
-
type GetAllLogDrainsError = ErrorWrapper<undefined>;
|
|
8468
|
-
type GetAllLogDrainsResponse = {
|
|
8469
|
-
clientId?: string;
|
|
8470
|
-
configurationId?: string;
|
|
8471
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8472
|
-
environments: ('preview' | 'production')[];
|
|
8473
|
-
disabledBy?: string;
|
|
8474
|
-
firstErrorTimestamp?: number;
|
|
8475
|
-
samplingRate?: number;
|
|
8476
|
-
hideIpAddresses?: boolean;
|
|
8477
|
-
id: string;
|
|
8478
|
-
createdAt: number;
|
|
8479
|
-
deletedAt: number | null;
|
|
8480
|
-
updatedAt: number;
|
|
8481
|
-
url: string;
|
|
8482
|
-
headers?: {
|
|
8483
|
-
[key: string]: string;
|
|
8484
|
-
};
|
|
8485
|
-
projectIds?: string[];
|
|
8486
|
-
name: string;
|
|
8487
|
-
teamId?: string | null;
|
|
8488
|
-
ownerId: string;
|
|
8489
|
-
createdFrom?: 'integration' | 'self-served';
|
|
8490
|
-
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8491
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8492
|
-
disabledAt?: number;
|
|
8493
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8494
|
-
secret: string;
|
|
8495
|
-
}[];
|
|
8496
|
-
type GetAllLogDrainsVariables = {
|
|
8497
|
-
queryParams?: GetAllLogDrainsQueryParams;
|
|
8498
|
-
} & FetcherExtraProps;
|
|
8499
|
-
/**
|
|
8500
|
-
* Retrieves a list of all the Log Drains owned by the account. This endpoint must be called with an account AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated account can be accessed.
|
|
8501
|
-
*/
|
|
8502
|
-
declare const getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
8503
|
-
type CreateConfigurableLogDrainQueryParams = {
|
|
8504
|
-
/**
|
|
8505
|
-
* The Team identifier to perform the request on behalf of.
|
|
8506
|
-
*/
|
|
8507
|
-
teamId?: string;
|
|
8508
|
-
/**
|
|
8509
|
-
* The Team slug to perform the request on behalf of.
|
|
8510
|
-
*/
|
|
8511
|
-
slug?: string;
|
|
8512
|
-
};
|
|
8513
|
-
type CreateConfigurableLogDrainError = ErrorWrapper<undefined>;
|
|
8514
|
-
type CreateConfigurableLogDrainResponse = {
|
|
8515
|
-
/**
|
|
8516
|
-
* The secret to validate the log-drain payload
|
|
8517
|
-
*/
|
|
8518
|
-
secret?: string;
|
|
8519
|
-
clientId?: string;
|
|
8520
|
-
configurationId?: string;
|
|
8521
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8522
|
-
environments: ('preview' | 'production')[];
|
|
8523
|
-
disabledBy?: string;
|
|
8524
|
-
firstErrorTimestamp?: number;
|
|
8525
|
-
samplingRate?: number;
|
|
8526
|
-
hideIpAddresses?: boolean;
|
|
8527
|
-
id: string;
|
|
8528
|
-
createdAt: number;
|
|
8529
|
-
deletedAt: number | null;
|
|
8530
|
-
updatedAt: number;
|
|
8531
|
-
url: string;
|
|
8532
|
-
headers?: {
|
|
8533
|
-
[key: string]: string;
|
|
8534
|
-
};
|
|
8535
|
-
projectIds?: string[];
|
|
8536
|
-
name: string;
|
|
8537
|
-
teamId?: string | null;
|
|
8538
|
-
ownerId: string;
|
|
8539
|
-
createdFrom?: 'integration' | 'self-served';
|
|
8540
|
-
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8541
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8542
|
-
disabledAt?: number;
|
|
8543
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8544
|
-
};
|
|
8545
|
-
type CreateConfigurableLogDrainRequestBody = {
|
|
8546
|
-
/**
|
|
8547
|
-
* The delivery log format
|
|
8548
|
-
*
|
|
8549
|
-
* @example json
|
|
8550
|
-
*/
|
|
8551
|
-
deliveryFormat: 'json' | 'ndjson';
|
|
8552
|
-
/**
|
|
8553
|
-
* The log drain url
|
|
8554
|
-
*
|
|
8555
|
-
* @format uri
|
|
8556
|
-
* @pattern ^(http|https)?://
|
|
8557
|
-
*/
|
|
8558
|
-
url: string;
|
|
8559
|
-
/**
|
|
8560
|
-
* Headers to be sent together with the request
|
|
8561
|
-
*/
|
|
8562
|
-
headers?: {
|
|
8563
|
-
[key: string]: string;
|
|
8564
|
-
};
|
|
8565
|
-
/**
|
|
8566
|
-
* @minItems 1
|
|
8567
|
-
* @maxItems 50
|
|
8568
|
-
*/
|
|
8569
|
-
projectIds?: string[];
|
|
8570
|
-
/**
|
|
8571
|
-
* @uniqueItems true
|
|
8572
|
-
* @minItems 1
|
|
8573
|
-
*/
|
|
8574
|
-
sources: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8575
|
-
/**
|
|
8576
|
-
* @uniqueItems true
|
|
8577
|
-
* @minItems 1
|
|
8578
|
-
*/
|
|
8579
|
-
environments?: ('preview' | 'production')[];
|
|
8580
|
-
/**
|
|
8581
|
-
* Custom secret of log drain
|
|
8582
|
-
*/
|
|
8583
|
-
secret?: string;
|
|
8584
|
-
/**
|
|
8585
|
-
* The sampling rate for this log drain. It should be a percentage rate between 0 and 100. With max 2 decimal points
|
|
8586
|
-
*
|
|
8587
|
-
* @minimum 0.01
|
|
8588
|
-
* @maximum 1
|
|
8589
|
-
*/
|
|
8590
|
-
samplingRate?: number;
|
|
8591
|
-
/**
|
|
8592
|
-
* The custom name of this log drain.
|
|
8593
|
-
*/
|
|
8594
|
-
name?: string;
|
|
8595
|
-
};
|
|
8596
|
-
type CreateConfigurableLogDrainVariables = {
|
|
8597
|
-
body: CreateConfigurableLogDrainRequestBody;
|
|
8598
|
-
queryParams?: CreateConfigurableLogDrainQueryParams;
|
|
8599
|
-
} & FetcherExtraProps;
|
|
8600
|
-
/**
|
|
8601
|
-
* Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
|
|
8602
|
-
*/
|
|
8603
|
-
declare const createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
8604
8431
|
type GetEdgeConfigsQueryParams = {
|
|
8605
8432
|
/**
|
|
8606
8433
|
* The Team identifier to perform the request on behalf of.
|
|
@@ -10145,7 +9972,7 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
|
|
|
10145
9972
|
isLegacy: boolean;
|
|
10146
9973
|
flags?: string[];
|
|
10147
9974
|
assignedBetaLabelAt?: number;
|
|
10148
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
|
|
9975
|
+
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video" | "tag_workflow")[];
|
|
10149
9976
|
};
|
|
10150
9977
|
/**
|
|
10151
9978
|
* A timestamp that tells you when the configuration was installed successfully
|
|
@@ -10567,6 +10394,10 @@ type ExchangeSsoTokenRequestBody = {
|
|
|
10567
10394
|
* The integration redirect URI
|
|
10568
10395
|
*/
|
|
10569
10396
|
redirect_uri?: string;
|
|
10397
|
+
/**
|
|
10398
|
+
* The grant type, when using x-www-form-urlencoded content type
|
|
10399
|
+
*/
|
|
10400
|
+
grant_type?: 'authorization_code';
|
|
10570
10401
|
};
|
|
10571
10402
|
type ExchangeSsoTokenVariables = {
|
|
10572
10403
|
body: ExchangeSsoTokenRequestBody;
|
|
@@ -10888,82 +10719,6 @@ type DeleteIntegrationLogDrainVariables = {
|
|
|
10888
10719
|
* Deletes the Integration log drain with the provided `id`. When using an OAuth2 Token, the log drain can be deleted only if the integration owns it.
|
|
10889
10720
|
*/
|
|
10890
10721
|
declare const deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
10891
|
-
type GitNamespacesQueryParams = {
|
|
10892
|
-
/**
|
|
10893
|
-
* The custom Git host if using a custom Git provider, like GitHub Enterprise Server
|
|
10894
|
-
*
|
|
10895
|
-
* @example ghes-test.now.systems
|
|
10896
|
-
*/
|
|
10897
|
-
host?: string;
|
|
10898
|
-
provider?: 'github' | 'github-custom-host' | 'gitlab' | 'bitbucket';
|
|
10899
|
-
};
|
|
10900
|
-
type GitNamespacesError = ErrorWrapper<undefined>;
|
|
10901
|
-
type GitNamespacesResponse = {
|
|
10902
|
-
provider: string;
|
|
10903
|
-
slug: string;
|
|
10904
|
-
id: string | number;
|
|
10905
|
-
ownerType: string;
|
|
10906
|
-
name?: string;
|
|
10907
|
-
isAccessRestricted?: boolean;
|
|
10908
|
-
installationId?: number;
|
|
10909
|
-
requireReauth?: boolean;
|
|
10910
|
-
}[];
|
|
10911
|
-
type GitNamespacesVariables = {
|
|
10912
|
-
queryParams?: GitNamespacesQueryParams;
|
|
10913
|
-
} & FetcherExtraProps;
|
|
10914
|
-
/**
|
|
10915
|
-
* Lists git namespaces for a supported provider. Supported providers are `github`, `gitlab` and `bitbucket`. If the provider is not provided, it will try to obtain it from the user that authenticated the request.
|
|
10916
|
-
*/
|
|
10917
|
-
declare const gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
10918
|
-
type SearchRepoQueryParams = {
|
|
10919
|
-
query?: string;
|
|
10920
|
-
namespaceId?: void | null;
|
|
10921
|
-
provider?: 'github' | 'github-custom-host' | 'gitlab' | 'bitbucket';
|
|
10922
|
-
installationId?: string;
|
|
10923
|
-
/**
|
|
10924
|
-
* The custom Git host if using a custom Git provider, like GitHub Enterprise Server
|
|
10925
|
-
*
|
|
10926
|
-
* @example ghes-test.now.systems
|
|
10927
|
-
*/
|
|
10928
|
-
host?: string;
|
|
10929
|
-
/**
|
|
10930
|
-
* The Team identifier to perform the request on behalf of.
|
|
10931
|
-
*/
|
|
10932
|
-
teamId?: string;
|
|
10933
|
-
/**
|
|
10934
|
-
* The Team slug to perform the request on behalf of.
|
|
10935
|
-
*/
|
|
10936
|
-
slug?: string;
|
|
10937
|
-
};
|
|
10938
|
-
type SearchRepoError = ErrorWrapper<undefined>;
|
|
10939
|
-
type SearchRepoVariables = {
|
|
10940
|
-
queryParams?: SearchRepoQueryParams;
|
|
10941
|
-
} & FetcherExtraProps;
|
|
10942
|
-
/**
|
|
10943
|
-
* Lists git repositories linked to a namespace `id` for a supported provider. A specific namespace `id` can be obtained via the `git-namespaces` endpoint. Supported providers are `github`, `gitlab` and `bitbucket`. If the provider or namespace is not provided, it will try to obtain it from the user that authenticated the request.
|
|
10944
|
-
*/
|
|
10945
|
-
declare const searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
10946
|
-
gitAccount: {
|
|
10947
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
10948
|
-
namespaceId: string | number | null;
|
|
10949
|
-
};
|
|
10950
|
-
repos: {
|
|
10951
|
-
id: string | number;
|
|
10952
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
10953
|
-
url: string;
|
|
10954
|
-
name: string;
|
|
10955
|
-
slug: string;
|
|
10956
|
-
namespace: string;
|
|
10957
|
-
owner: {
|
|
10958
|
-
id: string | number;
|
|
10959
|
-
name: string;
|
|
10960
|
-
};
|
|
10961
|
-
ownerType: "user" | "team";
|
|
10962
|
-
private: boolean;
|
|
10963
|
-
defaultBranch: string;
|
|
10964
|
-
updatedAt: number;
|
|
10965
|
-
}[];
|
|
10966
|
-
}>;
|
|
10967
10722
|
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
|
|
10968
10723
|
integrationConfigurationId: string;
|
|
10969
10724
|
resourceId: string;
|
|
@@ -11602,7 +11357,13 @@ type GetProjectsResponse = {
|
|
|
11602
11357
|
aliasFinal?: string | null;
|
|
11603
11358
|
automaticAliases?: string[];
|
|
11604
11359
|
branchMatcher?: {
|
|
11360
|
+
/**
|
|
11361
|
+
* The type of matching to perform
|
|
11362
|
+
*/
|
|
11605
11363
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
11364
|
+
/**
|
|
11365
|
+
* The pattern to match against branch names
|
|
11366
|
+
*/
|
|
11606
11367
|
pattern: string;
|
|
11607
11368
|
};
|
|
11608
11369
|
buildingAt?: number;
|
|
@@ -11747,7 +11508,7 @@ type GetProjectsResponse = {
|
|
|
11747
11508
|
*/
|
|
11748
11509
|
isDefaultApp?: boolean;
|
|
11749
11510
|
/**
|
|
11750
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
11511
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
11751
11512
|
*/
|
|
11752
11513
|
defaultRoute?: string;
|
|
11753
11514
|
/**
|
|
@@ -11782,6 +11543,7 @@ type GetProjectsResponse = {
|
|
|
11782
11543
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11783
11544
|
functionZeroConfigFailover?: boolean;
|
|
11784
11545
|
elasticConcurrencyEnabled?: boolean;
|
|
11546
|
+
buildMachineType?: 'enhanced';
|
|
11785
11547
|
};
|
|
11786
11548
|
rollingRelease?: {
|
|
11787
11549
|
/**
|
|
@@ -11809,6 +11571,7 @@ type GetProjectsResponse = {
|
|
|
11809
11571
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11810
11572
|
functionZeroConfigFailover?: boolean;
|
|
11811
11573
|
elasticConcurrencyEnabled?: boolean;
|
|
11574
|
+
buildMachineType?: 'enhanced';
|
|
11812
11575
|
};
|
|
11813
11576
|
rootDirectory?: string | null;
|
|
11814
11577
|
serverlessFunctionRegion?: string | null;
|
|
@@ -11833,7 +11596,13 @@ type GetProjectsResponse = {
|
|
|
11833
11596
|
aliasFinal?: string | null;
|
|
11834
11597
|
automaticAliases?: string[];
|
|
11835
11598
|
branchMatcher?: {
|
|
11599
|
+
/**
|
|
11600
|
+
* The type of matching to perform
|
|
11601
|
+
*/
|
|
11836
11602
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
11603
|
+
/**
|
|
11604
|
+
* The pattern to match against branch names
|
|
11605
|
+
*/
|
|
11837
11606
|
pattern: string;
|
|
11838
11607
|
};
|
|
11839
11608
|
buildingAt?: number;
|
|
@@ -12018,6 +11787,7 @@ type GetProjectsResponse = {
|
|
|
12018
11787
|
teamInvite?: ACLAction[];
|
|
12019
11788
|
teamInviteCode?: ACLAction[];
|
|
12020
11789
|
teamJoin?: ACLAction[];
|
|
11790
|
+
teamMemberMfaStatus?: ACLAction[];
|
|
12021
11791
|
teamMicrofrontends?: ACLAction[];
|
|
12022
11792
|
teamOwnMembership?: ACLAction[];
|
|
12023
11793
|
teamOwnMembershipDisconnectSAML?: ACLAction[];
|
|
@@ -12035,6 +11805,8 @@ type GetProjectsResponse = {
|
|
|
12035
11805
|
endpointVerification?: ACLAction[];
|
|
12036
11806
|
projectTransferIn?: ACLAction[];
|
|
12037
11807
|
oauth2Application?: ACLAction[];
|
|
11808
|
+
vercelRun?: ACLAction[];
|
|
11809
|
+
vercelRunExec?: ACLAction[];
|
|
12038
11810
|
aliasProject?: ACLAction[];
|
|
12039
11811
|
aliasProtectionBypass?: ACLAction[];
|
|
12040
11812
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -12111,14 +11883,14 @@ type GetProjectsResponse = {
|
|
|
12111
11883
|
};
|
|
12112
11884
|
hasActiveBranches?: boolean;
|
|
12113
11885
|
trustedIps?: {
|
|
12114
|
-
deploymentType: '
|
|
11886
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
12115
11887
|
addresses: {
|
|
12116
11888
|
value: string;
|
|
12117
11889
|
note?: string;
|
|
12118
11890
|
}[];
|
|
12119
11891
|
protectionMode: 'additional' | 'exclusive';
|
|
12120
11892
|
} | {
|
|
12121
|
-
deploymentType: '
|
|
11893
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
12122
11894
|
} | null;
|
|
12123
11895
|
gitComments?: {
|
|
12124
11896
|
/**
|
|
@@ -12438,7 +12210,13 @@ type CreateProjectResponse = {
|
|
|
12438
12210
|
aliasFinal?: string | null;
|
|
12439
12211
|
automaticAliases?: string[];
|
|
12440
12212
|
branchMatcher?: {
|
|
12213
|
+
/**
|
|
12214
|
+
* The type of matching to perform
|
|
12215
|
+
*/
|
|
12441
12216
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
12217
|
+
/**
|
|
12218
|
+
* The pattern to match against branch names
|
|
12219
|
+
*/
|
|
12442
12220
|
pattern: string;
|
|
12443
12221
|
};
|
|
12444
12222
|
buildingAt?: number;
|
|
@@ -12583,7 +12361,7 @@ type CreateProjectResponse = {
|
|
|
12583
12361
|
*/
|
|
12584
12362
|
isDefaultApp?: boolean;
|
|
12585
12363
|
/**
|
|
12586
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
12364
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
12587
12365
|
*/
|
|
12588
12366
|
defaultRoute?: string;
|
|
12589
12367
|
/**
|
|
@@ -12618,6 +12396,7 @@ type CreateProjectResponse = {
|
|
|
12618
12396
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12619
12397
|
functionZeroConfigFailover?: boolean;
|
|
12620
12398
|
elasticConcurrencyEnabled?: boolean;
|
|
12399
|
+
buildMachineType?: 'enhanced';
|
|
12621
12400
|
};
|
|
12622
12401
|
rollingRelease?: {
|
|
12623
12402
|
/**
|
|
@@ -12645,6 +12424,7 @@ type CreateProjectResponse = {
|
|
|
12645
12424
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12646
12425
|
functionZeroConfigFailover?: boolean;
|
|
12647
12426
|
elasticConcurrencyEnabled?: boolean;
|
|
12427
|
+
buildMachineType?: 'enhanced';
|
|
12648
12428
|
};
|
|
12649
12429
|
rootDirectory?: string | null;
|
|
12650
12430
|
serverlessFunctionRegion?: string | null;
|
|
@@ -12669,7 +12449,13 @@ type CreateProjectResponse = {
|
|
|
12669
12449
|
aliasFinal?: string | null;
|
|
12670
12450
|
automaticAliases?: string[];
|
|
12671
12451
|
branchMatcher?: {
|
|
12452
|
+
/**
|
|
12453
|
+
* The type of matching to perform
|
|
12454
|
+
*/
|
|
12672
12455
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
12456
|
+
/**
|
|
12457
|
+
* The pattern to match against branch names
|
|
12458
|
+
*/
|
|
12673
12459
|
pattern: string;
|
|
12674
12460
|
};
|
|
12675
12461
|
buildingAt?: number;
|
|
@@ -12854,6 +12640,7 @@ type CreateProjectResponse = {
|
|
|
12854
12640
|
teamInvite?: ACLAction[];
|
|
12855
12641
|
teamInviteCode?: ACLAction[];
|
|
12856
12642
|
teamJoin?: ACLAction[];
|
|
12643
|
+
teamMemberMfaStatus?: ACLAction[];
|
|
12857
12644
|
teamMicrofrontends?: ACLAction[];
|
|
12858
12645
|
teamOwnMembership?: ACLAction[];
|
|
12859
12646
|
teamOwnMembershipDisconnectSAML?: ACLAction[];
|
|
@@ -12871,6 +12658,8 @@ type CreateProjectResponse = {
|
|
|
12871
12658
|
endpointVerification?: ACLAction[];
|
|
12872
12659
|
projectTransferIn?: ACLAction[];
|
|
12873
12660
|
oauth2Application?: ACLAction[];
|
|
12661
|
+
vercelRun?: ACLAction[];
|
|
12662
|
+
vercelRunExec?: ACLAction[];
|
|
12874
12663
|
aliasProject?: ACLAction[];
|
|
12875
12664
|
aliasProtectionBypass?: ACLAction[];
|
|
12876
12665
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -12947,14 +12736,14 @@ type CreateProjectResponse = {
|
|
|
12947
12736
|
};
|
|
12948
12737
|
hasActiveBranches?: boolean;
|
|
12949
12738
|
trustedIps?: {
|
|
12950
|
-
deploymentType: '
|
|
12739
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
12951
12740
|
addresses: {
|
|
12952
12741
|
value: string;
|
|
12953
12742
|
note?: string;
|
|
12954
12743
|
}[];
|
|
12955
12744
|
protectionMode: 'additional' | 'exclusive';
|
|
12956
12745
|
} | {
|
|
12957
|
-
deploymentType: '
|
|
12746
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
12958
12747
|
} | null;
|
|
12959
12748
|
gitComments?: {
|
|
12960
12749
|
/**
|
|
@@ -13407,7 +13196,13 @@ type GetProjectResponse = {
|
|
|
13407
13196
|
aliasFinal?: string | null;
|
|
13408
13197
|
automaticAliases?: string[];
|
|
13409
13198
|
branchMatcher?: {
|
|
13199
|
+
/**
|
|
13200
|
+
* The type of matching to perform
|
|
13201
|
+
*/
|
|
13410
13202
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
13203
|
+
/**
|
|
13204
|
+
* The pattern to match against branch names
|
|
13205
|
+
*/
|
|
13411
13206
|
pattern: string;
|
|
13412
13207
|
};
|
|
13413
13208
|
buildingAt?: number;
|
|
@@ -13552,7 +13347,7 @@ type GetProjectResponse = {
|
|
|
13552
13347
|
*/
|
|
13553
13348
|
isDefaultApp?: boolean;
|
|
13554
13349
|
/**
|
|
13555
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
13350
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
13556
13351
|
*/
|
|
13557
13352
|
defaultRoute?: string;
|
|
13558
13353
|
/**
|
|
@@ -13587,6 +13382,7 @@ type GetProjectResponse = {
|
|
|
13587
13382
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13588
13383
|
functionZeroConfigFailover?: boolean;
|
|
13589
13384
|
elasticConcurrencyEnabled?: boolean;
|
|
13385
|
+
buildMachineType?: 'enhanced';
|
|
13590
13386
|
};
|
|
13591
13387
|
rollingRelease?: {
|
|
13592
13388
|
/**
|
|
@@ -13614,6 +13410,7 @@ type GetProjectResponse = {
|
|
|
13614
13410
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13615
13411
|
functionZeroConfigFailover?: boolean;
|
|
13616
13412
|
elasticConcurrencyEnabled?: boolean;
|
|
13413
|
+
buildMachineType?: 'enhanced';
|
|
13617
13414
|
};
|
|
13618
13415
|
rootDirectory?: string | null;
|
|
13619
13416
|
serverlessFunctionRegion?: string | null;
|
|
@@ -13638,7 +13435,13 @@ type GetProjectResponse = {
|
|
|
13638
13435
|
aliasFinal?: string | null;
|
|
13639
13436
|
automaticAliases?: string[];
|
|
13640
13437
|
branchMatcher?: {
|
|
13438
|
+
/**
|
|
13439
|
+
* The type of matching to perform
|
|
13440
|
+
*/
|
|
13641
13441
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
13442
|
+
/**
|
|
13443
|
+
* The pattern to match against branch names
|
|
13444
|
+
*/
|
|
13642
13445
|
pattern: string;
|
|
13643
13446
|
};
|
|
13644
13447
|
buildingAt?: number;
|
|
@@ -13823,6 +13626,7 @@ type GetProjectResponse = {
|
|
|
13823
13626
|
teamInvite?: ACLAction[];
|
|
13824
13627
|
teamInviteCode?: ACLAction[];
|
|
13825
13628
|
teamJoin?: ACLAction[];
|
|
13629
|
+
teamMemberMfaStatus?: ACLAction[];
|
|
13826
13630
|
teamMicrofrontends?: ACLAction[];
|
|
13827
13631
|
teamOwnMembership?: ACLAction[];
|
|
13828
13632
|
teamOwnMembershipDisconnectSAML?: ACLAction[];
|
|
@@ -13840,6 +13644,8 @@ type GetProjectResponse = {
|
|
|
13840
13644
|
endpointVerification?: ACLAction[];
|
|
13841
13645
|
projectTransferIn?: ACLAction[];
|
|
13842
13646
|
oauth2Application?: ACLAction[];
|
|
13647
|
+
vercelRun?: ACLAction[];
|
|
13648
|
+
vercelRunExec?: ACLAction[];
|
|
13843
13649
|
aliasProject?: ACLAction[];
|
|
13844
13650
|
aliasProtectionBypass?: ACLAction[];
|
|
13845
13651
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -13916,14 +13722,14 @@ type GetProjectResponse = {
|
|
|
13916
13722
|
};
|
|
13917
13723
|
hasActiveBranches?: boolean;
|
|
13918
13724
|
trustedIps?: {
|
|
13919
|
-
deploymentType: '
|
|
13725
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
13920
13726
|
addresses: {
|
|
13921
13727
|
value: string;
|
|
13922
13728
|
note?: string;
|
|
13923
13729
|
}[];
|
|
13924
13730
|
protectionMode: 'additional' | 'exclusive';
|
|
13925
13731
|
} | {
|
|
13926
|
-
deploymentType: '
|
|
13732
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
13927
13733
|
} | null;
|
|
13928
13734
|
gitComments?: {
|
|
13929
13735
|
/**
|
|
@@ -14250,7 +14056,13 @@ type UpdateProjectResponse = {
|
|
|
14250
14056
|
aliasFinal?: string | null;
|
|
14251
14057
|
automaticAliases?: string[];
|
|
14252
14058
|
branchMatcher?: {
|
|
14059
|
+
/**
|
|
14060
|
+
* The type of matching to perform
|
|
14061
|
+
*/
|
|
14253
14062
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
14063
|
+
/**
|
|
14064
|
+
* The pattern to match against branch names
|
|
14065
|
+
*/
|
|
14254
14066
|
pattern: string;
|
|
14255
14067
|
};
|
|
14256
14068
|
buildingAt?: number;
|
|
@@ -14395,7 +14207,7 @@ type UpdateProjectResponse = {
|
|
|
14395
14207
|
*/
|
|
14396
14208
|
isDefaultApp?: boolean;
|
|
14397
14209
|
/**
|
|
14398
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
14210
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
14399
14211
|
*/
|
|
14400
14212
|
defaultRoute?: string;
|
|
14401
14213
|
/**
|
|
@@ -14430,6 +14242,7 @@ type UpdateProjectResponse = {
|
|
|
14430
14242
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14431
14243
|
functionZeroConfigFailover?: boolean;
|
|
14432
14244
|
elasticConcurrencyEnabled?: boolean;
|
|
14245
|
+
buildMachineType?: 'enhanced';
|
|
14433
14246
|
};
|
|
14434
14247
|
rollingRelease?: {
|
|
14435
14248
|
/**
|
|
@@ -14457,6 +14270,7 @@ type UpdateProjectResponse = {
|
|
|
14457
14270
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14458
14271
|
functionZeroConfigFailover?: boolean;
|
|
14459
14272
|
elasticConcurrencyEnabled?: boolean;
|
|
14273
|
+
buildMachineType?: 'enhanced';
|
|
14460
14274
|
};
|
|
14461
14275
|
rootDirectory?: string | null;
|
|
14462
14276
|
serverlessFunctionRegion?: string | null;
|
|
@@ -14481,7 +14295,13 @@ type UpdateProjectResponse = {
|
|
|
14481
14295
|
aliasFinal?: string | null;
|
|
14482
14296
|
automaticAliases?: string[];
|
|
14483
14297
|
branchMatcher?: {
|
|
14298
|
+
/**
|
|
14299
|
+
* The type of matching to perform
|
|
14300
|
+
*/
|
|
14484
14301
|
type: 'endsWith' | 'equals' | 'startsWith';
|
|
14302
|
+
/**
|
|
14303
|
+
* The pattern to match against branch names
|
|
14304
|
+
*/
|
|
14485
14305
|
pattern: string;
|
|
14486
14306
|
};
|
|
14487
14307
|
buildingAt?: number;
|
|
@@ -14666,6 +14486,7 @@ type UpdateProjectResponse = {
|
|
|
14666
14486
|
teamInvite?: ACLAction[];
|
|
14667
14487
|
teamInviteCode?: ACLAction[];
|
|
14668
14488
|
teamJoin?: ACLAction[];
|
|
14489
|
+
teamMemberMfaStatus?: ACLAction[];
|
|
14669
14490
|
teamMicrofrontends?: ACLAction[];
|
|
14670
14491
|
teamOwnMembership?: ACLAction[];
|
|
14671
14492
|
teamOwnMembershipDisconnectSAML?: ACLAction[];
|
|
@@ -14683,6 +14504,8 @@ type UpdateProjectResponse = {
|
|
|
14683
14504
|
endpointVerification?: ACLAction[];
|
|
14684
14505
|
projectTransferIn?: ACLAction[];
|
|
14685
14506
|
oauth2Application?: ACLAction[];
|
|
14507
|
+
vercelRun?: ACLAction[];
|
|
14508
|
+
vercelRunExec?: ACLAction[];
|
|
14686
14509
|
aliasProject?: ACLAction[];
|
|
14687
14510
|
aliasProtectionBypass?: ACLAction[];
|
|
14688
14511
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -14759,14 +14582,14 @@ type UpdateProjectResponse = {
|
|
|
14759
14582
|
};
|
|
14760
14583
|
hasActiveBranches?: boolean;
|
|
14761
14584
|
trustedIps?: {
|
|
14762
|
-
deploymentType: '
|
|
14585
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
14763
14586
|
addresses: {
|
|
14764
14587
|
value: string;
|
|
14765
14588
|
note?: string;
|
|
14766
14589
|
}[];
|
|
14767
14590
|
protectionMode: 'additional' | 'exclusive';
|
|
14768
14591
|
} | {
|
|
14769
|
-
deploymentType: '
|
|
14592
|
+
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
14770
14593
|
} | null;
|
|
14771
14594
|
gitComments?: {
|
|
14772
14595
|
/**
|
|
@@ -15802,7 +15625,7 @@ type FilterProjectEnvsVariables = {
|
|
|
15802
15625
|
*/
|
|
15803
15626
|
declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
15804
15627
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15805
|
-
type?: "system" | "
|
|
15628
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
15806
15629
|
/**
|
|
15807
15630
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15808
15631
|
*/
|
|
@@ -15888,7 +15711,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15888
15711
|
} | {
|
|
15889
15712
|
envs: {
|
|
15890
15713
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15891
|
-
type?: "system" | "
|
|
15714
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
15892
15715
|
/**
|
|
15893
15716
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15894
15717
|
*/
|
|
@@ -15976,7 +15799,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15976
15799
|
} | {
|
|
15977
15800
|
envs: {
|
|
15978
15801
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15979
|
-
type?: "system" | "
|
|
15802
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
15980
15803
|
/**
|
|
15981
15804
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15982
15805
|
*/
|
|
@@ -16089,7 +15912,7 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
|
|
|
16089
15912
|
type CreateProjectEnvResponse = {
|
|
16090
15913
|
created: {
|
|
16091
15914
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
16092
|
-
type?: 'system' | '
|
|
15915
|
+
type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
|
|
16093
15916
|
/**
|
|
16094
15917
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16095
15918
|
*/
|
|
@@ -16174,7 +15997,7 @@ type CreateProjectEnvResponse = {
|
|
|
16174
15997
|
system?: boolean;
|
|
16175
15998
|
} | {
|
|
16176
15999
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
16177
|
-
type?: 'system' | '
|
|
16000
|
+
type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
|
|
16178
16001
|
/**
|
|
16179
16002
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16180
16003
|
*/
|
|
@@ -16773,7 +16596,7 @@ type RemoveProjectEnvVariables = {
|
|
|
16773
16596
|
declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
16774
16597
|
system?: boolean;
|
|
16775
16598
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16776
|
-
type: "system" | "
|
|
16599
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
16777
16600
|
/**
|
|
16778
16601
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16779
16602
|
*/
|
|
@@ -16857,7 +16680,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16857
16680
|
vsmValue?: string;
|
|
16858
16681
|
} | {
|
|
16859
16682
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16860
|
-
type: "system" | "
|
|
16683
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
16861
16684
|
/**
|
|
16862
16685
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16863
16686
|
*/
|
|
@@ -16941,7 +16764,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16941
16764
|
vsmValue?: string;
|
|
16942
16765
|
} | {
|
|
16943
16766
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16944
|
-
type: "system" | "
|
|
16767
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
16945
16768
|
/**
|
|
16946
16769
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16947
16770
|
*/
|
|
@@ -17103,7 +16926,7 @@ type EditProjectEnvVariables = {
|
|
|
17103
16926
|
*/
|
|
17104
16927
|
declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
17105
16928
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
17106
|
-
type: "system" | "
|
|
16929
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
17107
16930
|
/**
|
|
17108
16931
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17109
16932
|
*/
|
|
@@ -21282,7 +21105,7 @@ declare const operationsByTag: {
|
|
|
21282
21105
|
verifyProjectDomain: (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
21283
21106
|
filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
21284
21107
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21285
|
-
type?: "system" | "
|
|
21108
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21286
21109
|
/**
|
|
21287
21110
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21288
21111
|
*/
|
|
@@ -21368,7 +21191,7 @@ declare const operationsByTag: {
|
|
|
21368
21191
|
} | {
|
|
21369
21192
|
envs: {
|
|
21370
21193
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21371
|
-
type?: "system" | "
|
|
21194
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21372
21195
|
/**
|
|
21373
21196
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21374
21197
|
*/
|
|
@@ -21456,7 +21279,7 @@ declare const operationsByTag: {
|
|
|
21456
21279
|
} | {
|
|
21457
21280
|
envs: {
|
|
21458
21281
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21459
|
-
type?: "system" | "
|
|
21282
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21460
21283
|
/**
|
|
21461
21284
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21462
21285
|
*/
|
|
@@ -21792,7 +21615,7 @@ declare const operationsByTag: {
|
|
|
21792
21615
|
removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
21793
21616
|
system?: boolean;
|
|
21794
21617
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21795
|
-
type: "system" | "
|
|
21618
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21796
21619
|
/**
|
|
21797
21620
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21798
21621
|
*/
|
|
@@ -21876,7 +21699,7 @@ declare const operationsByTag: {
|
|
|
21876
21699
|
vsmValue?: string;
|
|
21877
21700
|
} | {
|
|
21878
21701
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21879
|
-
type: "system" | "
|
|
21702
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21880
21703
|
/**
|
|
21881
21704
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21882
21705
|
*/
|
|
@@ -21960,7 +21783,7 @@ declare const operationsByTag: {
|
|
|
21960
21783
|
vsmValue?: string;
|
|
21961
21784
|
} | {
|
|
21962
21785
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21963
|
-
type: "system" | "
|
|
21786
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
21964
21787
|
/**
|
|
21965
21788
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21966
21789
|
*/
|
|
@@ -22045,7 +21868,7 @@ declare const operationsByTag: {
|
|
|
22045
21868
|
}[]>;
|
|
22046
21869
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
22047
21870
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22048
|
-
type: "system" | "
|
|
21871
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
22049
21872
|
/**
|
|
22050
21873
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
22051
21874
|
*/
|
|
@@ -22875,7 +22698,7 @@ declare const operationsByTag: {
|
|
|
22875
22698
|
isLegacy: boolean;
|
|
22876
22699
|
flags?: string[];
|
|
22877
22700
|
assignedBetaLabelAt?: number;
|
|
22878
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
|
|
22701
|
+
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video" | "tag_workflow")[];
|
|
22879
22702
|
};
|
|
22880
22703
|
/**
|
|
22881
22704
|
* A timestamp that tells you when the configuration was installed successfully
|
|
@@ -23223,29 +23046,6 @@ declare const operationsByTag: {
|
|
|
23223
23046
|
canConfigureOpenTelemetry?: boolean;
|
|
23224
23047
|
}>;
|
|
23225
23048
|
deleteConfiguration: (variables: DeleteConfigurationVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
23226
|
-
gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
23227
|
-
searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23228
|
-
gitAccount: {
|
|
23229
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
23230
|
-
namespaceId: string | number | null;
|
|
23231
|
-
};
|
|
23232
|
-
repos: {
|
|
23233
|
-
id: string | number;
|
|
23234
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
23235
|
-
url: string;
|
|
23236
|
-
name: string;
|
|
23237
|
-
slug: string;
|
|
23238
|
-
namespace: string;
|
|
23239
|
-
owner: {
|
|
23240
|
-
id: string | number;
|
|
23241
|
-
name: string;
|
|
23242
|
-
};
|
|
23243
|
-
ownerType: "user" | "team";
|
|
23244
|
-
private: boolean;
|
|
23245
|
-
defaultBranch: string;
|
|
23246
|
-
updatedAt: number;
|
|
23247
|
-
}[];
|
|
23248
|
-
}>;
|
|
23249
23049
|
};
|
|
23250
23050
|
domains: {
|
|
23251
23051
|
buyDomain: (variables: BuyDomainVariables, signal?: AbortSignal) => Promise<BuyDomainResponse>;
|
|
@@ -23316,10 +23116,7 @@ declare const operationsByTag: {
|
|
|
23316
23116
|
removeRecord: (variables: RemoveRecordVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
23317
23117
|
};
|
|
23318
23118
|
logDrains: {
|
|
23319
|
-
getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
23320
23119
|
deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
23321
|
-
getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
23322
|
-
createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
23323
23120
|
getIntegrationLogDrains: (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
23324
23121
|
createLogDrain: (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
23325
23122
|
deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -23882,11 +23679,6 @@ type components_CreateCheckQueryParams = CreateCheckQueryParams;
|
|
|
23882
23679
|
type components_CreateCheckRequestBody = CreateCheckRequestBody;
|
|
23883
23680
|
type components_CreateCheckResponse = CreateCheckResponse;
|
|
23884
23681
|
type components_CreateCheckVariables = CreateCheckVariables;
|
|
23885
|
-
type components_CreateConfigurableLogDrainError = CreateConfigurableLogDrainError;
|
|
23886
|
-
type components_CreateConfigurableLogDrainQueryParams = CreateConfigurableLogDrainQueryParams;
|
|
23887
|
-
type components_CreateConfigurableLogDrainRequestBody = CreateConfigurableLogDrainRequestBody;
|
|
23888
|
-
type components_CreateConfigurableLogDrainResponse = CreateConfigurableLogDrainResponse;
|
|
23889
|
-
type components_CreateConfigurableLogDrainVariables = CreateConfigurableLogDrainVariables;
|
|
23890
23682
|
type components_CreateCustomEnvironmentError = CreateCustomEnvironmentError;
|
|
23891
23683
|
type components_CreateCustomEnvironmentPathParams = CreateCustomEnvironmentPathParams;
|
|
23892
23684
|
type components_CreateCustomEnvironmentQueryParams = CreateCustomEnvironmentQueryParams;
|
|
@@ -24071,10 +23863,6 @@ type components_GetAllChecksPathParams = GetAllChecksPathParams;
|
|
|
24071
23863
|
type components_GetAllChecksQueryParams = GetAllChecksQueryParams;
|
|
24072
23864
|
type components_GetAllChecksResponse = GetAllChecksResponse;
|
|
24073
23865
|
type components_GetAllChecksVariables = GetAllChecksVariables;
|
|
24074
|
-
type components_GetAllLogDrainsError = GetAllLogDrainsError;
|
|
24075
|
-
type components_GetAllLogDrainsQueryParams = GetAllLogDrainsQueryParams;
|
|
24076
|
-
type components_GetAllLogDrainsResponse = GetAllLogDrainsResponse;
|
|
24077
|
-
type components_GetAllLogDrainsVariables = GetAllLogDrainsVariables;
|
|
24078
23866
|
type components_GetAuthTokenError = GetAuthTokenError;
|
|
24079
23867
|
type components_GetAuthTokenPathParams = GetAuthTokenPathParams;
|
|
24080
23868
|
type components_GetAuthTokenResponse = GetAuthTokenResponse;
|
|
@@ -24098,11 +23886,6 @@ type components_GetCheckPathParams = GetCheckPathParams;
|
|
|
24098
23886
|
type components_GetCheckQueryParams = GetCheckQueryParams;
|
|
24099
23887
|
type components_GetCheckResponse = GetCheckResponse;
|
|
24100
23888
|
type components_GetCheckVariables = GetCheckVariables;
|
|
24101
|
-
type components_GetConfigurableLogDrainError = GetConfigurableLogDrainError;
|
|
24102
|
-
type components_GetConfigurableLogDrainPathParams = GetConfigurableLogDrainPathParams;
|
|
24103
|
-
type components_GetConfigurableLogDrainQueryParams = GetConfigurableLogDrainQueryParams;
|
|
24104
|
-
type components_GetConfigurableLogDrainResponse = GetConfigurableLogDrainResponse;
|
|
24105
|
-
type components_GetConfigurableLogDrainVariables = GetConfigurableLogDrainVariables;
|
|
24106
23889
|
type components_GetConfigurationError = GetConfigurationError;
|
|
24107
23890
|
type components_GetConfigurationPathParams = GetConfigurationPathParams;
|
|
24108
23891
|
type components_GetConfigurationQueryParams = GetConfigurationQueryParams;
|
|
@@ -24271,10 +24054,6 @@ type components_GetWebhookVariables = GetWebhookVariables;
|
|
|
24271
24054
|
type components_GetWebhooksError = GetWebhooksError;
|
|
24272
24055
|
type components_GetWebhooksQueryParams = GetWebhooksQueryParams;
|
|
24273
24056
|
type components_GetWebhooksVariables = GetWebhooksVariables;
|
|
24274
|
-
type components_GitNamespacesError = GitNamespacesError;
|
|
24275
|
-
type components_GitNamespacesQueryParams = GitNamespacesQueryParams;
|
|
24276
|
-
type components_GitNamespacesResponse = GitNamespacesResponse;
|
|
24277
|
-
type components_GitNamespacesVariables = GitNamespacesVariables;
|
|
24278
24057
|
type components_ImportResourceError = ImportResourceError;
|
|
24279
24058
|
type components_ImportResourcePathParams = ImportResourcePathParams;
|
|
24280
24059
|
type components_ImportResourceRequestBody = ImportResourceRequestBody;
|
|
@@ -24448,9 +24227,6 @@ type components_RerequestCheckError = RerequestCheckError;
|
|
|
24448
24227
|
type components_RerequestCheckPathParams = RerequestCheckPathParams;
|
|
24449
24228
|
type components_RerequestCheckQueryParams = RerequestCheckQueryParams;
|
|
24450
24229
|
type components_RerequestCheckVariables = RerequestCheckVariables;
|
|
24451
|
-
type components_SearchRepoError = SearchRepoError;
|
|
24452
|
-
type components_SearchRepoQueryParams = SearchRepoQueryParams;
|
|
24453
|
-
type components_SearchRepoVariables = SearchRepoVariables;
|
|
24454
24230
|
type components_StatusError = StatusError;
|
|
24455
24231
|
type components_StatusQueryParams = StatusQueryParams;
|
|
24456
24232
|
type components_StatusResponse = StatusResponse;
|
|
@@ -24594,7 +24370,6 @@ declare const components_createAccessGroup: typeof createAccessGroup;
|
|
|
24594
24370
|
declare const components_createAccessGroupProject: typeof createAccessGroupProject;
|
|
24595
24371
|
declare const components_createAuthToken: typeof createAuthToken;
|
|
24596
24372
|
declare const components_createCheck: typeof createCheck;
|
|
24597
|
-
declare const components_createConfigurableLogDrain: typeof createConfigurableLogDrain;
|
|
24598
24373
|
declare const components_createCustomEnvironment: typeof createCustomEnvironment;
|
|
24599
24374
|
declare const components_createDeployment: typeof createDeployment;
|
|
24600
24375
|
declare const components_createEdgeConfig: typeof createEdgeConfig;
|
|
@@ -24636,14 +24411,12 @@ declare const components_getAccountInfo: typeof getAccountInfo;
|
|
|
24636
24411
|
declare const components_getActiveAttackStatus: typeof getActiveAttackStatus;
|
|
24637
24412
|
declare const components_getAlias: typeof getAlias;
|
|
24638
24413
|
declare const components_getAllChecks: typeof getAllChecks;
|
|
24639
|
-
declare const components_getAllLogDrains: typeof getAllLogDrains;
|
|
24640
24414
|
declare const components_getAuthToken: typeof getAuthToken;
|
|
24641
24415
|
declare const components_getAuthUser: typeof getAuthUser;
|
|
24642
24416
|
declare const components_getBypassIp: typeof getBypassIp;
|
|
24643
24417
|
declare const components_getCertById: typeof getCertById;
|
|
24644
24418
|
declare const components_getCerts: typeof getCerts;
|
|
24645
24419
|
declare const components_getCheck: typeof getCheck;
|
|
24646
|
-
declare const components_getConfigurableLogDrain: typeof getConfigurableLogDrain;
|
|
24647
24420
|
declare const components_getConfiguration: typeof getConfiguration;
|
|
24648
24421
|
declare const components_getConfigurations: typeof getConfigurations;
|
|
24649
24422
|
declare const components_getCustomEnvironment: typeof getCustomEnvironment;
|
|
@@ -24684,7 +24457,6 @@ declare const components_getTeams: typeof getTeams;
|
|
|
24684
24457
|
declare const components_getV9ProjectsIdOrNameCustomEnvironments: typeof getV9ProjectsIdOrNameCustomEnvironments;
|
|
24685
24458
|
declare const components_getWebhook: typeof getWebhook;
|
|
24686
24459
|
declare const components_getWebhooks: typeof getWebhooks;
|
|
24687
|
-
declare const components_gitNamespaces: typeof gitNamespaces;
|
|
24688
24460
|
declare const components_importResource: typeof importResource;
|
|
24689
24461
|
declare const components_inviteUserToTeam: typeof inviteUserToTeam;
|
|
24690
24462
|
declare const components_issueCert: typeof issueCert;
|
|
@@ -24725,7 +24497,6 @@ declare const components_requestAccessToTeam: typeof requestAccessToTeam;
|
|
|
24725
24497
|
declare const components_requestDelete: typeof requestDelete;
|
|
24726
24498
|
declare const components_requestPromote: typeof requestPromote;
|
|
24727
24499
|
declare const components_rerequestCheck: typeof rerequestCheck;
|
|
24728
|
-
declare const components_searchRepo: typeof searchRepo;
|
|
24729
24500
|
declare const components_status: typeof status;
|
|
24730
24501
|
declare const components_submitBillingData: typeof submitBillingData;
|
|
24731
24502
|
declare const components_submitInvoice: typeof submitInvoice;
|
|
@@ -24753,7 +24524,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24753
24524
|
declare const components_uploadFile: typeof uploadFile;
|
|
24754
24525
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24755
24526
|
declare namespace components {
|
|
24756
|
-
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateConfigurableLogDrainError as CreateConfigurableLogDrainError, type components_CreateConfigurableLogDrainQueryParams as CreateConfigurableLogDrainQueryParams, type components_CreateConfigurableLogDrainRequestBody as CreateConfigurableLogDrainRequestBody, type components_CreateConfigurableLogDrainResponse as CreateConfigurableLogDrainResponse, type components_CreateConfigurableLogDrainVariables as CreateConfigurableLogDrainVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAllLogDrainsError as GetAllLogDrainsError, type components_GetAllLogDrainsQueryParams as GetAllLogDrainsQueryParams, type components_GetAllLogDrainsResponse as GetAllLogDrainsResponse, type components_GetAllLogDrainsVariables as GetAllLogDrainsVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurableLogDrainError as GetConfigurableLogDrainError, type components_GetConfigurableLogDrainPathParams as GetConfigurableLogDrainPathParams, type components_GetConfigurableLogDrainQueryParams as GetConfigurableLogDrainQueryParams, type components_GetConfigurableLogDrainResponse as GetConfigurableLogDrainResponse, type components_GetConfigurableLogDrainVariables as GetConfigurableLogDrainVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_GitNamespacesError as GitNamespacesError, type components_GitNamespacesQueryParams as GitNamespacesQueryParams, type components_GitNamespacesResponse as GitNamespacesResponse, type components_GitNamespacesVariables as GitNamespacesVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_SearchRepoError as SearchRepoError, type components_SearchRepoQueryParams as SearchRepoQueryParams, type components_SearchRepoVariables as SearchRepoVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createConfigurableLogDrain as createConfigurableLogDrain, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAllLogDrains as getAllLogDrains, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfigurableLogDrain as getConfigurableLogDrain, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_gitNamespaces as gitNamespaces, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_searchRepo as searchRepo, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
24527
|
+
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
24757
24528
|
}
|
|
24758
24529
|
|
|
24759
24530
|
declare const operationsByPath: {
|
|
@@ -25382,10 +25153,7 @@ declare const operationsByPath: {
|
|
|
25382
25153
|
zone?: boolean;
|
|
25383
25154
|
}>;
|
|
25384
25155
|
'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
25385
|
-
'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
25386
25156
|
'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25387
|
-
'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
25388
|
-
'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
25389
25157
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
25390
25158
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
25391
25159
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -25499,7 +25267,7 @@ declare const operationsByPath: {
|
|
|
25499
25267
|
isLegacy: boolean;
|
|
25500
25268
|
flags?: string[];
|
|
25501
25269
|
assignedBetaLabelAt?: number;
|
|
25502
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
|
|
25270
|
+
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video" | "tag_workflow")[];
|
|
25503
25271
|
};
|
|
25504
25272
|
completedAt?: number;
|
|
25505
25273
|
createdAt: number;
|
|
@@ -25609,29 +25377,6 @@ declare const operationsByPath: {
|
|
|
25609
25377
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
25610
25378
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
25611
25379
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25612
|
-
'GET /v1/integrations/git-namespaces': (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
25613
|
-
'GET /v1/integrations/search-repo': (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
25614
|
-
gitAccount: {
|
|
25615
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
25616
|
-
namespaceId: string | number | null;
|
|
25617
|
-
};
|
|
25618
|
-
repos: {
|
|
25619
|
-
id: string | number;
|
|
25620
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
25621
|
-
url: string;
|
|
25622
|
-
name: string;
|
|
25623
|
-
slug: string;
|
|
25624
|
-
namespace: string;
|
|
25625
|
-
owner: {
|
|
25626
|
-
id: string | number;
|
|
25627
|
-
name: string;
|
|
25628
|
-
};
|
|
25629
|
-
ownerType: "user" | "team";
|
|
25630
|
-
private: boolean;
|
|
25631
|
-
defaultBranch: string;
|
|
25632
|
-
updatedAt: number;
|
|
25633
|
-
}[];
|
|
25634
|
-
}>;
|
|
25635
25380
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25636
25381
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25637
25382
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -25675,7 +25420,7 @@ declare const operationsByPath: {
|
|
|
25675
25420
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
25676
25421
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
25677
25422
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25678
|
-
type?: "system" | "
|
|
25423
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
25679
25424
|
sunsetSecretId?: string;
|
|
25680
25425
|
id?: string;
|
|
25681
25426
|
key?: string;
|
|
@@ -25749,7 +25494,7 @@ declare const operationsByPath: {
|
|
|
25749
25494
|
} | {
|
|
25750
25495
|
envs: {
|
|
25751
25496
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25752
|
-
type?: "system" | "
|
|
25497
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
25753
25498
|
sunsetSecretId?: string;
|
|
25754
25499
|
id?: string;
|
|
25755
25500
|
key?: string;
|
|
@@ -25825,7 +25570,7 @@ declare const operationsByPath: {
|
|
|
25825
25570
|
} | {
|
|
25826
25571
|
envs: {
|
|
25827
25572
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25828
|
-
type?: "system" | "
|
|
25573
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
25829
25574
|
sunsetSecretId?: string;
|
|
25830
25575
|
id?: string;
|
|
25831
25576
|
key?: string;
|
|
@@ -26116,7 +25861,7 @@ declare const operationsByPath: {
|
|
|
26116
25861
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
26117
25862
|
system?: boolean;
|
|
26118
25863
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26119
|
-
type: "system" | "
|
|
25864
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
26120
25865
|
sunsetSecretId?: string;
|
|
26121
25866
|
id?: string;
|
|
26122
25867
|
key: string;
|
|
@@ -26188,7 +25933,7 @@ declare const operationsByPath: {
|
|
|
26188
25933
|
vsmValue?: string;
|
|
26189
25934
|
} | {
|
|
26190
25935
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26191
|
-
type: "system" | "
|
|
25936
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
26192
25937
|
sunsetSecretId?: string;
|
|
26193
25938
|
id?: string;
|
|
26194
25939
|
key: string;
|
|
@@ -26260,7 +26005,7 @@ declare const operationsByPath: {
|
|
|
26260
26005
|
vsmValue?: string;
|
|
26261
26006
|
} | {
|
|
26262
26007
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26263
|
-
type: "system" | "
|
|
26008
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
26264
26009
|
sunsetSecretId?: string;
|
|
26265
26010
|
id?: string;
|
|
26266
26011
|
key: string;
|
|
@@ -26333,7 +26078,7 @@ declare const operationsByPath: {
|
|
|
26333
26078
|
}[]>;
|
|
26334
26079
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
26335
26080
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26336
|
-
type: "system" | "
|
|
26081
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
26337
26082
|
sunsetSecretId?: string;
|
|
26338
26083
|
id?: string;
|
|
26339
26084
|
key: string;
|
|
@@ -27251,10 +26996,7 @@ declare class VercelApi {
|
|
|
27251
26996
|
zone?: boolean;
|
|
27252
26997
|
}>;
|
|
27253
26998
|
'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
27254
|
-
'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
27255
26999
|
'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27256
|
-
'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
27257
|
-
'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
27258
27000
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
27259
27001
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
27260
27002
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -27368,7 +27110,7 @@ declare class VercelApi {
|
|
|
27368
27110
|
isLegacy: boolean;
|
|
27369
27111
|
flags?: string[];
|
|
27370
27112
|
assignedBetaLabelAt?: number;
|
|
27371
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
|
|
27113
|
+
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_flags" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video" | "tag_workflow")[];
|
|
27372
27114
|
};
|
|
27373
27115
|
completedAt?: number;
|
|
27374
27116
|
createdAt: number;
|
|
@@ -27478,29 +27220,6 @@ declare class VercelApi {
|
|
|
27478
27220
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
27479
27221
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
27480
27222
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27481
|
-
'GET /v1/integrations/git-namespaces': (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
27482
|
-
'GET /v1/integrations/search-repo': (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
27483
|
-
gitAccount: {
|
|
27484
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
27485
|
-
namespaceId: string | number | null;
|
|
27486
|
-
};
|
|
27487
|
-
repos: {
|
|
27488
|
-
id: string | number;
|
|
27489
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
27490
|
-
url: string;
|
|
27491
|
-
name: string;
|
|
27492
|
-
slug: string;
|
|
27493
|
-
namespace: string;
|
|
27494
|
-
owner: {
|
|
27495
|
-
id: string | number;
|
|
27496
|
-
name: string;
|
|
27497
|
-
};
|
|
27498
|
-
ownerType: "user" | "team";
|
|
27499
|
-
private: boolean;
|
|
27500
|
-
defaultBranch: string;
|
|
27501
|
-
updatedAt: number;
|
|
27502
|
-
}[];
|
|
27503
|
-
}>;
|
|
27504
27223
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27505
27224
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27506
27225
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -27544,7 +27263,7 @@ declare class VercelApi {
|
|
|
27544
27263
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
27545
27264
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
27546
27265
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27547
|
-
type?: "system" | "
|
|
27266
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
27548
27267
|
sunsetSecretId?: string;
|
|
27549
27268
|
id?: string;
|
|
27550
27269
|
key?: string;
|
|
@@ -27618,7 +27337,7 @@ declare class VercelApi {
|
|
|
27618
27337
|
} | {
|
|
27619
27338
|
envs: {
|
|
27620
27339
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27621
|
-
type?: "system" | "
|
|
27340
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
27622
27341
|
sunsetSecretId?: string;
|
|
27623
27342
|
id?: string;
|
|
27624
27343
|
key?: string;
|
|
@@ -27694,7 +27413,7 @@ declare class VercelApi {
|
|
|
27694
27413
|
} | {
|
|
27695
27414
|
envs: {
|
|
27696
27415
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27697
|
-
type?: "system" | "
|
|
27416
|
+
type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
27698
27417
|
sunsetSecretId?: string;
|
|
27699
27418
|
id?: string;
|
|
27700
27419
|
key?: string;
|
|
@@ -27985,7 +27704,7 @@ declare class VercelApi {
|
|
|
27985
27704
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
27986
27705
|
system?: boolean;
|
|
27987
27706
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27988
|
-
type: "system" | "
|
|
27707
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
27989
27708
|
sunsetSecretId?: string;
|
|
27990
27709
|
id?: string;
|
|
27991
27710
|
key: string;
|
|
@@ -28057,7 +27776,7 @@ declare class VercelApi {
|
|
|
28057
27776
|
vsmValue?: string;
|
|
28058
27777
|
} | {
|
|
28059
27778
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28060
|
-
type: "system" | "
|
|
27779
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28061
27780
|
sunsetSecretId?: string;
|
|
28062
27781
|
id?: string;
|
|
28063
27782
|
key: string;
|
|
@@ -28129,7 +27848,7 @@ declare class VercelApi {
|
|
|
28129
27848
|
vsmValue?: string;
|
|
28130
27849
|
} | {
|
|
28131
27850
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28132
|
-
type: "system" | "
|
|
27851
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28133
27852
|
sunsetSecretId?: string;
|
|
28134
27853
|
id?: string;
|
|
28135
27854
|
key: string;
|
|
@@ -28202,7 +27921,7 @@ declare class VercelApi {
|
|
|
28202
27921
|
}[]>;
|
|
28203
27922
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
28204
27923
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28205
|
-
type: "system" | "
|
|
27924
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28206
27925
|
sunsetSecretId?: string;
|
|
28207
27926
|
id?: string;
|
|
28208
27927
|
key: string;
|