vercel-api-js 0.24.0 → 0.24.1
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 +11 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +853 -257
- package/dist/index.d.mts +853 -257
- package/dist/index.d.ts +853 -257
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -856,10 +856,10 @@ type UserEvent = {
|
|
|
856
856
|
created?: number;
|
|
857
857
|
createdAt: number;
|
|
858
858
|
credentials?: ({
|
|
859
|
-
type: 'gitlab' | 'bitbucket' | 'github-oauth' | 'github-app';
|
|
859
|
+
type: 'gitlab' | 'bitbucket' | 'google' | 'github-oauth' | 'github-app';
|
|
860
860
|
id: string;
|
|
861
861
|
} | {
|
|
862
|
-
type: 'github-oauth-custom-host';
|
|
862
|
+
type: 'github-oauth-custom-host' | 'github-app-custom-host';
|
|
863
863
|
host: string;
|
|
864
864
|
id: string;
|
|
865
865
|
})[];
|
|
@@ -886,7 +886,7 @@ type UserEvent = {
|
|
|
886
886
|
id: string;
|
|
887
887
|
importFlowGitNamespace?: string | number | null;
|
|
888
888
|
importFlowGitNamespaceId?: string | number | null;
|
|
889
|
-
importFlowGitProvider?: 'github' | 'gitlab' | 'bitbucket' | null;
|
|
889
|
+
importFlowGitProvider?: 'github' | 'gitlab' | 'bitbucket' | 'github-custom-host' | null;
|
|
890
890
|
preferredScopesAndGitNamespaces?: {
|
|
891
891
|
scopeId: string;
|
|
892
892
|
gitNamespaceId: string | number | null;
|
|
@@ -944,8 +944,10 @@ type UserEvent = {
|
|
|
944
944
|
microfrontendProjectsPerGroup?: number;
|
|
945
945
|
flagsExplorerOverridesThreshold?: number;
|
|
946
946
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
947
|
+
customEnvironmentsPerProject?: number;
|
|
947
948
|
buildMachine?: {
|
|
948
949
|
purchaseType?: 'enhanced';
|
|
950
|
+
abovePlan?: boolean;
|
|
949
951
|
cores?: number;
|
|
950
952
|
memory?: number;
|
|
951
953
|
};
|
|
@@ -1456,6 +1458,7 @@ type UserEvent = {
|
|
|
1456
1458
|
viaGithub: boolean;
|
|
1457
1459
|
viaGitlab: boolean;
|
|
1458
1460
|
viaBitbucket: boolean;
|
|
1461
|
+
viaGoogle: boolean;
|
|
1459
1462
|
viaSamlSso: boolean;
|
|
1460
1463
|
viaPasskey: boolean;
|
|
1461
1464
|
ssoType?: string;
|
|
@@ -2170,7 +2173,7 @@ type UserEvent = {
|
|
|
2170
2173
|
*/
|
|
2171
2174
|
rtTTL?: number;
|
|
2172
2175
|
scope: string;
|
|
2173
|
-
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2176
|
+
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2174
2177
|
};
|
|
2175
2178
|
};
|
|
2176
2179
|
/**
|
|
@@ -2362,13 +2365,13 @@ type AuthToken = {
|
|
|
2362
2365
|
origin: 'totp' | 'webauthn' | 'recovery-code';
|
|
2363
2366
|
expiresAt: number;
|
|
2364
2367
|
};
|
|
2365
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2368
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2366
2369
|
createdAt: number;
|
|
2367
2370
|
expiresAt?: number;
|
|
2368
2371
|
} | {
|
|
2369
2372
|
type: 'team';
|
|
2370
2373
|
teamId: string;
|
|
2371
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2374
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2372
2375
|
createdAt: number;
|
|
2373
2376
|
expiresAt?: number;
|
|
2374
2377
|
})[];
|
|
@@ -2514,6 +2517,10 @@ type AuthUser = {
|
|
|
2514
2517
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2515
2518
|
*/
|
|
2516
2519
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
2520
|
+
/**
|
|
2521
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2522
|
+
*/
|
|
2523
|
+
customEnvironmentsPerProject?: number;
|
|
2517
2524
|
/**
|
|
2518
2525
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2519
2526
|
*/
|
|
@@ -2522,6 +2529,10 @@ type AuthUser = {
|
|
|
2522
2529
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2523
2530
|
*/
|
|
2524
2531
|
purchaseType?: 'enhanced';
|
|
2532
|
+
/**
|
|
2533
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2534
|
+
*/
|
|
2535
|
+
abovePlan?: boolean;
|
|
2525
2536
|
/**
|
|
2526
2537
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2527
2538
|
*/
|
|
@@ -2547,7 +2558,7 @@ type AuthUser = {
|
|
|
2547
2558
|
}[];
|
|
2548
2559
|
importFlowGitNamespace?: string | number | null;
|
|
2549
2560
|
importFlowGitNamespaceId?: string | number | null;
|
|
2550
|
-
importFlowGitProvider?: 'bitbucket' | 'github' | 'gitlab' | null;
|
|
2561
|
+
importFlowGitProvider?: 'bitbucket' | 'github' | 'github-custom-host' | 'gitlab' | null;
|
|
2551
2562
|
preferredScopesAndGitNamespaces?: {
|
|
2552
2563
|
scopeId: string;
|
|
2553
2564
|
gitNamespaceId: string | number | null;
|
|
@@ -4355,9 +4366,11 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4355
4366
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
4356
4367
|
*/
|
|
4357
4368
|
sunsetSecretId?: string;
|
|
4369
|
+
decrypted?: boolean;
|
|
4370
|
+
value: string;
|
|
4371
|
+
vsmValue?: string;
|
|
4358
4372
|
id?: string;
|
|
4359
4373
|
key: string;
|
|
4360
|
-
value: string;
|
|
4361
4374
|
configurationId?: string | null;
|
|
4362
4375
|
createdAt?: number;
|
|
4363
4376
|
updatedAt?: number;
|
|
@@ -4425,13 +4438,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4425
4438
|
*/
|
|
4426
4439
|
encryptedValue: string;
|
|
4427
4440
|
} | null;
|
|
4428
|
-
/**
|
|
4429
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
4430
|
-
*/
|
|
4431
|
-
decrypted?: boolean;
|
|
4432
4441
|
comment?: string;
|
|
4433
4442
|
customEnvironmentIds?: string[];
|
|
4434
|
-
vsmValue?: string;
|
|
4435
4443
|
}[];
|
|
4436
4444
|
customEnvironments?: Record<string, any>[];
|
|
4437
4445
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
@@ -4582,6 +4590,28 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4582
4590
|
updatedAt?: number;
|
|
4583
4591
|
sourceless?: boolean;
|
|
4584
4592
|
productionBranch?: string;
|
|
4593
|
+
} | {
|
|
4594
|
+
org?: string;
|
|
4595
|
+
/**
|
|
4596
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
4597
|
+
*/
|
|
4598
|
+
repoOwnerId?: number;
|
|
4599
|
+
repo?: string;
|
|
4600
|
+
repoId?: number;
|
|
4601
|
+
type?: 'github-custom-host';
|
|
4602
|
+
host?: string;
|
|
4603
|
+
createdAt?: number;
|
|
4604
|
+
deployHooks: {
|
|
4605
|
+
createdAt?: number;
|
|
4606
|
+
id: string;
|
|
4607
|
+
name: string;
|
|
4608
|
+
ref: string;
|
|
4609
|
+
url: string;
|
|
4610
|
+
}[];
|
|
4611
|
+
gitCredentialId?: string;
|
|
4612
|
+
updatedAt?: number;
|
|
4613
|
+
sourceless?: boolean;
|
|
4614
|
+
productionBranch?: string;
|
|
4585
4615
|
};
|
|
4586
4616
|
microfrontends?: {
|
|
4587
4617
|
/**
|
|
@@ -4658,6 +4688,14 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4658
4688
|
* The percentage of traffic to serve to the new deployment
|
|
4659
4689
|
*/
|
|
4660
4690
|
targetPercentage: number;
|
|
4691
|
+
/**
|
|
4692
|
+
* minutesToRelease is the total time to gradually shift percentages. This value overrides stages and instead creates a single smooth starting percentage to ending percentage stage. So once we have fetched the document with the update time, subtract from the current time, and divide by total minutesToRelease, to determine what percentage of traffic the new deployment should be serving.
|
|
4693
|
+
*/
|
|
4694
|
+
minutesToRelease?: number;
|
|
4695
|
+
/**
|
|
4696
|
+
* Whether or not this stage requires approval to proceed.
|
|
4697
|
+
*/
|
|
4698
|
+
requireApproval?: boolean;
|
|
4661
4699
|
}[] | null;
|
|
4662
4700
|
} | null;
|
|
4663
4701
|
defaultResourceConfig: {
|
|
@@ -4850,6 +4888,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4850
4888
|
notificationCustomerBudget?: ACLAction[];
|
|
4851
4889
|
notificationStatementOfReasons?: ACLAction[];
|
|
4852
4890
|
observabilityConfiguration?: ACLAction[];
|
|
4891
|
+
observabilityNotebook?: ACLAction[];
|
|
4853
4892
|
openTelemetryEndpoint?: ACLAction[];
|
|
4854
4893
|
paymentMethod?: ACLAction[];
|
|
4855
4894
|
permissions?: ACLAction[];
|
|
@@ -5351,6 +5390,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5351
5390
|
aliasAssigned: boolean;
|
|
5352
5391
|
bootedAt: number;
|
|
5353
5392
|
buildingAt: number;
|
|
5393
|
+
/**
|
|
5394
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
5395
|
+
*/
|
|
5396
|
+
buildContainerFinishedAt?: number;
|
|
5354
5397
|
buildSkipped: boolean;
|
|
5355
5398
|
creator: {
|
|
5356
5399
|
uid: string;
|
|
@@ -5436,6 +5479,21 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5436
5479
|
ref?: string | null;
|
|
5437
5480
|
sha?: string;
|
|
5438
5481
|
prId?: number | null;
|
|
5482
|
+
} | {
|
|
5483
|
+
type: "github-custom-host";
|
|
5484
|
+
host: string;
|
|
5485
|
+
repoId: string | number;
|
|
5486
|
+
ref?: string | null;
|
|
5487
|
+
sha?: string;
|
|
5488
|
+
prId?: number | null;
|
|
5489
|
+
} | {
|
|
5490
|
+
type: "github-custom-host";
|
|
5491
|
+
host: string;
|
|
5492
|
+
org: string;
|
|
5493
|
+
repo: string;
|
|
5494
|
+
ref?: string | null;
|
|
5495
|
+
sha?: string;
|
|
5496
|
+
prId?: number | null;
|
|
5439
5497
|
} | {
|
|
5440
5498
|
type: "gitlab";
|
|
5441
5499
|
projectId: string | number;
|
|
@@ -5468,6 +5526,14 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5468
5526
|
repoId: number;
|
|
5469
5527
|
org?: string;
|
|
5470
5528
|
repo?: string;
|
|
5529
|
+
} | {
|
|
5530
|
+
type: "github";
|
|
5531
|
+
host: string;
|
|
5532
|
+
ref: string;
|
|
5533
|
+
sha: string;
|
|
5534
|
+
repoId: number;
|
|
5535
|
+
org?: string;
|
|
5536
|
+
repo?: string;
|
|
5471
5537
|
} | {
|
|
5472
5538
|
type: "gitlab";
|
|
5473
5539
|
ref: string;
|
|
@@ -5701,6 +5767,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5701
5767
|
aliasAssigned: boolean;
|
|
5702
5768
|
bootedAt: number;
|
|
5703
5769
|
buildingAt: number;
|
|
5770
|
+
/**
|
|
5771
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
5772
|
+
*/
|
|
5773
|
+
buildContainerFinishedAt?: number;
|
|
5704
5774
|
buildSkipped: boolean;
|
|
5705
5775
|
creator: {
|
|
5706
5776
|
uid: string;
|
|
@@ -5786,6 +5856,21 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5786
5856
|
ref?: string | null;
|
|
5787
5857
|
sha?: string;
|
|
5788
5858
|
prId?: number | null;
|
|
5859
|
+
} | {
|
|
5860
|
+
type: "github-custom-host";
|
|
5861
|
+
host: string;
|
|
5862
|
+
repoId: string | number;
|
|
5863
|
+
ref?: string | null;
|
|
5864
|
+
sha?: string;
|
|
5865
|
+
prId?: number | null;
|
|
5866
|
+
} | {
|
|
5867
|
+
type: "github-custom-host";
|
|
5868
|
+
host: string;
|
|
5869
|
+
org: string;
|
|
5870
|
+
repo: string;
|
|
5871
|
+
ref?: string | null;
|
|
5872
|
+
sha?: string;
|
|
5873
|
+
prId?: number | null;
|
|
5789
5874
|
} | {
|
|
5790
5875
|
type: "gitlab";
|
|
5791
5876
|
projectId: string | number;
|
|
@@ -5818,6 +5903,14 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5818
5903
|
repoId: number;
|
|
5819
5904
|
org?: string;
|
|
5820
5905
|
repo?: string;
|
|
5906
|
+
} | {
|
|
5907
|
+
type: "github";
|
|
5908
|
+
host: string;
|
|
5909
|
+
ref: string;
|
|
5910
|
+
sha: string;
|
|
5911
|
+
repoId: number;
|
|
5912
|
+
org?: string;
|
|
5913
|
+
repo?: string;
|
|
5821
5914
|
} | {
|
|
5822
5915
|
type: "gitlab";
|
|
5823
5916
|
ref: string;
|
|
@@ -5978,6 +6071,10 @@ type CreateDeploymentResponse = {
|
|
|
5978
6071
|
aliasAssigned: boolean;
|
|
5979
6072
|
bootedAt: number;
|
|
5980
6073
|
buildingAt: number;
|
|
6074
|
+
/**
|
|
6075
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
6076
|
+
*/
|
|
6077
|
+
buildContainerFinishedAt?: number;
|
|
5981
6078
|
buildSkipped: boolean;
|
|
5982
6079
|
creator: {
|
|
5983
6080
|
uid: string;
|
|
@@ -6035,6 +6132,21 @@ type CreateDeploymentResponse = {
|
|
|
6035
6132
|
ref?: string | null;
|
|
6036
6133
|
sha?: string;
|
|
6037
6134
|
prId?: number | null;
|
|
6135
|
+
} | {
|
|
6136
|
+
type: 'github-custom-host';
|
|
6137
|
+
host: string;
|
|
6138
|
+
repoId: string | number;
|
|
6139
|
+
ref?: string | null;
|
|
6140
|
+
sha?: string;
|
|
6141
|
+
prId?: number | null;
|
|
6142
|
+
} | {
|
|
6143
|
+
type: 'github-custom-host';
|
|
6144
|
+
host: string;
|
|
6145
|
+
org: string;
|
|
6146
|
+
repo: string;
|
|
6147
|
+
ref?: string | null;
|
|
6148
|
+
sha?: string;
|
|
6149
|
+
prId?: number | null;
|
|
6038
6150
|
} | {
|
|
6039
6151
|
type: 'gitlab';
|
|
6040
6152
|
projectId: string | number;
|
|
@@ -6067,6 +6179,14 @@ type CreateDeploymentResponse = {
|
|
|
6067
6179
|
repoId: number;
|
|
6068
6180
|
org?: string;
|
|
6069
6181
|
repo?: string;
|
|
6182
|
+
} | {
|
|
6183
|
+
type: 'github';
|
|
6184
|
+
host: string;
|
|
6185
|
+
ref: string;
|
|
6186
|
+
sha: string;
|
|
6187
|
+
repoId: number;
|
|
6188
|
+
org?: string;
|
|
6189
|
+
repo?: string;
|
|
6070
6190
|
} | {
|
|
6071
6191
|
type: 'gitlab';
|
|
6072
6192
|
ref: string;
|
|
@@ -6661,6 +6781,10 @@ type CancelDeploymentResponse = {
|
|
|
6661
6781
|
aliasAssigned: boolean;
|
|
6662
6782
|
bootedAt: number;
|
|
6663
6783
|
buildingAt: number;
|
|
6784
|
+
/**
|
|
6785
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
6786
|
+
*/
|
|
6787
|
+
buildContainerFinishedAt?: number;
|
|
6664
6788
|
buildSkipped: boolean;
|
|
6665
6789
|
creator: {
|
|
6666
6790
|
uid: string;
|
|
@@ -6743,6 +6867,21 @@ type CancelDeploymentResponse = {
|
|
|
6743
6867
|
ref?: string | null;
|
|
6744
6868
|
sha?: string;
|
|
6745
6869
|
prId?: number | null;
|
|
6870
|
+
} | {
|
|
6871
|
+
type: 'github-custom-host';
|
|
6872
|
+
host: string;
|
|
6873
|
+
repoId: string | number;
|
|
6874
|
+
ref?: string | null;
|
|
6875
|
+
sha?: string;
|
|
6876
|
+
prId?: number | null;
|
|
6877
|
+
} | {
|
|
6878
|
+
type: 'github-custom-host';
|
|
6879
|
+
host: string;
|
|
6880
|
+
org: string;
|
|
6881
|
+
repo: string;
|
|
6882
|
+
ref?: string | null;
|
|
6883
|
+
sha?: string;
|
|
6884
|
+
prId?: number | null;
|
|
6746
6885
|
} | {
|
|
6747
6886
|
type: 'gitlab';
|
|
6748
6887
|
projectId: string | number;
|
|
@@ -6775,6 +6914,14 @@ type CancelDeploymentResponse = {
|
|
|
6775
6914
|
repoId: number;
|
|
6776
6915
|
org?: string;
|
|
6777
6916
|
repo?: string;
|
|
6917
|
+
} | {
|
|
6918
|
+
type: 'github';
|
|
6919
|
+
host: string;
|
|
6920
|
+
ref: string;
|
|
6921
|
+
sha: string;
|
|
6922
|
+
repoId: number;
|
|
6923
|
+
org?: string;
|
|
6924
|
+
repo?: string;
|
|
6778
6925
|
} | {
|
|
6779
6926
|
type: 'gitlab';
|
|
6780
6927
|
ref: string;
|
|
@@ -7837,11 +7984,6 @@ type GetDomainConfigResponse = {
|
|
|
7837
7984
|
* Whether or not the domain is configured AND we can automatically generate a TLS certificate.
|
|
7838
7985
|
*/
|
|
7839
7986
|
misconfigured: boolean;
|
|
7840
|
-
/**
|
|
7841
|
-
* Recommended IPs and CNAME for the domain.
|
|
7842
|
-
*/
|
|
7843
|
-
recommendedIps?: string[];
|
|
7844
|
-
recommendedCname?: string;
|
|
7845
7987
|
};
|
|
7846
7988
|
type GetDomainConfigVariables = {
|
|
7847
7989
|
pathParams: GetDomainConfigPathParams;
|
|
@@ -11259,9 +11401,11 @@ type GetProjectsResponse = {
|
|
|
11259
11401
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
11260
11402
|
*/
|
|
11261
11403
|
sunsetSecretId?: string;
|
|
11404
|
+
decrypted?: boolean;
|
|
11405
|
+
value: string;
|
|
11406
|
+
vsmValue?: string;
|
|
11262
11407
|
id?: string;
|
|
11263
11408
|
key: string;
|
|
11264
|
-
value: string;
|
|
11265
11409
|
configurationId?: string | null;
|
|
11266
11410
|
createdAt?: number;
|
|
11267
11411
|
updatedAt?: number;
|
|
@@ -11329,13 +11473,8 @@ type GetProjectsResponse = {
|
|
|
11329
11473
|
*/
|
|
11330
11474
|
encryptedValue: string;
|
|
11331
11475
|
} | null;
|
|
11332
|
-
/**
|
|
11333
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
11334
|
-
*/
|
|
11335
|
-
decrypted?: boolean;
|
|
11336
11476
|
comment?: string;
|
|
11337
11477
|
customEnvironmentIds?: string[];
|
|
11338
|
-
vsmValue?: string;
|
|
11339
11478
|
}[];
|
|
11340
11479
|
customEnvironments?: Record<string, any>[];
|
|
11341
11480
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
@@ -11486,6 +11625,28 @@ type GetProjectsResponse = {
|
|
|
11486
11625
|
updatedAt?: number;
|
|
11487
11626
|
sourceless?: boolean;
|
|
11488
11627
|
productionBranch?: string;
|
|
11628
|
+
} | {
|
|
11629
|
+
org?: string;
|
|
11630
|
+
/**
|
|
11631
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
11632
|
+
*/
|
|
11633
|
+
repoOwnerId?: number;
|
|
11634
|
+
repo?: string;
|
|
11635
|
+
repoId?: number;
|
|
11636
|
+
type?: 'github-custom-host';
|
|
11637
|
+
host?: string;
|
|
11638
|
+
createdAt?: number;
|
|
11639
|
+
deployHooks: {
|
|
11640
|
+
createdAt?: number;
|
|
11641
|
+
id: string;
|
|
11642
|
+
name: string;
|
|
11643
|
+
ref: string;
|
|
11644
|
+
url: string;
|
|
11645
|
+
}[];
|
|
11646
|
+
gitCredentialId?: string;
|
|
11647
|
+
updatedAt?: number;
|
|
11648
|
+
sourceless?: boolean;
|
|
11649
|
+
productionBranch?: string;
|
|
11489
11650
|
};
|
|
11490
11651
|
microfrontends?: {
|
|
11491
11652
|
/**
|
|
@@ -11562,6 +11723,14 @@ type GetProjectsResponse = {
|
|
|
11562
11723
|
* The percentage of traffic to serve to the new deployment
|
|
11563
11724
|
*/
|
|
11564
11725
|
targetPercentage: number;
|
|
11726
|
+
/**
|
|
11727
|
+
* minutesToRelease is the total time to gradually shift percentages. This value overrides stages and instead creates a single smooth starting percentage to ending percentage stage. So once we have fetched the document with the update time, subtract from the current time, and divide by total minutesToRelease, to determine what percentage of traffic the new deployment should be serving.
|
|
11728
|
+
*/
|
|
11729
|
+
minutesToRelease?: number;
|
|
11730
|
+
/**
|
|
11731
|
+
* Whether or not this stage requires approval to proceed.
|
|
11732
|
+
*/
|
|
11733
|
+
requireApproval?: boolean;
|
|
11565
11734
|
}[] | null;
|
|
11566
11735
|
} | null;
|
|
11567
11736
|
defaultResourceConfig: {
|
|
@@ -11754,6 +11923,7 @@ type GetProjectsResponse = {
|
|
|
11754
11923
|
notificationCustomerBudget?: ACLAction[];
|
|
11755
11924
|
notificationStatementOfReasons?: ACLAction[];
|
|
11756
11925
|
observabilityConfiguration?: ACLAction[];
|
|
11926
|
+
observabilityNotebook?: ACLAction[];
|
|
11757
11927
|
openTelemetryEndpoint?: ACLAction[];
|
|
11758
11928
|
paymentMethod?: ACLAction[];
|
|
11759
11929
|
permissions?: ACLAction[];
|
|
@@ -12112,9 +12282,11 @@ type CreateProjectResponse = {
|
|
|
12112
12282
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
12113
12283
|
*/
|
|
12114
12284
|
sunsetSecretId?: string;
|
|
12285
|
+
decrypted?: boolean;
|
|
12286
|
+
value: string;
|
|
12287
|
+
vsmValue?: string;
|
|
12115
12288
|
id?: string;
|
|
12116
12289
|
key: string;
|
|
12117
|
-
value: string;
|
|
12118
12290
|
configurationId?: string | null;
|
|
12119
12291
|
createdAt?: number;
|
|
12120
12292
|
updatedAt?: number;
|
|
@@ -12182,13 +12354,8 @@ type CreateProjectResponse = {
|
|
|
12182
12354
|
*/
|
|
12183
12355
|
encryptedValue: string;
|
|
12184
12356
|
} | null;
|
|
12185
|
-
/**
|
|
12186
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
12187
|
-
*/
|
|
12188
|
-
decrypted?: boolean;
|
|
12189
12357
|
comment?: string;
|
|
12190
12358
|
customEnvironmentIds?: string[];
|
|
12191
|
-
vsmValue?: string;
|
|
12192
12359
|
}[];
|
|
12193
12360
|
customEnvironments?: Record<string, any>[];
|
|
12194
12361
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
@@ -12339,6 +12506,28 @@ type CreateProjectResponse = {
|
|
|
12339
12506
|
updatedAt?: number;
|
|
12340
12507
|
sourceless?: boolean;
|
|
12341
12508
|
productionBranch?: string;
|
|
12509
|
+
} | {
|
|
12510
|
+
org?: string;
|
|
12511
|
+
/**
|
|
12512
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
12513
|
+
*/
|
|
12514
|
+
repoOwnerId?: number;
|
|
12515
|
+
repo?: string;
|
|
12516
|
+
repoId?: number;
|
|
12517
|
+
type?: 'github-custom-host';
|
|
12518
|
+
host?: string;
|
|
12519
|
+
createdAt?: number;
|
|
12520
|
+
deployHooks: {
|
|
12521
|
+
createdAt?: number;
|
|
12522
|
+
id: string;
|
|
12523
|
+
name: string;
|
|
12524
|
+
ref: string;
|
|
12525
|
+
url: string;
|
|
12526
|
+
}[];
|
|
12527
|
+
gitCredentialId?: string;
|
|
12528
|
+
updatedAt?: number;
|
|
12529
|
+
sourceless?: boolean;
|
|
12530
|
+
productionBranch?: string;
|
|
12342
12531
|
};
|
|
12343
12532
|
microfrontends?: {
|
|
12344
12533
|
/**
|
|
@@ -12415,6 +12604,14 @@ type CreateProjectResponse = {
|
|
|
12415
12604
|
* The percentage of traffic to serve to the new deployment
|
|
12416
12605
|
*/
|
|
12417
12606
|
targetPercentage: number;
|
|
12607
|
+
/**
|
|
12608
|
+
* minutesToRelease is the total time to gradually shift percentages. This value overrides stages and instead creates a single smooth starting percentage to ending percentage stage. So once we have fetched the document with the update time, subtract from the current time, and divide by total minutesToRelease, to determine what percentage of traffic the new deployment should be serving.
|
|
12609
|
+
*/
|
|
12610
|
+
minutesToRelease?: number;
|
|
12611
|
+
/**
|
|
12612
|
+
* Whether or not this stage requires approval to proceed.
|
|
12613
|
+
*/
|
|
12614
|
+
requireApproval?: boolean;
|
|
12418
12615
|
}[] | null;
|
|
12419
12616
|
} | null;
|
|
12420
12617
|
defaultResourceConfig: {
|
|
@@ -12607,6 +12804,7 @@ type CreateProjectResponse = {
|
|
|
12607
12804
|
notificationCustomerBudget?: ACLAction[];
|
|
12608
12805
|
notificationStatementOfReasons?: ACLAction[];
|
|
12609
12806
|
observabilityConfiguration?: ACLAction[];
|
|
12807
|
+
observabilityNotebook?: ACLAction[];
|
|
12610
12808
|
openTelemetryEndpoint?: ACLAction[];
|
|
12611
12809
|
paymentMethod?: ACLAction[];
|
|
12612
12810
|
permissions?: ACLAction[];
|
|
@@ -13098,9 +13296,11 @@ type GetProjectResponse = {
|
|
|
13098
13296
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13099
13297
|
*/
|
|
13100
13298
|
sunsetSecretId?: string;
|
|
13299
|
+
decrypted?: boolean;
|
|
13300
|
+
value: string;
|
|
13301
|
+
vsmValue?: string;
|
|
13101
13302
|
id?: string;
|
|
13102
13303
|
key: string;
|
|
13103
|
-
value: string;
|
|
13104
13304
|
configurationId?: string | null;
|
|
13105
13305
|
createdAt?: number;
|
|
13106
13306
|
updatedAt?: number;
|
|
@@ -13168,13 +13368,8 @@ type GetProjectResponse = {
|
|
|
13168
13368
|
*/
|
|
13169
13369
|
encryptedValue: string;
|
|
13170
13370
|
} | null;
|
|
13171
|
-
/**
|
|
13172
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
13173
|
-
*/
|
|
13174
|
-
decrypted?: boolean;
|
|
13175
13371
|
comment?: string;
|
|
13176
13372
|
customEnvironmentIds?: string[];
|
|
13177
|
-
vsmValue?: string;
|
|
13178
13373
|
}[];
|
|
13179
13374
|
customEnvironments?: Record<string, any>[];
|
|
13180
13375
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
@@ -13325,6 +13520,28 @@ type GetProjectResponse = {
|
|
|
13325
13520
|
updatedAt?: number;
|
|
13326
13521
|
sourceless?: boolean;
|
|
13327
13522
|
productionBranch?: string;
|
|
13523
|
+
} | {
|
|
13524
|
+
org?: string;
|
|
13525
|
+
/**
|
|
13526
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
13527
|
+
*/
|
|
13528
|
+
repoOwnerId?: number;
|
|
13529
|
+
repo?: string;
|
|
13530
|
+
repoId?: number;
|
|
13531
|
+
type?: 'github-custom-host';
|
|
13532
|
+
host?: string;
|
|
13533
|
+
createdAt?: number;
|
|
13534
|
+
deployHooks: {
|
|
13535
|
+
createdAt?: number;
|
|
13536
|
+
id: string;
|
|
13537
|
+
name: string;
|
|
13538
|
+
ref: string;
|
|
13539
|
+
url: string;
|
|
13540
|
+
}[];
|
|
13541
|
+
gitCredentialId?: string;
|
|
13542
|
+
updatedAt?: number;
|
|
13543
|
+
sourceless?: boolean;
|
|
13544
|
+
productionBranch?: string;
|
|
13328
13545
|
};
|
|
13329
13546
|
microfrontends?: {
|
|
13330
13547
|
/**
|
|
@@ -13401,6 +13618,14 @@ type GetProjectResponse = {
|
|
|
13401
13618
|
* The percentage of traffic to serve to the new deployment
|
|
13402
13619
|
*/
|
|
13403
13620
|
targetPercentage: number;
|
|
13621
|
+
/**
|
|
13622
|
+
* minutesToRelease is the total time to gradually shift percentages. This value overrides stages and instead creates a single smooth starting percentage to ending percentage stage. So once we have fetched the document with the update time, subtract from the current time, and divide by total minutesToRelease, to determine what percentage of traffic the new deployment should be serving.
|
|
13623
|
+
*/
|
|
13624
|
+
minutesToRelease?: number;
|
|
13625
|
+
/**
|
|
13626
|
+
* Whether or not this stage requires approval to proceed.
|
|
13627
|
+
*/
|
|
13628
|
+
requireApproval?: boolean;
|
|
13404
13629
|
}[] | null;
|
|
13405
13630
|
} | null;
|
|
13406
13631
|
defaultResourceConfig: {
|
|
@@ -13593,6 +13818,7 @@ type GetProjectResponse = {
|
|
|
13593
13818
|
notificationCustomerBudget?: ACLAction[];
|
|
13594
13819
|
notificationStatementOfReasons?: ACLAction[];
|
|
13595
13820
|
observabilityConfiguration?: ACLAction[];
|
|
13821
|
+
observabilityNotebook?: ACLAction[];
|
|
13596
13822
|
openTelemetryEndpoint?: ACLAction[];
|
|
13597
13823
|
paymentMethod?: ACLAction[];
|
|
13598
13824
|
permissions?: ACLAction[];
|
|
@@ -13958,9 +14184,11 @@ type UpdateProjectResponse = {
|
|
|
13958
14184
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13959
14185
|
*/
|
|
13960
14186
|
sunsetSecretId?: string;
|
|
14187
|
+
decrypted?: boolean;
|
|
14188
|
+
value: string;
|
|
14189
|
+
vsmValue?: string;
|
|
13961
14190
|
id?: string;
|
|
13962
14191
|
key: string;
|
|
13963
|
-
value: string;
|
|
13964
14192
|
configurationId?: string | null;
|
|
13965
14193
|
createdAt?: number;
|
|
13966
14194
|
updatedAt?: number;
|
|
@@ -14028,13 +14256,8 @@ type UpdateProjectResponse = {
|
|
|
14028
14256
|
*/
|
|
14029
14257
|
encryptedValue: string;
|
|
14030
14258
|
} | null;
|
|
14031
|
-
/**
|
|
14032
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
14033
|
-
*/
|
|
14034
|
-
decrypted?: boolean;
|
|
14035
14259
|
comment?: string;
|
|
14036
14260
|
customEnvironmentIds?: string[];
|
|
14037
|
-
vsmValue?: string;
|
|
14038
14261
|
}[];
|
|
14039
14262
|
customEnvironments?: Record<string, any>[];
|
|
14040
14263
|
framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
|
|
@@ -14185,6 +14408,28 @@ type UpdateProjectResponse = {
|
|
|
14185
14408
|
updatedAt?: number;
|
|
14186
14409
|
sourceless?: boolean;
|
|
14187
14410
|
productionBranch?: string;
|
|
14411
|
+
} | {
|
|
14412
|
+
org?: string;
|
|
14413
|
+
/**
|
|
14414
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
14415
|
+
*/
|
|
14416
|
+
repoOwnerId?: number;
|
|
14417
|
+
repo?: string;
|
|
14418
|
+
repoId?: number;
|
|
14419
|
+
type?: 'github-custom-host';
|
|
14420
|
+
host?: string;
|
|
14421
|
+
createdAt?: number;
|
|
14422
|
+
deployHooks: {
|
|
14423
|
+
createdAt?: number;
|
|
14424
|
+
id: string;
|
|
14425
|
+
name: string;
|
|
14426
|
+
ref: string;
|
|
14427
|
+
url: string;
|
|
14428
|
+
}[];
|
|
14429
|
+
gitCredentialId?: string;
|
|
14430
|
+
updatedAt?: number;
|
|
14431
|
+
sourceless?: boolean;
|
|
14432
|
+
productionBranch?: string;
|
|
14188
14433
|
};
|
|
14189
14434
|
microfrontends?: {
|
|
14190
14435
|
/**
|
|
@@ -14236,13 +14481,13 @@ type UpdateProjectResponse = {
|
|
|
14236
14481
|
productionDeploymentsFastLane?: boolean;
|
|
14237
14482
|
publicSource?: boolean | null;
|
|
14238
14483
|
resourceConfig: {
|
|
14484
|
+
buildMachineType?: 'enhanced';
|
|
14239
14485
|
fluid?: boolean;
|
|
14240
14486
|
functionDefaultRegions: string[];
|
|
14241
14487
|
functionDefaultTimeout?: number;
|
|
14242
14488
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14243
14489
|
functionZeroConfigFailover?: boolean;
|
|
14244
14490
|
elasticConcurrencyEnabled?: boolean;
|
|
14245
|
-
buildMachineType?: 'enhanced';
|
|
14246
14491
|
};
|
|
14247
14492
|
rollingRelease?: {
|
|
14248
14493
|
/**
|
|
@@ -14261,16 +14506,24 @@ type UpdateProjectResponse = {
|
|
|
14261
14506
|
* The percentage of traffic to serve to the new deployment
|
|
14262
14507
|
*/
|
|
14263
14508
|
targetPercentage: number;
|
|
14509
|
+
/**
|
|
14510
|
+
* minutesToRelease is the total time to gradually shift percentages. This value overrides stages and instead creates a single smooth starting percentage to ending percentage stage. So once we have fetched the document with the update time, subtract from the current time, and divide by total minutesToRelease, to determine what percentage of traffic the new deployment should be serving.
|
|
14511
|
+
*/
|
|
14512
|
+
minutesToRelease?: number;
|
|
14513
|
+
/**
|
|
14514
|
+
* Whether or not this stage requires approval to proceed.
|
|
14515
|
+
*/
|
|
14516
|
+
requireApproval?: boolean;
|
|
14264
14517
|
}[] | null;
|
|
14265
14518
|
} | null;
|
|
14266
14519
|
defaultResourceConfig: {
|
|
14520
|
+
buildMachineType?: 'enhanced';
|
|
14267
14521
|
fluid?: boolean;
|
|
14268
14522
|
functionDefaultRegions: string[];
|
|
14269
14523
|
functionDefaultTimeout?: number;
|
|
14270
14524
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
14271
14525
|
functionZeroConfigFailover?: boolean;
|
|
14272
14526
|
elasticConcurrencyEnabled?: boolean;
|
|
14273
|
-
buildMachineType?: 'enhanced';
|
|
14274
14527
|
};
|
|
14275
14528
|
rootDirectory?: string | null;
|
|
14276
14529
|
serverlessFunctionRegion?: string | null;
|
|
@@ -14453,6 +14706,7 @@ type UpdateProjectResponse = {
|
|
|
14453
14706
|
notificationCustomerBudget?: ACLAction[];
|
|
14454
14707
|
notificationStatementOfReasons?: ACLAction[];
|
|
14455
14708
|
observabilityConfiguration?: ACLAction[];
|
|
14709
|
+
observabilityNotebook?: ACLAction[];
|
|
14456
14710
|
openTelemetryEndpoint?: ACLAction[];
|
|
14457
14711
|
paymentMethod?: ACLAction[];
|
|
14458
14712
|
permissions?: ACLAction[];
|
|
@@ -14587,7 +14841,7 @@ type UpdateProjectResponse = {
|
|
|
14587
14841
|
value: string;
|
|
14588
14842
|
note?: string;
|
|
14589
14843
|
}[];
|
|
14590
|
-
protectionMode: '
|
|
14844
|
+
protectionMode: 'exclusive' | 'additional';
|
|
14591
14845
|
} | {
|
|
14592
14846
|
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
14593
14847
|
} | null;
|
|
@@ -15027,6 +15281,12 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
|
15027
15281
|
};
|
|
15028
15282
|
type GetV9ProjectsIdOrNameCustomEnvironmentsError = ErrorWrapper<undefined>;
|
|
15029
15283
|
type GetV9ProjectsIdOrNameCustomEnvironmentsResponse = {
|
|
15284
|
+
/**
|
|
15285
|
+
* The maximum number of custom environments allowed either by the team's plan type or a custom override.
|
|
15286
|
+
*/
|
|
15287
|
+
accountLimit: {
|
|
15288
|
+
total: number;
|
|
15289
|
+
};
|
|
15030
15290
|
environments: Record<string, any>[];
|
|
15031
15291
|
};
|
|
15032
15292
|
type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
@@ -15238,13 +15498,50 @@ type GetProjectDomainsQueryParams = {
|
|
|
15238
15498
|
slug?: string;
|
|
15239
15499
|
};
|
|
15240
15500
|
type GetProjectDomainsError = ErrorWrapper<undefined>;
|
|
15241
|
-
type
|
|
15501
|
+
type GetProjectDomainsVariables = {
|
|
15502
|
+
pathParams: GetProjectDomainsPathParams;
|
|
15503
|
+
queryParams?: GetProjectDomainsQueryParams;
|
|
15504
|
+
} & FetcherExtraProps;
|
|
15505
|
+
/**
|
|
15506
|
+
* Retrieve the domains associated with a given project by passing either the project `id` or `name` in the URL.
|
|
15507
|
+
*/
|
|
15508
|
+
declare const getProjectDomains: (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
15242
15509
|
domains: {
|
|
15243
15510
|
name: string;
|
|
15244
15511
|
apexName: string;
|
|
15245
15512
|
projectId: string;
|
|
15246
15513
|
redirect?: string | null;
|
|
15247
|
-
redirectStatusCode?:
|
|
15514
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
15515
|
+
gitBranch?: string | null;
|
|
15516
|
+
customEnvironmentId?: string | null;
|
|
15517
|
+
updatedAt?: number;
|
|
15518
|
+
createdAt?: number;
|
|
15519
|
+
/**
|
|
15520
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
15521
|
+
*/
|
|
15522
|
+
verified: boolean;
|
|
15523
|
+
/**
|
|
15524
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
15525
|
+
*/
|
|
15526
|
+
verification?: {
|
|
15527
|
+
type: string;
|
|
15528
|
+
domain: string;
|
|
15529
|
+
value: string;
|
|
15530
|
+
reason: string;
|
|
15531
|
+
}[];
|
|
15532
|
+
}[];
|
|
15533
|
+
pagination: {
|
|
15534
|
+
count: number;
|
|
15535
|
+
next: number | null;
|
|
15536
|
+
prev: number | null;
|
|
15537
|
+
};
|
|
15538
|
+
} | {
|
|
15539
|
+
domains: {
|
|
15540
|
+
name: string;
|
|
15541
|
+
apexName: string;
|
|
15542
|
+
projectId: string;
|
|
15543
|
+
redirect?: string | null;
|
|
15544
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
15248
15545
|
gitBranch?: string | null;
|
|
15249
15546
|
customEnvironmentId?: string | null;
|
|
15250
15547
|
updatedAt?: number;
|
|
@@ -15264,15 +15561,7 @@ type GetProjectDomainsResponse = {
|
|
|
15264
15561
|
}[];
|
|
15265
15562
|
}[];
|
|
15266
15563
|
pagination: Pagination;
|
|
15267
|
-
}
|
|
15268
|
-
type GetProjectDomainsVariables = {
|
|
15269
|
-
pathParams: GetProjectDomainsPathParams;
|
|
15270
|
-
queryParams?: GetProjectDomainsQueryParams;
|
|
15271
|
-
} & FetcherExtraProps;
|
|
15272
|
-
/**
|
|
15273
|
-
* Retrieve the domains associated with a given project by passing either the project `id` or `name` in the URL.
|
|
15274
|
-
*/
|
|
15275
|
-
declare const getProjectDomains: (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
|
|
15564
|
+
}>;
|
|
15276
15565
|
type GetProjectDomainPathParams = {
|
|
15277
15566
|
/**
|
|
15278
15567
|
* The unique project identifier or the project name
|
|
@@ -15517,6 +15806,70 @@ type AddProjectDomainVariables = {
|
|
|
15517
15806
|
* Add a domain to the project by passing its domain name and by specifying the project by either passing the project `id` or `name` in the URL. If the domain is not yet verified to be used on this project, the request will return `verified = false`, and the domain will need to be verified according to the `verification` challenge via `POST /projects/:idOrName/domains/:domain/verify`. If the domain already exists on the project, the request will fail with a `400` status code.
|
|
15518
15807
|
*/
|
|
15519
15808
|
declare const addProjectDomain: (variables: AddProjectDomainVariables, signal?: AbortSignal) => Promise<AddProjectDomainResponse>;
|
|
15809
|
+
type MoveProjectDomainPathParams = {
|
|
15810
|
+
/**
|
|
15811
|
+
* The unique project identifier or the project name
|
|
15812
|
+
*/
|
|
15813
|
+
idOrName: string;
|
|
15814
|
+
/**
|
|
15815
|
+
* The project domain name
|
|
15816
|
+
*
|
|
15817
|
+
* @example www.example.com
|
|
15818
|
+
*/
|
|
15819
|
+
domain: string;
|
|
15820
|
+
};
|
|
15821
|
+
type MoveProjectDomainQueryParams = {
|
|
15822
|
+
/**
|
|
15823
|
+
* The Team identifier to perform the request on behalf of.
|
|
15824
|
+
*/
|
|
15825
|
+
teamId?: string;
|
|
15826
|
+
/**
|
|
15827
|
+
* The Team slug to perform the request on behalf of.
|
|
15828
|
+
*/
|
|
15829
|
+
slug?: string;
|
|
15830
|
+
};
|
|
15831
|
+
type MoveProjectDomainError = ErrorWrapper<undefined>;
|
|
15832
|
+
type MoveProjectDomainResponse = {
|
|
15833
|
+
name: string;
|
|
15834
|
+
apexName: string;
|
|
15835
|
+
projectId: string;
|
|
15836
|
+
redirect?: string | null;
|
|
15837
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | null;
|
|
15838
|
+
gitBranch?: string | null;
|
|
15839
|
+
customEnvironmentId?: string | null;
|
|
15840
|
+
updatedAt?: number;
|
|
15841
|
+
createdAt?: number;
|
|
15842
|
+
/**
|
|
15843
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
15844
|
+
*/
|
|
15845
|
+
verified: boolean;
|
|
15846
|
+
/**
|
|
15847
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
15848
|
+
*/
|
|
15849
|
+
verification?: {
|
|
15850
|
+
type: string;
|
|
15851
|
+
domain: string;
|
|
15852
|
+
value: string;
|
|
15853
|
+
reason: string;
|
|
15854
|
+
}[];
|
|
15855
|
+
};
|
|
15856
|
+
type MoveProjectDomainRequestBody = {
|
|
15857
|
+
/**
|
|
15858
|
+
* The unique target project identifier
|
|
15859
|
+
*
|
|
15860
|
+
* @example prj_XLKmu1DyR1eY7zq8UgeRKbA7yVLA
|
|
15861
|
+
*/
|
|
15862
|
+
projectId: string;
|
|
15863
|
+
};
|
|
15864
|
+
type MoveProjectDomainVariables = {
|
|
15865
|
+
body: MoveProjectDomainRequestBody;
|
|
15866
|
+
pathParams: MoveProjectDomainPathParams;
|
|
15867
|
+
queryParams?: MoveProjectDomainQueryParams;
|
|
15868
|
+
} & FetcherExtraProps;
|
|
15869
|
+
/**
|
|
15870
|
+
* Move one project's domain to another project. Also allows the move of all redirects pointed to that domain in the same project.
|
|
15871
|
+
*/
|
|
15872
|
+
declare const moveProjectDomain: (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
15520
15873
|
type VerifyProjectDomainPathParams = {
|
|
15521
15874
|
/**
|
|
15522
15875
|
* The unique project identifier or the project name
|
|
@@ -15625,14 +15978,16 @@ type FilterProjectEnvsVariables = {
|
|
|
15625
15978
|
*/
|
|
15626
15979
|
declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
15627
15980
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15628
|
-
type?: "system" | "
|
|
15981
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
15629
15982
|
/**
|
|
15630
15983
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15631
15984
|
*/
|
|
15632
15985
|
sunsetSecretId?: string;
|
|
15986
|
+
decrypted?: boolean;
|
|
15987
|
+
value?: string;
|
|
15988
|
+
vsmValue?: string;
|
|
15633
15989
|
id?: string;
|
|
15634
15990
|
key?: string;
|
|
15635
|
-
value?: string;
|
|
15636
15991
|
configurationId?: string | null;
|
|
15637
15992
|
createdAt?: number;
|
|
15638
15993
|
updatedAt?: number;
|
|
@@ -15700,25 +16055,22 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15700
16055
|
*/
|
|
15701
16056
|
encryptedValue: string;
|
|
15702
16057
|
} | null;
|
|
15703
|
-
/**
|
|
15704
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
15705
|
-
*/
|
|
15706
|
-
decrypted?: boolean;
|
|
15707
16058
|
comment?: string;
|
|
15708
16059
|
customEnvironmentIds?: string[];
|
|
15709
|
-
vsmValue?: string;
|
|
15710
16060
|
system?: boolean;
|
|
15711
16061
|
} | {
|
|
15712
16062
|
envs: {
|
|
15713
16063
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15714
|
-
type?: "system" | "
|
|
16064
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
15715
16065
|
/**
|
|
15716
16066
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15717
16067
|
*/
|
|
15718
16068
|
sunsetSecretId?: string;
|
|
16069
|
+
decrypted?: boolean;
|
|
16070
|
+
value?: string;
|
|
16071
|
+
vsmValue?: string;
|
|
15719
16072
|
id?: string;
|
|
15720
16073
|
key?: string;
|
|
15721
|
-
value?: string;
|
|
15722
16074
|
configurationId?: string | null;
|
|
15723
16075
|
createdAt?: number;
|
|
15724
16076
|
updatedAt?: number;
|
|
@@ -15786,27 +16138,24 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15786
16138
|
*/
|
|
15787
16139
|
encryptedValue: string;
|
|
15788
16140
|
} | null;
|
|
15789
|
-
/**
|
|
15790
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
15791
|
-
*/
|
|
15792
|
-
decrypted?: boolean;
|
|
15793
16141
|
comment?: string;
|
|
15794
16142
|
customEnvironmentIds?: string[];
|
|
15795
|
-
vsmValue?: string;
|
|
15796
16143
|
system?: boolean;
|
|
15797
16144
|
}[];
|
|
15798
16145
|
pagination: Pagination;
|
|
15799
16146
|
} | {
|
|
15800
16147
|
envs: {
|
|
15801
16148
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
15802
|
-
type?: "system" | "
|
|
16149
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
15803
16150
|
/**
|
|
15804
16151
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15805
16152
|
*/
|
|
15806
16153
|
sunsetSecretId?: string;
|
|
16154
|
+
decrypted?: boolean;
|
|
16155
|
+
value?: string;
|
|
16156
|
+
vsmValue?: string;
|
|
15807
16157
|
id?: string;
|
|
15808
16158
|
key?: string;
|
|
15809
|
-
value?: string;
|
|
15810
16159
|
configurationId?: string | null;
|
|
15811
16160
|
createdAt?: number;
|
|
15812
16161
|
updatedAt?: number;
|
|
@@ -15874,13 +16223,8 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15874
16223
|
*/
|
|
15875
16224
|
encryptedValue: string;
|
|
15876
16225
|
} | null;
|
|
15877
|
-
/**
|
|
15878
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
15879
|
-
*/
|
|
15880
|
-
decrypted?: boolean;
|
|
15881
16226
|
comment?: string;
|
|
15882
16227
|
customEnvironmentIds?: string[];
|
|
15883
|
-
vsmValue?: string;
|
|
15884
16228
|
system?: boolean;
|
|
15885
16229
|
}[];
|
|
15886
16230
|
}>;
|
|
@@ -15912,14 +16256,16 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
|
|
|
15912
16256
|
type CreateProjectEnvResponse = {
|
|
15913
16257
|
created: {
|
|
15914
16258
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
15915
|
-
type?: 'system' | '
|
|
16259
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
15916
16260
|
/**
|
|
15917
16261
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15918
16262
|
*/
|
|
15919
16263
|
sunsetSecretId?: string;
|
|
16264
|
+
decrypted?: boolean;
|
|
16265
|
+
value?: string;
|
|
16266
|
+
vsmValue?: string;
|
|
15920
16267
|
id?: string;
|
|
15921
16268
|
key?: string;
|
|
15922
|
-
value?: string;
|
|
15923
16269
|
configurationId?: string | null;
|
|
15924
16270
|
createdAt?: number;
|
|
15925
16271
|
updatedAt?: number;
|
|
@@ -15987,24 +16333,21 @@ type CreateProjectEnvResponse = {
|
|
|
15987
16333
|
*/
|
|
15988
16334
|
encryptedValue: string;
|
|
15989
16335
|
} | null;
|
|
15990
|
-
/**
|
|
15991
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
15992
|
-
*/
|
|
15993
|
-
decrypted?: boolean;
|
|
15994
16336
|
comment?: string;
|
|
15995
16337
|
customEnvironmentIds?: string[];
|
|
15996
|
-
vsmValue?: string;
|
|
15997
16338
|
system?: boolean;
|
|
15998
16339
|
} | {
|
|
15999
16340
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
16000
|
-
type?: 'system' | '
|
|
16341
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
16001
16342
|
/**
|
|
16002
16343
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16003
16344
|
*/
|
|
16004
16345
|
sunsetSecretId?: string;
|
|
16346
|
+
decrypted?: boolean;
|
|
16347
|
+
value?: string;
|
|
16348
|
+
vsmValue?: string;
|
|
16005
16349
|
id?: string;
|
|
16006
16350
|
key?: string;
|
|
16007
|
-
value?: string;
|
|
16008
16351
|
configurationId?: string | null;
|
|
16009
16352
|
createdAt?: number;
|
|
16010
16353
|
updatedAt?: number;
|
|
@@ -16072,13 +16415,8 @@ type CreateProjectEnvResponse = {
|
|
|
16072
16415
|
*/
|
|
16073
16416
|
encryptedValue: string;
|
|
16074
16417
|
} | null;
|
|
16075
|
-
/**
|
|
16076
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16077
|
-
*/
|
|
16078
|
-
decrypted?: boolean;
|
|
16079
16418
|
comment?: string;
|
|
16080
16419
|
customEnvironmentIds?: string[];
|
|
16081
|
-
vsmValue?: string;
|
|
16082
16420
|
system?: boolean;
|
|
16083
16421
|
}[];
|
|
16084
16422
|
failed: {
|
|
@@ -16394,9 +16732,11 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16394
16732
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16395
16733
|
*/
|
|
16396
16734
|
sunsetSecretId?: string;
|
|
16735
|
+
decrypted?: boolean;
|
|
16736
|
+
value: string;
|
|
16737
|
+
vsmValue?: string;
|
|
16397
16738
|
id?: string;
|
|
16398
16739
|
key: string;
|
|
16399
|
-
value: string;
|
|
16400
16740
|
configurationId?: string | null;
|
|
16401
16741
|
createdAt?: number;
|
|
16402
16742
|
updatedAt?: number;
|
|
@@ -16464,13 +16804,8 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16464
16804
|
*/
|
|
16465
16805
|
encryptedValue: string;
|
|
16466
16806
|
} | null;
|
|
16467
|
-
/**
|
|
16468
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16469
|
-
*/
|
|
16470
|
-
decrypted?: boolean;
|
|
16471
16807
|
comment?: string;
|
|
16472
16808
|
customEnvironmentIds?: string[];
|
|
16473
|
-
vsmValue?: string;
|
|
16474
16809
|
} | {
|
|
16475
16810
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16476
16811
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -16478,9 +16813,10 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16478
16813
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16479
16814
|
*/
|
|
16480
16815
|
sunsetSecretId?: string;
|
|
16816
|
+
decrypted?: boolean;
|
|
16817
|
+
value: string;
|
|
16481
16818
|
id?: string;
|
|
16482
16819
|
key: string;
|
|
16483
|
-
value: string;
|
|
16484
16820
|
configurationId?: string | null;
|
|
16485
16821
|
createdAt?: number;
|
|
16486
16822
|
updatedAt?: number;
|
|
@@ -16548,10 +16884,6 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16548
16884
|
*/
|
|
16549
16885
|
encryptedValue: string;
|
|
16550
16886
|
} | null;
|
|
16551
|
-
/**
|
|
16552
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16553
|
-
*/
|
|
16554
|
-
decrypted?: boolean;
|
|
16555
16887
|
comment?: string;
|
|
16556
16888
|
customEnvironmentIds?: string[];
|
|
16557
16889
|
}>;
|
|
@@ -16596,14 +16928,16 @@ type RemoveProjectEnvVariables = {
|
|
|
16596
16928
|
declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
16597
16929
|
system?: boolean;
|
|
16598
16930
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16599
|
-
type: "system" | "
|
|
16931
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16600
16932
|
/**
|
|
16601
16933
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16602
16934
|
*/
|
|
16603
16935
|
sunsetSecretId?: string;
|
|
16936
|
+
decrypted?: boolean;
|
|
16937
|
+
value: string;
|
|
16938
|
+
vsmValue?: string;
|
|
16604
16939
|
id?: string;
|
|
16605
16940
|
key: string;
|
|
16606
|
-
value: string;
|
|
16607
16941
|
configurationId?: string | null;
|
|
16608
16942
|
createdAt?: number;
|
|
16609
16943
|
updatedAt?: number;
|
|
@@ -16671,23 +17005,20 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16671
17005
|
*/
|
|
16672
17006
|
encryptedValue: string;
|
|
16673
17007
|
} | null;
|
|
16674
|
-
/**
|
|
16675
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16676
|
-
*/
|
|
16677
|
-
decrypted?: boolean;
|
|
16678
17008
|
comment?: string;
|
|
16679
17009
|
customEnvironmentIds?: string[];
|
|
16680
|
-
vsmValue?: string;
|
|
16681
17010
|
} | {
|
|
16682
17011
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16683
|
-
type: "system" | "
|
|
17012
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16684
17013
|
/**
|
|
16685
17014
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16686
17015
|
*/
|
|
16687
17016
|
sunsetSecretId?: string;
|
|
17017
|
+
decrypted?: boolean;
|
|
17018
|
+
value: string;
|
|
17019
|
+
vsmValue?: string;
|
|
16688
17020
|
id?: string;
|
|
16689
17021
|
key: string;
|
|
16690
|
-
value: string;
|
|
16691
17022
|
configurationId?: string | null;
|
|
16692
17023
|
createdAt?: number;
|
|
16693
17024
|
updatedAt?: number;
|
|
@@ -16755,23 +17086,20 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16755
17086
|
*/
|
|
16756
17087
|
encryptedValue: string;
|
|
16757
17088
|
} | null;
|
|
16758
|
-
/**
|
|
16759
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16760
|
-
*/
|
|
16761
|
-
decrypted?: boolean;
|
|
16762
17089
|
comment?: string;
|
|
16763
17090
|
customEnvironmentIds?: string[];
|
|
16764
|
-
vsmValue?: string;
|
|
16765
17091
|
} | {
|
|
16766
17092
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16767
|
-
type: "system" | "
|
|
17093
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16768
17094
|
/**
|
|
16769
17095
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16770
17096
|
*/
|
|
16771
17097
|
sunsetSecretId?: string;
|
|
17098
|
+
decrypted?: boolean;
|
|
17099
|
+
value: string;
|
|
17100
|
+
vsmValue?: string;
|
|
16772
17101
|
id?: string;
|
|
16773
17102
|
key: string;
|
|
16774
|
-
value: string;
|
|
16775
17103
|
configurationId?: string | null;
|
|
16776
17104
|
createdAt?: number;
|
|
16777
17105
|
updatedAt?: number;
|
|
@@ -16839,13 +17167,8 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16839
17167
|
*/
|
|
16840
17168
|
encryptedValue: string;
|
|
16841
17169
|
} | null;
|
|
16842
|
-
/**
|
|
16843
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16844
|
-
*/
|
|
16845
|
-
decrypted?: boolean;
|
|
16846
17170
|
comment?: string;
|
|
16847
17171
|
customEnvironmentIds?: string[];
|
|
16848
|
-
vsmValue?: string;
|
|
16849
17172
|
}[]>;
|
|
16850
17173
|
type EditProjectEnvPathParams = {
|
|
16851
17174
|
/**
|
|
@@ -16926,14 +17249,15 @@ type EditProjectEnvVariables = {
|
|
|
16926
17249
|
*/
|
|
16927
17250
|
declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
16928
17251
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16929
|
-
type: "system" | "
|
|
17252
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16930
17253
|
/**
|
|
16931
17254
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16932
17255
|
*/
|
|
16933
17256
|
sunsetSecretId?: string;
|
|
17257
|
+
decrypted?: boolean;
|
|
17258
|
+
value: string;
|
|
16934
17259
|
id?: string;
|
|
16935
17260
|
key: string;
|
|
16936
|
-
value: string;
|
|
16937
17261
|
configurationId?: string | null;
|
|
16938
17262
|
createdAt?: number;
|
|
16939
17263
|
updatedAt?: number;
|
|
@@ -17001,10 +17325,6 @@ declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: Abor
|
|
|
17001
17325
|
*/
|
|
17002
17326
|
encryptedValue: string;
|
|
17003
17327
|
} | null;
|
|
17004
|
-
/**
|
|
17005
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
17006
|
-
*/
|
|
17007
|
-
decrypted?: boolean;
|
|
17008
17328
|
comment?: string;
|
|
17009
17329
|
customEnvironmentIds?: string[];
|
|
17010
17330
|
}>;
|
|
@@ -21097,22 +21417,81 @@ declare const operationsByTag: {
|
|
|
21097
21417
|
getProject: (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
21098
21418
|
updateProject: (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
21099
21419
|
deleteProject: (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
21100
|
-
getProjectDomains: (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<
|
|
21420
|
+
getProjectDomains: (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
21421
|
+
domains: {
|
|
21422
|
+
name: string;
|
|
21423
|
+
apexName: string;
|
|
21424
|
+
projectId: string;
|
|
21425
|
+
redirect?: string | null;
|
|
21426
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
21427
|
+
gitBranch?: string | null;
|
|
21428
|
+
customEnvironmentId?: string | null;
|
|
21429
|
+
updatedAt?: number;
|
|
21430
|
+
createdAt?: number;
|
|
21431
|
+
/**
|
|
21432
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
21433
|
+
*/
|
|
21434
|
+
verified: boolean;
|
|
21435
|
+
/**
|
|
21436
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
21437
|
+
*/
|
|
21438
|
+
verification?: {
|
|
21439
|
+
type: string;
|
|
21440
|
+
domain: string;
|
|
21441
|
+
value: string;
|
|
21442
|
+
reason: string;
|
|
21443
|
+
}[];
|
|
21444
|
+
}[];
|
|
21445
|
+
pagination: {
|
|
21446
|
+
count: number;
|
|
21447
|
+
next: number | null;
|
|
21448
|
+
prev: number | null;
|
|
21449
|
+
};
|
|
21450
|
+
} | {
|
|
21451
|
+
domains: {
|
|
21452
|
+
name: string;
|
|
21453
|
+
apexName: string;
|
|
21454
|
+
projectId: string;
|
|
21455
|
+
redirect?: string | null;
|
|
21456
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
21457
|
+
gitBranch?: string | null;
|
|
21458
|
+
customEnvironmentId?: string | null;
|
|
21459
|
+
updatedAt?: number;
|
|
21460
|
+
createdAt?: number;
|
|
21461
|
+
/**
|
|
21462
|
+
* `true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed.
|
|
21463
|
+
*/
|
|
21464
|
+
verified: boolean;
|
|
21465
|
+
/**
|
|
21466
|
+
* A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete `POST /projects/:idOrName/domains/:domain/verify` to verify the domain. Possible challenges: - If `verification.type = TXT` the `verification.domain` will be checked for a TXT record matching `verification.value`.
|
|
21467
|
+
*/
|
|
21468
|
+
verification?: {
|
|
21469
|
+
type: string;
|
|
21470
|
+
domain: string;
|
|
21471
|
+
value: string;
|
|
21472
|
+
reason: string;
|
|
21473
|
+
}[];
|
|
21474
|
+
}[];
|
|
21475
|
+
pagination: Pagination;
|
|
21476
|
+
}>;
|
|
21101
21477
|
getProjectDomain: (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
21102
21478
|
updateProjectDomain: (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
21103
21479
|
removeProjectDomain: (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
21104
21480
|
addProjectDomain: (variables: AddProjectDomainVariables, signal?: AbortSignal) => Promise<AddProjectDomainResponse>;
|
|
21481
|
+
moveProjectDomain: (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
21105
21482
|
verifyProjectDomain: (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
21106
21483
|
filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
21107
21484
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21108
|
-
type?: "system" | "
|
|
21485
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21109
21486
|
/**
|
|
21110
21487
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21111
21488
|
*/
|
|
21112
21489
|
sunsetSecretId?: string;
|
|
21490
|
+
decrypted?: boolean;
|
|
21491
|
+
value?: string;
|
|
21492
|
+
vsmValue?: string;
|
|
21113
21493
|
id?: string;
|
|
21114
21494
|
key?: string;
|
|
21115
|
-
value?: string;
|
|
21116
21495
|
configurationId?: string | null;
|
|
21117
21496
|
createdAt?: number;
|
|
21118
21497
|
updatedAt?: number;
|
|
@@ -21180,25 +21559,22 @@ declare const operationsByTag: {
|
|
|
21180
21559
|
*/
|
|
21181
21560
|
encryptedValue: string;
|
|
21182
21561
|
} | null;
|
|
21183
|
-
/**
|
|
21184
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21185
|
-
*/
|
|
21186
|
-
decrypted?: boolean;
|
|
21187
21562
|
comment?: string;
|
|
21188
21563
|
customEnvironmentIds?: string[];
|
|
21189
|
-
vsmValue?: string;
|
|
21190
21564
|
system?: boolean;
|
|
21191
21565
|
} | {
|
|
21192
21566
|
envs: {
|
|
21193
21567
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21194
|
-
type?: "system" | "
|
|
21568
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21195
21569
|
/**
|
|
21196
21570
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21197
21571
|
*/
|
|
21198
21572
|
sunsetSecretId?: string;
|
|
21573
|
+
decrypted?: boolean;
|
|
21574
|
+
value?: string;
|
|
21575
|
+
vsmValue?: string;
|
|
21199
21576
|
id?: string;
|
|
21200
21577
|
key?: string;
|
|
21201
|
-
value?: string;
|
|
21202
21578
|
configurationId?: string | null;
|
|
21203
21579
|
createdAt?: number;
|
|
21204
21580
|
updatedAt?: number;
|
|
@@ -21266,27 +21642,24 @@ declare const operationsByTag: {
|
|
|
21266
21642
|
*/
|
|
21267
21643
|
encryptedValue: string;
|
|
21268
21644
|
} | null;
|
|
21269
|
-
/**
|
|
21270
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21271
|
-
*/
|
|
21272
|
-
decrypted?: boolean;
|
|
21273
21645
|
comment?: string;
|
|
21274
21646
|
customEnvironmentIds?: string[];
|
|
21275
|
-
vsmValue?: string;
|
|
21276
21647
|
system?: boolean;
|
|
21277
21648
|
}[];
|
|
21278
21649
|
pagination: Pagination;
|
|
21279
21650
|
} | {
|
|
21280
21651
|
envs: {
|
|
21281
21652
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21282
|
-
type?: "system" | "
|
|
21653
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21283
21654
|
/**
|
|
21284
21655
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21285
21656
|
*/
|
|
21286
21657
|
sunsetSecretId?: string;
|
|
21658
|
+
decrypted?: boolean;
|
|
21659
|
+
value?: string;
|
|
21660
|
+
vsmValue?: string;
|
|
21287
21661
|
id?: string;
|
|
21288
21662
|
key?: string;
|
|
21289
|
-
value?: string;
|
|
21290
21663
|
configurationId?: string | null;
|
|
21291
21664
|
createdAt?: number;
|
|
21292
21665
|
updatedAt?: number;
|
|
@@ -21354,13 +21727,8 @@ declare const operationsByTag: {
|
|
|
21354
21727
|
*/
|
|
21355
21728
|
encryptedValue: string;
|
|
21356
21729
|
} | null;
|
|
21357
|
-
/**
|
|
21358
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21359
|
-
*/
|
|
21360
|
-
decrypted?: boolean;
|
|
21361
21730
|
comment?: string;
|
|
21362
21731
|
customEnvironmentIds?: string[];
|
|
21363
|
-
vsmValue?: string;
|
|
21364
21732
|
system?: boolean;
|
|
21365
21733
|
}[];
|
|
21366
21734
|
}>;
|
|
@@ -21451,9 +21819,11 @@ declare const operationsByTag: {
|
|
|
21451
21819
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21452
21820
|
*/
|
|
21453
21821
|
sunsetSecretId?: string;
|
|
21822
|
+
decrypted?: boolean;
|
|
21823
|
+
value: string;
|
|
21824
|
+
vsmValue?: string;
|
|
21454
21825
|
id?: string;
|
|
21455
21826
|
key: string;
|
|
21456
|
-
value: string;
|
|
21457
21827
|
configurationId?: string | null;
|
|
21458
21828
|
createdAt?: number;
|
|
21459
21829
|
updatedAt?: number;
|
|
@@ -21521,13 +21891,8 @@ declare const operationsByTag: {
|
|
|
21521
21891
|
*/
|
|
21522
21892
|
encryptedValue: string;
|
|
21523
21893
|
} | null;
|
|
21524
|
-
/**
|
|
21525
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21526
|
-
*/
|
|
21527
|
-
decrypted?: boolean;
|
|
21528
21894
|
comment?: string;
|
|
21529
21895
|
customEnvironmentIds?: string[];
|
|
21530
|
-
vsmValue?: string;
|
|
21531
21896
|
} | {
|
|
21532
21897
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21533
21898
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -21535,9 +21900,10 @@ declare const operationsByTag: {
|
|
|
21535
21900
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21536
21901
|
*/
|
|
21537
21902
|
sunsetSecretId?: string;
|
|
21903
|
+
decrypted?: boolean;
|
|
21904
|
+
value: string;
|
|
21538
21905
|
id?: string;
|
|
21539
21906
|
key: string;
|
|
21540
|
-
value: string;
|
|
21541
21907
|
configurationId?: string | null;
|
|
21542
21908
|
createdAt?: number;
|
|
21543
21909
|
updatedAt?: number;
|
|
@@ -21605,24 +21971,22 @@ declare const operationsByTag: {
|
|
|
21605
21971
|
*/
|
|
21606
21972
|
encryptedValue: string;
|
|
21607
21973
|
} | null;
|
|
21608
|
-
/**
|
|
21609
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21610
|
-
*/
|
|
21611
|
-
decrypted?: boolean;
|
|
21612
21974
|
comment?: string;
|
|
21613
21975
|
customEnvironmentIds?: string[];
|
|
21614
21976
|
}>;
|
|
21615
21977
|
removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
21616
21978
|
system?: boolean;
|
|
21617
21979
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21618
|
-
type: "system" | "
|
|
21980
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21619
21981
|
/**
|
|
21620
21982
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21621
21983
|
*/
|
|
21622
21984
|
sunsetSecretId?: string;
|
|
21985
|
+
decrypted?: boolean;
|
|
21986
|
+
value: string;
|
|
21987
|
+
vsmValue?: string;
|
|
21623
21988
|
id?: string;
|
|
21624
21989
|
key: string;
|
|
21625
|
-
value: string;
|
|
21626
21990
|
configurationId?: string | null;
|
|
21627
21991
|
createdAt?: number;
|
|
21628
21992
|
updatedAt?: number;
|
|
@@ -21690,23 +22054,20 @@ declare const operationsByTag: {
|
|
|
21690
22054
|
*/
|
|
21691
22055
|
encryptedValue: string;
|
|
21692
22056
|
} | null;
|
|
21693
|
-
/**
|
|
21694
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21695
|
-
*/
|
|
21696
|
-
decrypted?: boolean;
|
|
21697
22057
|
comment?: string;
|
|
21698
22058
|
customEnvironmentIds?: string[];
|
|
21699
|
-
vsmValue?: string;
|
|
21700
22059
|
} | {
|
|
21701
22060
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21702
|
-
type: "system" | "
|
|
22061
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21703
22062
|
/**
|
|
21704
22063
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21705
22064
|
*/
|
|
21706
22065
|
sunsetSecretId?: string;
|
|
22066
|
+
decrypted?: boolean;
|
|
22067
|
+
value: string;
|
|
22068
|
+
vsmValue?: string;
|
|
21707
22069
|
id?: string;
|
|
21708
22070
|
key: string;
|
|
21709
|
-
value: string;
|
|
21710
22071
|
configurationId?: string | null;
|
|
21711
22072
|
createdAt?: number;
|
|
21712
22073
|
updatedAt?: number;
|
|
@@ -21774,23 +22135,20 @@ declare const operationsByTag: {
|
|
|
21774
22135
|
*/
|
|
21775
22136
|
encryptedValue: string;
|
|
21776
22137
|
} | null;
|
|
21777
|
-
/**
|
|
21778
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21779
|
-
*/
|
|
21780
|
-
decrypted?: boolean;
|
|
21781
22138
|
comment?: string;
|
|
21782
22139
|
customEnvironmentIds?: string[];
|
|
21783
|
-
vsmValue?: string;
|
|
21784
22140
|
} | {
|
|
21785
22141
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21786
|
-
type: "system" | "
|
|
22142
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21787
22143
|
/**
|
|
21788
22144
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21789
22145
|
*/
|
|
21790
22146
|
sunsetSecretId?: string;
|
|
22147
|
+
decrypted?: boolean;
|
|
22148
|
+
value: string;
|
|
22149
|
+
vsmValue?: string;
|
|
21791
22150
|
id?: string;
|
|
21792
22151
|
key: string;
|
|
21793
|
-
value: string;
|
|
21794
22152
|
configurationId?: string | null;
|
|
21795
22153
|
createdAt?: number;
|
|
21796
22154
|
updatedAt?: number;
|
|
@@ -21858,24 +22216,20 @@ declare const operationsByTag: {
|
|
|
21858
22216
|
*/
|
|
21859
22217
|
encryptedValue: string;
|
|
21860
22218
|
} | null;
|
|
21861
|
-
/**
|
|
21862
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21863
|
-
*/
|
|
21864
|
-
decrypted?: boolean;
|
|
21865
22219
|
comment?: string;
|
|
21866
22220
|
customEnvironmentIds?: string[];
|
|
21867
|
-
vsmValue?: string;
|
|
21868
22221
|
}[]>;
|
|
21869
22222
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
21870
22223
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21871
|
-
type: "system" | "
|
|
22224
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21872
22225
|
/**
|
|
21873
22226
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21874
22227
|
*/
|
|
21875
22228
|
sunsetSecretId?: string;
|
|
22229
|
+
decrypted?: boolean;
|
|
22230
|
+
value: string;
|
|
21876
22231
|
id?: string;
|
|
21877
22232
|
key: string;
|
|
21878
|
-
value: string;
|
|
21879
22233
|
configurationId?: string | null;
|
|
21880
22234
|
createdAt?: number;
|
|
21881
22235
|
updatedAt?: number;
|
|
@@ -21943,10 +22297,6 @@ declare const operationsByTag: {
|
|
|
21943
22297
|
*/
|
|
21944
22298
|
encryptedValue: string;
|
|
21945
22299
|
} | null;
|
|
21946
|
-
/**
|
|
21947
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21948
|
-
*/
|
|
21949
|
-
decrypted?: boolean;
|
|
21950
22300
|
comment?: string;
|
|
21951
22301
|
customEnvironmentIds?: string[];
|
|
21952
22302
|
}>;
|
|
@@ -22063,6 +22413,10 @@ declare const operationsByTag: {
|
|
|
22063
22413
|
aliasAssigned: boolean;
|
|
22064
22414
|
bootedAt: number;
|
|
22065
22415
|
buildingAt: number;
|
|
22416
|
+
/**
|
|
22417
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
22418
|
+
*/
|
|
22419
|
+
buildContainerFinishedAt?: number;
|
|
22066
22420
|
buildSkipped: boolean;
|
|
22067
22421
|
creator: {
|
|
22068
22422
|
uid: string;
|
|
@@ -22148,6 +22502,21 @@ declare const operationsByTag: {
|
|
|
22148
22502
|
ref?: string | null;
|
|
22149
22503
|
sha?: string;
|
|
22150
22504
|
prId?: number | null;
|
|
22505
|
+
} | {
|
|
22506
|
+
type: "github-custom-host";
|
|
22507
|
+
host: string;
|
|
22508
|
+
repoId: string | number;
|
|
22509
|
+
ref?: string | null;
|
|
22510
|
+
sha?: string;
|
|
22511
|
+
prId?: number | null;
|
|
22512
|
+
} | {
|
|
22513
|
+
type: "github-custom-host";
|
|
22514
|
+
host: string;
|
|
22515
|
+
org: string;
|
|
22516
|
+
repo: string;
|
|
22517
|
+
ref?: string | null;
|
|
22518
|
+
sha?: string;
|
|
22519
|
+
prId?: number | null;
|
|
22151
22520
|
} | {
|
|
22152
22521
|
type: "gitlab";
|
|
22153
22522
|
projectId: string | number;
|
|
@@ -22180,6 +22549,14 @@ declare const operationsByTag: {
|
|
|
22180
22549
|
repoId: number;
|
|
22181
22550
|
org?: string;
|
|
22182
22551
|
repo?: string;
|
|
22552
|
+
} | {
|
|
22553
|
+
type: "github";
|
|
22554
|
+
host: string;
|
|
22555
|
+
ref: string;
|
|
22556
|
+
sha: string;
|
|
22557
|
+
repoId: number;
|
|
22558
|
+
org?: string;
|
|
22559
|
+
repo?: string;
|
|
22183
22560
|
} | {
|
|
22184
22561
|
type: "gitlab";
|
|
22185
22562
|
ref: string;
|
|
@@ -22413,6 +22790,10 @@ declare const operationsByTag: {
|
|
|
22413
22790
|
aliasAssigned: boolean;
|
|
22414
22791
|
bootedAt: number;
|
|
22415
22792
|
buildingAt: number;
|
|
22793
|
+
/**
|
|
22794
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
22795
|
+
*/
|
|
22796
|
+
buildContainerFinishedAt?: number;
|
|
22416
22797
|
buildSkipped: boolean;
|
|
22417
22798
|
creator: {
|
|
22418
22799
|
uid: string;
|
|
@@ -22498,6 +22879,21 @@ declare const operationsByTag: {
|
|
|
22498
22879
|
ref?: string | null;
|
|
22499
22880
|
sha?: string;
|
|
22500
22881
|
prId?: number | null;
|
|
22882
|
+
} | {
|
|
22883
|
+
type: "github-custom-host";
|
|
22884
|
+
host: string;
|
|
22885
|
+
repoId: string | number;
|
|
22886
|
+
ref?: string | null;
|
|
22887
|
+
sha?: string;
|
|
22888
|
+
prId?: number | null;
|
|
22889
|
+
} | {
|
|
22890
|
+
type: "github-custom-host";
|
|
22891
|
+
host: string;
|
|
22892
|
+
org: string;
|
|
22893
|
+
repo: string;
|
|
22894
|
+
ref?: string | null;
|
|
22895
|
+
sha?: string;
|
|
22896
|
+
prId?: number | null;
|
|
22501
22897
|
} | {
|
|
22502
22898
|
type: "gitlab";
|
|
22503
22899
|
projectId: string | number;
|
|
@@ -22530,6 +22926,14 @@ declare const operationsByTag: {
|
|
|
22530
22926
|
repoId: number;
|
|
22531
22927
|
org?: string;
|
|
22532
22928
|
repo?: string;
|
|
22929
|
+
} | {
|
|
22930
|
+
type: "github";
|
|
22931
|
+
host: string;
|
|
22932
|
+
ref: string;
|
|
22933
|
+
sha: string;
|
|
22934
|
+
repoId: number;
|
|
22935
|
+
org?: string;
|
|
22936
|
+
repo?: string;
|
|
22533
22937
|
} | {
|
|
22534
22938
|
type: "gitlab";
|
|
22535
22939
|
ref: string;
|
|
@@ -23993,7 +24397,6 @@ type components_GetProjectDomainVariables = GetProjectDomainVariables;
|
|
|
23993
24397
|
type components_GetProjectDomainsError = GetProjectDomainsError;
|
|
23994
24398
|
type components_GetProjectDomainsPathParams = GetProjectDomainsPathParams;
|
|
23995
24399
|
type components_GetProjectDomainsQueryParams = GetProjectDomainsQueryParams;
|
|
23996
|
-
type components_GetProjectDomainsResponse = GetProjectDomainsResponse;
|
|
23997
24400
|
type components_GetProjectDomainsVariables = GetProjectDomainsVariables;
|
|
23998
24401
|
type components_GetProjectEnvError = GetProjectEnvError;
|
|
23999
24402
|
type components_GetProjectEnvPathParams = GetProjectEnvPathParams;
|
|
@@ -24109,6 +24512,12 @@ type components_ListUserEventsError = ListUserEventsError;
|
|
|
24109
24512
|
type components_ListUserEventsQueryParams = ListUserEventsQueryParams;
|
|
24110
24513
|
type components_ListUserEventsResponse = ListUserEventsResponse;
|
|
24111
24514
|
type components_ListUserEventsVariables = ListUserEventsVariables;
|
|
24515
|
+
type components_MoveProjectDomainError = MoveProjectDomainError;
|
|
24516
|
+
type components_MoveProjectDomainPathParams = MoveProjectDomainPathParams;
|
|
24517
|
+
type components_MoveProjectDomainQueryParams = MoveProjectDomainQueryParams;
|
|
24518
|
+
type components_MoveProjectDomainRequestBody = MoveProjectDomainRequestBody;
|
|
24519
|
+
type components_MoveProjectDomainResponse = MoveProjectDomainResponse;
|
|
24520
|
+
type components_MoveProjectDomainVariables = MoveProjectDomainVariables;
|
|
24112
24521
|
type components_PatchDataCacheBillingSettingsError = PatchDataCacheBillingSettingsError;
|
|
24113
24522
|
type components_PatchDataCacheBillingSettingsRequestBody = PatchDataCacheBillingSettingsRequestBody;
|
|
24114
24523
|
type components_PatchDataCacheBillingSettingsResponse = PatchDataCacheBillingSettingsResponse;
|
|
@@ -24470,6 +24879,7 @@ declare const components_listDeploymentAliases: typeof listDeploymentAliases;
|
|
|
24470
24879
|
declare const components_listDeploymentFiles: typeof listDeploymentFiles;
|
|
24471
24880
|
declare const components_listPromoteAliases: typeof listPromoteAliases;
|
|
24472
24881
|
declare const components_listUserEvents: typeof listUserEvents;
|
|
24882
|
+
declare const components_moveProjectDomain: typeof moveProjectDomain;
|
|
24473
24883
|
declare const components_operationsByTag: typeof operationsByTag;
|
|
24474
24884
|
declare const components_patchDataCacheBillingSettings: typeof patchDataCacheBillingSettings;
|
|
24475
24885
|
declare const components_patchDomain: typeof patchDomain;
|
|
@@ -24524,7 +24934,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24524
24934
|
declare const components_uploadFile: typeof uploadFile;
|
|
24525
24935
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24526
24936
|
declare namespace components {
|
|
24527
|
-
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
24937
|
+
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_MoveProjectDomainError as MoveProjectDomainError, type components_MoveProjectDomainPathParams as MoveProjectDomainPathParams, type components_MoveProjectDomainQueryParams as MoveProjectDomainQueryParams, type components_MoveProjectDomainRequestBody as MoveProjectDomainRequestBody, type components_MoveProjectDomainResponse as MoveProjectDomainResponse, type components_MoveProjectDomainVariables as MoveProjectDomainVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_moveProjectDomain as moveProjectDomain, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
24528
24938
|
}
|
|
24529
24939
|
|
|
24530
24940
|
declare const operationsByPath: {
|
|
@@ -24648,6 +25058,7 @@ declare const operationsByPath: {
|
|
|
24648
25058
|
aliasAssigned: boolean;
|
|
24649
25059
|
bootedAt: number;
|
|
24650
25060
|
buildingAt: number;
|
|
25061
|
+
buildContainerFinishedAt?: number;
|
|
24651
25062
|
buildSkipped: boolean;
|
|
24652
25063
|
creator: {
|
|
24653
25064
|
uid: string;
|
|
@@ -24724,6 +25135,21 @@ declare const operationsByPath: {
|
|
|
24724
25135
|
ref?: string | null;
|
|
24725
25136
|
sha?: string;
|
|
24726
25137
|
prId?: number | null;
|
|
25138
|
+
} | {
|
|
25139
|
+
type: "github-custom-host";
|
|
25140
|
+
host: string;
|
|
25141
|
+
repoId: string | number;
|
|
25142
|
+
ref?: string | null;
|
|
25143
|
+
sha?: string;
|
|
25144
|
+
prId?: number | null;
|
|
25145
|
+
} | {
|
|
25146
|
+
type: "github-custom-host";
|
|
25147
|
+
host: string;
|
|
25148
|
+
org: string;
|
|
25149
|
+
repo: string;
|
|
25150
|
+
ref?: string | null;
|
|
25151
|
+
sha?: string;
|
|
25152
|
+
prId?: number | null;
|
|
24727
25153
|
} | {
|
|
24728
25154
|
type: "gitlab";
|
|
24729
25155
|
projectId: string | number;
|
|
@@ -24756,6 +25182,14 @@ declare const operationsByPath: {
|
|
|
24756
25182
|
repoId: number;
|
|
24757
25183
|
org?: string;
|
|
24758
25184
|
repo?: string;
|
|
25185
|
+
} | {
|
|
25186
|
+
type: "github";
|
|
25187
|
+
host: string;
|
|
25188
|
+
ref: string;
|
|
25189
|
+
sha: string;
|
|
25190
|
+
repoId: number;
|
|
25191
|
+
org?: string;
|
|
25192
|
+
repo?: string;
|
|
24759
25193
|
} | {
|
|
24760
25194
|
type: "gitlab";
|
|
24761
25195
|
ref: string;
|
|
@@ -24941,6 +25375,7 @@ declare const operationsByPath: {
|
|
|
24941
25375
|
aliasAssigned: boolean;
|
|
24942
25376
|
bootedAt: number;
|
|
24943
25377
|
buildingAt: number;
|
|
25378
|
+
buildContainerFinishedAt?: number;
|
|
24944
25379
|
buildSkipped: boolean;
|
|
24945
25380
|
creator: {
|
|
24946
25381
|
uid: string;
|
|
@@ -25017,6 +25452,21 @@ declare const operationsByPath: {
|
|
|
25017
25452
|
ref?: string | null;
|
|
25018
25453
|
sha?: string;
|
|
25019
25454
|
prId?: number | null;
|
|
25455
|
+
} | {
|
|
25456
|
+
type: "github-custom-host";
|
|
25457
|
+
host: string;
|
|
25458
|
+
repoId: string | number;
|
|
25459
|
+
ref?: string | null;
|
|
25460
|
+
sha?: string;
|
|
25461
|
+
prId?: number | null;
|
|
25462
|
+
} | {
|
|
25463
|
+
type: "github-custom-host";
|
|
25464
|
+
host: string;
|
|
25465
|
+
org: string;
|
|
25466
|
+
repo: string;
|
|
25467
|
+
ref?: string | null;
|
|
25468
|
+
sha?: string;
|
|
25469
|
+
prId?: number | null;
|
|
25020
25470
|
} | {
|
|
25021
25471
|
type: "gitlab";
|
|
25022
25472
|
projectId: string | number;
|
|
@@ -25049,6 +25499,14 @@ declare const operationsByPath: {
|
|
|
25049
25499
|
repoId: number;
|
|
25050
25500
|
org?: string;
|
|
25051
25501
|
repo?: string;
|
|
25502
|
+
} | {
|
|
25503
|
+
type: "github";
|
|
25504
|
+
host: string;
|
|
25505
|
+
ref: string;
|
|
25506
|
+
sha: string;
|
|
25507
|
+
repoId: number;
|
|
25508
|
+
org?: string;
|
|
25509
|
+
repo?: string;
|
|
25052
25510
|
} | {
|
|
25053
25511
|
type: "gitlab";
|
|
25054
25512
|
ref: string;
|
|
@@ -25412,19 +25870,66 @@ declare const operationsByPath: {
|
|
|
25412
25870
|
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25413
25871
|
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25414
25872
|
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25415
|
-
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<
|
|
25873
|
+
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
25874
|
+
domains: {
|
|
25875
|
+
name: string;
|
|
25876
|
+
apexName: string;
|
|
25877
|
+
projectId: string;
|
|
25878
|
+
redirect?: string | null;
|
|
25879
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
25880
|
+
gitBranch?: string | null;
|
|
25881
|
+
customEnvironmentId?: string | null;
|
|
25882
|
+
updatedAt?: number;
|
|
25883
|
+
createdAt?: number;
|
|
25884
|
+
verified: boolean;
|
|
25885
|
+
verification?: {
|
|
25886
|
+
type: string;
|
|
25887
|
+
domain: string;
|
|
25888
|
+
value: string;
|
|
25889
|
+
reason: string;
|
|
25890
|
+
}[];
|
|
25891
|
+
}[];
|
|
25892
|
+
pagination: {
|
|
25893
|
+
count: number;
|
|
25894
|
+
next: number | null;
|
|
25895
|
+
prev: number | null;
|
|
25896
|
+
};
|
|
25897
|
+
} | {
|
|
25898
|
+
domains: {
|
|
25899
|
+
name: string;
|
|
25900
|
+
apexName: string;
|
|
25901
|
+
projectId: string;
|
|
25902
|
+
redirect?: string | null;
|
|
25903
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
25904
|
+
gitBranch?: string | null;
|
|
25905
|
+
customEnvironmentId?: string | null;
|
|
25906
|
+
updatedAt?: number;
|
|
25907
|
+
createdAt?: number;
|
|
25908
|
+
verified: boolean;
|
|
25909
|
+
verification?: {
|
|
25910
|
+
type: string;
|
|
25911
|
+
domain: string;
|
|
25912
|
+
value: string;
|
|
25913
|
+
reason: string;
|
|
25914
|
+
}[];
|
|
25915
|
+
}[];
|
|
25916
|
+
pagination: Pagination;
|
|
25917
|
+
}>;
|
|
25416
25918
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
25417
25919
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
25418
25920
|
'DELETE /v9/projects/{idOrName}/domains/{domain}': (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25419
25921
|
'POST /v10/projects/{idOrName}/domains': (variables: AddProjectDomainVariables, signal?: AbortSignal) => Promise<AddProjectDomainResponse>;
|
|
25922
|
+
'POST /v1/projects/{idOrName}/domains/{domain}/move': (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
25420
25923
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
25421
25924
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
25422
25925
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25423
|
-
type?: "system" | "
|
|
25926
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25424
25927
|
sunsetSecretId?: string;
|
|
25928
|
+
decrypted?: boolean;
|
|
25929
|
+
value?: string;
|
|
25930
|
+
vsmValue?: string;
|
|
25425
25931
|
id?: string;
|
|
25426
25932
|
key?: string;
|
|
25427
|
-
value?: string;
|
|
25428
25933
|
configurationId?: string | null;
|
|
25429
25934
|
createdAt?: number;
|
|
25430
25935
|
updatedAt?: number;
|
|
@@ -25486,19 +25991,19 @@ declare const operationsByPath: {
|
|
|
25486
25991
|
type: "flags-secret";
|
|
25487
25992
|
encryptedValue: string;
|
|
25488
25993
|
} | null;
|
|
25489
|
-
decrypted?: boolean;
|
|
25490
25994
|
comment?: string;
|
|
25491
25995
|
customEnvironmentIds?: string[];
|
|
25492
|
-
vsmValue?: string;
|
|
25493
25996
|
system?: boolean;
|
|
25494
25997
|
} | {
|
|
25495
25998
|
envs: {
|
|
25496
25999
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25497
|
-
type?: "system" | "
|
|
26000
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25498
26001
|
sunsetSecretId?: string;
|
|
26002
|
+
decrypted?: boolean;
|
|
26003
|
+
value?: string;
|
|
26004
|
+
vsmValue?: string;
|
|
25499
26005
|
id?: string;
|
|
25500
26006
|
key?: string;
|
|
25501
|
-
value?: string;
|
|
25502
26007
|
configurationId?: string | null;
|
|
25503
26008
|
createdAt?: number;
|
|
25504
26009
|
updatedAt?: number;
|
|
@@ -25560,21 +26065,21 @@ declare const operationsByPath: {
|
|
|
25560
26065
|
type: "flags-secret";
|
|
25561
26066
|
encryptedValue: string;
|
|
25562
26067
|
} | null;
|
|
25563
|
-
decrypted?: boolean;
|
|
25564
26068
|
comment?: string;
|
|
25565
26069
|
customEnvironmentIds?: string[];
|
|
25566
|
-
vsmValue?: string;
|
|
25567
26070
|
system?: boolean;
|
|
25568
26071
|
}[];
|
|
25569
26072
|
pagination: Pagination;
|
|
25570
26073
|
} | {
|
|
25571
26074
|
envs: {
|
|
25572
26075
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25573
|
-
type?: "system" | "
|
|
26076
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25574
26077
|
sunsetSecretId?: string;
|
|
26078
|
+
decrypted?: boolean;
|
|
26079
|
+
value?: string;
|
|
26080
|
+
vsmValue?: string;
|
|
25575
26081
|
id?: string;
|
|
25576
26082
|
key?: string;
|
|
25577
|
-
value?: string;
|
|
25578
26083
|
configurationId?: string | null;
|
|
25579
26084
|
createdAt?: number;
|
|
25580
26085
|
updatedAt?: number;
|
|
@@ -25636,10 +26141,8 @@ declare const operationsByPath: {
|
|
|
25636
26141
|
type: "flags-secret";
|
|
25637
26142
|
encryptedValue: string;
|
|
25638
26143
|
} | null;
|
|
25639
|
-
decrypted?: boolean;
|
|
25640
26144
|
comment?: string;
|
|
25641
26145
|
customEnvironmentIds?: string[];
|
|
25642
|
-
vsmValue?: string;
|
|
25643
26146
|
system?: boolean;
|
|
25644
26147
|
}[];
|
|
25645
26148
|
}>;
|
|
@@ -25718,9 +26221,11 @@ declare const operationsByPath: {
|
|
|
25718
26221
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25719
26222
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25720
26223
|
sunsetSecretId?: string;
|
|
26224
|
+
decrypted?: boolean;
|
|
26225
|
+
value: string;
|
|
26226
|
+
vsmValue?: string;
|
|
25721
26227
|
id?: string;
|
|
25722
26228
|
key: string;
|
|
25723
|
-
value: string;
|
|
25724
26229
|
configurationId?: string | null;
|
|
25725
26230
|
createdAt?: number;
|
|
25726
26231
|
updatedAt?: number;
|
|
@@ -25782,17 +26287,16 @@ declare const operationsByPath: {
|
|
|
25782
26287
|
type: "flags-secret";
|
|
25783
26288
|
encryptedValue: string;
|
|
25784
26289
|
} | null;
|
|
25785
|
-
decrypted?: boolean;
|
|
25786
26290
|
comment?: string;
|
|
25787
26291
|
customEnvironmentIds?: string[];
|
|
25788
|
-
vsmValue?: string;
|
|
25789
26292
|
} | {
|
|
25790
26293
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25791
26294
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25792
26295
|
sunsetSecretId?: string;
|
|
26296
|
+
decrypted?: boolean;
|
|
26297
|
+
value: string;
|
|
25793
26298
|
id?: string;
|
|
25794
26299
|
key: string;
|
|
25795
|
-
value: string;
|
|
25796
26300
|
configurationId?: string | null;
|
|
25797
26301
|
createdAt?: number;
|
|
25798
26302
|
updatedAt?: number;
|
|
@@ -25854,18 +26358,19 @@ declare const operationsByPath: {
|
|
|
25854
26358
|
type: "flags-secret";
|
|
25855
26359
|
encryptedValue: string;
|
|
25856
26360
|
} | null;
|
|
25857
|
-
decrypted?: boolean;
|
|
25858
26361
|
comment?: string;
|
|
25859
26362
|
customEnvironmentIds?: string[];
|
|
25860
26363
|
}>;
|
|
25861
26364
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
25862
26365
|
system?: boolean;
|
|
25863
26366
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25864
|
-
type: "system" | "
|
|
26367
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25865
26368
|
sunsetSecretId?: string;
|
|
26369
|
+
decrypted?: boolean;
|
|
26370
|
+
value: string;
|
|
26371
|
+
vsmValue?: string;
|
|
25866
26372
|
id?: string;
|
|
25867
26373
|
key: string;
|
|
25868
|
-
value: string;
|
|
25869
26374
|
configurationId?: string | null;
|
|
25870
26375
|
createdAt?: number;
|
|
25871
26376
|
updatedAt?: number;
|
|
@@ -25927,17 +26432,17 @@ declare const operationsByPath: {
|
|
|
25927
26432
|
type: "flags-secret";
|
|
25928
26433
|
encryptedValue: string;
|
|
25929
26434
|
} | null;
|
|
25930
|
-
decrypted?: boolean;
|
|
25931
26435
|
comment?: string;
|
|
25932
26436
|
customEnvironmentIds?: string[];
|
|
25933
|
-
vsmValue?: string;
|
|
25934
26437
|
} | {
|
|
25935
26438
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25936
|
-
type: "system" | "
|
|
26439
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25937
26440
|
sunsetSecretId?: string;
|
|
26441
|
+
decrypted?: boolean;
|
|
26442
|
+
value: string;
|
|
26443
|
+
vsmValue?: string;
|
|
25938
26444
|
id?: string;
|
|
25939
26445
|
key: string;
|
|
25940
|
-
value: string;
|
|
25941
26446
|
configurationId?: string | null;
|
|
25942
26447
|
createdAt?: number;
|
|
25943
26448
|
updatedAt?: number;
|
|
@@ -25999,17 +26504,17 @@ declare const operationsByPath: {
|
|
|
25999
26504
|
type: "flags-secret";
|
|
26000
26505
|
encryptedValue: string;
|
|
26001
26506
|
} | null;
|
|
26002
|
-
decrypted?: boolean;
|
|
26003
26507
|
comment?: string;
|
|
26004
26508
|
customEnvironmentIds?: string[];
|
|
26005
|
-
vsmValue?: string;
|
|
26006
26509
|
} | {
|
|
26007
26510
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26008
|
-
type: "system" | "
|
|
26511
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26009
26512
|
sunsetSecretId?: string;
|
|
26513
|
+
decrypted?: boolean;
|
|
26514
|
+
value: string;
|
|
26515
|
+
vsmValue?: string;
|
|
26010
26516
|
id?: string;
|
|
26011
26517
|
key: string;
|
|
26012
|
-
value: string;
|
|
26013
26518
|
configurationId?: string | null;
|
|
26014
26519
|
createdAt?: number;
|
|
26015
26520
|
updatedAt?: number;
|
|
@@ -26071,18 +26576,17 @@ declare const operationsByPath: {
|
|
|
26071
26576
|
type: "flags-secret";
|
|
26072
26577
|
encryptedValue: string;
|
|
26073
26578
|
} | null;
|
|
26074
|
-
decrypted?: boolean;
|
|
26075
26579
|
comment?: string;
|
|
26076
26580
|
customEnvironmentIds?: string[];
|
|
26077
|
-
vsmValue?: string;
|
|
26078
26581
|
}[]>;
|
|
26079
26582
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
26080
26583
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26081
|
-
type: "system" | "
|
|
26584
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26082
26585
|
sunsetSecretId?: string;
|
|
26586
|
+
decrypted?: boolean;
|
|
26587
|
+
value: string;
|
|
26083
26588
|
id?: string;
|
|
26084
26589
|
key: string;
|
|
26085
|
-
value: string;
|
|
26086
26590
|
configurationId?: string | null;
|
|
26087
26591
|
createdAt?: number;
|
|
26088
26592
|
updatedAt?: number;
|
|
@@ -26144,7 +26648,6 @@ declare const operationsByPath: {
|
|
|
26144
26648
|
type: "flags-secret";
|
|
26145
26649
|
encryptedValue: string;
|
|
26146
26650
|
} | null;
|
|
26147
|
-
decrypted?: boolean;
|
|
26148
26651
|
comment?: string;
|
|
26149
26652
|
customEnvironmentIds?: string[];
|
|
26150
26653
|
}>;
|
|
@@ -26491,6 +26994,7 @@ declare class VercelApi {
|
|
|
26491
26994
|
aliasAssigned: boolean;
|
|
26492
26995
|
bootedAt: number;
|
|
26493
26996
|
buildingAt: number;
|
|
26997
|
+
buildContainerFinishedAt?: number;
|
|
26494
26998
|
buildSkipped: boolean;
|
|
26495
26999
|
creator: {
|
|
26496
27000
|
uid: string;
|
|
@@ -26567,6 +27071,21 @@ declare class VercelApi {
|
|
|
26567
27071
|
ref?: string | null;
|
|
26568
27072
|
sha?: string;
|
|
26569
27073
|
prId?: number | null;
|
|
27074
|
+
} | {
|
|
27075
|
+
type: "github-custom-host";
|
|
27076
|
+
host: string;
|
|
27077
|
+
repoId: string | number;
|
|
27078
|
+
ref?: string | null;
|
|
27079
|
+
sha?: string;
|
|
27080
|
+
prId?: number | null;
|
|
27081
|
+
} | {
|
|
27082
|
+
type: "github-custom-host";
|
|
27083
|
+
host: string;
|
|
27084
|
+
org: string;
|
|
27085
|
+
repo: string;
|
|
27086
|
+
ref?: string | null;
|
|
27087
|
+
sha?: string;
|
|
27088
|
+
prId?: number | null;
|
|
26570
27089
|
} | {
|
|
26571
27090
|
type: "gitlab";
|
|
26572
27091
|
projectId: string | number;
|
|
@@ -26599,6 +27118,14 @@ declare class VercelApi {
|
|
|
26599
27118
|
repoId: number;
|
|
26600
27119
|
org?: string;
|
|
26601
27120
|
repo?: string;
|
|
27121
|
+
} | {
|
|
27122
|
+
type: "github";
|
|
27123
|
+
host: string;
|
|
27124
|
+
ref: string;
|
|
27125
|
+
sha: string;
|
|
27126
|
+
repoId: number;
|
|
27127
|
+
org?: string;
|
|
27128
|
+
repo?: string;
|
|
26602
27129
|
} | {
|
|
26603
27130
|
type: "gitlab";
|
|
26604
27131
|
ref: string;
|
|
@@ -26784,6 +27311,7 @@ declare class VercelApi {
|
|
|
26784
27311
|
aliasAssigned: boolean;
|
|
26785
27312
|
bootedAt: number;
|
|
26786
27313
|
buildingAt: number;
|
|
27314
|
+
buildContainerFinishedAt?: number;
|
|
26787
27315
|
buildSkipped: boolean;
|
|
26788
27316
|
creator: {
|
|
26789
27317
|
uid: string;
|
|
@@ -26860,6 +27388,21 @@ declare class VercelApi {
|
|
|
26860
27388
|
ref?: string | null;
|
|
26861
27389
|
sha?: string;
|
|
26862
27390
|
prId?: number | null;
|
|
27391
|
+
} | {
|
|
27392
|
+
type: "github-custom-host";
|
|
27393
|
+
host: string;
|
|
27394
|
+
repoId: string | number;
|
|
27395
|
+
ref?: string | null;
|
|
27396
|
+
sha?: string;
|
|
27397
|
+
prId?: number | null;
|
|
27398
|
+
} | {
|
|
27399
|
+
type: "github-custom-host";
|
|
27400
|
+
host: string;
|
|
27401
|
+
org: string;
|
|
27402
|
+
repo: string;
|
|
27403
|
+
ref?: string | null;
|
|
27404
|
+
sha?: string;
|
|
27405
|
+
prId?: number | null;
|
|
26863
27406
|
} | {
|
|
26864
27407
|
type: "gitlab";
|
|
26865
27408
|
projectId: string | number;
|
|
@@ -26892,6 +27435,14 @@ declare class VercelApi {
|
|
|
26892
27435
|
repoId: number;
|
|
26893
27436
|
org?: string;
|
|
26894
27437
|
repo?: string;
|
|
27438
|
+
} | {
|
|
27439
|
+
type: "github";
|
|
27440
|
+
host: string;
|
|
27441
|
+
ref: string;
|
|
27442
|
+
sha: string;
|
|
27443
|
+
repoId: number;
|
|
27444
|
+
org?: string;
|
|
27445
|
+
repo?: string;
|
|
26895
27446
|
} | {
|
|
26896
27447
|
type: "gitlab";
|
|
26897
27448
|
ref: string;
|
|
@@ -27255,19 +27806,66 @@ declare class VercelApi {
|
|
|
27255
27806
|
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27256
27807
|
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27257
27808
|
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27258
|
-
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<
|
|
27809
|
+
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<{
|
|
27810
|
+
domains: {
|
|
27811
|
+
name: string;
|
|
27812
|
+
apexName: string;
|
|
27813
|
+
projectId: string;
|
|
27814
|
+
redirect?: string | null;
|
|
27815
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
27816
|
+
gitBranch?: string | null;
|
|
27817
|
+
customEnvironmentId?: string | null;
|
|
27818
|
+
updatedAt?: number;
|
|
27819
|
+
createdAt?: number;
|
|
27820
|
+
verified: boolean;
|
|
27821
|
+
verification?: {
|
|
27822
|
+
type: string;
|
|
27823
|
+
domain: string;
|
|
27824
|
+
value: string;
|
|
27825
|
+
reason: string;
|
|
27826
|
+
}[];
|
|
27827
|
+
}[];
|
|
27828
|
+
pagination: {
|
|
27829
|
+
count: number;
|
|
27830
|
+
next: number | null;
|
|
27831
|
+
prev: number | null;
|
|
27832
|
+
};
|
|
27833
|
+
} | {
|
|
27834
|
+
domains: {
|
|
27835
|
+
name: string;
|
|
27836
|
+
apexName: string;
|
|
27837
|
+
projectId: string;
|
|
27838
|
+
redirect?: string | null;
|
|
27839
|
+
redirectStatusCode?: 307 | 301 | 302 | 308 | null;
|
|
27840
|
+
gitBranch?: string | null;
|
|
27841
|
+
customEnvironmentId?: string | null;
|
|
27842
|
+
updatedAt?: number;
|
|
27843
|
+
createdAt?: number;
|
|
27844
|
+
verified: boolean;
|
|
27845
|
+
verification?: {
|
|
27846
|
+
type: string;
|
|
27847
|
+
domain: string;
|
|
27848
|
+
value: string;
|
|
27849
|
+
reason: string;
|
|
27850
|
+
}[];
|
|
27851
|
+
}[];
|
|
27852
|
+
pagination: Pagination;
|
|
27853
|
+
}>;
|
|
27259
27854
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
27260
27855
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
27261
27856
|
'DELETE /v9/projects/{idOrName}/domains/{domain}': (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27262
27857
|
'POST /v10/projects/{idOrName}/domains': (variables: AddProjectDomainVariables, signal?: AbortSignal) => Promise<AddProjectDomainResponse>;
|
|
27858
|
+
'POST /v1/projects/{idOrName}/domains/{domain}/move': (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
27263
27859
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
27264
27860
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
27265
27861
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27266
|
-
type?: "system" | "
|
|
27862
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27267
27863
|
sunsetSecretId?: string;
|
|
27864
|
+
decrypted?: boolean;
|
|
27865
|
+
value?: string;
|
|
27866
|
+
vsmValue?: string;
|
|
27268
27867
|
id?: string;
|
|
27269
27868
|
key?: string;
|
|
27270
|
-
value?: string;
|
|
27271
27869
|
configurationId?: string | null;
|
|
27272
27870
|
createdAt?: number;
|
|
27273
27871
|
updatedAt?: number;
|
|
@@ -27329,19 +27927,19 @@ declare class VercelApi {
|
|
|
27329
27927
|
type: "flags-secret";
|
|
27330
27928
|
encryptedValue: string;
|
|
27331
27929
|
} | null;
|
|
27332
|
-
decrypted?: boolean;
|
|
27333
27930
|
comment?: string;
|
|
27334
27931
|
customEnvironmentIds?: string[];
|
|
27335
|
-
vsmValue?: string;
|
|
27336
27932
|
system?: boolean;
|
|
27337
27933
|
} | {
|
|
27338
27934
|
envs: {
|
|
27339
27935
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27340
|
-
type?: "system" | "
|
|
27936
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27341
27937
|
sunsetSecretId?: string;
|
|
27938
|
+
decrypted?: boolean;
|
|
27939
|
+
value?: string;
|
|
27940
|
+
vsmValue?: string;
|
|
27342
27941
|
id?: string;
|
|
27343
27942
|
key?: string;
|
|
27344
|
-
value?: string;
|
|
27345
27943
|
configurationId?: string | null;
|
|
27346
27944
|
createdAt?: number;
|
|
27347
27945
|
updatedAt?: number;
|
|
@@ -27403,21 +28001,21 @@ declare class VercelApi {
|
|
|
27403
28001
|
type: "flags-secret";
|
|
27404
28002
|
encryptedValue: string;
|
|
27405
28003
|
} | null;
|
|
27406
|
-
decrypted?: boolean;
|
|
27407
28004
|
comment?: string;
|
|
27408
28005
|
customEnvironmentIds?: string[];
|
|
27409
|
-
vsmValue?: string;
|
|
27410
28006
|
system?: boolean;
|
|
27411
28007
|
}[];
|
|
27412
28008
|
pagination: Pagination;
|
|
27413
28009
|
} | {
|
|
27414
28010
|
envs: {
|
|
27415
28011
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27416
|
-
type?: "system" | "
|
|
28012
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27417
28013
|
sunsetSecretId?: string;
|
|
28014
|
+
decrypted?: boolean;
|
|
28015
|
+
value?: string;
|
|
28016
|
+
vsmValue?: string;
|
|
27418
28017
|
id?: string;
|
|
27419
28018
|
key?: string;
|
|
27420
|
-
value?: string;
|
|
27421
28019
|
configurationId?: string | null;
|
|
27422
28020
|
createdAt?: number;
|
|
27423
28021
|
updatedAt?: number;
|
|
@@ -27479,10 +28077,8 @@ declare class VercelApi {
|
|
|
27479
28077
|
type: "flags-secret";
|
|
27480
28078
|
encryptedValue: string;
|
|
27481
28079
|
} | null;
|
|
27482
|
-
decrypted?: boolean;
|
|
27483
28080
|
comment?: string;
|
|
27484
28081
|
customEnvironmentIds?: string[];
|
|
27485
|
-
vsmValue?: string;
|
|
27486
28082
|
system?: boolean;
|
|
27487
28083
|
}[];
|
|
27488
28084
|
}>;
|
|
@@ -27561,9 +28157,11 @@ declare class VercelApi {
|
|
|
27561
28157
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27562
28158
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27563
28159
|
sunsetSecretId?: string;
|
|
28160
|
+
decrypted?: boolean;
|
|
28161
|
+
value: string;
|
|
28162
|
+
vsmValue?: string;
|
|
27564
28163
|
id?: string;
|
|
27565
28164
|
key: string;
|
|
27566
|
-
value: string;
|
|
27567
28165
|
configurationId?: string | null;
|
|
27568
28166
|
createdAt?: number;
|
|
27569
28167
|
updatedAt?: number;
|
|
@@ -27625,17 +28223,16 @@ declare class VercelApi {
|
|
|
27625
28223
|
type: "flags-secret";
|
|
27626
28224
|
encryptedValue: string;
|
|
27627
28225
|
} | null;
|
|
27628
|
-
decrypted?: boolean;
|
|
27629
28226
|
comment?: string;
|
|
27630
28227
|
customEnvironmentIds?: string[];
|
|
27631
|
-
vsmValue?: string;
|
|
27632
28228
|
} | {
|
|
27633
28229
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27634
28230
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27635
28231
|
sunsetSecretId?: string;
|
|
28232
|
+
decrypted?: boolean;
|
|
28233
|
+
value: string;
|
|
27636
28234
|
id?: string;
|
|
27637
28235
|
key: string;
|
|
27638
|
-
value: string;
|
|
27639
28236
|
configurationId?: string | null;
|
|
27640
28237
|
createdAt?: number;
|
|
27641
28238
|
updatedAt?: number;
|
|
@@ -27697,18 +28294,19 @@ declare class VercelApi {
|
|
|
27697
28294
|
type: "flags-secret";
|
|
27698
28295
|
encryptedValue: string;
|
|
27699
28296
|
} | null;
|
|
27700
|
-
decrypted?: boolean;
|
|
27701
28297
|
comment?: string;
|
|
27702
28298
|
customEnvironmentIds?: string[];
|
|
27703
28299
|
}>;
|
|
27704
28300
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
27705
28301
|
system?: boolean;
|
|
27706
28302
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27707
|
-
type: "system" | "
|
|
28303
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27708
28304
|
sunsetSecretId?: string;
|
|
28305
|
+
decrypted?: boolean;
|
|
28306
|
+
value: string;
|
|
28307
|
+
vsmValue?: string;
|
|
27709
28308
|
id?: string;
|
|
27710
28309
|
key: string;
|
|
27711
|
-
value: string;
|
|
27712
28310
|
configurationId?: string | null;
|
|
27713
28311
|
createdAt?: number;
|
|
27714
28312
|
updatedAt?: number;
|
|
@@ -27770,17 +28368,17 @@ declare class VercelApi {
|
|
|
27770
28368
|
type: "flags-secret";
|
|
27771
28369
|
encryptedValue: string;
|
|
27772
28370
|
} | null;
|
|
27773
|
-
decrypted?: boolean;
|
|
27774
28371
|
comment?: string;
|
|
27775
28372
|
customEnvironmentIds?: string[];
|
|
27776
|
-
vsmValue?: string;
|
|
27777
28373
|
} | {
|
|
27778
28374
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27779
|
-
type: "system" | "
|
|
28375
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27780
28376
|
sunsetSecretId?: string;
|
|
28377
|
+
decrypted?: boolean;
|
|
28378
|
+
value: string;
|
|
28379
|
+
vsmValue?: string;
|
|
27781
28380
|
id?: string;
|
|
27782
28381
|
key: string;
|
|
27783
|
-
value: string;
|
|
27784
28382
|
configurationId?: string | null;
|
|
27785
28383
|
createdAt?: number;
|
|
27786
28384
|
updatedAt?: number;
|
|
@@ -27842,17 +28440,17 @@ declare class VercelApi {
|
|
|
27842
28440
|
type: "flags-secret";
|
|
27843
28441
|
encryptedValue: string;
|
|
27844
28442
|
} | null;
|
|
27845
|
-
decrypted?: boolean;
|
|
27846
28443
|
comment?: string;
|
|
27847
28444
|
customEnvironmentIds?: string[];
|
|
27848
|
-
vsmValue?: string;
|
|
27849
28445
|
} | {
|
|
27850
28446
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27851
|
-
type: "system" | "
|
|
28447
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27852
28448
|
sunsetSecretId?: string;
|
|
28449
|
+
decrypted?: boolean;
|
|
28450
|
+
value: string;
|
|
28451
|
+
vsmValue?: string;
|
|
27853
28452
|
id?: string;
|
|
27854
28453
|
key: string;
|
|
27855
|
-
value: string;
|
|
27856
28454
|
configurationId?: string | null;
|
|
27857
28455
|
createdAt?: number;
|
|
27858
28456
|
updatedAt?: number;
|
|
@@ -27914,18 +28512,17 @@ declare class VercelApi {
|
|
|
27914
28512
|
type: "flags-secret";
|
|
27915
28513
|
encryptedValue: string;
|
|
27916
28514
|
} | null;
|
|
27917
|
-
decrypted?: boolean;
|
|
27918
28515
|
comment?: string;
|
|
27919
28516
|
customEnvironmentIds?: string[];
|
|
27920
|
-
vsmValue?: string;
|
|
27921
28517
|
}[]>;
|
|
27922
28518
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
27923
28519
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27924
|
-
type: "system" | "
|
|
28520
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27925
28521
|
sunsetSecretId?: string;
|
|
28522
|
+
decrypted?: boolean;
|
|
28523
|
+
value: string;
|
|
27926
28524
|
id?: string;
|
|
27927
28525
|
key: string;
|
|
27928
|
-
value: string;
|
|
27929
28526
|
configurationId?: string | null;
|
|
27930
28527
|
createdAt?: number;
|
|
27931
28528
|
updatedAt?: number;
|
|
@@ -27987,7 +28584,6 @@ declare class VercelApi {
|
|
|
27987
28584
|
type: "flags-secret";
|
|
27988
28585
|
encryptedValue: string;
|
|
27989
28586
|
} | null;
|
|
27990
|
-
decrypted?: boolean;
|
|
27991
28587
|
comment?: string;
|
|
27992
28588
|
customEnvironmentIds?: string[];
|
|
27993
28589
|
}>;
|