vercel-api-js 0.23.6 → 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 +21 -0
- package/dist/index.cjs +4 -32
- package/dist/index.d.cts +924 -676
- package/dist/index.d.mts +924 -676
- package/dist/index.d.ts +924 -676
- package/dist/index.mjs +4 -32
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -518,10 +518,6 @@ type UserEvent = {
|
|
|
518
518
|
* The value of the Shared Env Var.
|
|
519
519
|
*/
|
|
520
520
|
value?: string;
|
|
521
|
-
/**
|
|
522
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
523
|
-
*/
|
|
524
|
-
vsmValue?: string;
|
|
525
521
|
/**
|
|
526
522
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
527
523
|
*
|
|
@@ -625,10 +621,6 @@ type UserEvent = {
|
|
|
625
621
|
* The value of the Shared Env Var.
|
|
626
622
|
*/
|
|
627
623
|
value?: string;
|
|
628
|
-
/**
|
|
629
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
630
|
-
*/
|
|
631
|
-
vsmValue?: string;
|
|
632
624
|
/**
|
|
633
625
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
634
626
|
*
|
|
@@ -731,10 +723,6 @@ type UserEvent = {
|
|
|
731
723
|
* The value of the Shared Env Var.
|
|
732
724
|
*/
|
|
733
725
|
value?: string;
|
|
734
|
-
/**
|
|
735
|
-
* The value of the shared environment variable decrypted against api-secrets-management.
|
|
736
|
-
*/
|
|
737
|
-
vsmValue?: string;
|
|
738
726
|
/**
|
|
739
727
|
* The unique identifiers of the projects which the Shared Env Var is linked to.
|
|
740
728
|
*
|
|
@@ -868,10 +856,10 @@ type UserEvent = {
|
|
|
868
856
|
created?: number;
|
|
869
857
|
createdAt: number;
|
|
870
858
|
credentials?: ({
|
|
871
|
-
type: 'gitlab' | 'bitbucket' | 'github-oauth' | 'github-app';
|
|
859
|
+
type: 'gitlab' | 'bitbucket' | 'google' | 'github-oauth' | 'github-app';
|
|
872
860
|
id: string;
|
|
873
861
|
} | {
|
|
874
|
-
type: 'github-oauth-custom-host';
|
|
862
|
+
type: 'github-oauth-custom-host' | 'github-app-custom-host';
|
|
875
863
|
host: string;
|
|
876
864
|
id: string;
|
|
877
865
|
})[];
|
|
@@ -898,7 +886,7 @@ type UserEvent = {
|
|
|
898
886
|
id: string;
|
|
899
887
|
importFlowGitNamespace?: string | number | null;
|
|
900
888
|
importFlowGitNamespaceId?: string | number | null;
|
|
901
|
-
importFlowGitProvider?: 'github' | 'gitlab' | 'bitbucket' | null;
|
|
889
|
+
importFlowGitProvider?: 'github' | 'gitlab' | 'bitbucket' | 'github-custom-host' | null;
|
|
902
890
|
preferredScopesAndGitNamespaces?: {
|
|
903
891
|
scopeId: string;
|
|
904
892
|
gitNamespaceId: string | number | null;
|
|
@@ -956,6 +944,13 @@ type UserEvent = {
|
|
|
956
944
|
microfrontendProjectsPerGroup?: number;
|
|
957
945
|
flagsExplorerOverridesThreshold?: number;
|
|
958
946
|
flagsExplorerUnlimitedOverrides?: boolean;
|
|
947
|
+
customEnvironmentsPerProject?: number;
|
|
948
|
+
buildMachine?: {
|
|
949
|
+
purchaseType?: 'enhanced';
|
|
950
|
+
abovePlan?: boolean;
|
|
951
|
+
cores?: number;
|
|
952
|
+
memory?: number;
|
|
953
|
+
};
|
|
959
954
|
};
|
|
960
955
|
/**
|
|
961
956
|
* User | Team resource limits
|
|
@@ -1463,6 +1458,7 @@ type UserEvent = {
|
|
|
1463
1458
|
viaGithub: boolean;
|
|
1464
1459
|
viaGitlab: boolean;
|
|
1465
1460
|
viaBitbucket: boolean;
|
|
1461
|
+
viaGoogle: boolean;
|
|
1466
1462
|
viaSamlSso: boolean;
|
|
1467
1463
|
viaPasskey: boolean;
|
|
1468
1464
|
ssoType?: string;
|
|
@@ -2030,7 +2026,7 @@ type UserEvent = {
|
|
|
2030
2026
|
*/
|
|
2031
2027
|
isDefaultApp?: boolean;
|
|
2032
2028
|
/**
|
|
2033
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
2029
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
2034
2030
|
*/
|
|
2035
2031
|
defaultRoute?: string;
|
|
2036
2032
|
/**
|
|
@@ -2070,7 +2066,7 @@ type UserEvent = {
|
|
|
2070
2066
|
*/
|
|
2071
2067
|
isDefaultApp?: boolean;
|
|
2072
2068
|
/**
|
|
2073
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
2069
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
2074
2070
|
*/
|
|
2075
2071
|
defaultRoute?: string;
|
|
2076
2072
|
/**
|
|
@@ -2177,7 +2173,7 @@ type UserEvent = {
|
|
|
2177
2173
|
*/
|
|
2178
2174
|
rtTTL?: number;
|
|
2179
2175
|
scope: string;
|
|
2180
|
-
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2176
|
+
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2181
2177
|
};
|
|
2182
2178
|
};
|
|
2183
2179
|
/**
|
|
@@ -2369,13 +2365,13 @@ type AuthToken = {
|
|
|
2369
2365
|
origin: 'totp' | 'webauthn' | 'recovery-code';
|
|
2370
2366
|
expiresAt: number;
|
|
2371
2367
|
};
|
|
2372
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2368
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2373
2369
|
createdAt: number;
|
|
2374
2370
|
expiresAt?: number;
|
|
2375
2371
|
} | {
|
|
2376
2372
|
type: 'team';
|
|
2377
2373
|
teamId: string;
|
|
2378
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2374
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google';
|
|
2379
2375
|
createdAt: number;
|
|
2380
2376
|
expiresAt?: number;
|
|
2381
2377
|
})[];
|
|
@@ -2521,6 +2517,31 @@ type AuthUser = {
|
|
|
2521
2517
|
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2522
2518
|
*/
|
|
2523
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;
|
|
2524
|
+
/**
|
|
2525
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2526
|
+
*/
|
|
2527
|
+
buildMachine?: {
|
|
2528
|
+
/**
|
|
2529
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2530
|
+
*/
|
|
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;
|
|
2536
|
+
/**
|
|
2537
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2538
|
+
*/
|
|
2539
|
+
cores?: number;
|
|
2540
|
+
/**
|
|
2541
|
+
* An object containing infomation related to the amount of platform resources may be allocated to the User account.
|
|
2542
|
+
*/
|
|
2543
|
+
memory?: number;
|
|
2544
|
+
};
|
|
2524
2545
|
};
|
|
2525
2546
|
/**
|
|
2526
2547
|
* Prefix that will be used in the URL of "Preview" deployments created by the User account.
|
|
@@ -2537,7 +2558,7 @@ type AuthUser = {
|
|
|
2537
2558
|
}[];
|
|
2538
2559
|
importFlowGitNamespace?: string | number | null;
|
|
2539
2560
|
importFlowGitNamespaceId?: string | number | null;
|
|
2540
|
-
importFlowGitProvider?: 'bitbucket' | 'github' | 'gitlab' | null;
|
|
2561
|
+
importFlowGitProvider?: 'bitbucket' | 'github' | 'github-custom-host' | 'gitlab' | null;
|
|
2541
2562
|
preferredScopesAndGitNamespaces?: {
|
|
2542
2563
|
scopeId: string;
|
|
2543
2564
|
gitNamespaceId: string | number | null;
|
|
@@ -4345,9 +4366,11 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4345
4366
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
4346
4367
|
*/
|
|
4347
4368
|
sunsetSecretId?: string;
|
|
4369
|
+
decrypted?: boolean;
|
|
4370
|
+
value: string;
|
|
4371
|
+
vsmValue?: string;
|
|
4348
4372
|
id?: string;
|
|
4349
4373
|
key: string;
|
|
4350
|
-
value: string;
|
|
4351
4374
|
configurationId?: string | null;
|
|
4352
4375
|
createdAt?: number;
|
|
4353
4376
|
updatedAt?: number;
|
|
@@ -4415,13 +4438,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4415
4438
|
*/
|
|
4416
4439
|
encryptedValue: string;
|
|
4417
4440
|
} | null;
|
|
4418
|
-
/**
|
|
4419
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
4420
|
-
*/
|
|
4421
|
-
decrypted?: boolean;
|
|
4422
4441
|
comment?: string;
|
|
4423
4442
|
customEnvironmentIds?: string[];
|
|
4424
|
-
vsmValue?: string;
|
|
4425
4443
|
}[];
|
|
4426
4444
|
customEnvironments?: Record<string, any>[];
|
|
4427
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;
|
|
@@ -4572,6 +4590,28 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4572
4590
|
updatedAt?: number;
|
|
4573
4591
|
sourceless?: boolean;
|
|
4574
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;
|
|
4575
4615
|
};
|
|
4576
4616
|
microfrontends?: {
|
|
4577
4617
|
/**
|
|
@@ -4594,7 +4634,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4594
4634
|
*/
|
|
4595
4635
|
isDefaultApp?: boolean;
|
|
4596
4636
|
/**
|
|
4597
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
4637
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
4598
4638
|
*/
|
|
4599
4639
|
defaultRoute?: string;
|
|
4600
4640
|
/**
|
|
@@ -4629,6 +4669,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4629
4669
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4630
4670
|
functionZeroConfigFailover?: boolean;
|
|
4631
4671
|
elasticConcurrencyEnabled?: boolean;
|
|
4672
|
+
buildMachineType?: 'enhanced';
|
|
4632
4673
|
};
|
|
4633
4674
|
rollingRelease?: {
|
|
4634
4675
|
/**
|
|
@@ -4647,6 +4688,14 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4647
4688
|
* The percentage of traffic to serve to the new deployment
|
|
4648
4689
|
*/
|
|
4649
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;
|
|
4650
4699
|
}[] | null;
|
|
4651
4700
|
} | null;
|
|
4652
4701
|
defaultResourceConfig: {
|
|
@@ -4656,6 +4705,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4656
4705
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
4657
4706
|
functionZeroConfigFailover?: boolean;
|
|
4658
4707
|
elasticConcurrencyEnabled?: boolean;
|
|
4708
|
+
buildMachineType?: 'enhanced';
|
|
4659
4709
|
};
|
|
4660
4710
|
rootDirectory?: string | null;
|
|
4661
4711
|
serverlessFunctionRegion?: string | null;
|
|
@@ -4838,6 +4888,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4838
4888
|
notificationCustomerBudget?: ACLAction[];
|
|
4839
4889
|
notificationStatementOfReasons?: ACLAction[];
|
|
4840
4890
|
observabilityConfiguration?: ACLAction[];
|
|
4891
|
+
observabilityNotebook?: ACLAction[];
|
|
4841
4892
|
openTelemetryEndpoint?: ACLAction[];
|
|
4842
4893
|
paymentMethod?: ACLAction[];
|
|
4843
4894
|
permissions?: ACLAction[];
|
|
@@ -4889,6 +4940,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4889
4940
|
endpointVerification?: ACLAction[];
|
|
4890
4941
|
projectTransferIn?: ACLAction[];
|
|
4891
4942
|
oauth2Application?: ACLAction[];
|
|
4943
|
+
vercelRun?: ACLAction[];
|
|
4944
|
+
vercelRunExec?: ACLAction[];
|
|
4892
4945
|
aliasProject?: ACLAction[];
|
|
4893
4946
|
aliasProtectionBypass?: ACLAction[];
|
|
4894
4947
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -5337,6 +5390,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5337
5390
|
aliasAssigned: boolean;
|
|
5338
5391
|
bootedAt: number;
|
|
5339
5392
|
buildingAt: number;
|
|
5393
|
+
/**
|
|
5394
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
5395
|
+
*/
|
|
5396
|
+
buildContainerFinishedAt?: number;
|
|
5340
5397
|
buildSkipped: boolean;
|
|
5341
5398
|
creator: {
|
|
5342
5399
|
uid: string;
|
|
@@ -5422,6 +5479,21 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5422
5479
|
ref?: string | null;
|
|
5423
5480
|
sha?: string;
|
|
5424
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;
|
|
5425
5497
|
} | {
|
|
5426
5498
|
type: "gitlab";
|
|
5427
5499
|
projectId: string | number;
|
|
@@ -5454,6 +5526,14 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5454
5526
|
repoId: number;
|
|
5455
5527
|
org?: string;
|
|
5456
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;
|
|
5457
5537
|
} | {
|
|
5458
5538
|
type: "gitlab";
|
|
5459
5539
|
ref: string;
|
|
@@ -5687,6 +5767,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5687
5767
|
aliasAssigned: boolean;
|
|
5688
5768
|
bootedAt: number;
|
|
5689
5769
|
buildingAt: number;
|
|
5770
|
+
/**
|
|
5771
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
5772
|
+
*/
|
|
5773
|
+
buildContainerFinishedAt?: number;
|
|
5690
5774
|
buildSkipped: boolean;
|
|
5691
5775
|
creator: {
|
|
5692
5776
|
uid: string;
|
|
@@ -5772,6 +5856,21 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5772
5856
|
ref?: string | null;
|
|
5773
5857
|
sha?: string;
|
|
5774
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;
|
|
5775
5874
|
} | {
|
|
5776
5875
|
type: "gitlab";
|
|
5777
5876
|
projectId: string | number;
|
|
@@ -5804,6 +5903,14 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5804
5903
|
repoId: number;
|
|
5805
5904
|
org?: string;
|
|
5806
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;
|
|
5807
5914
|
} | {
|
|
5808
5915
|
type: "gitlab";
|
|
5809
5916
|
ref: string;
|
|
@@ -5964,6 +6071,10 @@ type CreateDeploymentResponse = {
|
|
|
5964
6071
|
aliasAssigned: boolean;
|
|
5965
6072
|
bootedAt: number;
|
|
5966
6073
|
buildingAt: number;
|
|
6074
|
+
/**
|
|
6075
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
6076
|
+
*/
|
|
6077
|
+
buildContainerFinishedAt?: number;
|
|
5967
6078
|
buildSkipped: boolean;
|
|
5968
6079
|
creator: {
|
|
5969
6080
|
uid: string;
|
|
@@ -6021,6 +6132,21 @@ type CreateDeploymentResponse = {
|
|
|
6021
6132
|
ref?: string | null;
|
|
6022
6133
|
sha?: string;
|
|
6023
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;
|
|
6024
6150
|
} | {
|
|
6025
6151
|
type: 'gitlab';
|
|
6026
6152
|
projectId: string | number;
|
|
@@ -6053,6 +6179,14 @@ type CreateDeploymentResponse = {
|
|
|
6053
6179
|
repoId: number;
|
|
6054
6180
|
org?: string;
|
|
6055
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;
|
|
6056
6190
|
} | {
|
|
6057
6191
|
type: 'gitlab';
|
|
6058
6192
|
ref: string;
|
|
@@ -6647,6 +6781,10 @@ type CancelDeploymentResponse = {
|
|
|
6647
6781
|
aliasAssigned: boolean;
|
|
6648
6782
|
bootedAt: number;
|
|
6649
6783
|
buildingAt: number;
|
|
6784
|
+
/**
|
|
6785
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
6786
|
+
*/
|
|
6787
|
+
buildContainerFinishedAt?: number;
|
|
6650
6788
|
buildSkipped: boolean;
|
|
6651
6789
|
creator: {
|
|
6652
6790
|
uid: string;
|
|
@@ -6729,6 +6867,21 @@ type CancelDeploymentResponse = {
|
|
|
6729
6867
|
ref?: string | null;
|
|
6730
6868
|
sha?: string;
|
|
6731
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;
|
|
6732
6885
|
} | {
|
|
6733
6886
|
type: 'gitlab';
|
|
6734
6887
|
projectId: string | number;
|
|
@@ -6761,6 +6914,14 @@ type CancelDeploymentResponse = {
|
|
|
6761
6914
|
repoId: number;
|
|
6762
6915
|
org?: string;
|
|
6763
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;
|
|
6764
6925
|
} | {
|
|
6765
6926
|
type: 'gitlab';
|
|
6766
6927
|
ref: string;
|
|
@@ -7823,11 +7984,6 @@ type GetDomainConfigResponse = {
|
|
|
7823
7984
|
* Whether or not the domain is configured AND we can automatically generate a TLS certificate.
|
|
7824
7985
|
*/
|
|
7825
7986
|
misconfigured: boolean;
|
|
7826
|
-
/**
|
|
7827
|
-
* Recommended IPs and CNAME for the domain.
|
|
7828
|
-
*/
|
|
7829
|
-
recommendedIps?: string[];
|
|
7830
|
-
recommendedCname?: string;
|
|
7831
7987
|
};
|
|
7832
7988
|
type GetDomainConfigVariables = {
|
|
7833
7989
|
pathParams: GetDomainConfigPathParams;
|
|
@@ -8392,56 +8548,6 @@ type DeleteDomainVariables = {
|
|
|
8392
8548
|
* Delete a previously registered domain name from Vercel. Deleting a domain will automatically remove any associated aliases.
|
|
8393
8549
|
*/
|
|
8394
8550
|
declare const deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
8395
|
-
type GetConfigurableLogDrainPathParams = {
|
|
8396
|
-
id: string;
|
|
8397
|
-
};
|
|
8398
|
-
type GetConfigurableLogDrainQueryParams = {
|
|
8399
|
-
/**
|
|
8400
|
-
* The Team identifier to perform the request on behalf of.
|
|
8401
|
-
*/
|
|
8402
|
-
teamId?: string;
|
|
8403
|
-
/**
|
|
8404
|
-
* The Team slug to perform the request on behalf of.
|
|
8405
|
-
*/
|
|
8406
|
-
slug?: string;
|
|
8407
|
-
};
|
|
8408
|
-
type GetConfigurableLogDrainError = ErrorWrapper<undefined>;
|
|
8409
|
-
type GetConfigurableLogDrainResponse = {
|
|
8410
|
-
clientId?: string;
|
|
8411
|
-
configurationId?: string;
|
|
8412
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8413
|
-
environments: ('preview' | 'production')[];
|
|
8414
|
-
disabledBy?: string;
|
|
8415
|
-
firstErrorTimestamp?: number;
|
|
8416
|
-
samplingRate?: number;
|
|
8417
|
-
hideIpAddresses?: boolean;
|
|
8418
|
-
id: string;
|
|
8419
|
-
createdAt: number;
|
|
8420
|
-
deletedAt: number | null;
|
|
8421
|
-
updatedAt: number;
|
|
8422
|
-
url: string;
|
|
8423
|
-
headers?: {
|
|
8424
|
-
[key: string]: string;
|
|
8425
|
-
};
|
|
8426
|
-
projectIds?: string[];
|
|
8427
|
-
name: string;
|
|
8428
|
-
teamId?: string | null;
|
|
8429
|
-
ownerId: string;
|
|
8430
|
-
createdFrom?: 'integration' | 'self-served';
|
|
8431
|
-
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8432
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8433
|
-
disabledAt?: number;
|
|
8434
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8435
|
-
secret: string;
|
|
8436
|
-
};
|
|
8437
|
-
type GetConfigurableLogDrainVariables = {
|
|
8438
|
-
pathParams: GetConfigurableLogDrainPathParams;
|
|
8439
|
-
queryParams?: GetConfigurableLogDrainQueryParams;
|
|
8440
|
-
} & FetcherExtraProps;
|
|
8441
|
-
/**
|
|
8442
|
-
* Retrieves a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be accessed.
|
|
8443
|
-
*/
|
|
8444
|
-
declare const getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
8445
8551
|
type DeleteConfigurableLogDrainPathParams = {
|
|
8446
8552
|
id: string;
|
|
8447
8553
|
};
|
|
@@ -8464,12 +8570,7 @@ type DeleteConfigurableLogDrainVariables = {
|
|
|
8464
8570
|
* Deletes a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be deleted.
|
|
8465
8571
|
*/
|
|
8466
8572
|
declare const deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
8467
|
-
type
|
|
8468
|
-
/**
|
|
8469
|
-
* @pattern ^[a-zA-z0-9_]+$
|
|
8470
|
-
*/
|
|
8471
|
-
projectId?: string;
|
|
8472
|
-
projectIdOrName?: string;
|
|
8573
|
+
type GetEdgeConfigsQueryParams = {
|
|
8473
8574
|
/**
|
|
8474
8575
|
* The Team identifier to perform the request on behalf of.
|
|
8475
8576
|
*/
|
|
@@ -8479,43 +8580,44 @@ type GetAllLogDrainsQueryParams = {
|
|
|
8479
8580
|
*/
|
|
8480
8581
|
slug?: string;
|
|
8481
8582
|
};
|
|
8482
|
-
type
|
|
8483
|
-
type
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8583
|
+
type GetEdgeConfigsError = ErrorWrapper<undefined>;
|
|
8584
|
+
type GetEdgeConfigsResponse = {
|
|
8585
|
+
id?: string;
|
|
8586
|
+
createdAt?: number;
|
|
8587
|
+
ownerId?: string;
|
|
8588
|
+
/**
|
|
8589
|
+
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
8590
|
+
*/
|
|
8591
|
+
slug?: string;
|
|
8592
|
+
updatedAt?: number;
|
|
8593
|
+
digest?: string;
|
|
8594
|
+
/**
|
|
8595
|
+
* Keeps track of the current state of the Edge Config while it gets transferred.
|
|
8596
|
+
*/
|
|
8597
|
+
transfer?: {
|
|
8598
|
+
fromAccountId: string;
|
|
8599
|
+
startedAt: number;
|
|
8600
|
+
doneAt: number | null;
|
|
8499
8601
|
};
|
|
8500
|
-
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
}
|
|
8511
|
-
type
|
|
8512
|
-
queryParams?:
|
|
8602
|
+
schema?: Record<string, any>;
|
|
8603
|
+
purpose?: {
|
|
8604
|
+
type: 'flags';
|
|
8605
|
+
projectId: string;
|
|
8606
|
+
} | {
|
|
8607
|
+
type: 'experimentation';
|
|
8608
|
+
resourceId: string;
|
|
8609
|
+
};
|
|
8610
|
+
sizeInBytes: number;
|
|
8611
|
+
itemCount: number;
|
|
8612
|
+
};
|
|
8613
|
+
type GetEdgeConfigsVariables = {
|
|
8614
|
+
queryParams?: GetEdgeConfigsQueryParams;
|
|
8513
8615
|
} & FetcherExtraProps;
|
|
8514
8616
|
/**
|
|
8515
|
-
*
|
|
8617
|
+
* Returns all Edge Configs.
|
|
8516
8618
|
*/
|
|
8517
|
-
declare const
|
|
8518
|
-
type
|
|
8619
|
+
declare const getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
8620
|
+
type CreateEdgeConfigQueryParams = {
|
|
8519
8621
|
/**
|
|
8520
8622
|
* The Team identifier to perform the request on behalf of.
|
|
8521
8623
|
*/
|
|
@@ -8525,161 +8627,13 @@ type CreateConfigurableLogDrainQueryParams = {
|
|
|
8525
8627
|
*/
|
|
8526
8628
|
slug?: string;
|
|
8527
8629
|
};
|
|
8528
|
-
type
|
|
8529
|
-
type
|
|
8630
|
+
type CreateEdgeConfigError = ErrorWrapper<undefined>;
|
|
8631
|
+
type CreateEdgeConfigResponse = {
|
|
8632
|
+
createdAt?: number;
|
|
8633
|
+
updatedAt?: number;
|
|
8634
|
+
id?: string;
|
|
8530
8635
|
/**
|
|
8531
|
-
*
|
|
8532
|
-
*/
|
|
8533
|
-
secret?: string;
|
|
8534
|
-
clientId?: string;
|
|
8535
|
-
configurationId?: string;
|
|
8536
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8537
|
-
environments: ('preview' | 'production')[];
|
|
8538
|
-
disabledBy?: string;
|
|
8539
|
-
firstErrorTimestamp?: number;
|
|
8540
|
-
samplingRate?: number;
|
|
8541
|
-
hideIpAddresses?: boolean;
|
|
8542
|
-
id: string;
|
|
8543
|
-
createdAt: number;
|
|
8544
|
-
deletedAt: number | null;
|
|
8545
|
-
updatedAt: number;
|
|
8546
|
-
url: string;
|
|
8547
|
-
headers?: {
|
|
8548
|
-
[key: string]: string;
|
|
8549
|
-
};
|
|
8550
|
-
projectIds?: string[];
|
|
8551
|
-
name: string;
|
|
8552
|
-
teamId?: string | null;
|
|
8553
|
-
ownerId: string;
|
|
8554
|
-
createdFrom?: 'integration' | 'self-served';
|
|
8555
|
-
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8556
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8557
|
-
disabledAt?: number;
|
|
8558
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8559
|
-
};
|
|
8560
|
-
type CreateConfigurableLogDrainRequestBody = {
|
|
8561
|
-
/**
|
|
8562
|
-
* The delivery log format
|
|
8563
|
-
*
|
|
8564
|
-
* @example json
|
|
8565
|
-
*/
|
|
8566
|
-
deliveryFormat: 'json' | 'ndjson';
|
|
8567
|
-
/**
|
|
8568
|
-
* The log drain url
|
|
8569
|
-
*
|
|
8570
|
-
* @format uri
|
|
8571
|
-
* @pattern ^(http|https)?://
|
|
8572
|
-
*/
|
|
8573
|
-
url: string;
|
|
8574
|
-
/**
|
|
8575
|
-
* Headers to be sent together with the request
|
|
8576
|
-
*/
|
|
8577
|
-
headers?: {
|
|
8578
|
-
[key: string]: string;
|
|
8579
|
-
};
|
|
8580
|
-
/**
|
|
8581
|
-
* @minItems 1
|
|
8582
|
-
* @maxItems 50
|
|
8583
|
-
*/
|
|
8584
|
-
projectIds?: string[];
|
|
8585
|
-
/**
|
|
8586
|
-
* @uniqueItems true
|
|
8587
|
-
* @minItems 1
|
|
8588
|
-
*/
|
|
8589
|
-
sources: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8590
|
-
/**
|
|
8591
|
-
* @uniqueItems true
|
|
8592
|
-
* @minItems 1
|
|
8593
|
-
*/
|
|
8594
|
-
environments?: ('preview' | 'production')[];
|
|
8595
|
-
/**
|
|
8596
|
-
* Custom secret of log drain
|
|
8597
|
-
*/
|
|
8598
|
-
secret?: string;
|
|
8599
|
-
/**
|
|
8600
|
-
* The sampling rate for this log drain. It should be a percentage rate between 0 and 100. With max 2 decimal points
|
|
8601
|
-
*
|
|
8602
|
-
* @minimum 0.01
|
|
8603
|
-
* @maximum 1
|
|
8604
|
-
*/
|
|
8605
|
-
samplingRate?: number;
|
|
8606
|
-
/**
|
|
8607
|
-
* The custom name of this log drain.
|
|
8608
|
-
*/
|
|
8609
|
-
name?: string;
|
|
8610
|
-
};
|
|
8611
|
-
type CreateConfigurableLogDrainVariables = {
|
|
8612
|
-
body: CreateConfigurableLogDrainRequestBody;
|
|
8613
|
-
queryParams?: CreateConfigurableLogDrainQueryParams;
|
|
8614
|
-
} & FetcherExtraProps;
|
|
8615
|
-
/**
|
|
8616
|
-
* Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
|
|
8617
|
-
*/
|
|
8618
|
-
declare const createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
8619
|
-
type GetEdgeConfigsQueryParams = {
|
|
8620
|
-
/**
|
|
8621
|
-
* The Team identifier to perform the request on behalf of.
|
|
8622
|
-
*/
|
|
8623
|
-
teamId?: string;
|
|
8624
|
-
/**
|
|
8625
|
-
* The Team slug to perform the request on behalf of.
|
|
8626
|
-
*/
|
|
8627
|
-
slug?: string;
|
|
8628
|
-
};
|
|
8629
|
-
type GetEdgeConfigsError = ErrorWrapper<undefined>;
|
|
8630
|
-
type GetEdgeConfigsResponse = {
|
|
8631
|
-
id?: string;
|
|
8632
|
-
createdAt?: number;
|
|
8633
|
-
ownerId?: string;
|
|
8634
|
-
/**
|
|
8635
|
-
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
8636
|
-
*/
|
|
8637
|
-
slug?: string;
|
|
8638
|
-
updatedAt?: number;
|
|
8639
|
-
digest?: string;
|
|
8640
|
-
/**
|
|
8641
|
-
* Keeps track of the current state of the Edge Config while it gets transferred.
|
|
8642
|
-
*/
|
|
8643
|
-
transfer?: {
|
|
8644
|
-
fromAccountId: string;
|
|
8645
|
-
startedAt: number;
|
|
8646
|
-
doneAt: number | null;
|
|
8647
|
-
};
|
|
8648
|
-
schema?: Record<string, any>;
|
|
8649
|
-
purpose?: {
|
|
8650
|
-
type: 'flags';
|
|
8651
|
-
projectId: string;
|
|
8652
|
-
} | {
|
|
8653
|
-
type: 'experimentation';
|
|
8654
|
-
resourceId: string;
|
|
8655
|
-
};
|
|
8656
|
-
sizeInBytes: number;
|
|
8657
|
-
itemCount: number;
|
|
8658
|
-
};
|
|
8659
|
-
type GetEdgeConfigsVariables = {
|
|
8660
|
-
queryParams?: GetEdgeConfigsQueryParams;
|
|
8661
|
-
} & FetcherExtraProps;
|
|
8662
|
-
/**
|
|
8663
|
-
* Returns all Edge Configs.
|
|
8664
|
-
*/
|
|
8665
|
-
declare const getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
8666
|
-
type CreateEdgeConfigQueryParams = {
|
|
8667
|
-
/**
|
|
8668
|
-
* The Team identifier to perform the request on behalf of.
|
|
8669
|
-
*/
|
|
8670
|
-
teamId?: string;
|
|
8671
|
-
/**
|
|
8672
|
-
* The Team slug to perform the request on behalf of.
|
|
8673
|
-
*/
|
|
8674
|
-
slug?: string;
|
|
8675
|
-
};
|
|
8676
|
-
type CreateEdgeConfigError = ErrorWrapper<undefined>;
|
|
8677
|
-
type CreateEdgeConfigResponse = {
|
|
8678
|
-
createdAt?: number;
|
|
8679
|
-
updatedAt?: number;
|
|
8680
|
-
id?: string;
|
|
8681
|
-
/**
|
|
8682
|
-
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
8636
|
+
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
8683
8637
|
*/
|
|
8684
8638
|
slug?: string;
|
|
8685
8639
|
ownerId?: string;
|
|
@@ -10582,6 +10536,10 @@ type ExchangeSsoTokenRequestBody = {
|
|
|
10582
10536
|
* The integration redirect URI
|
|
10583
10537
|
*/
|
|
10584
10538
|
redirect_uri?: string;
|
|
10539
|
+
/**
|
|
10540
|
+
* The grant type, when using x-www-form-urlencoded content type
|
|
10541
|
+
*/
|
|
10542
|
+
grant_type?: 'authorization_code';
|
|
10585
10543
|
};
|
|
10586
10544
|
type ExchangeSsoTokenVariables = {
|
|
10587
10545
|
body: ExchangeSsoTokenRequestBody;
|
|
@@ -10903,82 +10861,6 @@ type DeleteIntegrationLogDrainVariables = {
|
|
|
10903
10861
|
* Deletes the Integration log drain with the provided `id`. When using an OAuth2 Token, the log drain can be deleted only if the integration owns it.
|
|
10904
10862
|
*/
|
|
10905
10863
|
declare const deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
10906
|
-
type GitNamespacesQueryParams = {
|
|
10907
|
-
/**
|
|
10908
|
-
* The custom Git host if using a custom Git provider, like GitHub Enterprise Server
|
|
10909
|
-
*
|
|
10910
|
-
* @example ghes-test.now.systems
|
|
10911
|
-
*/
|
|
10912
|
-
host?: string;
|
|
10913
|
-
provider?: 'github' | 'github-custom-host' | 'gitlab' | 'bitbucket';
|
|
10914
|
-
};
|
|
10915
|
-
type GitNamespacesError = ErrorWrapper<undefined>;
|
|
10916
|
-
type GitNamespacesResponse = {
|
|
10917
|
-
provider: string;
|
|
10918
|
-
slug: string;
|
|
10919
|
-
id: string | number;
|
|
10920
|
-
ownerType: string;
|
|
10921
|
-
name?: string;
|
|
10922
|
-
isAccessRestricted?: boolean;
|
|
10923
|
-
installationId?: number;
|
|
10924
|
-
requireReauth?: boolean;
|
|
10925
|
-
}[];
|
|
10926
|
-
type GitNamespacesVariables = {
|
|
10927
|
-
queryParams?: GitNamespacesQueryParams;
|
|
10928
|
-
} & FetcherExtraProps;
|
|
10929
|
-
/**
|
|
10930
|
-
* Lists git namespaces for a supported provider. Supported providers are `github`, `gitlab` and `bitbucket`. If the provider is not provided, it will try to obtain it from the user that authenticated the request.
|
|
10931
|
-
*/
|
|
10932
|
-
declare const gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
10933
|
-
type SearchRepoQueryParams = {
|
|
10934
|
-
query?: string;
|
|
10935
|
-
namespaceId?: void | null;
|
|
10936
|
-
provider?: 'github' | 'github-custom-host' | 'gitlab' | 'bitbucket';
|
|
10937
|
-
installationId?: string;
|
|
10938
|
-
/**
|
|
10939
|
-
* The custom Git host if using a custom Git provider, like GitHub Enterprise Server
|
|
10940
|
-
*
|
|
10941
|
-
* @example ghes-test.now.systems
|
|
10942
|
-
*/
|
|
10943
|
-
host?: string;
|
|
10944
|
-
/**
|
|
10945
|
-
* The Team identifier to perform the request on behalf of.
|
|
10946
|
-
*/
|
|
10947
|
-
teamId?: string;
|
|
10948
|
-
/**
|
|
10949
|
-
* The Team slug to perform the request on behalf of.
|
|
10950
|
-
*/
|
|
10951
|
-
slug?: string;
|
|
10952
|
-
};
|
|
10953
|
-
type SearchRepoError = ErrorWrapper<undefined>;
|
|
10954
|
-
type SearchRepoVariables = {
|
|
10955
|
-
queryParams?: SearchRepoQueryParams;
|
|
10956
|
-
} & FetcherExtraProps;
|
|
10957
|
-
/**
|
|
10958
|
-
* Lists git repositories linked to a namespace `id` for a supported provider. A specific namespace `id` can be obtained via the `git-namespaces` endpoint. Supported providers are `github`, `gitlab` and `bitbucket`. If the provider or namespace is not provided, it will try to obtain it from the user that authenticated the request.
|
|
10959
|
-
*/
|
|
10960
|
-
declare const searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
10961
|
-
gitAccount: {
|
|
10962
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
10963
|
-
namespaceId: string | number | null;
|
|
10964
|
-
};
|
|
10965
|
-
repos: {
|
|
10966
|
-
id: string | number;
|
|
10967
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
10968
|
-
url: string;
|
|
10969
|
-
name: string;
|
|
10970
|
-
slug: string;
|
|
10971
|
-
namespace: string;
|
|
10972
|
-
owner: {
|
|
10973
|
-
id: string | number;
|
|
10974
|
-
name: string;
|
|
10975
|
-
};
|
|
10976
|
-
ownerType: "user" | "team";
|
|
10977
|
-
private: boolean;
|
|
10978
|
-
defaultBranch: string;
|
|
10979
|
-
updatedAt: number;
|
|
10980
|
-
}[];
|
|
10981
|
-
}>;
|
|
10982
10864
|
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
|
|
10983
10865
|
integrationConfigurationId: string;
|
|
10984
10866
|
resourceId: string;
|
|
@@ -11519,9 +11401,11 @@ type GetProjectsResponse = {
|
|
|
11519
11401
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
11520
11402
|
*/
|
|
11521
11403
|
sunsetSecretId?: string;
|
|
11404
|
+
decrypted?: boolean;
|
|
11405
|
+
value: string;
|
|
11406
|
+
vsmValue?: string;
|
|
11522
11407
|
id?: string;
|
|
11523
11408
|
key: string;
|
|
11524
|
-
value: string;
|
|
11525
11409
|
configurationId?: string | null;
|
|
11526
11410
|
createdAt?: number;
|
|
11527
11411
|
updatedAt?: number;
|
|
@@ -11589,13 +11473,8 @@ type GetProjectsResponse = {
|
|
|
11589
11473
|
*/
|
|
11590
11474
|
encryptedValue: string;
|
|
11591
11475
|
} | null;
|
|
11592
|
-
/**
|
|
11593
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
11594
|
-
*/
|
|
11595
|
-
decrypted?: boolean;
|
|
11596
11476
|
comment?: string;
|
|
11597
11477
|
customEnvironmentIds?: string[];
|
|
11598
|
-
vsmValue?: string;
|
|
11599
11478
|
}[];
|
|
11600
11479
|
customEnvironments?: Record<string, any>[];
|
|
11601
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;
|
|
@@ -11746,6 +11625,28 @@ type GetProjectsResponse = {
|
|
|
11746
11625
|
updatedAt?: number;
|
|
11747
11626
|
sourceless?: boolean;
|
|
11748
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;
|
|
11749
11650
|
};
|
|
11750
11651
|
microfrontends?: {
|
|
11751
11652
|
/**
|
|
@@ -11768,7 +11669,7 @@ type GetProjectsResponse = {
|
|
|
11768
11669
|
*/
|
|
11769
11670
|
isDefaultApp?: boolean;
|
|
11770
11671
|
/**
|
|
11771
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
11672
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
11772
11673
|
*/
|
|
11773
11674
|
defaultRoute?: string;
|
|
11774
11675
|
/**
|
|
@@ -11803,6 +11704,7 @@ type GetProjectsResponse = {
|
|
|
11803
11704
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11804
11705
|
functionZeroConfigFailover?: boolean;
|
|
11805
11706
|
elasticConcurrencyEnabled?: boolean;
|
|
11707
|
+
buildMachineType?: 'enhanced';
|
|
11806
11708
|
};
|
|
11807
11709
|
rollingRelease?: {
|
|
11808
11710
|
/**
|
|
@@ -11821,6 +11723,14 @@ type GetProjectsResponse = {
|
|
|
11821
11723
|
* The percentage of traffic to serve to the new deployment
|
|
11822
11724
|
*/
|
|
11823
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;
|
|
11824
11734
|
}[] | null;
|
|
11825
11735
|
} | null;
|
|
11826
11736
|
defaultResourceConfig: {
|
|
@@ -11830,6 +11740,7 @@ type GetProjectsResponse = {
|
|
|
11830
11740
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11831
11741
|
functionZeroConfigFailover?: boolean;
|
|
11832
11742
|
elasticConcurrencyEnabled?: boolean;
|
|
11743
|
+
buildMachineType?: 'enhanced';
|
|
11833
11744
|
};
|
|
11834
11745
|
rootDirectory?: string | null;
|
|
11835
11746
|
serverlessFunctionRegion?: string | null;
|
|
@@ -12012,6 +11923,7 @@ type GetProjectsResponse = {
|
|
|
12012
11923
|
notificationCustomerBudget?: ACLAction[];
|
|
12013
11924
|
notificationStatementOfReasons?: ACLAction[];
|
|
12014
11925
|
observabilityConfiguration?: ACLAction[];
|
|
11926
|
+
observabilityNotebook?: ACLAction[];
|
|
12015
11927
|
openTelemetryEndpoint?: ACLAction[];
|
|
12016
11928
|
paymentMethod?: ACLAction[];
|
|
12017
11929
|
permissions?: ACLAction[];
|
|
@@ -12063,6 +11975,8 @@ type GetProjectsResponse = {
|
|
|
12063
11975
|
endpointVerification?: ACLAction[];
|
|
12064
11976
|
projectTransferIn?: ACLAction[];
|
|
12065
11977
|
oauth2Application?: ACLAction[];
|
|
11978
|
+
vercelRun?: ACLAction[];
|
|
11979
|
+
vercelRunExec?: ACLAction[];
|
|
12066
11980
|
aliasProject?: ACLAction[];
|
|
12067
11981
|
aliasProtectionBypass?: ACLAction[];
|
|
12068
11982
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -12368,9 +12282,11 @@ type CreateProjectResponse = {
|
|
|
12368
12282
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
12369
12283
|
*/
|
|
12370
12284
|
sunsetSecretId?: string;
|
|
12285
|
+
decrypted?: boolean;
|
|
12286
|
+
value: string;
|
|
12287
|
+
vsmValue?: string;
|
|
12371
12288
|
id?: string;
|
|
12372
12289
|
key: string;
|
|
12373
|
-
value: string;
|
|
12374
12290
|
configurationId?: string | null;
|
|
12375
12291
|
createdAt?: number;
|
|
12376
12292
|
updatedAt?: number;
|
|
@@ -12438,13 +12354,8 @@ type CreateProjectResponse = {
|
|
|
12438
12354
|
*/
|
|
12439
12355
|
encryptedValue: string;
|
|
12440
12356
|
} | null;
|
|
12441
|
-
/**
|
|
12442
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
12443
|
-
*/
|
|
12444
|
-
decrypted?: boolean;
|
|
12445
12357
|
comment?: string;
|
|
12446
12358
|
customEnvironmentIds?: string[];
|
|
12447
|
-
vsmValue?: string;
|
|
12448
12359
|
}[];
|
|
12449
12360
|
customEnvironments?: Record<string, any>[];
|
|
12450
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;
|
|
@@ -12595,6 +12506,28 @@ type CreateProjectResponse = {
|
|
|
12595
12506
|
updatedAt?: number;
|
|
12596
12507
|
sourceless?: boolean;
|
|
12597
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;
|
|
12598
12531
|
};
|
|
12599
12532
|
microfrontends?: {
|
|
12600
12533
|
/**
|
|
@@ -12617,7 +12550,7 @@ type CreateProjectResponse = {
|
|
|
12617
12550
|
*/
|
|
12618
12551
|
isDefaultApp?: boolean;
|
|
12619
12552
|
/**
|
|
12620
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
12553
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
12621
12554
|
*/
|
|
12622
12555
|
defaultRoute?: string;
|
|
12623
12556
|
/**
|
|
@@ -12652,6 +12585,7 @@ type CreateProjectResponse = {
|
|
|
12652
12585
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12653
12586
|
functionZeroConfigFailover?: boolean;
|
|
12654
12587
|
elasticConcurrencyEnabled?: boolean;
|
|
12588
|
+
buildMachineType?: 'enhanced';
|
|
12655
12589
|
};
|
|
12656
12590
|
rollingRelease?: {
|
|
12657
12591
|
/**
|
|
@@ -12670,6 +12604,14 @@ type CreateProjectResponse = {
|
|
|
12670
12604
|
* The percentage of traffic to serve to the new deployment
|
|
12671
12605
|
*/
|
|
12672
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;
|
|
12673
12615
|
}[] | null;
|
|
12674
12616
|
} | null;
|
|
12675
12617
|
defaultResourceConfig: {
|
|
@@ -12679,6 +12621,7 @@ type CreateProjectResponse = {
|
|
|
12679
12621
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
12680
12622
|
functionZeroConfigFailover?: boolean;
|
|
12681
12623
|
elasticConcurrencyEnabled?: boolean;
|
|
12624
|
+
buildMachineType?: 'enhanced';
|
|
12682
12625
|
};
|
|
12683
12626
|
rootDirectory?: string | null;
|
|
12684
12627
|
serverlessFunctionRegion?: string | null;
|
|
@@ -12861,6 +12804,7 @@ type CreateProjectResponse = {
|
|
|
12861
12804
|
notificationCustomerBudget?: ACLAction[];
|
|
12862
12805
|
notificationStatementOfReasons?: ACLAction[];
|
|
12863
12806
|
observabilityConfiguration?: ACLAction[];
|
|
12807
|
+
observabilityNotebook?: ACLAction[];
|
|
12864
12808
|
openTelemetryEndpoint?: ACLAction[];
|
|
12865
12809
|
paymentMethod?: ACLAction[];
|
|
12866
12810
|
permissions?: ACLAction[];
|
|
@@ -12912,6 +12856,8 @@ type CreateProjectResponse = {
|
|
|
12912
12856
|
endpointVerification?: ACLAction[];
|
|
12913
12857
|
projectTransferIn?: ACLAction[];
|
|
12914
12858
|
oauth2Application?: ACLAction[];
|
|
12859
|
+
vercelRun?: ACLAction[];
|
|
12860
|
+
vercelRunExec?: ACLAction[];
|
|
12915
12861
|
aliasProject?: ACLAction[];
|
|
12916
12862
|
aliasProtectionBypass?: ACLAction[];
|
|
12917
12863
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -13350,9 +13296,11 @@ type GetProjectResponse = {
|
|
|
13350
13296
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13351
13297
|
*/
|
|
13352
13298
|
sunsetSecretId?: string;
|
|
13299
|
+
decrypted?: boolean;
|
|
13300
|
+
value: string;
|
|
13301
|
+
vsmValue?: string;
|
|
13353
13302
|
id?: string;
|
|
13354
13303
|
key: string;
|
|
13355
|
-
value: string;
|
|
13356
13304
|
configurationId?: string | null;
|
|
13357
13305
|
createdAt?: number;
|
|
13358
13306
|
updatedAt?: number;
|
|
@@ -13420,13 +13368,8 @@ type GetProjectResponse = {
|
|
|
13420
13368
|
*/
|
|
13421
13369
|
encryptedValue: string;
|
|
13422
13370
|
} | null;
|
|
13423
|
-
/**
|
|
13424
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
13425
|
-
*/
|
|
13426
|
-
decrypted?: boolean;
|
|
13427
13371
|
comment?: string;
|
|
13428
13372
|
customEnvironmentIds?: string[];
|
|
13429
|
-
vsmValue?: string;
|
|
13430
13373
|
}[];
|
|
13431
13374
|
customEnvironments?: Record<string, any>[];
|
|
13432
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;
|
|
@@ -13577,6 +13520,28 @@ type GetProjectResponse = {
|
|
|
13577
13520
|
updatedAt?: number;
|
|
13578
13521
|
sourceless?: boolean;
|
|
13579
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;
|
|
13580
13545
|
};
|
|
13581
13546
|
microfrontends?: {
|
|
13582
13547
|
/**
|
|
@@ -13599,7 +13564,7 @@ type GetProjectResponse = {
|
|
|
13599
13564
|
*/
|
|
13600
13565
|
isDefaultApp?: boolean;
|
|
13601
13566
|
/**
|
|
13602
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
13567
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
13603
13568
|
*/
|
|
13604
13569
|
defaultRoute?: string;
|
|
13605
13570
|
/**
|
|
@@ -13634,6 +13599,7 @@ type GetProjectResponse = {
|
|
|
13634
13599
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13635
13600
|
functionZeroConfigFailover?: boolean;
|
|
13636
13601
|
elasticConcurrencyEnabled?: boolean;
|
|
13602
|
+
buildMachineType?: 'enhanced';
|
|
13637
13603
|
};
|
|
13638
13604
|
rollingRelease?: {
|
|
13639
13605
|
/**
|
|
@@ -13652,6 +13618,14 @@ type GetProjectResponse = {
|
|
|
13652
13618
|
* The percentage of traffic to serve to the new deployment
|
|
13653
13619
|
*/
|
|
13654
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;
|
|
13655
13629
|
}[] | null;
|
|
13656
13630
|
} | null;
|
|
13657
13631
|
defaultResourceConfig: {
|
|
@@ -13661,6 +13635,7 @@ type GetProjectResponse = {
|
|
|
13661
13635
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
13662
13636
|
functionZeroConfigFailover?: boolean;
|
|
13663
13637
|
elasticConcurrencyEnabled?: boolean;
|
|
13638
|
+
buildMachineType?: 'enhanced';
|
|
13664
13639
|
};
|
|
13665
13640
|
rootDirectory?: string | null;
|
|
13666
13641
|
serverlessFunctionRegion?: string | null;
|
|
@@ -13843,6 +13818,7 @@ type GetProjectResponse = {
|
|
|
13843
13818
|
notificationCustomerBudget?: ACLAction[];
|
|
13844
13819
|
notificationStatementOfReasons?: ACLAction[];
|
|
13845
13820
|
observabilityConfiguration?: ACLAction[];
|
|
13821
|
+
observabilityNotebook?: ACLAction[];
|
|
13846
13822
|
openTelemetryEndpoint?: ACLAction[];
|
|
13847
13823
|
paymentMethod?: ACLAction[];
|
|
13848
13824
|
permissions?: ACLAction[];
|
|
@@ -13894,6 +13870,8 @@ type GetProjectResponse = {
|
|
|
13894
13870
|
endpointVerification?: ACLAction[];
|
|
13895
13871
|
projectTransferIn?: ACLAction[];
|
|
13896
13872
|
oauth2Application?: ACLAction[];
|
|
13873
|
+
vercelRun?: ACLAction[];
|
|
13874
|
+
vercelRunExec?: ACLAction[];
|
|
13897
13875
|
aliasProject?: ACLAction[];
|
|
13898
13876
|
aliasProtectionBypass?: ACLAction[];
|
|
13899
13877
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -14206,9 +14184,11 @@ type UpdateProjectResponse = {
|
|
|
14206
14184
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
14207
14185
|
*/
|
|
14208
14186
|
sunsetSecretId?: string;
|
|
14187
|
+
decrypted?: boolean;
|
|
14188
|
+
value: string;
|
|
14189
|
+
vsmValue?: string;
|
|
14209
14190
|
id?: string;
|
|
14210
14191
|
key: string;
|
|
14211
|
-
value: string;
|
|
14212
14192
|
configurationId?: string | null;
|
|
14213
14193
|
createdAt?: number;
|
|
14214
14194
|
updatedAt?: number;
|
|
@@ -14276,13 +14256,8 @@ type UpdateProjectResponse = {
|
|
|
14276
14256
|
*/
|
|
14277
14257
|
encryptedValue: string;
|
|
14278
14258
|
} | null;
|
|
14279
|
-
/**
|
|
14280
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
14281
|
-
*/
|
|
14282
|
-
decrypted?: boolean;
|
|
14283
14259
|
comment?: string;
|
|
14284
14260
|
customEnvironmentIds?: string[];
|
|
14285
|
-
vsmValue?: string;
|
|
14286
14261
|
}[];
|
|
14287
14262
|
customEnvironments?: Record<string, any>[];
|
|
14288
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;
|
|
@@ -14433,6 +14408,28 @@ type UpdateProjectResponse = {
|
|
|
14433
14408
|
updatedAt?: number;
|
|
14434
14409
|
sourceless?: boolean;
|
|
14435
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;
|
|
14436
14433
|
};
|
|
14437
14434
|
microfrontends?: {
|
|
14438
14435
|
/**
|
|
@@ -14455,7 +14452,7 @@ type UpdateProjectResponse = {
|
|
|
14455
14452
|
*/
|
|
14456
14453
|
isDefaultApp?: boolean;
|
|
14457
14454
|
/**
|
|
14458
|
-
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI.
|
|
14455
|
+
* A path that is used to take screenshots and as the default path in preview links when a domain for this microfrontend is shown in the UI. Includes the leading slash, e.g. `/docs`
|
|
14459
14456
|
*/
|
|
14460
14457
|
defaultRoute?: string;
|
|
14461
14458
|
/**
|
|
@@ -14484,6 +14481,7 @@ type UpdateProjectResponse = {
|
|
|
14484
14481
|
productionDeploymentsFastLane?: boolean;
|
|
14485
14482
|
publicSource?: boolean | null;
|
|
14486
14483
|
resourceConfig: {
|
|
14484
|
+
buildMachineType?: 'enhanced';
|
|
14487
14485
|
fluid?: boolean;
|
|
14488
14486
|
functionDefaultRegions: string[];
|
|
14489
14487
|
functionDefaultTimeout?: number;
|
|
@@ -14508,9 +14506,18 @@ type UpdateProjectResponse = {
|
|
|
14508
14506
|
* The percentage of traffic to serve to the new deployment
|
|
14509
14507
|
*/
|
|
14510
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;
|
|
14511
14517
|
}[] | null;
|
|
14512
14518
|
} | null;
|
|
14513
14519
|
defaultResourceConfig: {
|
|
14520
|
+
buildMachineType?: 'enhanced';
|
|
14514
14521
|
fluid?: boolean;
|
|
14515
14522
|
functionDefaultRegions: string[];
|
|
14516
14523
|
functionDefaultTimeout?: number;
|
|
@@ -14699,6 +14706,7 @@ type UpdateProjectResponse = {
|
|
|
14699
14706
|
notificationCustomerBudget?: ACLAction[];
|
|
14700
14707
|
notificationStatementOfReasons?: ACLAction[];
|
|
14701
14708
|
observabilityConfiguration?: ACLAction[];
|
|
14709
|
+
observabilityNotebook?: ACLAction[];
|
|
14702
14710
|
openTelemetryEndpoint?: ACLAction[];
|
|
14703
14711
|
paymentMethod?: ACLAction[];
|
|
14704
14712
|
permissions?: ACLAction[];
|
|
@@ -14750,6 +14758,8 @@ type UpdateProjectResponse = {
|
|
|
14750
14758
|
endpointVerification?: ACLAction[];
|
|
14751
14759
|
projectTransferIn?: ACLAction[];
|
|
14752
14760
|
oauth2Application?: ACLAction[];
|
|
14761
|
+
vercelRun?: ACLAction[];
|
|
14762
|
+
vercelRunExec?: ACLAction[];
|
|
14753
14763
|
aliasProject?: ACLAction[];
|
|
14754
14764
|
aliasProtectionBypass?: ACLAction[];
|
|
14755
14765
|
productionAliasProtectionBypass?: ACLAction[];
|
|
@@ -14831,7 +14841,7 @@ type UpdateProjectResponse = {
|
|
|
14831
14841
|
value: string;
|
|
14832
14842
|
note?: string;
|
|
14833
14843
|
}[];
|
|
14834
|
-
protectionMode: '
|
|
14844
|
+
protectionMode: 'exclusive' | 'additional';
|
|
14835
14845
|
} | {
|
|
14836
14846
|
deploymentType: 'all' | 'preview' | 'prod_deployment_urls_and_all_previews' | 'production';
|
|
14837
14847
|
} | null;
|
|
@@ -15271,6 +15281,12 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
|
15271
15281
|
};
|
|
15272
15282
|
type GetV9ProjectsIdOrNameCustomEnvironmentsError = ErrorWrapper<undefined>;
|
|
15273
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
|
+
};
|
|
15274
15290
|
environments: Record<string, any>[];
|
|
15275
15291
|
};
|
|
15276
15292
|
type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
@@ -15482,13 +15498,50 @@ type GetProjectDomainsQueryParams = {
|
|
|
15482
15498
|
slug?: string;
|
|
15483
15499
|
};
|
|
15484
15500
|
type GetProjectDomainsError = ErrorWrapper<undefined>;
|
|
15485
|
-
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<{
|
|
15486
15509
|
domains: {
|
|
15487
15510
|
name: string;
|
|
15488
15511
|
apexName: string;
|
|
15489
15512
|
projectId: string;
|
|
15490
15513
|
redirect?: string | null;
|
|
15491
|
-
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;
|
|
15492
15545
|
gitBranch?: string | null;
|
|
15493
15546
|
customEnvironmentId?: string | null;
|
|
15494
15547
|
updatedAt?: number;
|
|
@@ -15508,15 +15561,7 @@ type GetProjectDomainsResponse = {
|
|
|
15508
15561
|
}[];
|
|
15509
15562
|
}[];
|
|
15510
15563
|
pagination: Pagination;
|
|
15511
|
-
}
|
|
15512
|
-
type GetProjectDomainsVariables = {
|
|
15513
|
-
pathParams: GetProjectDomainsPathParams;
|
|
15514
|
-
queryParams?: GetProjectDomainsQueryParams;
|
|
15515
|
-
} & FetcherExtraProps;
|
|
15516
|
-
/**
|
|
15517
|
-
* Retrieve the domains associated with a given project by passing either the project `id` or `name` in the URL.
|
|
15518
|
-
*/
|
|
15519
|
-
declare const getProjectDomains: (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
|
|
15564
|
+
}>;
|
|
15520
15565
|
type GetProjectDomainPathParams = {
|
|
15521
15566
|
/**
|
|
15522
15567
|
* The unique project identifier or the project name
|
|
@@ -15746,21 +15791,85 @@ type AddProjectDomainRequestBody = {
|
|
|
15746
15791
|
*/
|
|
15747
15792
|
redirect?: string | null;
|
|
15748
15793
|
/**
|
|
15749
|
-
* Status code for domain redirect
|
|
15794
|
+
* Status code for domain redirect
|
|
15795
|
+
*
|
|
15796
|
+
* @example 307
|
|
15797
|
+
*/
|
|
15798
|
+
redirectStatusCode?: 301 | 302 | 307 | 308 | any | null;
|
|
15799
|
+
};
|
|
15800
|
+
type AddProjectDomainVariables = {
|
|
15801
|
+
body: AddProjectDomainRequestBody;
|
|
15802
|
+
pathParams: AddProjectDomainPathParams;
|
|
15803
|
+
queryParams?: AddProjectDomainQueryParams;
|
|
15804
|
+
} & FetcherExtraProps;
|
|
15805
|
+
/**
|
|
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.
|
|
15807
|
+
*/
|
|
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
|
|
15750
15859
|
*
|
|
15751
|
-
* @example
|
|
15860
|
+
* @example prj_XLKmu1DyR1eY7zq8UgeRKbA7yVLA
|
|
15752
15861
|
*/
|
|
15753
|
-
|
|
15862
|
+
projectId: string;
|
|
15754
15863
|
};
|
|
15755
|
-
type
|
|
15756
|
-
body:
|
|
15757
|
-
pathParams:
|
|
15758
|
-
queryParams?:
|
|
15864
|
+
type MoveProjectDomainVariables = {
|
|
15865
|
+
body: MoveProjectDomainRequestBody;
|
|
15866
|
+
pathParams: MoveProjectDomainPathParams;
|
|
15867
|
+
queryParams?: MoveProjectDomainQueryParams;
|
|
15759
15868
|
} & FetcherExtraProps;
|
|
15760
15869
|
/**
|
|
15761
|
-
*
|
|
15870
|
+
* Move one project's domain to another project. Also allows the move of all redirects pointed to that domain in the same project.
|
|
15762
15871
|
*/
|
|
15763
|
-
declare const
|
|
15872
|
+
declare const moveProjectDomain: (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
15764
15873
|
type VerifyProjectDomainPathParams = {
|
|
15765
15874
|
/**
|
|
15766
15875
|
* The unique project identifier or the project name
|
|
@@ -15874,9 +15983,11 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15874
15983
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15875
15984
|
*/
|
|
15876
15985
|
sunsetSecretId?: string;
|
|
15986
|
+
decrypted?: boolean;
|
|
15987
|
+
value?: string;
|
|
15988
|
+
vsmValue?: string;
|
|
15877
15989
|
id?: string;
|
|
15878
15990
|
key?: string;
|
|
15879
|
-
value?: string;
|
|
15880
15991
|
configurationId?: string | null;
|
|
15881
15992
|
createdAt?: number;
|
|
15882
15993
|
updatedAt?: number;
|
|
@@ -15944,13 +16055,8 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15944
16055
|
*/
|
|
15945
16056
|
encryptedValue: string;
|
|
15946
16057
|
} | null;
|
|
15947
|
-
/**
|
|
15948
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
15949
|
-
*/
|
|
15950
|
-
decrypted?: boolean;
|
|
15951
16058
|
comment?: string;
|
|
15952
16059
|
customEnvironmentIds?: string[];
|
|
15953
|
-
vsmValue?: string;
|
|
15954
16060
|
system?: boolean;
|
|
15955
16061
|
} | {
|
|
15956
16062
|
envs: {
|
|
@@ -15960,9 +16066,11 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
15960
16066
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
15961
16067
|
*/
|
|
15962
16068
|
sunsetSecretId?: string;
|
|
16069
|
+
decrypted?: boolean;
|
|
16070
|
+
value?: string;
|
|
16071
|
+
vsmValue?: string;
|
|
15963
16072
|
id?: string;
|
|
15964
16073
|
key?: string;
|
|
15965
|
-
value?: string;
|
|
15966
16074
|
configurationId?: string | null;
|
|
15967
16075
|
createdAt?: number;
|
|
15968
16076
|
updatedAt?: number;
|
|
@@ -16030,13 +16138,8 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
16030
16138
|
*/
|
|
16031
16139
|
encryptedValue: string;
|
|
16032
16140
|
} | null;
|
|
16033
|
-
/**
|
|
16034
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16035
|
-
*/
|
|
16036
|
-
decrypted?: boolean;
|
|
16037
16141
|
comment?: string;
|
|
16038
16142
|
customEnvironmentIds?: string[];
|
|
16039
|
-
vsmValue?: string;
|
|
16040
16143
|
system?: boolean;
|
|
16041
16144
|
}[];
|
|
16042
16145
|
pagination: Pagination;
|
|
@@ -16048,9 +16151,11 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
16048
16151
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16049
16152
|
*/
|
|
16050
16153
|
sunsetSecretId?: string;
|
|
16154
|
+
decrypted?: boolean;
|
|
16155
|
+
value?: string;
|
|
16156
|
+
vsmValue?: string;
|
|
16051
16157
|
id?: string;
|
|
16052
16158
|
key?: string;
|
|
16053
|
-
value?: string;
|
|
16054
16159
|
configurationId?: string | null;
|
|
16055
16160
|
createdAt?: number;
|
|
16056
16161
|
updatedAt?: number;
|
|
@@ -16118,13 +16223,8 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
16118
16223
|
*/
|
|
16119
16224
|
encryptedValue: string;
|
|
16120
16225
|
} | null;
|
|
16121
|
-
/**
|
|
16122
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16123
|
-
*/
|
|
16124
|
-
decrypted?: boolean;
|
|
16125
16226
|
comment?: string;
|
|
16126
16227
|
customEnvironmentIds?: string[];
|
|
16127
|
-
vsmValue?: string;
|
|
16128
16228
|
system?: boolean;
|
|
16129
16229
|
}[];
|
|
16130
16230
|
}>;
|
|
@@ -16161,9 +16261,11 @@ type CreateProjectEnvResponse = {
|
|
|
16161
16261
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16162
16262
|
*/
|
|
16163
16263
|
sunsetSecretId?: string;
|
|
16264
|
+
decrypted?: boolean;
|
|
16265
|
+
value?: string;
|
|
16266
|
+
vsmValue?: string;
|
|
16164
16267
|
id?: string;
|
|
16165
16268
|
key?: string;
|
|
16166
|
-
value?: string;
|
|
16167
16269
|
configurationId?: string | null;
|
|
16168
16270
|
createdAt?: number;
|
|
16169
16271
|
updatedAt?: number;
|
|
@@ -16231,13 +16333,8 @@ type CreateProjectEnvResponse = {
|
|
|
16231
16333
|
*/
|
|
16232
16334
|
encryptedValue: string;
|
|
16233
16335
|
} | null;
|
|
16234
|
-
/**
|
|
16235
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16236
|
-
*/
|
|
16237
|
-
decrypted?: boolean;
|
|
16238
16336
|
comment?: string;
|
|
16239
16337
|
customEnvironmentIds?: string[];
|
|
16240
|
-
vsmValue?: string;
|
|
16241
16338
|
system?: boolean;
|
|
16242
16339
|
} | {
|
|
16243
16340
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
@@ -16246,9 +16343,11 @@ type CreateProjectEnvResponse = {
|
|
|
16246
16343
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16247
16344
|
*/
|
|
16248
16345
|
sunsetSecretId?: string;
|
|
16346
|
+
decrypted?: boolean;
|
|
16347
|
+
value?: string;
|
|
16348
|
+
vsmValue?: string;
|
|
16249
16349
|
id?: string;
|
|
16250
16350
|
key?: string;
|
|
16251
|
-
value?: string;
|
|
16252
16351
|
configurationId?: string | null;
|
|
16253
16352
|
createdAt?: number;
|
|
16254
16353
|
updatedAt?: number;
|
|
@@ -16316,13 +16415,8 @@ type CreateProjectEnvResponse = {
|
|
|
16316
16415
|
*/
|
|
16317
16416
|
encryptedValue: string;
|
|
16318
16417
|
} | null;
|
|
16319
|
-
/**
|
|
16320
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16321
|
-
*/
|
|
16322
|
-
decrypted?: boolean;
|
|
16323
16418
|
comment?: string;
|
|
16324
16419
|
customEnvironmentIds?: string[];
|
|
16325
|
-
vsmValue?: string;
|
|
16326
16420
|
system?: boolean;
|
|
16327
16421
|
}[];
|
|
16328
16422
|
failed: {
|
|
@@ -16638,9 +16732,11 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16638
16732
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16639
16733
|
*/
|
|
16640
16734
|
sunsetSecretId?: string;
|
|
16735
|
+
decrypted?: boolean;
|
|
16736
|
+
value: string;
|
|
16737
|
+
vsmValue?: string;
|
|
16641
16738
|
id?: string;
|
|
16642
16739
|
key: string;
|
|
16643
|
-
value: string;
|
|
16644
16740
|
configurationId?: string | null;
|
|
16645
16741
|
createdAt?: number;
|
|
16646
16742
|
updatedAt?: number;
|
|
@@ -16708,13 +16804,8 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16708
16804
|
*/
|
|
16709
16805
|
encryptedValue: string;
|
|
16710
16806
|
} | null;
|
|
16711
|
-
/**
|
|
16712
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16713
|
-
*/
|
|
16714
|
-
decrypted?: boolean;
|
|
16715
16807
|
comment?: string;
|
|
16716
16808
|
customEnvironmentIds?: string[];
|
|
16717
|
-
vsmValue?: string;
|
|
16718
16809
|
} | {
|
|
16719
16810
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16720
16811
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -16722,9 +16813,10 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16722
16813
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16723
16814
|
*/
|
|
16724
16815
|
sunsetSecretId?: string;
|
|
16816
|
+
decrypted?: boolean;
|
|
16817
|
+
value: string;
|
|
16725
16818
|
id?: string;
|
|
16726
16819
|
key: string;
|
|
16727
|
-
value: string;
|
|
16728
16820
|
configurationId?: string | null;
|
|
16729
16821
|
createdAt?: number;
|
|
16730
16822
|
updatedAt?: number;
|
|
@@ -16792,10 +16884,6 @@ declare const getProjectEnv: (variables: GetProjectEnvVariables, signal?: AbortS
|
|
|
16792
16884
|
*/
|
|
16793
16885
|
encryptedValue: string;
|
|
16794
16886
|
} | null;
|
|
16795
|
-
/**
|
|
16796
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16797
|
-
*/
|
|
16798
|
-
decrypted?: boolean;
|
|
16799
16887
|
comment?: string;
|
|
16800
16888
|
customEnvironmentIds?: string[];
|
|
16801
16889
|
}>;
|
|
@@ -16845,9 +16933,11 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16845
16933
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16846
16934
|
*/
|
|
16847
16935
|
sunsetSecretId?: string;
|
|
16936
|
+
decrypted?: boolean;
|
|
16937
|
+
value: string;
|
|
16938
|
+
vsmValue?: string;
|
|
16848
16939
|
id?: string;
|
|
16849
16940
|
key: string;
|
|
16850
|
-
value: string;
|
|
16851
16941
|
configurationId?: string | null;
|
|
16852
16942
|
createdAt?: number;
|
|
16853
16943
|
updatedAt?: number;
|
|
@@ -16915,13 +17005,8 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16915
17005
|
*/
|
|
16916
17006
|
encryptedValue: string;
|
|
16917
17007
|
} | null;
|
|
16918
|
-
/**
|
|
16919
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
16920
|
-
*/
|
|
16921
|
-
decrypted?: boolean;
|
|
16922
17008
|
comment?: string;
|
|
16923
17009
|
customEnvironmentIds?: string[];
|
|
16924
|
-
vsmValue?: string;
|
|
16925
17010
|
} | {
|
|
16926
17011
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16927
17012
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -16929,9 +17014,11 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16929
17014
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16930
17015
|
*/
|
|
16931
17016
|
sunsetSecretId?: string;
|
|
17017
|
+
decrypted?: boolean;
|
|
17018
|
+
value: string;
|
|
17019
|
+
vsmValue?: string;
|
|
16932
17020
|
id?: string;
|
|
16933
17021
|
key: string;
|
|
16934
|
-
value: string;
|
|
16935
17022
|
configurationId?: string | null;
|
|
16936
17023
|
createdAt?: number;
|
|
16937
17024
|
updatedAt?: number;
|
|
@@ -16999,13 +17086,8 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16999
17086
|
*/
|
|
17000
17087
|
encryptedValue: string;
|
|
17001
17088
|
} | null;
|
|
17002
|
-
/**
|
|
17003
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
17004
|
-
*/
|
|
17005
|
-
decrypted?: boolean;
|
|
17006
17089
|
comment?: string;
|
|
17007
17090
|
customEnvironmentIds?: string[];
|
|
17008
|
-
vsmValue?: string;
|
|
17009
17091
|
} | {
|
|
17010
17092
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
17011
17093
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -17013,9 +17095,11 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
17013
17095
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17014
17096
|
*/
|
|
17015
17097
|
sunsetSecretId?: string;
|
|
17098
|
+
decrypted?: boolean;
|
|
17099
|
+
value: string;
|
|
17100
|
+
vsmValue?: string;
|
|
17016
17101
|
id?: string;
|
|
17017
17102
|
key: string;
|
|
17018
|
-
value: string;
|
|
17019
17103
|
configurationId?: string | null;
|
|
17020
17104
|
createdAt?: number;
|
|
17021
17105
|
updatedAt?: number;
|
|
@@ -17083,13 +17167,8 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
17083
17167
|
*/
|
|
17084
17168
|
encryptedValue: string;
|
|
17085
17169
|
} | null;
|
|
17086
|
-
/**
|
|
17087
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
17088
|
-
*/
|
|
17089
|
-
decrypted?: boolean;
|
|
17090
17170
|
comment?: string;
|
|
17091
17171
|
customEnvironmentIds?: string[];
|
|
17092
|
-
vsmValue?: string;
|
|
17093
17172
|
}[]>;
|
|
17094
17173
|
type EditProjectEnvPathParams = {
|
|
17095
17174
|
/**
|
|
@@ -17175,9 +17254,10 @@ declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: Abor
|
|
|
17175
17254
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17176
17255
|
*/
|
|
17177
17256
|
sunsetSecretId?: string;
|
|
17257
|
+
decrypted?: boolean;
|
|
17258
|
+
value: string;
|
|
17178
17259
|
id?: string;
|
|
17179
17260
|
key: string;
|
|
17180
|
-
value: string;
|
|
17181
17261
|
configurationId?: string | null;
|
|
17182
17262
|
createdAt?: number;
|
|
17183
17263
|
updatedAt?: number;
|
|
@@ -17245,10 +17325,6 @@ declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: Abor
|
|
|
17245
17325
|
*/
|
|
17246
17326
|
encryptedValue: string;
|
|
17247
17327
|
} | null;
|
|
17248
|
-
/**
|
|
17249
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
17250
|
-
*/
|
|
17251
|
-
decrypted?: boolean;
|
|
17252
17328
|
comment?: string;
|
|
17253
17329
|
customEnvironmentIds?: string[];
|
|
17254
17330
|
}>;
|
|
@@ -21341,11 +21417,68 @@ declare const operationsByTag: {
|
|
|
21341
21417
|
getProject: (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
21342
21418
|
updateProject: (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
21343
21419
|
deleteProject: (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
21344
|
-
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
|
+
}>;
|
|
21345
21477
|
getProjectDomain: (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
21346
21478
|
updateProjectDomain: (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
21347
21479
|
removeProjectDomain: (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
21348
21480
|
addProjectDomain: (variables: AddProjectDomainVariables, signal?: AbortSignal) => Promise<AddProjectDomainResponse>;
|
|
21481
|
+
moveProjectDomain: (variables: MoveProjectDomainVariables, signal?: AbortSignal) => Promise<MoveProjectDomainResponse>;
|
|
21349
21482
|
verifyProjectDomain: (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
21350
21483
|
filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
21351
21484
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
@@ -21354,9 +21487,11 @@ declare const operationsByTag: {
|
|
|
21354
21487
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21355
21488
|
*/
|
|
21356
21489
|
sunsetSecretId?: string;
|
|
21490
|
+
decrypted?: boolean;
|
|
21491
|
+
value?: string;
|
|
21492
|
+
vsmValue?: string;
|
|
21357
21493
|
id?: string;
|
|
21358
21494
|
key?: string;
|
|
21359
|
-
value?: string;
|
|
21360
21495
|
configurationId?: string | null;
|
|
21361
21496
|
createdAt?: number;
|
|
21362
21497
|
updatedAt?: number;
|
|
@@ -21424,13 +21559,8 @@ declare const operationsByTag: {
|
|
|
21424
21559
|
*/
|
|
21425
21560
|
encryptedValue: string;
|
|
21426
21561
|
} | null;
|
|
21427
|
-
/**
|
|
21428
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21429
|
-
*/
|
|
21430
|
-
decrypted?: boolean;
|
|
21431
21562
|
comment?: string;
|
|
21432
21563
|
customEnvironmentIds?: string[];
|
|
21433
|
-
vsmValue?: string;
|
|
21434
21564
|
system?: boolean;
|
|
21435
21565
|
} | {
|
|
21436
21566
|
envs: {
|
|
@@ -21440,9 +21570,11 @@ declare const operationsByTag: {
|
|
|
21440
21570
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21441
21571
|
*/
|
|
21442
21572
|
sunsetSecretId?: string;
|
|
21573
|
+
decrypted?: boolean;
|
|
21574
|
+
value?: string;
|
|
21575
|
+
vsmValue?: string;
|
|
21443
21576
|
id?: string;
|
|
21444
21577
|
key?: string;
|
|
21445
|
-
value?: string;
|
|
21446
21578
|
configurationId?: string | null;
|
|
21447
21579
|
createdAt?: number;
|
|
21448
21580
|
updatedAt?: number;
|
|
@@ -21510,13 +21642,8 @@ declare const operationsByTag: {
|
|
|
21510
21642
|
*/
|
|
21511
21643
|
encryptedValue: string;
|
|
21512
21644
|
} | null;
|
|
21513
|
-
/**
|
|
21514
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21515
|
-
*/
|
|
21516
|
-
decrypted?: boolean;
|
|
21517
21645
|
comment?: string;
|
|
21518
21646
|
customEnvironmentIds?: string[];
|
|
21519
|
-
vsmValue?: string;
|
|
21520
21647
|
system?: boolean;
|
|
21521
21648
|
}[];
|
|
21522
21649
|
pagination: Pagination;
|
|
@@ -21528,9 +21655,11 @@ declare const operationsByTag: {
|
|
|
21528
21655
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21529
21656
|
*/
|
|
21530
21657
|
sunsetSecretId?: string;
|
|
21658
|
+
decrypted?: boolean;
|
|
21659
|
+
value?: string;
|
|
21660
|
+
vsmValue?: string;
|
|
21531
21661
|
id?: string;
|
|
21532
21662
|
key?: string;
|
|
21533
|
-
value?: string;
|
|
21534
21663
|
configurationId?: string | null;
|
|
21535
21664
|
createdAt?: number;
|
|
21536
21665
|
updatedAt?: number;
|
|
@@ -21598,13 +21727,8 @@ declare const operationsByTag: {
|
|
|
21598
21727
|
*/
|
|
21599
21728
|
encryptedValue: string;
|
|
21600
21729
|
} | null;
|
|
21601
|
-
/**
|
|
21602
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21603
|
-
*/
|
|
21604
|
-
decrypted?: boolean;
|
|
21605
21730
|
comment?: string;
|
|
21606
21731
|
customEnvironmentIds?: string[];
|
|
21607
|
-
vsmValue?: string;
|
|
21608
21732
|
system?: boolean;
|
|
21609
21733
|
}[];
|
|
21610
21734
|
}>;
|
|
@@ -21695,9 +21819,11 @@ declare const operationsByTag: {
|
|
|
21695
21819
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21696
21820
|
*/
|
|
21697
21821
|
sunsetSecretId?: string;
|
|
21822
|
+
decrypted?: boolean;
|
|
21823
|
+
value: string;
|
|
21824
|
+
vsmValue?: string;
|
|
21698
21825
|
id?: string;
|
|
21699
21826
|
key: string;
|
|
21700
|
-
value: string;
|
|
21701
21827
|
configurationId?: string | null;
|
|
21702
21828
|
createdAt?: number;
|
|
21703
21829
|
updatedAt?: number;
|
|
@@ -21765,13 +21891,8 @@ declare const operationsByTag: {
|
|
|
21765
21891
|
*/
|
|
21766
21892
|
encryptedValue: string;
|
|
21767
21893
|
} | null;
|
|
21768
|
-
/**
|
|
21769
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21770
|
-
*/
|
|
21771
|
-
decrypted?: boolean;
|
|
21772
21894
|
comment?: string;
|
|
21773
21895
|
customEnvironmentIds?: string[];
|
|
21774
|
-
vsmValue?: string;
|
|
21775
21896
|
} | {
|
|
21776
21897
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21777
21898
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -21779,9 +21900,10 @@ declare const operationsByTag: {
|
|
|
21779
21900
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21780
21901
|
*/
|
|
21781
21902
|
sunsetSecretId?: string;
|
|
21903
|
+
decrypted?: boolean;
|
|
21904
|
+
value: string;
|
|
21782
21905
|
id?: string;
|
|
21783
21906
|
key: string;
|
|
21784
|
-
value: string;
|
|
21785
21907
|
configurationId?: string | null;
|
|
21786
21908
|
createdAt?: number;
|
|
21787
21909
|
updatedAt?: number;
|
|
@@ -21849,10 +21971,6 @@ declare const operationsByTag: {
|
|
|
21849
21971
|
*/
|
|
21850
21972
|
encryptedValue: string;
|
|
21851
21973
|
} | null;
|
|
21852
|
-
/**
|
|
21853
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21854
|
-
*/
|
|
21855
|
-
decrypted?: boolean;
|
|
21856
21974
|
comment?: string;
|
|
21857
21975
|
customEnvironmentIds?: string[];
|
|
21858
21976
|
}>;
|
|
@@ -21864,9 +21982,11 @@ declare const operationsByTag: {
|
|
|
21864
21982
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21865
21983
|
*/
|
|
21866
21984
|
sunsetSecretId?: string;
|
|
21985
|
+
decrypted?: boolean;
|
|
21986
|
+
value: string;
|
|
21987
|
+
vsmValue?: string;
|
|
21867
21988
|
id?: string;
|
|
21868
21989
|
key: string;
|
|
21869
|
-
value: string;
|
|
21870
21990
|
configurationId?: string | null;
|
|
21871
21991
|
createdAt?: number;
|
|
21872
21992
|
updatedAt?: number;
|
|
@@ -21934,13 +22054,8 @@ declare const operationsByTag: {
|
|
|
21934
22054
|
*/
|
|
21935
22055
|
encryptedValue: string;
|
|
21936
22056
|
} | null;
|
|
21937
|
-
/**
|
|
21938
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
21939
|
-
*/
|
|
21940
|
-
decrypted?: boolean;
|
|
21941
22057
|
comment?: string;
|
|
21942
22058
|
customEnvironmentIds?: string[];
|
|
21943
|
-
vsmValue?: string;
|
|
21944
22059
|
} | {
|
|
21945
22060
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21946
22061
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -21948,9 +22063,11 @@ declare const operationsByTag: {
|
|
|
21948
22063
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21949
22064
|
*/
|
|
21950
22065
|
sunsetSecretId?: string;
|
|
22066
|
+
decrypted?: boolean;
|
|
22067
|
+
value: string;
|
|
22068
|
+
vsmValue?: string;
|
|
21951
22069
|
id?: string;
|
|
21952
22070
|
key: string;
|
|
21953
|
-
value: string;
|
|
21954
22071
|
configurationId?: string | null;
|
|
21955
22072
|
createdAt?: number;
|
|
21956
22073
|
updatedAt?: number;
|
|
@@ -22018,13 +22135,8 @@ declare const operationsByTag: {
|
|
|
22018
22135
|
*/
|
|
22019
22136
|
encryptedValue: string;
|
|
22020
22137
|
} | null;
|
|
22021
|
-
/**
|
|
22022
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
22023
|
-
*/
|
|
22024
|
-
decrypted?: boolean;
|
|
22025
22138
|
comment?: string;
|
|
22026
22139
|
customEnvironmentIds?: string[];
|
|
22027
|
-
vsmValue?: string;
|
|
22028
22140
|
} | {
|
|
22029
22141
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22030
22142
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
@@ -22032,9 +22144,11 @@ declare const operationsByTag: {
|
|
|
22032
22144
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
22033
22145
|
*/
|
|
22034
22146
|
sunsetSecretId?: string;
|
|
22147
|
+
decrypted?: boolean;
|
|
22148
|
+
value: string;
|
|
22149
|
+
vsmValue?: string;
|
|
22035
22150
|
id?: string;
|
|
22036
22151
|
key: string;
|
|
22037
|
-
value: string;
|
|
22038
22152
|
configurationId?: string | null;
|
|
22039
22153
|
createdAt?: number;
|
|
22040
22154
|
updatedAt?: number;
|
|
@@ -22102,13 +22216,8 @@ declare const operationsByTag: {
|
|
|
22102
22216
|
*/
|
|
22103
22217
|
encryptedValue: string;
|
|
22104
22218
|
} | null;
|
|
22105
|
-
/**
|
|
22106
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
22107
|
-
*/
|
|
22108
|
-
decrypted?: boolean;
|
|
22109
22219
|
comment?: string;
|
|
22110
22220
|
customEnvironmentIds?: string[];
|
|
22111
|
-
vsmValue?: string;
|
|
22112
22221
|
}[]>;
|
|
22113
22222
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
22114
22223
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
@@ -22117,9 +22226,10 @@ declare const operationsByTag: {
|
|
|
22117
22226
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
22118
22227
|
*/
|
|
22119
22228
|
sunsetSecretId?: string;
|
|
22229
|
+
decrypted?: boolean;
|
|
22230
|
+
value: string;
|
|
22120
22231
|
id?: string;
|
|
22121
22232
|
key: string;
|
|
22122
|
-
value: string;
|
|
22123
22233
|
configurationId?: string | null;
|
|
22124
22234
|
createdAt?: number;
|
|
22125
22235
|
updatedAt?: number;
|
|
@@ -22187,10 +22297,6 @@ declare const operationsByTag: {
|
|
|
22187
22297
|
*/
|
|
22188
22298
|
encryptedValue: string;
|
|
22189
22299
|
} | null;
|
|
22190
|
-
/**
|
|
22191
|
-
* Whether `value` and `vsmValue` are decrypted.
|
|
22192
|
-
*/
|
|
22193
|
-
decrypted?: boolean;
|
|
22194
22300
|
comment?: string;
|
|
22195
22301
|
customEnvironmentIds?: string[];
|
|
22196
22302
|
}>;
|
|
@@ -22307,6 +22413,10 @@ declare const operationsByTag: {
|
|
|
22307
22413
|
aliasAssigned: boolean;
|
|
22308
22414
|
bootedAt: number;
|
|
22309
22415
|
buildingAt: number;
|
|
22416
|
+
/**
|
|
22417
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
22418
|
+
*/
|
|
22419
|
+
buildContainerFinishedAt?: number;
|
|
22310
22420
|
buildSkipped: boolean;
|
|
22311
22421
|
creator: {
|
|
22312
22422
|
uid: string;
|
|
@@ -22392,6 +22502,21 @@ declare const operationsByTag: {
|
|
|
22392
22502
|
ref?: string | null;
|
|
22393
22503
|
sha?: string;
|
|
22394
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;
|
|
22395
22520
|
} | {
|
|
22396
22521
|
type: "gitlab";
|
|
22397
22522
|
projectId: string | number;
|
|
@@ -22424,6 +22549,14 @@ declare const operationsByTag: {
|
|
|
22424
22549
|
repoId: number;
|
|
22425
22550
|
org?: string;
|
|
22426
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;
|
|
22427
22560
|
} | {
|
|
22428
22561
|
type: "gitlab";
|
|
22429
22562
|
ref: string;
|
|
@@ -22657,6 +22790,10 @@ declare const operationsByTag: {
|
|
|
22657
22790
|
aliasAssigned: boolean;
|
|
22658
22791
|
bootedAt: number;
|
|
22659
22792
|
buildingAt: number;
|
|
22793
|
+
/**
|
|
22794
|
+
* Since April 2025 it necessary for On-Demand Concurrency Minutes calculation
|
|
22795
|
+
*/
|
|
22796
|
+
buildContainerFinishedAt?: number;
|
|
22660
22797
|
buildSkipped: boolean;
|
|
22661
22798
|
creator: {
|
|
22662
22799
|
uid: string;
|
|
@@ -22742,6 +22879,21 @@ declare const operationsByTag: {
|
|
|
22742
22879
|
ref?: string | null;
|
|
22743
22880
|
sha?: string;
|
|
22744
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;
|
|
22745
22897
|
} | {
|
|
22746
22898
|
type: "gitlab";
|
|
22747
22899
|
projectId: string | number;
|
|
@@ -22774,6 +22926,14 @@ declare const operationsByTag: {
|
|
|
22774
22926
|
repoId: number;
|
|
22775
22927
|
org?: string;
|
|
22776
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;
|
|
22777
22937
|
} | {
|
|
22778
22938
|
type: "gitlab";
|
|
22779
22939
|
ref: string;
|
|
@@ -23290,29 +23450,6 @@ declare const operationsByTag: {
|
|
|
23290
23450
|
canConfigureOpenTelemetry?: boolean;
|
|
23291
23451
|
}>;
|
|
23292
23452
|
deleteConfiguration: (variables: DeleteConfigurationVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
23293
|
-
gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
23294
|
-
searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23295
|
-
gitAccount: {
|
|
23296
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
23297
|
-
namespaceId: string | number | null;
|
|
23298
|
-
};
|
|
23299
|
-
repos: {
|
|
23300
|
-
id: string | number;
|
|
23301
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
23302
|
-
url: string;
|
|
23303
|
-
name: string;
|
|
23304
|
-
slug: string;
|
|
23305
|
-
namespace: string;
|
|
23306
|
-
owner: {
|
|
23307
|
-
id: string | number;
|
|
23308
|
-
name: string;
|
|
23309
|
-
};
|
|
23310
|
-
ownerType: "user" | "team";
|
|
23311
|
-
private: boolean;
|
|
23312
|
-
defaultBranch: string;
|
|
23313
|
-
updatedAt: number;
|
|
23314
|
-
}[];
|
|
23315
|
-
}>;
|
|
23316
23453
|
};
|
|
23317
23454
|
domains: {
|
|
23318
23455
|
buyDomain: (variables: BuyDomainVariables, signal?: AbortSignal) => Promise<BuyDomainResponse>;
|
|
@@ -23383,10 +23520,7 @@ declare const operationsByTag: {
|
|
|
23383
23520
|
removeRecord: (variables: RemoveRecordVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
23384
23521
|
};
|
|
23385
23522
|
logDrains: {
|
|
23386
|
-
getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
23387
23523
|
deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
23388
|
-
getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
23389
|
-
createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
23390
23524
|
getIntegrationLogDrains: (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
23391
23525
|
createLogDrain: (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
23392
23526
|
deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -23949,11 +24083,6 @@ type components_CreateCheckQueryParams = CreateCheckQueryParams;
|
|
|
23949
24083
|
type components_CreateCheckRequestBody = CreateCheckRequestBody;
|
|
23950
24084
|
type components_CreateCheckResponse = CreateCheckResponse;
|
|
23951
24085
|
type components_CreateCheckVariables = CreateCheckVariables;
|
|
23952
|
-
type components_CreateConfigurableLogDrainError = CreateConfigurableLogDrainError;
|
|
23953
|
-
type components_CreateConfigurableLogDrainQueryParams = CreateConfigurableLogDrainQueryParams;
|
|
23954
|
-
type components_CreateConfigurableLogDrainRequestBody = CreateConfigurableLogDrainRequestBody;
|
|
23955
|
-
type components_CreateConfigurableLogDrainResponse = CreateConfigurableLogDrainResponse;
|
|
23956
|
-
type components_CreateConfigurableLogDrainVariables = CreateConfigurableLogDrainVariables;
|
|
23957
24086
|
type components_CreateCustomEnvironmentError = CreateCustomEnvironmentError;
|
|
23958
24087
|
type components_CreateCustomEnvironmentPathParams = CreateCustomEnvironmentPathParams;
|
|
23959
24088
|
type components_CreateCustomEnvironmentQueryParams = CreateCustomEnvironmentQueryParams;
|
|
@@ -24138,10 +24267,6 @@ type components_GetAllChecksPathParams = GetAllChecksPathParams;
|
|
|
24138
24267
|
type components_GetAllChecksQueryParams = GetAllChecksQueryParams;
|
|
24139
24268
|
type components_GetAllChecksResponse = GetAllChecksResponse;
|
|
24140
24269
|
type components_GetAllChecksVariables = GetAllChecksVariables;
|
|
24141
|
-
type components_GetAllLogDrainsError = GetAllLogDrainsError;
|
|
24142
|
-
type components_GetAllLogDrainsQueryParams = GetAllLogDrainsQueryParams;
|
|
24143
|
-
type components_GetAllLogDrainsResponse = GetAllLogDrainsResponse;
|
|
24144
|
-
type components_GetAllLogDrainsVariables = GetAllLogDrainsVariables;
|
|
24145
24270
|
type components_GetAuthTokenError = GetAuthTokenError;
|
|
24146
24271
|
type components_GetAuthTokenPathParams = GetAuthTokenPathParams;
|
|
24147
24272
|
type components_GetAuthTokenResponse = GetAuthTokenResponse;
|
|
@@ -24165,11 +24290,6 @@ type components_GetCheckPathParams = GetCheckPathParams;
|
|
|
24165
24290
|
type components_GetCheckQueryParams = GetCheckQueryParams;
|
|
24166
24291
|
type components_GetCheckResponse = GetCheckResponse;
|
|
24167
24292
|
type components_GetCheckVariables = GetCheckVariables;
|
|
24168
|
-
type components_GetConfigurableLogDrainError = GetConfigurableLogDrainError;
|
|
24169
|
-
type components_GetConfigurableLogDrainPathParams = GetConfigurableLogDrainPathParams;
|
|
24170
|
-
type components_GetConfigurableLogDrainQueryParams = GetConfigurableLogDrainQueryParams;
|
|
24171
|
-
type components_GetConfigurableLogDrainResponse = GetConfigurableLogDrainResponse;
|
|
24172
|
-
type components_GetConfigurableLogDrainVariables = GetConfigurableLogDrainVariables;
|
|
24173
24293
|
type components_GetConfigurationError = GetConfigurationError;
|
|
24174
24294
|
type components_GetConfigurationPathParams = GetConfigurationPathParams;
|
|
24175
24295
|
type components_GetConfigurationQueryParams = GetConfigurationQueryParams;
|
|
@@ -24277,7 +24397,6 @@ type components_GetProjectDomainVariables = GetProjectDomainVariables;
|
|
|
24277
24397
|
type components_GetProjectDomainsError = GetProjectDomainsError;
|
|
24278
24398
|
type components_GetProjectDomainsPathParams = GetProjectDomainsPathParams;
|
|
24279
24399
|
type components_GetProjectDomainsQueryParams = GetProjectDomainsQueryParams;
|
|
24280
|
-
type components_GetProjectDomainsResponse = GetProjectDomainsResponse;
|
|
24281
24400
|
type components_GetProjectDomainsVariables = GetProjectDomainsVariables;
|
|
24282
24401
|
type components_GetProjectEnvError = GetProjectEnvError;
|
|
24283
24402
|
type components_GetProjectEnvPathParams = GetProjectEnvPathParams;
|
|
@@ -24338,10 +24457,6 @@ type components_GetWebhookVariables = GetWebhookVariables;
|
|
|
24338
24457
|
type components_GetWebhooksError = GetWebhooksError;
|
|
24339
24458
|
type components_GetWebhooksQueryParams = GetWebhooksQueryParams;
|
|
24340
24459
|
type components_GetWebhooksVariables = GetWebhooksVariables;
|
|
24341
|
-
type components_GitNamespacesError = GitNamespacesError;
|
|
24342
|
-
type components_GitNamespacesQueryParams = GitNamespacesQueryParams;
|
|
24343
|
-
type components_GitNamespacesResponse = GitNamespacesResponse;
|
|
24344
|
-
type components_GitNamespacesVariables = GitNamespacesVariables;
|
|
24345
24460
|
type components_ImportResourceError = ImportResourceError;
|
|
24346
24461
|
type components_ImportResourcePathParams = ImportResourcePathParams;
|
|
24347
24462
|
type components_ImportResourceRequestBody = ImportResourceRequestBody;
|
|
@@ -24397,6 +24512,12 @@ type components_ListUserEventsError = ListUserEventsError;
|
|
|
24397
24512
|
type components_ListUserEventsQueryParams = ListUserEventsQueryParams;
|
|
24398
24513
|
type components_ListUserEventsResponse = ListUserEventsResponse;
|
|
24399
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;
|
|
24400
24521
|
type components_PatchDataCacheBillingSettingsError = PatchDataCacheBillingSettingsError;
|
|
24401
24522
|
type components_PatchDataCacheBillingSettingsRequestBody = PatchDataCacheBillingSettingsRequestBody;
|
|
24402
24523
|
type components_PatchDataCacheBillingSettingsResponse = PatchDataCacheBillingSettingsResponse;
|
|
@@ -24515,9 +24636,6 @@ type components_RerequestCheckError = RerequestCheckError;
|
|
|
24515
24636
|
type components_RerequestCheckPathParams = RerequestCheckPathParams;
|
|
24516
24637
|
type components_RerequestCheckQueryParams = RerequestCheckQueryParams;
|
|
24517
24638
|
type components_RerequestCheckVariables = RerequestCheckVariables;
|
|
24518
|
-
type components_SearchRepoError = SearchRepoError;
|
|
24519
|
-
type components_SearchRepoQueryParams = SearchRepoQueryParams;
|
|
24520
|
-
type components_SearchRepoVariables = SearchRepoVariables;
|
|
24521
24639
|
type components_StatusError = StatusError;
|
|
24522
24640
|
type components_StatusQueryParams = StatusQueryParams;
|
|
24523
24641
|
type components_StatusResponse = StatusResponse;
|
|
@@ -24661,7 +24779,6 @@ declare const components_createAccessGroup: typeof createAccessGroup;
|
|
|
24661
24779
|
declare const components_createAccessGroupProject: typeof createAccessGroupProject;
|
|
24662
24780
|
declare const components_createAuthToken: typeof createAuthToken;
|
|
24663
24781
|
declare const components_createCheck: typeof createCheck;
|
|
24664
|
-
declare const components_createConfigurableLogDrain: typeof createConfigurableLogDrain;
|
|
24665
24782
|
declare const components_createCustomEnvironment: typeof createCustomEnvironment;
|
|
24666
24783
|
declare const components_createDeployment: typeof createDeployment;
|
|
24667
24784
|
declare const components_createEdgeConfig: typeof createEdgeConfig;
|
|
@@ -24703,14 +24820,12 @@ declare const components_getAccountInfo: typeof getAccountInfo;
|
|
|
24703
24820
|
declare const components_getActiveAttackStatus: typeof getActiveAttackStatus;
|
|
24704
24821
|
declare const components_getAlias: typeof getAlias;
|
|
24705
24822
|
declare const components_getAllChecks: typeof getAllChecks;
|
|
24706
|
-
declare const components_getAllLogDrains: typeof getAllLogDrains;
|
|
24707
24823
|
declare const components_getAuthToken: typeof getAuthToken;
|
|
24708
24824
|
declare const components_getAuthUser: typeof getAuthUser;
|
|
24709
24825
|
declare const components_getBypassIp: typeof getBypassIp;
|
|
24710
24826
|
declare const components_getCertById: typeof getCertById;
|
|
24711
24827
|
declare const components_getCerts: typeof getCerts;
|
|
24712
24828
|
declare const components_getCheck: typeof getCheck;
|
|
24713
|
-
declare const components_getConfigurableLogDrain: typeof getConfigurableLogDrain;
|
|
24714
24829
|
declare const components_getConfiguration: typeof getConfiguration;
|
|
24715
24830
|
declare const components_getConfigurations: typeof getConfigurations;
|
|
24716
24831
|
declare const components_getCustomEnvironment: typeof getCustomEnvironment;
|
|
@@ -24751,7 +24866,6 @@ declare const components_getTeams: typeof getTeams;
|
|
|
24751
24866
|
declare const components_getV9ProjectsIdOrNameCustomEnvironments: typeof getV9ProjectsIdOrNameCustomEnvironments;
|
|
24752
24867
|
declare const components_getWebhook: typeof getWebhook;
|
|
24753
24868
|
declare const components_getWebhooks: typeof getWebhooks;
|
|
24754
|
-
declare const components_gitNamespaces: typeof gitNamespaces;
|
|
24755
24869
|
declare const components_importResource: typeof importResource;
|
|
24756
24870
|
declare const components_inviteUserToTeam: typeof inviteUserToTeam;
|
|
24757
24871
|
declare const components_issueCert: typeof issueCert;
|
|
@@ -24765,6 +24879,7 @@ declare const components_listDeploymentAliases: typeof listDeploymentAliases;
|
|
|
24765
24879
|
declare const components_listDeploymentFiles: typeof listDeploymentFiles;
|
|
24766
24880
|
declare const components_listPromoteAliases: typeof listPromoteAliases;
|
|
24767
24881
|
declare const components_listUserEvents: typeof listUserEvents;
|
|
24882
|
+
declare const components_moveProjectDomain: typeof moveProjectDomain;
|
|
24768
24883
|
declare const components_operationsByTag: typeof operationsByTag;
|
|
24769
24884
|
declare const components_patchDataCacheBillingSettings: typeof patchDataCacheBillingSettings;
|
|
24770
24885
|
declare const components_patchDomain: typeof patchDomain;
|
|
@@ -24792,7 +24907,6 @@ declare const components_requestAccessToTeam: typeof requestAccessToTeam;
|
|
|
24792
24907
|
declare const components_requestDelete: typeof requestDelete;
|
|
24793
24908
|
declare const components_requestPromote: typeof requestPromote;
|
|
24794
24909
|
declare const components_rerequestCheck: typeof rerequestCheck;
|
|
24795
|
-
declare const components_searchRepo: typeof searchRepo;
|
|
24796
24910
|
declare const components_status: typeof status;
|
|
24797
24911
|
declare const components_submitBillingData: typeof submitBillingData;
|
|
24798
24912
|
declare const components_submitInvoice: typeof submitInvoice;
|
|
@@ -24820,7 +24934,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
24820
24934
|
declare const components_uploadFile: typeof uploadFile;
|
|
24821
24935
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
24822
24936
|
declare namespace components {
|
|
24823
|
-
export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateConfigurableLogDrainError as CreateConfigurableLogDrainError, type components_CreateConfigurableLogDrainQueryParams as CreateConfigurableLogDrainQueryParams, type components_CreateConfigurableLogDrainRequestBody as CreateConfigurableLogDrainRequestBody, type components_CreateConfigurableLogDrainResponse as CreateConfigurableLogDrainResponse, type components_CreateConfigurableLogDrainVariables as CreateConfigurableLogDrainVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestRequestBody as CreateProjectTransferRequestRequestBody, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAllLogDrainsError as GetAllLogDrainsError, type components_GetAllLogDrainsQueryParams as GetAllLogDrainsQueryParams, type components_GetAllLogDrainsResponse as GetAllLogDrainsResponse, type components_GetAllLogDrainsVariables as GetAllLogDrainsVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurableLogDrainError as GetConfigurableLogDrainError, type components_GetConfigurableLogDrainPathParams as GetConfigurableLogDrainPathParams, type components_GetConfigurableLogDrainQueryParams as GetConfigurableLogDrainQueryParams, type components_GetConfigurableLogDrainResponse as GetConfigurableLogDrainResponse, type components_GetConfigurableLogDrainVariables as GetConfigurableLogDrainVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_GitNamespacesError as GitNamespacesError, type components_GitNamespacesQueryParams as GitNamespacesQueryParams, type components_GitNamespacesResponse as GitNamespacesResponse, type components_GitNamespacesVariables as GitNamespacesVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_SearchRepoError as SearchRepoError, type components_SearchRepoQueryParams as SearchRepoQueryParams, type components_SearchRepoVariables as SearchRepoVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createConfigurableLogDrain as createConfigurableLogDrain, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAllLogDrains as getAllLogDrains, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfigurableLogDrain as getConfigurableLogDrain, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_gitNamespaces as gitNamespaces, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_searchRepo as searchRepo, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
|
|
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 };
|
|
24824
24938
|
}
|
|
24825
24939
|
|
|
24826
24940
|
declare const operationsByPath: {
|
|
@@ -24944,6 +25058,7 @@ declare const operationsByPath: {
|
|
|
24944
25058
|
aliasAssigned: boolean;
|
|
24945
25059
|
bootedAt: number;
|
|
24946
25060
|
buildingAt: number;
|
|
25061
|
+
buildContainerFinishedAt?: number;
|
|
24947
25062
|
buildSkipped: boolean;
|
|
24948
25063
|
creator: {
|
|
24949
25064
|
uid: string;
|
|
@@ -25020,6 +25135,21 @@ declare const operationsByPath: {
|
|
|
25020
25135
|
ref?: string | null;
|
|
25021
25136
|
sha?: string;
|
|
25022
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;
|
|
25023
25153
|
} | {
|
|
25024
25154
|
type: "gitlab";
|
|
25025
25155
|
projectId: string | number;
|
|
@@ -25052,6 +25182,14 @@ declare const operationsByPath: {
|
|
|
25052
25182
|
repoId: number;
|
|
25053
25183
|
org?: string;
|
|
25054
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;
|
|
25055
25193
|
} | {
|
|
25056
25194
|
type: "gitlab";
|
|
25057
25195
|
ref: string;
|
|
@@ -25237,6 +25375,7 @@ declare const operationsByPath: {
|
|
|
25237
25375
|
aliasAssigned: boolean;
|
|
25238
25376
|
bootedAt: number;
|
|
25239
25377
|
buildingAt: number;
|
|
25378
|
+
buildContainerFinishedAt?: number;
|
|
25240
25379
|
buildSkipped: boolean;
|
|
25241
25380
|
creator: {
|
|
25242
25381
|
uid: string;
|
|
@@ -25313,6 +25452,21 @@ declare const operationsByPath: {
|
|
|
25313
25452
|
ref?: string | null;
|
|
25314
25453
|
sha?: string;
|
|
25315
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;
|
|
25316
25470
|
} | {
|
|
25317
25471
|
type: "gitlab";
|
|
25318
25472
|
projectId: string | number;
|
|
@@ -25345,6 +25499,14 @@ declare const operationsByPath: {
|
|
|
25345
25499
|
repoId: number;
|
|
25346
25500
|
org?: string;
|
|
25347
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;
|
|
25348
25510
|
} | {
|
|
25349
25511
|
type: "gitlab";
|
|
25350
25512
|
ref: string;
|
|
@@ -25449,10 +25611,7 @@ declare const operationsByPath: {
|
|
|
25449
25611
|
zone?: boolean;
|
|
25450
25612
|
}>;
|
|
25451
25613
|
'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
25452
|
-
'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
25453
25614
|
'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25454
|
-
'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
25455
|
-
'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
25456
25615
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
25457
25616
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
25458
25617
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -25676,29 +25835,6 @@ declare const operationsByPath: {
|
|
|
25676
25835
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
25677
25836
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
25678
25837
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25679
|
-
'GET /v1/integrations/git-namespaces': (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
25680
|
-
'GET /v1/integrations/search-repo': (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
25681
|
-
gitAccount: {
|
|
25682
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
25683
|
-
namespaceId: string | number | null;
|
|
25684
|
-
};
|
|
25685
|
-
repos: {
|
|
25686
|
-
id: string | number;
|
|
25687
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
25688
|
-
url: string;
|
|
25689
|
-
name: string;
|
|
25690
|
-
slug: string;
|
|
25691
|
-
namespace: string;
|
|
25692
|
-
owner: {
|
|
25693
|
-
id: string | number;
|
|
25694
|
-
name: string;
|
|
25695
|
-
};
|
|
25696
|
-
ownerType: "user" | "team";
|
|
25697
|
-
private: boolean;
|
|
25698
|
-
defaultBranch: string;
|
|
25699
|
-
updatedAt: number;
|
|
25700
|
-
}[];
|
|
25701
|
-
}>;
|
|
25702
25838
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25703
25839
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
25704
25840
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -25734,19 +25870,66 @@ declare const operationsByPath: {
|
|
|
25734
25870
|
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25735
25871
|
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25736
25872
|
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25737
|
-
'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
|
+
}>;
|
|
25738
25918
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
25739
25919
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
25740
25920
|
'DELETE /v9/projects/{idOrName}/domains/{domain}': (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
25741
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>;
|
|
25742
25923
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
25743
25924
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
25744
25925
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25745
25926
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25746
25927
|
sunsetSecretId?: string;
|
|
25928
|
+
decrypted?: boolean;
|
|
25929
|
+
value?: string;
|
|
25930
|
+
vsmValue?: string;
|
|
25747
25931
|
id?: string;
|
|
25748
25932
|
key?: string;
|
|
25749
|
-
value?: string;
|
|
25750
25933
|
configurationId?: string | null;
|
|
25751
25934
|
createdAt?: number;
|
|
25752
25935
|
updatedAt?: number;
|
|
@@ -25808,19 +25991,19 @@ declare const operationsByPath: {
|
|
|
25808
25991
|
type: "flags-secret";
|
|
25809
25992
|
encryptedValue: string;
|
|
25810
25993
|
} | null;
|
|
25811
|
-
decrypted?: boolean;
|
|
25812
25994
|
comment?: string;
|
|
25813
25995
|
customEnvironmentIds?: string[];
|
|
25814
|
-
vsmValue?: string;
|
|
25815
25996
|
system?: boolean;
|
|
25816
25997
|
} | {
|
|
25817
25998
|
envs: {
|
|
25818
25999
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25819
26000
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25820
26001
|
sunsetSecretId?: string;
|
|
26002
|
+
decrypted?: boolean;
|
|
26003
|
+
value?: string;
|
|
26004
|
+
vsmValue?: string;
|
|
25821
26005
|
id?: string;
|
|
25822
26006
|
key?: string;
|
|
25823
|
-
value?: string;
|
|
25824
26007
|
configurationId?: string | null;
|
|
25825
26008
|
createdAt?: number;
|
|
25826
26009
|
updatedAt?: number;
|
|
@@ -25882,10 +26065,8 @@ declare const operationsByPath: {
|
|
|
25882
26065
|
type: "flags-secret";
|
|
25883
26066
|
encryptedValue: string;
|
|
25884
26067
|
} | null;
|
|
25885
|
-
decrypted?: boolean;
|
|
25886
26068
|
comment?: string;
|
|
25887
26069
|
customEnvironmentIds?: string[];
|
|
25888
|
-
vsmValue?: string;
|
|
25889
26070
|
system?: boolean;
|
|
25890
26071
|
}[];
|
|
25891
26072
|
pagination: Pagination;
|
|
@@ -25894,9 +26075,11 @@ declare const operationsByPath: {
|
|
|
25894
26075
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25895
26076
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25896
26077
|
sunsetSecretId?: string;
|
|
26078
|
+
decrypted?: boolean;
|
|
26079
|
+
value?: string;
|
|
26080
|
+
vsmValue?: string;
|
|
25897
26081
|
id?: string;
|
|
25898
26082
|
key?: string;
|
|
25899
|
-
value?: string;
|
|
25900
26083
|
configurationId?: string | null;
|
|
25901
26084
|
createdAt?: number;
|
|
25902
26085
|
updatedAt?: number;
|
|
@@ -25958,10 +26141,8 @@ declare const operationsByPath: {
|
|
|
25958
26141
|
type: "flags-secret";
|
|
25959
26142
|
encryptedValue: string;
|
|
25960
26143
|
} | null;
|
|
25961
|
-
decrypted?: boolean;
|
|
25962
26144
|
comment?: string;
|
|
25963
26145
|
customEnvironmentIds?: string[];
|
|
25964
|
-
vsmValue?: string;
|
|
25965
26146
|
system?: boolean;
|
|
25966
26147
|
}[];
|
|
25967
26148
|
}>;
|
|
@@ -26040,9 +26221,11 @@ declare const operationsByPath: {
|
|
|
26040
26221
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26041
26222
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26042
26223
|
sunsetSecretId?: string;
|
|
26224
|
+
decrypted?: boolean;
|
|
26225
|
+
value: string;
|
|
26226
|
+
vsmValue?: string;
|
|
26043
26227
|
id?: string;
|
|
26044
26228
|
key: string;
|
|
26045
|
-
value: string;
|
|
26046
26229
|
configurationId?: string | null;
|
|
26047
26230
|
createdAt?: number;
|
|
26048
26231
|
updatedAt?: number;
|
|
@@ -26104,17 +26287,16 @@ declare const operationsByPath: {
|
|
|
26104
26287
|
type: "flags-secret";
|
|
26105
26288
|
encryptedValue: string;
|
|
26106
26289
|
} | null;
|
|
26107
|
-
decrypted?: boolean;
|
|
26108
26290
|
comment?: string;
|
|
26109
26291
|
customEnvironmentIds?: string[];
|
|
26110
|
-
vsmValue?: string;
|
|
26111
26292
|
} | {
|
|
26112
26293
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26113
26294
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26114
26295
|
sunsetSecretId?: string;
|
|
26296
|
+
decrypted?: boolean;
|
|
26297
|
+
value: string;
|
|
26115
26298
|
id?: string;
|
|
26116
26299
|
key: string;
|
|
26117
|
-
value: string;
|
|
26118
26300
|
configurationId?: string | null;
|
|
26119
26301
|
createdAt?: number;
|
|
26120
26302
|
updatedAt?: number;
|
|
@@ -26176,7 +26358,6 @@ declare const operationsByPath: {
|
|
|
26176
26358
|
type: "flags-secret";
|
|
26177
26359
|
encryptedValue: string;
|
|
26178
26360
|
} | null;
|
|
26179
|
-
decrypted?: boolean;
|
|
26180
26361
|
comment?: string;
|
|
26181
26362
|
customEnvironmentIds?: string[];
|
|
26182
26363
|
}>;
|
|
@@ -26185,9 +26366,11 @@ declare const operationsByPath: {
|
|
|
26185
26366
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26186
26367
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26187
26368
|
sunsetSecretId?: string;
|
|
26369
|
+
decrypted?: boolean;
|
|
26370
|
+
value: string;
|
|
26371
|
+
vsmValue?: string;
|
|
26188
26372
|
id?: string;
|
|
26189
26373
|
key: string;
|
|
26190
|
-
value: string;
|
|
26191
26374
|
configurationId?: string | null;
|
|
26192
26375
|
createdAt?: number;
|
|
26193
26376
|
updatedAt?: number;
|
|
@@ -26249,17 +26432,17 @@ declare const operationsByPath: {
|
|
|
26249
26432
|
type: "flags-secret";
|
|
26250
26433
|
encryptedValue: string;
|
|
26251
26434
|
} | null;
|
|
26252
|
-
decrypted?: boolean;
|
|
26253
26435
|
comment?: string;
|
|
26254
26436
|
customEnvironmentIds?: string[];
|
|
26255
|
-
vsmValue?: string;
|
|
26256
26437
|
} | {
|
|
26257
26438
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26258
26439
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26259
26440
|
sunsetSecretId?: string;
|
|
26441
|
+
decrypted?: boolean;
|
|
26442
|
+
value: string;
|
|
26443
|
+
vsmValue?: string;
|
|
26260
26444
|
id?: string;
|
|
26261
26445
|
key: string;
|
|
26262
|
-
value: string;
|
|
26263
26446
|
configurationId?: string | null;
|
|
26264
26447
|
createdAt?: number;
|
|
26265
26448
|
updatedAt?: number;
|
|
@@ -26321,17 +26504,17 @@ declare const operationsByPath: {
|
|
|
26321
26504
|
type: "flags-secret";
|
|
26322
26505
|
encryptedValue: string;
|
|
26323
26506
|
} | null;
|
|
26324
|
-
decrypted?: boolean;
|
|
26325
26507
|
comment?: string;
|
|
26326
26508
|
customEnvironmentIds?: string[];
|
|
26327
|
-
vsmValue?: string;
|
|
26328
26509
|
} | {
|
|
26329
26510
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26330
26511
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26331
26512
|
sunsetSecretId?: string;
|
|
26513
|
+
decrypted?: boolean;
|
|
26514
|
+
value: string;
|
|
26515
|
+
vsmValue?: string;
|
|
26332
26516
|
id?: string;
|
|
26333
26517
|
key: string;
|
|
26334
|
-
value: string;
|
|
26335
26518
|
configurationId?: string | null;
|
|
26336
26519
|
createdAt?: number;
|
|
26337
26520
|
updatedAt?: number;
|
|
@@ -26393,18 +26576,17 @@ declare const operationsByPath: {
|
|
|
26393
26576
|
type: "flags-secret";
|
|
26394
26577
|
encryptedValue: string;
|
|
26395
26578
|
} | null;
|
|
26396
|
-
decrypted?: boolean;
|
|
26397
26579
|
comment?: string;
|
|
26398
26580
|
customEnvironmentIds?: string[];
|
|
26399
|
-
vsmValue?: string;
|
|
26400
26581
|
}[]>;
|
|
26401
26582
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
26402
26583
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26403
26584
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26404
26585
|
sunsetSecretId?: string;
|
|
26586
|
+
decrypted?: boolean;
|
|
26587
|
+
value: string;
|
|
26405
26588
|
id?: string;
|
|
26406
26589
|
key: string;
|
|
26407
|
-
value: string;
|
|
26408
26590
|
configurationId?: string | null;
|
|
26409
26591
|
createdAt?: number;
|
|
26410
26592
|
updatedAt?: number;
|
|
@@ -26466,7 +26648,6 @@ declare const operationsByPath: {
|
|
|
26466
26648
|
type: "flags-secret";
|
|
26467
26649
|
encryptedValue: string;
|
|
26468
26650
|
} | null;
|
|
26469
|
-
decrypted?: boolean;
|
|
26470
26651
|
comment?: string;
|
|
26471
26652
|
customEnvironmentIds?: string[];
|
|
26472
26653
|
}>;
|
|
@@ -26813,6 +26994,7 @@ declare class VercelApi {
|
|
|
26813
26994
|
aliasAssigned: boolean;
|
|
26814
26995
|
bootedAt: number;
|
|
26815
26996
|
buildingAt: number;
|
|
26997
|
+
buildContainerFinishedAt?: number;
|
|
26816
26998
|
buildSkipped: boolean;
|
|
26817
26999
|
creator: {
|
|
26818
27000
|
uid: string;
|
|
@@ -26889,6 +27071,21 @@ declare class VercelApi {
|
|
|
26889
27071
|
ref?: string | null;
|
|
26890
27072
|
sha?: string;
|
|
26891
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;
|
|
26892
27089
|
} | {
|
|
26893
27090
|
type: "gitlab";
|
|
26894
27091
|
projectId: string | number;
|
|
@@ -26921,6 +27118,14 @@ declare class VercelApi {
|
|
|
26921
27118
|
repoId: number;
|
|
26922
27119
|
org?: string;
|
|
26923
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;
|
|
26924
27129
|
} | {
|
|
26925
27130
|
type: "gitlab";
|
|
26926
27131
|
ref: string;
|
|
@@ -27106,6 +27311,7 @@ declare class VercelApi {
|
|
|
27106
27311
|
aliasAssigned: boolean;
|
|
27107
27312
|
bootedAt: number;
|
|
27108
27313
|
buildingAt: number;
|
|
27314
|
+
buildContainerFinishedAt?: number;
|
|
27109
27315
|
buildSkipped: boolean;
|
|
27110
27316
|
creator: {
|
|
27111
27317
|
uid: string;
|
|
@@ -27182,6 +27388,21 @@ declare class VercelApi {
|
|
|
27182
27388
|
ref?: string | null;
|
|
27183
27389
|
sha?: string;
|
|
27184
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;
|
|
27185
27406
|
} | {
|
|
27186
27407
|
type: "gitlab";
|
|
27187
27408
|
projectId: string | number;
|
|
@@ -27214,6 +27435,14 @@ declare class VercelApi {
|
|
|
27214
27435
|
repoId: number;
|
|
27215
27436
|
org?: string;
|
|
27216
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;
|
|
27217
27446
|
} | {
|
|
27218
27447
|
type: "gitlab";
|
|
27219
27448
|
ref: string;
|
|
@@ -27318,10 +27547,7 @@ declare class VercelApi {
|
|
|
27318
27547
|
zone?: boolean;
|
|
27319
27548
|
}>;
|
|
27320
27549
|
'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
27321
|
-
'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
27322
27550
|
'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27323
|
-
'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
27324
|
-
'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
27325
27551
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
27326
27552
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
27327
27553
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -27545,29 +27771,6 @@ declare class VercelApi {
|
|
|
27545
27771
|
'GET /v2/integrations/log-drains': (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
|
|
27546
27772
|
'POST /v2/integrations/log-drains': (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
27547
27773
|
'DELETE /v1/integrations/log-drains/{id}': (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27548
|
-
'GET /v1/integrations/git-namespaces': (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
|
|
27549
|
-
'GET /v1/integrations/search-repo': (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
27550
|
-
gitAccount: {
|
|
27551
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
27552
|
-
namespaceId: string | number | null;
|
|
27553
|
-
};
|
|
27554
|
-
repos: {
|
|
27555
|
-
id: string | number;
|
|
27556
|
-
provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
27557
|
-
url: string;
|
|
27558
|
-
name: string;
|
|
27559
|
-
slug: string;
|
|
27560
|
-
namespace: string;
|
|
27561
|
-
owner: {
|
|
27562
|
-
id: string | number;
|
|
27563
|
-
name: string;
|
|
27564
|
-
};
|
|
27565
|
-
ownerType: "user" | "team";
|
|
27566
|
-
private: boolean;
|
|
27567
|
-
defaultBranch: string;
|
|
27568
|
-
updatedAt: number;
|
|
27569
|
-
}[];
|
|
27570
|
-
}>;
|
|
27571
27774
|
'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27572
27775
|
'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
27573
27776
|
'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
@@ -27603,19 +27806,66 @@ declare class VercelApi {
|
|
|
27603
27806
|
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27604
27807
|
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27605
27808
|
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27606
|
-
'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
|
+
}>;
|
|
27607
27854
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
27608
27855
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
27609
27856
|
'DELETE /v9/projects/{idOrName}/domains/{domain}': (variables: RemoveProjectDomainVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
27610
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>;
|
|
27611
27859
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
27612
27860
|
'GET /v10/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
27613
27861
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27614
27862
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27615
27863
|
sunsetSecretId?: string;
|
|
27864
|
+
decrypted?: boolean;
|
|
27865
|
+
value?: string;
|
|
27866
|
+
vsmValue?: string;
|
|
27616
27867
|
id?: string;
|
|
27617
27868
|
key?: string;
|
|
27618
|
-
value?: string;
|
|
27619
27869
|
configurationId?: string | null;
|
|
27620
27870
|
createdAt?: number;
|
|
27621
27871
|
updatedAt?: number;
|
|
@@ -27677,19 +27927,19 @@ declare class VercelApi {
|
|
|
27677
27927
|
type: "flags-secret";
|
|
27678
27928
|
encryptedValue: string;
|
|
27679
27929
|
} | null;
|
|
27680
|
-
decrypted?: boolean;
|
|
27681
27930
|
comment?: string;
|
|
27682
27931
|
customEnvironmentIds?: string[];
|
|
27683
|
-
vsmValue?: string;
|
|
27684
27932
|
system?: boolean;
|
|
27685
27933
|
} | {
|
|
27686
27934
|
envs: {
|
|
27687
27935
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27688
27936
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27689
27937
|
sunsetSecretId?: string;
|
|
27938
|
+
decrypted?: boolean;
|
|
27939
|
+
value?: string;
|
|
27940
|
+
vsmValue?: string;
|
|
27690
27941
|
id?: string;
|
|
27691
27942
|
key?: string;
|
|
27692
|
-
value?: string;
|
|
27693
27943
|
configurationId?: string | null;
|
|
27694
27944
|
createdAt?: number;
|
|
27695
27945
|
updatedAt?: number;
|
|
@@ -27751,10 +28001,8 @@ declare class VercelApi {
|
|
|
27751
28001
|
type: "flags-secret";
|
|
27752
28002
|
encryptedValue: string;
|
|
27753
28003
|
} | null;
|
|
27754
|
-
decrypted?: boolean;
|
|
27755
28004
|
comment?: string;
|
|
27756
28005
|
customEnvironmentIds?: string[];
|
|
27757
|
-
vsmValue?: string;
|
|
27758
28006
|
system?: boolean;
|
|
27759
28007
|
}[];
|
|
27760
28008
|
pagination: Pagination;
|
|
@@ -27763,9 +28011,11 @@ declare class VercelApi {
|
|
|
27763
28011
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27764
28012
|
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27765
28013
|
sunsetSecretId?: string;
|
|
28014
|
+
decrypted?: boolean;
|
|
28015
|
+
value?: string;
|
|
28016
|
+
vsmValue?: string;
|
|
27766
28017
|
id?: string;
|
|
27767
28018
|
key?: string;
|
|
27768
|
-
value?: string;
|
|
27769
28019
|
configurationId?: string | null;
|
|
27770
28020
|
createdAt?: number;
|
|
27771
28021
|
updatedAt?: number;
|
|
@@ -27827,10 +28077,8 @@ declare class VercelApi {
|
|
|
27827
28077
|
type: "flags-secret";
|
|
27828
28078
|
encryptedValue: string;
|
|
27829
28079
|
} | null;
|
|
27830
|
-
decrypted?: boolean;
|
|
27831
28080
|
comment?: string;
|
|
27832
28081
|
customEnvironmentIds?: string[];
|
|
27833
|
-
vsmValue?: string;
|
|
27834
28082
|
system?: boolean;
|
|
27835
28083
|
}[];
|
|
27836
28084
|
}>;
|
|
@@ -27909,9 +28157,11 @@ declare class VercelApi {
|
|
|
27909
28157
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27910
28158
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27911
28159
|
sunsetSecretId?: string;
|
|
28160
|
+
decrypted?: boolean;
|
|
28161
|
+
value: string;
|
|
28162
|
+
vsmValue?: string;
|
|
27912
28163
|
id?: string;
|
|
27913
28164
|
key: string;
|
|
27914
|
-
value: string;
|
|
27915
28165
|
configurationId?: string | null;
|
|
27916
28166
|
createdAt?: number;
|
|
27917
28167
|
updatedAt?: number;
|
|
@@ -27973,17 +28223,16 @@ declare class VercelApi {
|
|
|
27973
28223
|
type: "flags-secret";
|
|
27974
28224
|
encryptedValue: string;
|
|
27975
28225
|
} | null;
|
|
27976
|
-
decrypted?: boolean;
|
|
27977
28226
|
comment?: string;
|
|
27978
28227
|
customEnvironmentIds?: string[];
|
|
27979
|
-
vsmValue?: string;
|
|
27980
28228
|
} | {
|
|
27981
28229
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27982
28230
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27983
28231
|
sunsetSecretId?: string;
|
|
28232
|
+
decrypted?: boolean;
|
|
28233
|
+
value: string;
|
|
27984
28234
|
id?: string;
|
|
27985
28235
|
key: string;
|
|
27986
|
-
value: string;
|
|
27987
28236
|
configurationId?: string | null;
|
|
27988
28237
|
createdAt?: number;
|
|
27989
28238
|
updatedAt?: number;
|
|
@@ -28045,7 +28294,6 @@ declare class VercelApi {
|
|
|
28045
28294
|
type: "flags-secret";
|
|
28046
28295
|
encryptedValue: string;
|
|
28047
28296
|
} | null;
|
|
28048
|
-
decrypted?: boolean;
|
|
28049
28297
|
comment?: string;
|
|
28050
28298
|
customEnvironmentIds?: string[];
|
|
28051
28299
|
}>;
|
|
@@ -28054,9 +28302,11 @@ declare class VercelApi {
|
|
|
28054
28302
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28055
28303
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
28056
28304
|
sunsetSecretId?: string;
|
|
28305
|
+
decrypted?: boolean;
|
|
28306
|
+
value: string;
|
|
28307
|
+
vsmValue?: string;
|
|
28057
28308
|
id?: string;
|
|
28058
28309
|
key: string;
|
|
28059
|
-
value: string;
|
|
28060
28310
|
configurationId?: string | null;
|
|
28061
28311
|
createdAt?: number;
|
|
28062
28312
|
updatedAt?: number;
|
|
@@ -28118,17 +28368,17 @@ declare class VercelApi {
|
|
|
28118
28368
|
type: "flags-secret";
|
|
28119
28369
|
encryptedValue: string;
|
|
28120
28370
|
} | null;
|
|
28121
|
-
decrypted?: boolean;
|
|
28122
28371
|
comment?: string;
|
|
28123
28372
|
customEnvironmentIds?: string[];
|
|
28124
|
-
vsmValue?: string;
|
|
28125
28373
|
} | {
|
|
28126
28374
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28127
28375
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
28128
28376
|
sunsetSecretId?: string;
|
|
28377
|
+
decrypted?: boolean;
|
|
28378
|
+
value: string;
|
|
28379
|
+
vsmValue?: string;
|
|
28129
28380
|
id?: string;
|
|
28130
28381
|
key: string;
|
|
28131
|
-
value: string;
|
|
28132
28382
|
configurationId?: string | null;
|
|
28133
28383
|
createdAt?: number;
|
|
28134
28384
|
updatedAt?: number;
|
|
@@ -28190,17 +28440,17 @@ declare class VercelApi {
|
|
|
28190
28440
|
type: "flags-secret";
|
|
28191
28441
|
encryptedValue: string;
|
|
28192
28442
|
} | null;
|
|
28193
|
-
decrypted?: boolean;
|
|
28194
28443
|
comment?: string;
|
|
28195
28444
|
customEnvironmentIds?: string[];
|
|
28196
|
-
vsmValue?: string;
|
|
28197
28445
|
} | {
|
|
28198
28446
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28199
28447
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
28200
28448
|
sunsetSecretId?: string;
|
|
28449
|
+
decrypted?: boolean;
|
|
28450
|
+
value: string;
|
|
28451
|
+
vsmValue?: string;
|
|
28201
28452
|
id?: string;
|
|
28202
28453
|
key: string;
|
|
28203
|
-
value: string;
|
|
28204
28454
|
configurationId?: string | null;
|
|
28205
28455
|
createdAt?: number;
|
|
28206
28456
|
updatedAt?: number;
|
|
@@ -28262,18 +28512,17 @@ declare class VercelApi {
|
|
|
28262
28512
|
type: "flags-secret";
|
|
28263
28513
|
encryptedValue: string;
|
|
28264
28514
|
} | null;
|
|
28265
|
-
decrypted?: boolean;
|
|
28266
28515
|
comment?: string;
|
|
28267
28516
|
customEnvironmentIds?: string[];
|
|
28268
|
-
vsmValue?: string;
|
|
28269
28517
|
}[]>;
|
|
28270
28518
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
28271
28519
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28272
28520
|
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
28273
28521
|
sunsetSecretId?: string;
|
|
28522
|
+
decrypted?: boolean;
|
|
28523
|
+
value: string;
|
|
28274
28524
|
id?: string;
|
|
28275
28525
|
key: string;
|
|
28276
|
-
value: string;
|
|
28277
28526
|
configurationId?: string | null;
|
|
28278
28527
|
createdAt?: number;
|
|
28279
28528
|
updatedAt?: number;
|
|
@@ -28335,7 +28584,6 @@ declare class VercelApi {
|
|
|
28335
28584
|
type: "flags-secret";
|
|
28336
28585
|
encryptedValue: string;
|
|
28337
28586
|
} | null;
|
|
28338
|
-
decrypted?: boolean;
|
|
28339
28587
|
comment?: string;
|
|
28340
28588
|
customEnvironmentIds?: string[];
|
|
28341
28589
|
}>;
|