vercel-api-js 0.23.2 → 0.23.4
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 +14 -0
- package/dist/index.cjs +1 -3
- package/dist/index.d.cts +248 -117
- package/dist/index.d.mts +248 -117
- package/dist/index.d.ts +248 -117
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -890,17 +890,10 @@ type UserEvent = {
|
|
|
890
890
|
createdAt: number;
|
|
891
891
|
}[];
|
|
892
892
|
}[];
|
|
893
|
-
favoriteProjectsAndSpaces?:
|
|
893
|
+
favoriteProjectsAndSpaces?: {
|
|
894
|
+
teamId: string;
|
|
894
895
|
projectId: string;
|
|
895
|
-
|
|
896
|
-
scopeId: string;
|
|
897
|
-
teamId?: string;
|
|
898
|
-
} | {
|
|
899
|
-
spaceId: string;
|
|
900
|
-
scopeSlug: string;
|
|
901
|
-
scopeId: string;
|
|
902
|
-
teamId?: string;
|
|
903
|
-
})[];
|
|
896
|
+
}[];
|
|
904
897
|
email: string;
|
|
905
898
|
id: string;
|
|
906
899
|
importFlowGitNamespace?: string | number | null;
|
|
@@ -961,6 +954,8 @@ type UserEvent = {
|
|
|
961
954
|
cronJobsPerProject?: number;
|
|
962
955
|
microfrontendGroupsPerTeam?: number;
|
|
963
956
|
microfrontendProjectsPerGroup?: number;
|
|
957
|
+
flagsExplorerOverridesThreshold?: number;
|
|
958
|
+
flagsExplorerUnlimitedOverrides?: boolean;
|
|
964
959
|
};
|
|
965
960
|
/**
|
|
966
961
|
* User | Team resource limits
|
|
@@ -2516,6 +2511,14 @@ type AuthUser = {
|
|
|
2516
2511
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2517
2512
|
*/
|
|
2518
2513
|
microfrontendProjectsPerGroup?: number;
|
|
2514
|
+
/**
|
|
2515
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2516
|
+
*/
|
|
2517
|
+
flagsExplorerOverridesThreshold?: number;
|
|
2518
|
+
/**
|
|
2519
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2520
|
+
*/
|
|
2521
|
+
flagsExplorerUnlimitedOverrides?: boolean;
|
|
2519
2522
|
};
|
|
2520
2523
|
/**
|
|
2521
2524
|
* Prefix that will be used in the URL of "Preview" deployments created by the User account.
|
|
@@ -2550,17 +2553,10 @@ type AuthUser = {
|
|
|
2550
2553
|
/**
|
|
2551
2554
|
* A list of projects and spaces across teams that a user has marked as a favorite.
|
|
2552
2555
|
*/
|
|
2553
|
-
favoriteProjectsAndSpaces?:
|
|
2556
|
+
favoriteProjectsAndSpaces?: {
|
|
2557
|
+
teamId: string;
|
|
2554
2558
|
projectId: string;
|
|
2555
|
-
|
|
2556
|
-
scopeId: string;
|
|
2557
|
-
teamId?: string;
|
|
2558
|
-
} | {
|
|
2559
|
-
spaceId: string;
|
|
2560
|
-
scopeSlug: string;
|
|
2561
|
-
scopeId: string;
|
|
2562
|
-
teamId?: string;
|
|
2563
|
-
})[];
|
|
2559
|
+
}[];
|
|
2564
2560
|
/**
|
|
2565
2561
|
* Whether the user has a trial available for a paid plan subscription.
|
|
2566
2562
|
*/
|
|
@@ -5962,10 +5958,10 @@ type CreateDeploymentResponse = {
|
|
|
5962
5958
|
initReadyAt?: number;
|
|
5963
5959
|
isFirstBranchDeployment?: boolean;
|
|
5964
5960
|
lambdas?: {
|
|
5965
|
-
createdAt?: number;
|
|
5966
5961
|
id?: string;
|
|
5967
|
-
|
|
5962
|
+
createdAt?: number;
|
|
5968
5963
|
entrypoint?: string | null;
|
|
5964
|
+
readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
|
|
5969
5965
|
readyStateAt?: number;
|
|
5970
5966
|
output: {
|
|
5971
5967
|
path: string;
|
|
@@ -6233,7 +6229,7 @@ type CreateDeploymentResponse = {
|
|
|
6233
6229
|
*/
|
|
6234
6230
|
middleware?: number;
|
|
6235
6231
|
} | {
|
|
6236
|
-
handle: 'error' | 'filesystem' | 'hit' | 'miss' | '
|
|
6232
|
+
handle: 'error' | 'filesystem' | 'hit' | 'miss' | 'rewrite' | 'resource';
|
|
6237
6233
|
src?: string;
|
|
6238
6234
|
dest?: string;
|
|
6239
6235
|
status?: number;
|
|
@@ -6262,7 +6258,7 @@ type CreateDeploymentResponse = {
|
|
|
6262
6258
|
defaultBranch: string;
|
|
6263
6259
|
name: string;
|
|
6264
6260
|
private: boolean;
|
|
6265
|
-
ownerType: '
|
|
6261
|
+
ownerType: 'team' | 'user';
|
|
6266
6262
|
} | {
|
|
6267
6263
|
org: string;
|
|
6268
6264
|
repo: string;
|
|
@@ -6273,7 +6269,7 @@ type CreateDeploymentResponse = {
|
|
|
6273
6269
|
defaultBranch: string;
|
|
6274
6270
|
name: string;
|
|
6275
6271
|
private: boolean;
|
|
6276
|
-
ownerType: '
|
|
6272
|
+
ownerType: 'team' | 'user';
|
|
6277
6273
|
} | {
|
|
6278
6274
|
owner: string;
|
|
6279
6275
|
repoUuid: string;
|
|
@@ -6284,7 +6280,7 @@ type CreateDeploymentResponse = {
|
|
|
6284
6280
|
defaultBranch: string;
|
|
6285
6281
|
name: string;
|
|
6286
6282
|
private: boolean;
|
|
6287
|
-
ownerType: '
|
|
6283
|
+
ownerType: 'team' | 'user';
|
|
6288
6284
|
} | null;
|
|
6289
6285
|
flags?: {
|
|
6290
6286
|
definitions: {
|
|
@@ -6645,10 +6641,10 @@ type CancelDeploymentResponse = {
|
|
|
6645
6641
|
initReadyAt?: number;
|
|
6646
6642
|
isFirstBranchDeployment?: boolean;
|
|
6647
6643
|
lambdas?: {
|
|
6648
|
-
createdAt?: number;
|
|
6649
6644
|
id?: string;
|
|
6650
|
-
|
|
6645
|
+
createdAt?: number;
|
|
6651
6646
|
entrypoint?: string | null;
|
|
6647
|
+
readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
|
|
6652
6648
|
readyStateAt?: number;
|
|
6653
6649
|
output: {
|
|
6654
6650
|
path: string;
|
|
@@ -6661,8 +6657,8 @@ type CancelDeploymentResponse = {
|
|
|
6661
6657
|
team?: {
|
|
6662
6658
|
id: string;
|
|
6663
6659
|
name: string;
|
|
6664
|
-
slug: string;
|
|
6665
6660
|
avatar?: string;
|
|
6661
|
+
slug: string;
|
|
6666
6662
|
};
|
|
6667
6663
|
userAliases?: string[];
|
|
6668
6664
|
previewCommentsEnabled?: boolean;
|
|
@@ -6870,7 +6866,7 @@ type CancelDeploymentResponse = {
|
|
|
6870
6866
|
*/
|
|
6871
6867
|
middleware?: number;
|
|
6872
6868
|
} | {
|
|
6873
|
-
handle: 'error' | 'filesystem' | 'hit' | 'miss' | '
|
|
6869
|
+
handle: 'error' | 'filesystem' | 'hit' | 'miss' | 'rewrite' | 'resource';
|
|
6874
6870
|
src?: string;
|
|
6875
6871
|
dest?: string;
|
|
6876
6872
|
status?: number;
|
|
@@ -6888,7 +6884,7 @@ type CancelDeploymentResponse = {
|
|
|
6888
6884
|
defaultBranch: string;
|
|
6889
6885
|
name: string;
|
|
6890
6886
|
private: boolean;
|
|
6891
|
-
ownerType: '
|
|
6887
|
+
ownerType: 'team' | 'user';
|
|
6892
6888
|
} | {
|
|
6893
6889
|
org: string;
|
|
6894
6890
|
repo: string;
|
|
@@ -6899,7 +6895,7 @@ type CancelDeploymentResponse = {
|
|
|
6899
6895
|
defaultBranch: string;
|
|
6900
6896
|
name: string;
|
|
6901
6897
|
private: boolean;
|
|
6902
|
-
ownerType: '
|
|
6898
|
+
ownerType: 'team' | 'user';
|
|
6903
6899
|
} | {
|
|
6904
6900
|
owner: string;
|
|
6905
6901
|
repoUuid: string;
|
|
@@ -6910,7 +6906,7 @@ type CancelDeploymentResponse = {
|
|
|
6910
6906
|
defaultBranch: string;
|
|
6911
6907
|
name: string;
|
|
6912
6908
|
private: boolean;
|
|
6913
|
-
ownerType: '
|
|
6909
|
+
ownerType: 'team' | 'user';
|
|
6914
6910
|
} | null;
|
|
6915
6911
|
flags?: {
|
|
6916
6912
|
definitions: {
|
|
@@ -8400,9 +8396,6 @@ type GetConfigurableLogDrainResponse = {
|
|
|
8400
8396
|
configurationId?: string;
|
|
8401
8397
|
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8402
8398
|
environments: ('preview' | 'production')[];
|
|
8403
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8404
|
-
disabledAt?: number;
|
|
8405
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8406
8399
|
disabledBy?: string;
|
|
8407
8400
|
firstErrorTimestamp?: number;
|
|
8408
8401
|
samplingRate?: number;
|
|
@@ -8421,6 +8414,9 @@ type GetConfigurableLogDrainResponse = {
|
|
|
8421
8414
|
ownerId: string;
|
|
8422
8415
|
createdFrom?: 'integration' | 'self-served';
|
|
8423
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';
|
|
8424
8420
|
secret: string;
|
|
8425
8421
|
};
|
|
8426
8422
|
type GetConfigurableLogDrainVariables = {
|
|
@@ -8474,9 +8470,6 @@ type GetAllLogDrainsResponse = {
|
|
|
8474
8470
|
configurationId?: string;
|
|
8475
8471
|
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8476
8472
|
environments: ('preview' | 'production')[];
|
|
8477
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8478
|
-
disabledAt?: number;
|
|
8479
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8480
8473
|
disabledBy?: string;
|
|
8481
8474
|
firstErrorTimestamp?: number;
|
|
8482
8475
|
samplingRate?: number;
|
|
@@ -8495,6 +8488,9 @@ type GetAllLogDrainsResponse = {
|
|
|
8495
8488
|
ownerId: string;
|
|
8496
8489
|
createdFrom?: 'integration' | 'self-served';
|
|
8497
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';
|
|
8498
8494
|
secret: string;
|
|
8499
8495
|
}[];
|
|
8500
8496
|
type GetAllLogDrainsVariables = {
|
|
@@ -8524,9 +8520,6 @@ type CreateConfigurableLogDrainResponse = {
|
|
|
8524
8520
|
configurationId?: string;
|
|
8525
8521
|
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8526
8522
|
environments: ('preview' | 'production')[];
|
|
8527
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8528
|
-
disabledAt?: number;
|
|
8529
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8530
8523
|
disabledBy?: string;
|
|
8531
8524
|
firstErrorTimestamp?: number;
|
|
8532
8525
|
samplingRate?: number;
|
|
@@ -8545,6 +8538,9 @@ type CreateConfigurableLogDrainResponse = {
|
|
|
8545
8538
|
ownerId: string;
|
|
8546
8539
|
createdFrom?: 'integration' | 'self-served';
|
|
8547
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';
|
|
8548
8544
|
};
|
|
8549
8545
|
type CreateConfigurableLogDrainRequestBody = {
|
|
8550
8546
|
/**
|
|
@@ -9983,7 +9979,18 @@ type ImportResourceRequestBody = {
|
|
|
9983
9979
|
id: string;
|
|
9984
9980
|
type: 'prepayment' | 'subscription';
|
|
9985
9981
|
name: string;
|
|
9982
|
+
description?: string;
|
|
9986
9983
|
paymentMethodRequired?: boolean;
|
|
9984
|
+
cost?: string;
|
|
9985
|
+
details?: {
|
|
9986
|
+
label: string;
|
|
9987
|
+
value?: string;
|
|
9988
|
+
}[];
|
|
9989
|
+
heightlightedDetails?: {
|
|
9990
|
+
label: string;
|
|
9991
|
+
value?: string;
|
|
9992
|
+
}[];
|
|
9993
|
+
effectiveDate?: string;
|
|
9987
9994
|
} & {
|
|
9988
9995
|
[key: string]: any;
|
|
9989
9996
|
};
|
|
@@ -10075,7 +10082,7 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
|
|
|
10075
10082
|
*
|
|
10076
10083
|
* @example marketplace
|
|
10077
10084
|
*/
|
|
10078
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
10085
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
10079
10086
|
/**
|
|
10080
10087
|
* The slug of the integration the configuration is created for.
|
|
10081
10088
|
*
|
|
@@ -10181,7 +10188,7 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
|
|
|
10181
10188
|
*
|
|
10182
10189
|
* @example marketplace
|
|
10183
10190
|
*/
|
|
10184
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
10191
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
10185
10192
|
/**
|
|
10186
10193
|
* The slug of the integration the configuration is created for.
|
|
10187
10194
|
*
|
|
@@ -10306,7 +10313,7 @@ declare const getConfiguration: (variables: GetConfigurationVariables, signal?:
|
|
|
10306
10313
|
*
|
|
10307
10314
|
* @example marketplace
|
|
10308
10315
|
*/
|
|
10309
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
10316
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
10310
10317
|
/**
|
|
10311
10318
|
* The slug of the integration the configuration is created for.
|
|
10312
10319
|
*
|
|
@@ -10369,6 +10376,49 @@ declare const getConfiguration: (variables: GetConfigurationVariables, signal?:
|
|
|
10369
10376
|
* @example all
|
|
10370
10377
|
*/
|
|
10371
10378
|
projectSelection: "selected" | "all";
|
|
10379
|
+
transferRequest: {
|
|
10380
|
+
kind: "transfer-to-marketplace";
|
|
10381
|
+
metadata?: {
|
|
10382
|
+
[key: string]: any;
|
|
10383
|
+
};
|
|
10384
|
+
billingPlan?: {
|
|
10385
|
+
id: string;
|
|
10386
|
+
type: "subscription" | "prepayment";
|
|
10387
|
+
scope?: "installation" | "resource";
|
|
10388
|
+
name: string;
|
|
10389
|
+
description: string;
|
|
10390
|
+
paymentMethodRequired?: boolean;
|
|
10391
|
+
preauthorizationAmount?: number;
|
|
10392
|
+
};
|
|
10393
|
+
requestId: string;
|
|
10394
|
+
transferId: string;
|
|
10395
|
+
requester: {
|
|
10396
|
+
name: string;
|
|
10397
|
+
email?: string;
|
|
10398
|
+
};
|
|
10399
|
+
createdAt: number;
|
|
10400
|
+
expiresAt: number;
|
|
10401
|
+
discardedAt?: number;
|
|
10402
|
+
discardedBy?: string;
|
|
10403
|
+
approvedAt?: number;
|
|
10404
|
+
approvedBy?: string;
|
|
10405
|
+
authorizationId?: string;
|
|
10406
|
+
} | {
|
|
10407
|
+
kind: "transfer-from-marketplace";
|
|
10408
|
+
requestId: string;
|
|
10409
|
+
transferId: string;
|
|
10410
|
+
requester: {
|
|
10411
|
+
name: string;
|
|
10412
|
+
email?: string;
|
|
10413
|
+
};
|
|
10414
|
+
createdAt: number;
|
|
10415
|
+
expiresAt: number;
|
|
10416
|
+
discardedAt?: number;
|
|
10417
|
+
discardedBy?: string;
|
|
10418
|
+
approvedAt?: number;
|
|
10419
|
+
approvedBy?: string;
|
|
10420
|
+
authorizationId?: string;
|
|
10421
|
+
};
|
|
10372
10422
|
/**
|
|
10373
10423
|
* When a configuration is limited to access certain projects, this will contain each of the project ID it is allowed to access. If it is not defined, the configuration has full access.
|
|
10374
10424
|
*
|
|
@@ -10410,7 +10460,7 @@ declare const getConfiguration: (variables: GetConfigurationVariables, signal?:
|
|
|
10410
10460
|
*
|
|
10411
10461
|
* @example marketplace
|
|
10412
10462
|
*/
|
|
10413
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
10463
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
10414
10464
|
/**
|
|
10415
10465
|
* The slug of the integration the configuration is created for.
|
|
10416
10466
|
*
|
|
@@ -10914,48 +10964,6 @@ declare const searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal)
|
|
|
10914
10964
|
updatedAt: number;
|
|
10915
10965
|
}[];
|
|
10916
10966
|
}>;
|
|
10917
|
-
type GetV1ExperimentationItemsQueryParams = {
|
|
10918
|
-
resourceId?: string;
|
|
10919
|
-
};
|
|
10920
|
-
type GetV1ExperimentationItemsError = ErrorWrapper<undefined>;
|
|
10921
|
-
type GetV1ExperimentationItemsResponse = {
|
|
10922
|
-
items: {
|
|
10923
|
-
/**
|
|
10924
|
-
* The Vercel generated ID for this item Integrations should not receive this in API responses
|
|
10925
|
-
*/
|
|
10926
|
-
id: string;
|
|
10927
|
-
slug: string;
|
|
10928
|
-
origin: string;
|
|
10929
|
-
/**
|
|
10930
|
-
* The ID the partner has for this item. Integrations should receive this as `id` in API responses
|
|
10931
|
-
*/
|
|
10932
|
-
externalId: string;
|
|
10933
|
-
/**
|
|
10934
|
-
* The id of the integration installation on a team
|
|
10935
|
-
*/
|
|
10936
|
-
integrationConfigurationId: string;
|
|
10937
|
-
/**
|
|
10938
|
-
* The flags collection ID
|
|
10939
|
-
*/
|
|
10940
|
-
resourceId: string;
|
|
10941
|
-
/**
|
|
10942
|
-
* An optional functional category for the item. Categorization semantics are: - flag (can resolve variants, can freely update variant resolution, usually does not perform analysis) - experiment (has variants, constrains changes to variant allocations, performs analysis) Using statsig as an example: - FeatureGate -> flag - Experiment -> experiment - Autotune -> experiment Forwards compatibility for other primitives can be considered, ex. `DynamicConfig`, `Holdouts`, `Layers`
|
|
10943
|
-
*/
|
|
10944
|
-
category?: 'experiment' | 'flag';
|
|
10945
|
-
name?: string;
|
|
10946
|
-
description?: string;
|
|
10947
|
-
isArchived?: boolean;
|
|
10948
|
-
createdAt?: number;
|
|
10949
|
-
updatedAt?: number;
|
|
10950
|
-
}[];
|
|
10951
|
-
};
|
|
10952
|
-
type GetV1ExperimentationItemsVariables = {
|
|
10953
|
-
queryParams?: GetV1ExperimentationItemsQueryParams;
|
|
10954
|
-
} & FetcherExtraProps;
|
|
10955
|
-
/**
|
|
10956
|
-
* Query experimentation items
|
|
10957
|
-
*/
|
|
10958
|
-
declare const getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
10959
10967
|
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
|
|
10960
10968
|
integrationConfigurationId: string;
|
|
10961
10969
|
resourceId: string;
|
|
@@ -13175,12 +13183,14 @@ type CreateProjectRequestBody = {
|
|
|
13175
13183
|
oidcTokenConfig?: {
|
|
13176
13184
|
/**
|
|
13177
13185
|
* Whether or not to generate OpenID Connect JSON Web Tokens.
|
|
13186
|
+
*
|
|
13187
|
+
* @default true
|
|
13178
13188
|
*/
|
|
13179
|
-
enabled
|
|
13189
|
+
enabled?: boolean;
|
|
13180
13190
|
/**
|
|
13181
13191
|
* team: `https://oidc.vercel.com/[team_slug]` global: `https://oidc.vercel.com`
|
|
13182
13192
|
*
|
|
13183
|
-
* @default
|
|
13193
|
+
* @default team
|
|
13184
13194
|
*/
|
|
13185
13195
|
issuerMode?: 'global' | 'team';
|
|
13186
13196
|
};
|
|
@@ -14994,12 +15004,14 @@ type UpdateProjectRequestBody = {
|
|
|
14994
15004
|
oidcTokenConfig?: {
|
|
14995
15005
|
/**
|
|
14996
15006
|
* Whether or not to generate OpenID Connect JSON Web Tokens.
|
|
15007
|
+
*
|
|
15008
|
+
* @default true
|
|
14997
15009
|
*/
|
|
14998
|
-
enabled
|
|
15010
|
+
enabled?: boolean;
|
|
14999
15011
|
/**
|
|
15000
15012
|
* team: `https://oidc.vercel.com/[team_slug]` global: `https://oidc.vercel.com`
|
|
15001
15013
|
*
|
|
15002
|
-
* @default
|
|
15014
|
+
* @default team
|
|
15003
15015
|
*/
|
|
15004
15016
|
issuerMode?: 'global' | 'team';
|
|
15005
15017
|
};
|
|
@@ -22799,7 +22811,7 @@ declare const operationsByTag: {
|
|
|
22799
22811
|
*
|
|
22800
22812
|
* @example marketplace
|
|
22801
22813
|
*/
|
|
22802
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
22814
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
22803
22815
|
/**
|
|
22804
22816
|
* The slug of the integration the configuration is created for.
|
|
22805
22817
|
*
|
|
@@ -22905,7 +22917,7 @@ declare const operationsByTag: {
|
|
|
22905
22917
|
*
|
|
22906
22918
|
* @example marketplace
|
|
22907
22919
|
*/
|
|
22908
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
22920
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
22909
22921
|
/**
|
|
22910
22922
|
* The slug of the integration the configuration is created for.
|
|
22911
22923
|
*
|
|
@@ -23004,7 +23016,7 @@ declare const operationsByTag: {
|
|
|
23004
23016
|
*
|
|
23005
23017
|
* @example marketplace
|
|
23006
23018
|
*/
|
|
23007
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
23019
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
23008
23020
|
/**
|
|
23009
23021
|
* The slug of the integration the configuration is created for.
|
|
23010
23022
|
*
|
|
@@ -23067,6 +23079,49 @@ declare const operationsByTag: {
|
|
|
23067
23079
|
* @example all
|
|
23068
23080
|
*/
|
|
23069
23081
|
projectSelection: "selected" | "all";
|
|
23082
|
+
transferRequest: {
|
|
23083
|
+
kind: "transfer-to-marketplace";
|
|
23084
|
+
metadata?: {
|
|
23085
|
+
[key: string]: any;
|
|
23086
|
+
};
|
|
23087
|
+
billingPlan?: {
|
|
23088
|
+
id: string;
|
|
23089
|
+
type: "subscription" | "prepayment";
|
|
23090
|
+
scope?: "installation" | "resource";
|
|
23091
|
+
name: string;
|
|
23092
|
+
description: string;
|
|
23093
|
+
paymentMethodRequired?: boolean;
|
|
23094
|
+
preauthorizationAmount?: number;
|
|
23095
|
+
};
|
|
23096
|
+
requestId: string;
|
|
23097
|
+
transferId: string;
|
|
23098
|
+
requester: {
|
|
23099
|
+
name: string;
|
|
23100
|
+
email?: string;
|
|
23101
|
+
};
|
|
23102
|
+
createdAt: number;
|
|
23103
|
+
expiresAt: number;
|
|
23104
|
+
discardedAt?: number;
|
|
23105
|
+
discardedBy?: string;
|
|
23106
|
+
approvedAt?: number;
|
|
23107
|
+
approvedBy?: string;
|
|
23108
|
+
authorizationId?: string;
|
|
23109
|
+
} | {
|
|
23110
|
+
kind: "transfer-from-marketplace";
|
|
23111
|
+
requestId: string;
|
|
23112
|
+
transferId: string;
|
|
23113
|
+
requester: {
|
|
23114
|
+
name: string;
|
|
23115
|
+
email?: string;
|
|
23116
|
+
};
|
|
23117
|
+
createdAt: number;
|
|
23118
|
+
expiresAt: number;
|
|
23119
|
+
discardedAt?: number;
|
|
23120
|
+
discardedBy?: string;
|
|
23121
|
+
approvedAt?: number;
|
|
23122
|
+
approvedBy?: string;
|
|
23123
|
+
authorizationId?: string;
|
|
23124
|
+
};
|
|
23070
23125
|
/**
|
|
23071
23126
|
* When a configuration is limited to access certain projects, this will contain each of the project ID it is allowed to access. If it is not defined, the configuration has full access.
|
|
23072
23127
|
*
|
|
@@ -23108,7 +23163,7 @@ declare const operationsByTag: {
|
|
|
23108
23163
|
*
|
|
23109
23164
|
* @example marketplace
|
|
23110
23165
|
*/
|
|
23111
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
23166
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
23112
23167
|
/**
|
|
23113
23168
|
* The slug of the integration the configuration is created for.
|
|
23114
23169
|
*
|
|
@@ -23381,9 +23436,6 @@ declare const operationsByTag: {
|
|
|
23381
23436
|
getAuthToken: (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
|
|
23382
23437
|
deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
|
|
23383
23438
|
};
|
|
23384
|
-
apiExperimentation: {
|
|
23385
|
-
getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
23386
|
-
};
|
|
23387
23439
|
projectMembers: {
|
|
23388
23440
|
getProjectMembers: (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23389
23441
|
members: {
|
|
@@ -24205,10 +24257,6 @@ type components_GetTeamsError = GetTeamsError;
|
|
|
24205
24257
|
type components_GetTeamsQueryParams = GetTeamsQueryParams;
|
|
24206
24258
|
type components_GetTeamsResponse = GetTeamsResponse;
|
|
24207
24259
|
type components_GetTeamsVariables = GetTeamsVariables;
|
|
24208
|
-
type components_GetV1ExperimentationItemsError = GetV1ExperimentationItemsError;
|
|
24209
|
-
type components_GetV1ExperimentationItemsQueryParams = GetV1ExperimentationItemsQueryParams;
|
|
24210
|
-
type components_GetV1ExperimentationItemsResponse = GetV1ExperimentationItemsResponse;
|
|
24211
|
-
type components_GetV1ExperimentationItemsVariables = GetV1ExperimentationItemsVariables;
|
|
24212
24260
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsError = GetV9ProjectsIdOrNameCustomEnvironmentsError;
|
|
24213
24261
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
|
|
24214
24262
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams;
|
|
@@ -24632,7 +24680,6 @@ declare const components_getTeam: typeof getTeam;
|
|
|
24632
24680
|
declare const components_getTeamAccessRequest: typeof getTeamAccessRequest;
|
|
24633
24681
|
declare const components_getTeamMembers: typeof getTeamMembers;
|
|
24634
24682
|
declare const components_getTeams: typeof getTeams;
|
|
24635
|
-
declare const components_getV1ExperimentationItems: typeof getV1ExperimentationItems;
|
|
24636
24683
|
declare const components_getV9ProjectsIdOrNameCustomEnvironments: typeof getV9ProjectsIdOrNameCustomEnvironments;
|
|
24637
24684
|
declare const components_getWebhook: typeof getWebhook;
|
|
24638
24685
|
declare const components_getWebhooks: typeof getWebhooks;
|
|
@@ -24705,7 +24752,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24705
24752
|
declare const components_uploadFile: typeof uploadFile;
|
|
24706
24753
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24707
24754
|
declare namespace components {
|
|
24708
|
-
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_GetV1ExperimentationItemsError as GetV1ExperimentationItemsError, type components_GetV1ExperimentationItemsQueryParams as GetV1ExperimentationItemsQueryParams, type components_GetV1ExperimentationItemsResponse as GetV1ExperimentationItemsResponse, type components_GetV1ExperimentationItemsVariables as GetV1ExperimentationItemsVariables, 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_getV1ExperimentationItems as getV1ExperimentationItems, 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 };
|
|
24755
|
+
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 };
|
|
24709
24756
|
}
|
|
24710
24757
|
|
|
24711
24758
|
declare const operationsByPath: {
|
|
@@ -25432,7 +25479,7 @@ declare const operationsByPath: {
|
|
|
25432
25479
|
integrationId?: string;
|
|
25433
25480
|
ownerId?: string;
|
|
25434
25481
|
projects?: string[];
|
|
25435
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
25482
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
25436
25483
|
slug?: string;
|
|
25437
25484
|
teamId?: string | null;
|
|
25438
25485
|
type?: "integration-configuration";
|
|
@@ -25459,7 +25506,7 @@ declare const operationsByPath: {
|
|
|
25459
25506
|
integrationId: string;
|
|
25460
25507
|
ownerId: string;
|
|
25461
25508
|
projects?: string[];
|
|
25462
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
25509
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
25463
25510
|
slug: string;
|
|
25464
25511
|
teamId?: string | null;
|
|
25465
25512
|
type: "integration-configuration";
|
|
@@ -25479,7 +25526,7 @@ declare const operationsByPath: {
|
|
|
25479
25526
|
integrationId: string;
|
|
25480
25527
|
ownerId: string;
|
|
25481
25528
|
projects?: string[];
|
|
25482
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
25529
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
25483
25530
|
slug: string;
|
|
25484
25531
|
teamId?: string | null;
|
|
25485
25532
|
type: "integration-configuration";
|
|
@@ -25493,13 +25540,56 @@ declare const operationsByPath: {
|
|
|
25493
25540
|
installationType?: "marketplace" | "external";
|
|
25494
25541
|
} | {
|
|
25495
25542
|
projectSelection: "selected" | "all";
|
|
25543
|
+
transferRequest: {
|
|
25544
|
+
kind: "transfer-to-marketplace";
|
|
25545
|
+
metadata?: {
|
|
25546
|
+
[key: string]: any;
|
|
25547
|
+
};
|
|
25548
|
+
billingPlan?: {
|
|
25549
|
+
id: string;
|
|
25550
|
+
type: "subscription" | "prepayment";
|
|
25551
|
+
scope?: "installation" | "resource";
|
|
25552
|
+
name: string;
|
|
25553
|
+
description: string;
|
|
25554
|
+
paymentMethodRequired?: boolean;
|
|
25555
|
+
preauthorizationAmount?: number;
|
|
25556
|
+
};
|
|
25557
|
+
requestId: string;
|
|
25558
|
+
transferId: string;
|
|
25559
|
+
requester: {
|
|
25560
|
+
name: string;
|
|
25561
|
+
email?: string;
|
|
25562
|
+
};
|
|
25563
|
+
createdAt: number;
|
|
25564
|
+
expiresAt: number;
|
|
25565
|
+
discardedAt?: number;
|
|
25566
|
+
discardedBy?: string;
|
|
25567
|
+
approvedAt?: number;
|
|
25568
|
+
approvedBy?: string;
|
|
25569
|
+
authorizationId?: string;
|
|
25570
|
+
} | {
|
|
25571
|
+
kind: "transfer-from-marketplace";
|
|
25572
|
+
requestId: string;
|
|
25573
|
+
transferId: string;
|
|
25574
|
+
requester: {
|
|
25575
|
+
name: string;
|
|
25576
|
+
email?: string;
|
|
25577
|
+
};
|
|
25578
|
+
createdAt: number;
|
|
25579
|
+
expiresAt: number;
|
|
25580
|
+
discardedAt?: number;
|
|
25581
|
+
discardedBy?: string;
|
|
25582
|
+
approvedAt?: number;
|
|
25583
|
+
approvedBy?: string;
|
|
25584
|
+
authorizationId?: string;
|
|
25585
|
+
};
|
|
25496
25586
|
projects?: string[];
|
|
25497
25587
|
completedAt?: number;
|
|
25498
25588
|
createdAt: number;
|
|
25499
25589
|
id: string;
|
|
25500
25590
|
integrationId: string;
|
|
25501
25591
|
ownerId: string;
|
|
25502
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
25592
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
25503
25593
|
slug: string;
|
|
25504
25594
|
teamId?: string | null;
|
|
25505
25595
|
type: "integration-configuration";
|
|
@@ -25541,7 +25631,6 @@ declare const operationsByPath: {
|
|
|
25541
25631
|
updatedAt: number;
|
|
25542
25632
|
}[];
|
|
25543
25633
|
}>;
|
|
25544
|
-
'GET /v1/experimentation/items': (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
25545
25634
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25546
25635
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25547
25636
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -26432,7 +26521,7 @@ declare const operationsByPath: {
|
|
|
26432
26521
|
}[];
|
|
26433
26522
|
}>;
|
|
26434
26523
|
'DELETE /v1/security/firewall/bypass': (variables: RemoveBypassIpVariables, signal?: AbortSignal) => Promise<RemoveBypassIpResponse>;
|
|
26435
|
-
'GET /
|
|
26524
|
+
'GET /v3/teams/{teamId}/members': (variables: GetTeamMembersVariables, signal?: AbortSignal) => Promise<GetTeamMembersResponse>;
|
|
26436
26525
|
'POST /v1/teams/{teamId}/members': (variables: InviteUserToTeamVariables, signal?: AbortSignal) => Promise<{
|
|
26437
26526
|
uid: string;
|
|
26438
26527
|
username: string;
|
|
@@ -27259,7 +27348,7 @@ declare class VercelApi {
|
|
|
27259
27348
|
integrationId?: string;
|
|
27260
27349
|
ownerId?: string;
|
|
27261
27350
|
projects?: string[];
|
|
27262
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
27351
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
27263
27352
|
slug?: string;
|
|
27264
27353
|
teamId?: string | null;
|
|
27265
27354
|
type?: "integration-configuration";
|
|
@@ -27286,7 +27375,7 @@ declare class VercelApi {
|
|
|
27286
27375
|
integrationId: string;
|
|
27287
27376
|
ownerId: string;
|
|
27288
27377
|
projects?: string[];
|
|
27289
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
27378
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
27290
27379
|
slug: string;
|
|
27291
27380
|
teamId?: string | null;
|
|
27292
27381
|
type: "integration-configuration";
|
|
@@ -27306,7 +27395,7 @@ declare class VercelApi {
|
|
|
27306
27395
|
integrationId: string;
|
|
27307
27396
|
ownerId: string;
|
|
27308
27397
|
projects?: string[];
|
|
27309
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
27398
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
27310
27399
|
slug: string;
|
|
27311
27400
|
teamId?: string | null;
|
|
27312
27401
|
type: "integration-configuration";
|
|
@@ -27320,13 +27409,56 @@ declare class VercelApi {
|
|
|
27320
27409
|
installationType?: "marketplace" | "external";
|
|
27321
27410
|
} | {
|
|
27322
27411
|
projectSelection: "selected" | "all";
|
|
27412
|
+
transferRequest: {
|
|
27413
|
+
kind: "transfer-to-marketplace";
|
|
27414
|
+
metadata?: {
|
|
27415
|
+
[key: string]: any;
|
|
27416
|
+
};
|
|
27417
|
+
billingPlan?: {
|
|
27418
|
+
id: string;
|
|
27419
|
+
type: "subscription" | "prepayment";
|
|
27420
|
+
scope?: "installation" | "resource";
|
|
27421
|
+
name: string;
|
|
27422
|
+
description: string;
|
|
27423
|
+
paymentMethodRequired?: boolean;
|
|
27424
|
+
preauthorizationAmount?: number;
|
|
27425
|
+
};
|
|
27426
|
+
requestId: string;
|
|
27427
|
+
transferId: string;
|
|
27428
|
+
requester: {
|
|
27429
|
+
name: string;
|
|
27430
|
+
email?: string;
|
|
27431
|
+
};
|
|
27432
|
+
createdAt: number;
|
|
27433
|
+
expiresAt: number;
|
|
27434
|
+
discardedAt?: number;
|
|
27435
|
+
discardedBy?: string;
|
|
27436
|
+
approvedAt?: number;
|
|
27437
|
+
approvedBy?: string;
|
|
27438
|
+
authorizationId?: string;
|
|
27439
|
+
} | {
|
|
27440
|
+
kind: "transfer-from-marketplace";
|
|
27441
|
+
requestId: string;
|
|
27442
|
+
transferId: string;
|
|
27443
|
+
requester: {
|
|
27444
|
+
name: string;
|
|
27445
|
+
email?: string;
|
|
27446
|
+
};
|
|
27447
|
+
createdAt: number;
|
|
27448
|
+
expiresAt: number;
|
|
27449
|
+
discardedAt?: number;
|
|
27450
|
+
discardedBy?: string;
|
|
27451
|
+
approvedAt?: number;
|
|
27452
|
+
approvedBy?: string;
|
|
27453
|
+
authorizationId?: string;
|
|
27454
|
+
};
|
|
27323
27455
|
projects?: string[];
|
|
27324
27456
|
completedAt?: number;
|
|
27325
27457
|
createdAt: number;
|
|
27326
27458
|
id: string;
|
|
27327
27459
|
integrationId: string;
|
|
27328
27460
|
ownerId: string;
|
|
27329
|
-
source?: "marketplace" | "deploy-button" | "external";
|
|
27461
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0";
|
|
27330
27462
|
slug: string;
|
|
27331
27463
|
teamId?: string | null;
|
|
27332
27464
|
type: "integration-configuration";
|
|
@@ -27368,7 +27500,6 @@ declare class VercelApi {
|
|
|
27368
27500
|
updatedAt: number;
|
|
27369
27501
|
}[];
|
|
27370
27502
|
}>;
|
|
27371
|
-
'GET /v1/experimentation/items': (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
27372
27503
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27373
27504
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27374
27505
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -28259,7 +28390,7 @@ declare class VercelApi {
|
|
|
28259
28390
|
}[];
|
|
28260
28391
|
}>;
|
|
28261
28392
|
'DELETE /v1/security/firewall/bypass': (variables: RemoveBypassIpVariables, signal?: AbortSignal) => Promise<RemoveBypassIpResponse>;
|
|
28262
|
-
'GET /
|
|
28393
|
+
'GET /v3/teams/{teamId}/members': (variables: GetTeamMembersVariables, signal?: AbortSignal) => Promise<GetTeamMembersResponse>;
|
|
28263
28394
|
'POST /v1/teams/{teamId}/members': (variables: InviteUserToTeamVariables, signal?: AbortSignal) => Promise<{
|
|
28264
28395
|
uid: string;
|
|
28265
28396
|
username: string;
|