vercel-api-js 0.23.0 → 0.23.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 +2 -2
- package/CHANGELOG.md +8 -0
- package/dist/index.d.cts +64 -57
- package/dist/index.d.mts +64 -57
- package/dist/index.d.ts +64 -57
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -874,6 +874,16 @@ type UserEvent = {
|
|
|
874
874
|
type: 'github-oauth-custom-host';
|
|
875
875
|
host: string;
|
|
876
876
|
id: string;
|
|
877
|
+
} | {
|
|
878
|
+
type: 'google';
|
|
879
|
+
id: string;
|
|
880
|
+
login: string;
|
|
881
|
+
createdAt: number;
|
|
882
|
+
} | {
|
|
883
|
+
type: 'tiktok';
|
|
884
|
+
id: string;
|
|
885
|
+
login: string;
|
|
886
|
+
createdAt: number;
|
|
877
887
|
})[];
|
|
878
888
|
customerId?: string | null;
|
|
879
889
|
orbCustomerId?: string | null;
|
|
@@ -2180,7 +2190,7 @@ type UserEvent = {
|
|
|
2180
2190
|
*/
|
|
2181
2191
|
rtTTL?: number;
|
|
2182
2192
|
scope: string;
|
|
2183
|
-
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2193
|
+
authMethod: 'email' | 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google' | 'tiktok';
|
|
2184
2194
|
};
|
|
2185
2195
|
};
|
|
2186
2196
|
/**
|
|
@@ -2372,13 +2382,13 @@ type AuthToken = {
|
|
|
2372
2382
|
origin: 'totp' | 'webauthn' | 'recovery-code';
|
|
2373
2383
|
expiresAt: number;
|
|
2374
2384
|
};
|
|
2375
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2385
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google' | 'tiktok';
|
|
2376
2386
|
createdAt: number;
|
|
2377
2387
|
expiresAt?: number;
|
|
2378
2388
|
} | {
|
|
2379
2389
|
type: 'team';
|
|
2380
2390
|
teamId: string;
|
|
2381
|
-
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
|
|
2391
|
+
origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite' | 'google' | 'tiktok';
|
|
2382
2392
|
createdAt: number;
|
|
2383
2393
|
expiresAt?: number;
|
|
2384
2394
|
})[];
|
|
@@ -4496,7 +4506,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4496
4506
|
private: boolean;
|
|
4497
4507
|
readyAt?: number;
|
|
4498
4508
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
4499
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
4509
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
4500
4510
|
requestedAt?: number;
|
|
4501
4511
|
target?: string | null;
|
|
4502
4512
|
teamId?: string | null;
|
|
@@ -4727,7 +4737,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4727
4737
|
private: boolean;
|
|
4728
4738
|
readyAt?: number;
|
|
4729
4739
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
4730
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
4740
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
4731
4741
|
requestedAt?: number;
|
|
4732
4742
|
target?: string | null;
|
|
4733
4743
|
teamId?: string | null;
|
|
@@ -5467,9 +5477,9 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5467
5477
|
framework?: string | null;
|
|
5468
5478
|
};
|
|
5469
5479
|
/**
|
|
5470
|
-
*
|
|
5480
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
5471
5481
|
*/
|
|
5472
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
5482
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
5473
5483
|
regions: string[];
|
|
5474
5484
|
softDeletedByRetention?: boolean;
|
|
5475
5485
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -5817,9 +5827,9 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
5817
5827
|
framework?: string | null;
|
|
5818
5828
|
};
|
|
5819
5829
|
/**
|
|
5820
|
-
*
|
|
5830
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
5821
5831
|
*/
|
|
5822
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
5832
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
5823
5833
|
regions: string[];
|
|
5824
5834
|
softDeletedByRetention?: boolean;
|
|
5825
5835
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -6098,9 +6108,9 @@ type CreateDeploymentResponse = {
|
|
|
6098
6108
|
errorStep?: string;
|
|
6099
6109
|
originCacheRegion?: string;
|
|
6100
6110
|
/**
|
|
6101
|
-
*
|
|
6111
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
6102
6112
|
*/
|
|
6103
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
6113
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
6104
6114
|
softDeletedByRetention?: boolean;
|
|
6105
6115
|
undeletedAt?: number;
|
|
6106
6116
|
url: string;
|
|
@@ -6776,9 +6786,9 @@ type CancelDeploymentResponse = {
|
|
|
6776
6786
|
};
|
|
6777
6787
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
6778
6788
|
/**
|
|
6779
|
-
*
|
|
6789
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
6780
6790
|
*/
|
|
6781
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
6791
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
6782
6792
|
regions: string[];
|
|
6783
6793
|
softDeletedByRetention?: boolean;
|
|
6784
6794
|
source?: 'api-trigger-git-deploy' | 'cli' | 'clone/repo' | 'git' | 'import' | 'import/repo' | 'redeploy' | 'v0-web';
|
|
@@ -8420,7 +8430,7 @@ type GetConfigurableLogDrainResponse = {
|
|
|
8420
8430
|
teamId?: string | null;
|
|
8421
8431
|
ownerId: string;
|
|
8422
8432
|
createdFrom?: 'integration' | 'self-served';
|
|
8423
|
-
deliveryFormat: 'json' | 'ndjson' | 'syslog';
|
|
8433
|
+
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8424
8434
|
secret: string;
|
|
8425
8435
|
};
|
|
8426
8436
|
type GetConfigurableLogDrainVariables = {
|
|
@@ -8494,7 +8504,7 @@ type GetAllLogDrainsResponse = {
|
|
|
8494
8504
|
teamId?: string | null;
|
|
8495
8505
|
ownerId: string;
|
|
8496
8506
|
createdFrom?: 'integration' | 'self-served';
|
|
8497
|
-
deliveryFormat: 'json' | 'ndjson' | 'syslog';
|
|
8507
|
+
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8498
8508
|
secret: string;
|
|
8499
8509
|
}[];
|
|
8500
8510
|
type GetAllLogDrainsVariables = {
|
|
@@ -8544,7 +8554,7 @@ type CreateConfigurableLogDrainResponse = {
|
|
|
8544
8554
|
teamId?: string | null;
|
|
8545
8555
|
ownerId: string;
|
|
8546
8556
|
createdFrom?: 'integration' | 'self-served';
|
|
8547
|
-
deliveryFormat: 'json' | 'ndjson' | 'syslog';
|
|
8557
|
+
deliveryFormat: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
8548
8558
|
};
|
|
8549
8559
|
type CreateConfigurableLogDrainRequestBody = {
|
|
8550
8560
|
/**
|
|
@@ -10566,7 +10576,7 @@ type GetIntegrationLogDrainsResponse = {
|
|
|
10566
10576
|
*
|
|
10567
10577
|
* @example json
|
|
10568
10578
|
*/
|
|
10569
|
-
deliveryFormat?: 'json' | 'ndjson' | 'syslog';
|
|
10579
|
+
deliveryFormat?: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
10570
10580
|
/**
|
|
10571
10581
|
* The name of the log drain
|
|
10572
10582
|
*
|
|
@@ -10683,7 +10693,7 @@ type CreateLogDrainResponse = {
|
|
|
10683
10693
|
*
|
|
10684
10694
|
* @example json
|
|
10685
10695
|
*/
|
|
10686
|
-
deliveryFormat?: 'json' | 'ndjson' | 'syslog';
|
|
10696
|
+
deliveryFormat?: 'json' | 'ndjson' | 'protobuf' | 'syslog';
|
|
10687
10697
|
/**
|
|
10688
10698
|
* The name of the log drain
|
|
10689
10699
|
*
|
|
@@ -11645,7 +11655,7 @@ type GetProjectsResponse = {
|
|
|
11645
11655
|
private: boolean;
|
|
11646
11656
|
readyAt?: number;
|
|
11647
11657
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
11648
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
11658
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
11649
11659
|
requestedAt?: number;
|
|
11650
11660
|
target?: string | null;
|
|
11651
11661
|
teamId?: string | null;
|
|
@@ -11876,7 +11886,7 @@ type GetProjectsResponse = {
|
|
|
11876
11886
|
private: boolean;
|
|
11877
11887
|
readyAt?: number;
|
|
11878
11888
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
11879
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
11889
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
11880
11890
|
requestedAt?: number;
|
|
11881
11891
|
target?: string | null;
|
|
11882
11892
|
teamId?: string | null;
|
|
@@ -12481,7 +12491,7 @@ type CreateProjectResponse = {
|
|
|
12481
12491
|
private: boolean;
|
|
12482
12492
|
readyAt?: number;
|
|
12483
12493
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
12484
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
12494
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
12485
12495
|
requestedAt?: number;
|
|
12486
12496
|
target?: string | null;
|
|
12487
12497
|
teamId?: string | null;
|
|
@@ -12712,7 +12722,7 @@ type CreateProjectResponse = {
|
|
|
12712
12722
|
private: boolean;
|
|
12713
12723
|
readyAt?: number;
|
|
12714
12724
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
12715
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
12725
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
12716
12726
|
requestedAt?: number;
|
|
12717
12727
|
target?: string | null;
|
|
12718
12728
|
teamId?: string | null;
|
|
@@ -13135,7 +13145,6 @@ type CreateProjectRequestBody = {
|
|
|
13135
13145
|
*
|
|
13136
13146
|
* @example a-project-name
|
|
13137
13147
|
* @maxLength 100
|
|
13138
|
-
* @pattern ^(?!.*---)[a-z0-9-_.]+$
|
|
13139
13148
|
*/
|
|
13140
13149
|
name: string;
|
|
13141
13150
|
/**
|
|
@@ -13449,7 +13458,7 @@ type GetProjectResponse = {
|
|
|
13449
13458
|
private: boolean;
|
|
13450
13459
|
readyAt?: number;
|
|
13451
13460
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
13452
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
13461
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
13453
13462
|
requestedAt?: number;
|
|
13454
13463
|
target?: string | null;
|
|
13455
13464
|
teamId?: string | null;
|
|
@@ -13680,7 +13689,7 @@ type GetProjectResponse = {
|
|
|
13680
13689
|
private: boolean;
|
|
13681
13690
|
readyAt?: number;
|
|
13682
13691
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
13683
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
13692
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
13684
13693
|
requestedAt?: number;
|
|
13685
13694
|
target?: string | null;
|
|
13686
13695
|
teamId?: string | null;
|
|
@@ -14292,7 +14301,7 @@ type UpdateProjectResponse = {
|
|
|
14292
14301
|
private: boolean;
|
|
14293
14302
|
readyAt?: number;
|
|
14294
14303
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
14295
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
14304
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
14296
14305
|
requestedAt?: number;
|
|
14297
14306
|
target?: string | null;
|
|
14298
14307
|
teamId?: string | null;
|
|
@@ -14523,7 +14532,7 @@ type UpdateProjectResponse = {
|
|
|
14523
14532
|
private: boolean;
|
|
14524
14533
|
readyAt?: number;
|
|
14525
14534
|
readyState: 'BUILDING' | 'CANCELED' | 'ERROR' | 'INITIALIZING' | 'QUEUED' | 'READY';
|
|
14526
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
14535
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
14527
14536
|
requestedAt?: number;
|
|
14528
14537
|
target?: string | null;
|
|
14529
14538
|
teamId?: string | null;
|
|
@@ -14922,7 +14931,6 @@ type UpdateProjectRequestBody = {
|
|
|
14922
14931
|
*
|
|
14923
14932
|
* @example a-project-name
|
|
14924
14933
|
* @maxLength 100
|
|
14925
|
-
* @pattern ^(?!.*---)[a-z0-9-_.]+$
|
|
14926
14934
|
*/
|
|
14927
14935
|
name?: string;
|
|
14928
14936
|
nodeVersion?: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x';
|
|
@@ -16079,7 +16087,7 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
|
|
|
16079
16087
|
type CreateProjectEnvResponse = {
|
|
16080
16088
|
created: {
|
|
16081
16089
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
16082
|
-
type?: 'system' | '
|
|
16090
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
16083
16091
|
/**
|
|
16084
16092
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16085
16093
|
*/
|
|
@@ -16164,7 +16172,7 @@ type CreateProjectEnvResponse = {
|
|
|
16164
16172
|
system?: boolean;
|
|
16165
16173
|
} | {
|
|
16166
16174
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
16167
|
-
type?: 'system' | '
|
|
16175
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
16168
16176
|
/**
|
|
16169
16177
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16170
16178
|
*/
|
|
@@ -16763,7 +16771,7 @@ type RemoveProjectEnvVariables = {
|
|
|
16763
16771
|
declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
16764
16772
|
system?: boolean;
|
|
16765
16773
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16766
|
-
type: "system" | "
|
|
16774
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16767
16775
|
/**
|
|
16768
16776
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16769
16777
|
*/
|
|
@@ -16847,7 +16855,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16847
16855
|
vsmValue?: string;
|
|
16848
16856
|
} | {
|
|
16849
16857
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16850
|
-
type: "system" | "
|
|
16858
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16851
16859
|
/**
|
|
16852
16860
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16853
16861
|
*/
|
|
@@ -16931,7 +16939,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
16931
16939
|
vsmValue?: string;
|
|
16932
16940
|
} | {
|
|
16933
16941
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
16934
|
-
type: "system" | "
|
|
16942
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
16935
16943
|
/**
|
|
16936
16944
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
16937
16945
|
*/
|
|
@@ -17093,7 +17101,7 @@ type EditProjectEnvVariables = {
|
|
|
17093
17101
|
*/
|
|
17094
17102
|
declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
17095
17103
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
17096
|
-
type: "system" | "
|
|
17104
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
17097
17105
|
/**
|
|
17098
17106
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17099
17107
|
*/
|
|
@@ -17231,7 +17239,6 @@ type AcceptProjectTransferRequestRequestBody = {
|
|
|
17231
17239
|
*
|
|
17232
17240
|
* @example a-project-name
|
|
17233
17241
|
* @maxLength 100
|
|
17234
|
-
* @pattern ^(?!.*---)[a-z0-9-_.]+$
|
|
17235
17242
|
*/
|
|
17236
17243
|
newProjectName?: string;
|
|
17237
17244
|
paidFeatures?: {
|
|
@@ -20620,9 +20627,9 @@ type GetDeploymentsResponse = {
|
|
|
20620
20627
|
*/
|
|
20621
20628
|
ready?: number;
|
|
20622
20629
|
/**
|
|
20623
|
-
*
|
|
20630
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of gradually transitioning production traffic - PROMOTED: has seen production traffic
|
|
20624
20631
|
*/
|
|
20625
|
-
readySubstate?: 'PROMOTED' | 'STAGED';
|
|
20632
|
+
readySubstate?: 'PROMOTED' | 'ROLLING' | 'STAGED';
|
|
20626
20633
|
/**
|
|
20627
20634
|
* State of all registered checks
|
|
20628
20635
|
*/
|
|
@@ -21763,7 +21770,7 @@ declare const operationsByTag: {
|
|
|
21763
21770
|
removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
21764
21771
|
system?: boolean;
|
|
21765
21772
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21766
|
-
type: "system" | "
|
|
21773
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21767
21774
|
/**
|
|
21768
21775
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21769
21776
|
*/
|
|
@@ -21847,7 +21854,7 @@ declare const operationsByTag: {
|
|
|
21847
21854
|
vsmValue?: string;
|
|
21848
21855
|
} | {
|
|
21849
21856
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21850
|
-
type: "system" | "
|
|
21857
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21851
21858
|
/**
|
|
21852
21859
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21853
21860
|
*/
|
|
@@ -21931,7 +21938,7 @@ declare const operationsByTag: {
|
|
|
21931
21938
|
vsmValue?: string;
|
|
21932
21939
|
} | {
|
|
21933
21940
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
21934
|
-
type: "system" | "
|
|
21941
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
21935
21942
|
/**
|
|
21936
21943
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
21937
21944
|
*/
|
|
@@ -22016,7 +22023,7 @@ declare const operationsByTag: {
|
|
|
22016
22023
|
}[]>;
|
|
22017
22024
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
22018
22025
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22019
|
-
type: "system" | "
|
|
22026
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
22020
22027
|
/**
|
|
22021
22028
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
22022
22029
|
*/
|
|
@@ -22352,9 +22359,9 @@ declare const operationsByTag: {
|
|
|
22352
22359
|
framework?: string | null;
|
|
22353
22360
|
};
|
|
22354
22361
|
/**
|
|
22355
|
-
*
|
|
22362
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
22356
22363
|
*/
|
|
22357
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
22364
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
22358
22365
|
regions: string[];
|
|
22359
22366
|
softDeletedByRetention?: boolean;
|
|
22360
22367
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -22702,9 +22709,9 @@ declare const operationsByTag: {
|
|
|
22702
22709
|
framework?: string | null;
|
|
22703
22710
|
};
|
|
22704
22711
|
/**
|
|
22705
|
-
*
|
|
22712
|
+
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
22706
22713
|
*/
|
|
22707
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
22714
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
22708
22715
|
regions: string[];
|
|
22709
22716
|
softDeletedByRetention?: boolean;
|
|
22710
22717
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -24943,7 +24950,7 @@ declare const operationsByPath: {
|
|
|
24943
24950
|
name: string;
|
|
24944
24951
|
framework?: string | null;
|
|
24945
24952
|
};
|
|
24946
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
24953
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
24947
24954
|
regions: string[];
|
|
24948
24955
|
softDeletedByRetention?: boolean;
|
|
24949
24956
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -25236,7 +25243,7 @@ declare const operationsByPath: {
|
|
|
25236
25243
|
name: string;
|
|
25237
25244
|
framework?: string | null;
|
|
25238
25245
|
};
|
|
25239
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
25246
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
25240
25247
|
regions: string[];
|
|
25241
25248
|
softDeletedByRetention?: boolean;
|
|
25242
25249
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -26009,7 +26016,7 @@ declare const operationsByPath: {
|
|
|
26009
26016
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
26010
26017
|
system?: boolean;
|
|
26011
26018
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26012
|
-
type: "system" | "
|
|
26019
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26013
26020
|
sunsetSecretId?: string;
|
|
26014
26021
|
id?: string;
|
|
26015
26022
|
key: string;
|
|
@@ -26081,7 +26088,7 @@ declare const operationsByPath: {
|
|
|
26081
26088
|
vsmValue?: string;
|
|
26082
26089
|
} | {
|
|
26083
26090
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26084
|
-
type: "system" | "
|
|
26091
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26085
26092
|
sunsetSecretId?: string;
|
|
26086
26093
|
id?: string;
|
|
26087
26094
|
key: string;
|
|
@@ -26153,7 +26160,7 @@ declare const operationsByPath: {
|
|
|
26153
26160
|
vsmValue?: string;
|
|
26154
26161
|
} | {
|
|
26155
26162
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26156
|
-
type: "system" | "
|
|
26163
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26157
26164
|
sunsetSecretId?: string;
|
|
26158
26165
|
id?: string;
|
|
26159
26166
|
key: string;
|
|
@@ -26226,7 +26233,7 @@ declare const operationsByPath: {
|
|
|
26226
26233
|
}[]>;
|
|
26227
26234
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
26228
26235
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
26229
|
-
type: "system" | "
|
|
26236
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
26230
26237
|
sunsetSecretId?: string;
|
|
26231
26238
|
id?: string;
|
|
26232
26239
|
key: string;
|
|
@@ -26770,7 +26777,7 @@ declare class VercelApi {
|
|
|
26770
26777
|
name: string;
|
|
26771
26778
|
framework?: string | null;
|
|
26772
26779
|
};
|
|
26773
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
26780
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
26774
26781
|
regions: string[];
|
|
26775
26782
|
softDeletedByRetention?: boolean;
|
|
26776
26783
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -27063,7 +27070,7 @@ declare class VercelApi {
|
|
|
27063
27070
|
name: string;
|
|
27064
27071
|
framework?: string | null;
|
|
27065
27072
|
};
|
|
27066
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
27073
|
+
readySubstate?: "STAGED" | "ROLLING" | "PROMOTED";
|
|
27067
27074
|
regions: string[];
|
|
27068
27075
|
softDeletedByRetention?: boolean;
|
|
27069
27076
|
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
@@ -27836,7 +27843,7 @@ declare class VercelApi {
|
|
|
27836
27843
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
27837
27844
|
system?: boolean;
|
|
27838
27845
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27839
|
-
type: "system" | "
|
|
27846
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27840
27847
|
sunsetSecretId?: string;
|
|
27841
27848
|
id?: string;
|
|
27842
27849
|
key: string;
|
|
@@ -27908,7 +27915,7 @@ declare class VercelApi {
|
|
|
27908
27915
|
vsmValue?: string;
|
|
27909
27916
|
} | {
|
|
27910
27917
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27911
|
-
type: "system" | "
|
|
27918
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27912
27919
|
sunsetSecretId?: string;
|
|
27913
27920
|
id?: string;
|
|
27914
27921
|
key: string;
|
|
@@ -27980,7 +27987,7 @@ declare class VercelApi {
|
|
|
27980
27987
|
vsmValue?: string;
|
|
27981
27988
|
} | {
|
|
27982
27989
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
27983
|
-
type: "system" | "
|
|
27990
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
27984
27991
|
sunsetSecretId?: string;
|
|
27985
27992
|
id?: string;
|
|
27986
27993
|
key: string;
|
|
@@ -28053,7 +28060,7 @@ declare class VercelApi {
|
|
|
28053
28060
|
}[]>;
|
|
28054
28061
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
28055
28062
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28056
|
-
type: "system" | "
|
|
28063
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
28057
28064
|
sunsetSecretId?: string;
|
|
28058
28065
|
id?: string;
|
|
28059
28066
|
key: string;
|