vercel-api-js 0.19.5 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/index.d.cts +79 -37
- package/dist/index.d.mts +79 -37
- package/dist/index.d.ts +79 -37
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2396,6 +2396,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2396
2396
|
* 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.
|
|
2397
2397
|
*/
|
|
2398
2398
|
defaultRoute?: string;
|
|
2399
|
+
/**
|
|
2400
|
+
* Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
|
|
2401
|
+
*/
|
|
2402
|
+
routeObservabilityToDefaultApp?: boolean;
|
|
2399
2403
|
};
|
|
2400
2404
|
name: string;
|
|
2401
2405
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -3653,10 +3657,10 @@ type CreateDeploymentResponse = {
|
|
|
3653
3657
|
initReadyAt?: number;
|
|
3654
3658
|
isFirstBranchDeployment?: boolean;
|
|
3655
3659
|
lambdas?: {
|
|
3656
|
-
createdAt?: number;
|
|
3657
3660
|
id?: string;
|
|
3658
|
-
|
|
3661
|
+
createdAt?: number;
|
|
3659
3662
|
entrypoint?: string | null;
|
|
3663
|
+
readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
|
|
3660
3664
|
readyStateAt?: number;
|
|
3661
3665
|
output: {
|
|
3662
3666
|
path: string;
|
|
@@ -3906,7 +3910,7 @@ type CreateDeploymentResponse = {
|
|
|
3906
3910
|
*/
|
|
3907
3911
|
middleware?: number;
|
|
3908
3912
|
} | {
|
|
3909
|
-
handle: 'error' | 'filesystem' | 'hit' | 'miss' | '
|
|
3913
|
+
handle: 'error' | 'filesystem' | 'hit' | 'miss' | 'rewrite' | 'resource';
|
|
3910
3914
|
src?: string;
|
|
3911
3915
|
dest?: string;
|
|
3912
3916
|
status?: number;
|
|
@@ -3936,7 +3940,7 @@ type CreateDeploymentResponse = {
|
|
|
3936
3940
|
defaultBranch: string;
|
|
3937
3941
|
name: string;
|
|
3938
3942
|
private: boolean;
|
|
3939
|
-
ownerType: '
|
|
3943
|
+
ownerType: 'team' | 'user';
|
|
3940
3944
|
} | {
|
|
3941
3945
|
org: string;
|
|
3942
3946
|
repo: string;
|
|
@@ -3947,7 +3951,7 @@ type CreateDeploymentResponse = {
|
|
|
3947
3951
|
defaultBranch: string;
|
|
3948
3952
|
name: string;
|
|
3949
3953
|
private: boolean;
|
|
3950
|
-
ownerType: '
|
|
3954
|
+
ownerType: 'team' | 'user';
|
|
3951
3955
|
} | {
|
|
3952
3956
|
owner: string;
|
|
3953
3957
|
repoUuid: string;
|
|
@@ -3958,7 +3962,7 @@ type CreateDeploymentResponse = {
|
|
|
3958
3962
|
defaultBranch: string;
|
|
3959
3963
|
name: string;
|
|
3960
3964
|
private: boolean;
|
|
3961
|
-
ownerType: '
|
|
3965
|
+
ownerType: 'team' | 'user';
|
|
3962
3966
|
} | null;
|
|
3963
3967
|
flags?: {
|
|
3964
3968
|
definitions: {
|
|
@@ -6778,7 +6782,7 @@ type CreateEventVariables = {
|
|
|
6778
6782
|
pathParams: CreateEventPathParams;
|
|
6779
6783
|
} & FetcherExtraProps;
|
|
6780
6784
|
/**
|
|
6781
|
-
* Partner notifies Vercel of any changes made to an Installation or a Resource. Vercel is expected to use `list-resources` and other read APIs to get the new state
|
|
6785
|
+
* Partner notifies Vercel of any changes made to an Installation or a Resource. Vercel is expected to use `list-resources` and other read APIs to get the new state.<br/> <br/> `resource.updated` event should be dispatched when any state of a resource linked to Vercel is modified by the partner.<br/> `installation.updated` event should be dispatched when an installation's billing plan is changed via the provider instead of Vercel.<br/> <br/> Resource update use cases: <br/> <br/> - The user renames a database in the partner’s application. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource in Vercel’s datastores.<br/> - A resource has been suspended due to a lack of use. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource's status in Vercel's datastores.<br/>
|
|
6782
6786
|
*/
|
|
6783
6787
|
declare const createEvent: (variables: CreateEventVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
6784
6788
|
type SubmitBillingDataPathParams = {
|
|
@@ -7227,6 +7231,7 @@ type GetConfigurationsQueryParams = {
|
|
|
7227
7231
|
* ID of the integration
|
|
7228
7232
|
*/
|
|
7229
7233
|
integrationIdOrSlug?: string;
|
|
7234
|
+
skipBillingData?: string;
|
|
7230
7235
|
/**
|
|
7231
7236
|
* The Team identifier to perform the request on behalf of.
|
|
7232
7237
|
*/
|
|
@@ -9091,6 +9096,10 @@ type GetProjectsResponse = {
|
|
|
9091
9096
|
* 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.
|
|
9092
9097
|
*/
|
|
9093
9098
|
defaultRoute?: string;
|
|
9099
|
+
/**
|
|
9100
|
+
* Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
|
|
9101
|
+
*/
|
|
9102
|
+
routeObservabilityToDefaultApp?: boolean;
|
|
9094
9103
|
};
|
|
9095
9104
|
name: string;
|
|
9096
9105
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -9867,6 +9876,10 @@ type CreateProjectResponse = {
|
|
|
9867
9876
|
* 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.
|
|
9868
9877
|
*/
|
|
9869
9878
|
defaultRoute?: string;
|
|
9879
|
+
/**
|
|
9880
|
+
* Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
|
|
9881
|
+
*/
|
|
9882
|
+
routeObservabilityToDefaultApp?: boolean;
|
|
9870
9883
|
};
|
|
9871
9884
|
name: string;
|
|
9872
9885
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -10775,6 +10788,10 @@ type GetProjectResponse = {
|
|
|
10775
10788
|
* 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.
|
|
10776
10789
|
*/
|
|
10777
10790
|
defaultRoute?: string;
|
|
10791
|
+
/**
|
|
10792
|
+
* Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
|
|
10793
|
+
*/
|
|
10794
|
+
routeObservabilityToDefaultApp?: boolean;
|
|
10778
10795
|
};
|
|
10779
10796
|
name: string;
|
|
10780
10797
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -11558,6 +11575,10 @@ type UpdateProjectResponse = {
|
|
|
11558
11575
|
* 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.
|
|
11559
11576
|
*/
|
|
11560
11577
|
defaultRoute?: string;
|
|
11578
|
+
/**
|
|
11579
|
+
* Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
|
|
11580
|
+
*/
|
|
11581
|
+
routeObservabilityToDefaultApp?: boolean;
|
|
11561
11582
|
};
|
|
11562
11583
|
name: string;
|
|
11563
11584
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -12904,7 +12925,7 @@ type FilterProjectEnvsVariables = {
|
|
|
12904
12925
|
*/
|
|
12905
12926
|
declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
12906
12927
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
12907
|
-
type?: "system" | "
|
|
12928
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
12908
12929
|
/**
|
|
12909
12930
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
12910
12931
|
*/
|
|
@@ -12990,7 +13011,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
12990
13011
|
} | {
|
|
12991
13012
|
envs: {
|
|
12992
13013
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
12993
|
-
type?: "system" | "
|
|
13014
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
12994
13015
|
/**
|
|
12995
13016
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
12996
13017
|
*/
|
|
@@ -13078,7 +13099,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
|
|
|
13078
13099
|
} | {
|
|
13079
13100
|
envs: {
|
|
13080
13101
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
13081
|
-
type?: "system" | "
|
|
13102
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
13082
13103
|
/**
|
|
13083
13104
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13084
13105
|
*/
|
|
@@ -13469,7 +13490,7 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
|
|
|
13469
13490
|
type CreateProjectEnvResponse = {
|
|
13470
13491
|
created: {
|
|
13471
13492
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
13472
|
-
type?: 'system' | '
|
|
13493
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
13473
13494
|
/**
|
|
13474
13495
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13475
13496
|
*/
|
|
@@ -13554,7 +13575,7 @@ type CreateProjectEnvResponse = {
|
|
|
13554
13575
|
system?: boolean;
|
|
13555
13576
|
} | {
|
|
13556
13577
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
13557
|
-
type?: 'system' | '
|
|
13578
|
+
type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
|
|
13558
13579
|
/**
|
|
13559
13580
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13560
13581
|
*/
|
|
@@ -13694,6 +13715,10 @@ type CreateProjectEnvVariables = {
|
|
|
13694
13715
|
* @maxLength 500
|
|
13695
13716
|
*/
|
|
13696
13717
|
comment?: string;
|
|
13718
|
+
/**
|
|
13719
|
+
* The custom environment IDs associated with the environment variable
|
|
13720
|
+
*/
|
|
13721
|
+
customEnvironmentIds?: string[];
|
|
13697
13722
|
} | {
|
|
13698
13723
|
/**
|
|
13699
13724
|
* The name of the environment variable
|
|
@@ -13733,6 +13758,10 @@ type CreateProjectEnvVariables = {
|
|
|
13733
13758
|
* @maxLength 500
|
|
13734
13759
|
*/
|
|
13735
13760
|
comment?: string;
|
|
13761
|
+
/**
|
|
13762
|
+
* The custom environment IDs associated with the environment variable
|
|
13763
|
+
*/
|
|
13764
|
+
customEnvironmentIds: string[];
|
|
13736
13765
|
}) | ({
|
|
13737
13766
|
/**
|
|
13738
13767
|
* The name of the environment variable
|
|
@@ -13772,6 +13801,10 @@ type CreateProjectEnvVariables = {
|
|
|
13772
13801
|
* @maxLength 500
|
|
13773
13802
|
*/
|
|
13774
13803
|
comment?: string;
|
|
13804
|
+
/**
|
|
13805
|
+
* The custom environment IDs associated with the environment variable
|
|
13806
|
+
*/
|
|
13807
|
+
customEnvironmentIds?: string[];
|
|
13775
13808
|
} | {
|
|
13776
13809
|
/**
|
|
13777
13810
|
* The name of the environment variable
|
|
@@ -13811,6 +13844,10 @@ type CreateProjectEnvVariables = {
|
|
|
13811
13844
|
* @maxLength 500
|
|
13812
13845
|
*/
|
|
13813
13846
|
comment?: string;
|
|
13847
|
+
/**
|
|
13848
|
+
* The custom environment IDs associated with the environment variable
|
|
13849
|
+
*/
|
|
13850
|
+
customEnvironmentIds: string[];
|
|
13814
13851
|
})[];
|
|
13815
13852
|
pathParams: CreateProjectEnvPathParams;
|
|
13816
13853
|
queryParams?: CreateProjectEnvQueryParams;
|
|
@@ -13860,7 +13897,7 @@ type RemoveProjectEnvVariables = {
|
|
|
13860
13897
|
declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
13861
13898
|
system?: boolean;
|
|
13862
13899
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
13863
|
-
type: "system" | "
|
|
13900
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
13864
13901
|
/**
|
|
13865
13902
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13866
13903
|
*/
|
|
@@ -13944,7 +13981,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
13944
13981
|
vsmValue?: string;
|
|
13945
13982
|
} | {
|
|
13946
13983
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
13947
|
-
type: "system" | "
|
|
13984
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
13948
13985
|
/**
|
|
13949
13986
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
13950
13987
|
*/
|
|
@@ -14028,7 +14065,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
14028
14065
|
vsmValue?: string;
|
|
14029
14066
|
} | {
|
|
14030
14067
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
14031
|
-
type: "system" | "
|
|
14068
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
14032
14069
|
/**
|
|
14033
14070
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
14034
14071
|
*/
|
|
@@ -14187,7 +14224,7 @@ type EditProjectEnvVariables = {
|
|
|
14187
14224
|
*/
|
|
14188
14225
|
declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
14189
14226
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
14190
|
-
type: "system" | "
|
|
14227
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
14191
14228
|
/**
|
|
14192
14229
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
14193
14230
|
*/
|
|
@@ -14652,6 +14689,7 @@ type PutFirewallConfigResponse = {
|
|
|
14652
14689
|
permanent: boolean;
|
|
14653
14690
|
} | null;
|
|
14654
14691
|
actionDuration?: string | null;
|
|
14692
|
+
bypassSystem?: boolean | null;
|
|
14655
14693
|
};
|
|
14656
14694
|
};
|
|
14657
14695
|
}[];
|
|
@@ -14767,6 +14805,7 @@ type PutFirewallConfigRequestBody = {
|
|
|
14767
14805
|
permanent: boolean;
|
|
14768
14806
|
} | null;
|
|
14769
14807
|
actionDuration?: string | null;
|
|
14808
|
+
bypassSystem?: boolean | null;
|
|
14770
14809
|
};
|
|
14771
14810
|
};
|
|
14772
14811
|
}[];
|
|
@@ -14840,6 +14879,7 @@ type UpdateFirewallConfigVariables = {
|
|
|
14840
14879
|
permanent: boolean;
|
|
14841
14880
|
} | null;
|
|
14842
14881
|
actionDuration?: string | null;
|
|
14882
|
+
bypassSystem?: boolean | null;
|
|
14843
14883
|
};
|
|
14844
14884
|
};
|
|
14845
14885
|
};
|
|
@@ -14880,6 +14920,7 @@ type UpdateFirewallConfigVariables = {
|
|
|
14880
14920
|
permanent: boolean;
|
|
14881
14921
|
} | null;
|
|
14882
14922
|
actionDuration?: string | null;
|
|
14923
|
+
bypassSystem?: boolean | null;
|
|
14883
14924
|
};
|
|
14884
14925
|
};
|
|
14885
14926
|
};
|
|
@@ -15031,6 +15072,7 @@ type GetFirewallConfigResponse = {
|
|
|
15031
15072
|
permanent: boolean;
|
|
15032
15073
|
} | null;
|
|
15033
15074
|
actionDuration?: string | null;
|
|
15075
|
+
bypassSystem?: boolean | null;
|
|
15034
15076
|
};
|
|
15035
15077
|
};
|
|
15036
15078
|
}[];
|
|
@@ -18263,7 +18305,7 @@ declare const operationsByTag: {
|
|
|
18263
18305
|
verifyProjectDomain: (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
18264
18306
|
filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
18265
18307
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18266
|
-
type?: "system" | "
|
|
18308
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18267
18309
|
/**
|
|
18268
18310
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18269
18311
|
*/
|
|
@@ -18349,7 +18391,7 @@ declare const operationsByTag: {
|
|
|
18349
18391
|
} | {
|
|
18350
18392
|
envs: {
|
|
18351
18393
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18352
|
-
type?: "system" | "
|
|
18394
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18353
18395
|
/**
|
|
18354
18396
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18355
18397
|
*/
|
|
@@ -18437,7 +18479,7 @@ declare const operationsByTag: {
|
|
|
18437
18479
|
} | {
|
|
18438
18480
|
envs: {
|
|
18439
18481
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18440
|
-
type?: "system" | "
|
|
18482
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18441
18483
|
/**
|
|
18442
18484
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18443
18485
|
*/
|
|
@@ -18774,7 +18816,7 @@ declare const operationsByTag: {
|
|
|
18774
18816
|
removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
18775
18817
|
system?: boolean;
|
|
18776
18818
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18777
|
-
type: "system" | "
|
|
18819
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18778
18820
|
/**
|
|
18779
18821
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18780
18822
|
*/
|
|
@@ -18858,7 +18900,7 @@ declare const operationsByTag: {
|
|
|
18858
18900
|
vsmValue?: string;
|
|
18859
18901
|
} | {
|
|
18860
18902
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18861
|
-
type: "system" | "
|
|
18903
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18862
18904
|
/**
|
|
18863
18905
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18864
18906
|
*/
|
|
@@ -18942,7 +18984,7 @@ declare const operationsByTag: {
|
|
|
18942
18984
|
vsmValue?: string;
|
|
18943
18985
|
} | {
|
|
18944
18986
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18945
|
-
type: "system" | "
|
|
18987
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
18946
18988
|
/**
|
|
18947
18989
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18948
18990
|
*/
|
|
@@ -19027,7 +19069,7 @@ declare const operationsByTag: {
|
|
|
19027
19069
|
}[]>;
|
|
19028
19070
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
19029
19071
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
19030
|
-
type: "system" | "
|
|
19072
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
19031
19073
|
/**
|
|
19032
19074
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
19033
19075
|
*/
|
|
@@ -22615,7 +22657,7 @@ declare const operationsByPath: {
|
|
|
22615
22657
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
22616
22658
|
'GET /v9/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
22617
22659
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22618
|
-
type?: "system" | "
|
|
22660
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
22619
22661
|
sunsetSecretId?: string;
|
|
22620
22662
|
id?: string;
|
|
22621
22663
|
key?: string;
|
|
@@ -22689,7 +22731,7 @@ declare const operationsByPath: {
|
|
|
22689
22731
|
} | {
|
|
22690
22732
|
envs: {
|
|
22691
22733
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22692
|
-
type?: "system" | "
|
|
22734
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
22693
22735
|
sunsetSecretId?: string;
|
|
22694
22736
|
id?: string;
|
|
22695
22737
|
key?: string;
|
|
@@ -22765,7 +22807,7 @@ declare const operationsByPath: {
|
|
|
22765
22807
|
} | {
|
|
22766
22808
|
envs: {
|
|
22767
22809
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
22768
|
-
type?: "system" | "
|
|
22810
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
22769
22811
|
sunsetSecretId?: string;
|
|
22770
22812
|
id?: string;
|
|
22771
22813
|
key?: string;
|
|
@@ -23057,7 +23099,7 @@ declare const operationsByPath: {
|
|
|
23057
23099
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
23058
23100
|
system?: boolean;
|
|
23059
23101
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23060
|
-
type: "system" | "
|
|
23102
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
23061
23103
|
sunsetSecretId?: string;
|
|
23062
23104
|
id?: string;
|
|
23063
23105
|
key: string;
|
|
@@ -23129,7 +23171,7 @@ declare const operationsByPath: {
|
|
|
23129
23171
|
vsmValue?: string;
|
|
23130
23172
|
} | {
|
|
23131
23173
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23132
|
-
type: "system" | "
|
|
23174
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
23133
23175
|
sunsetSecretId?: string;
|
|
23134
23176
|
id?: string;
|
|
23135
23177
|
key: string;
|
|
@@ -23201,7 +23243,7 @@ declare const operationsByPath: {
|
|
|
23201
23243
|
vsmValue?: string;
|
|
23202
23244
|
} | {
|
|
23203
23245
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23204
|
-
type: "system" | "
|
|
23246
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
23205
23247
|
sunsetSecretId?: string;
|
|
23206
23248
|
id?: string;
|
|
23207
23249
|
key: string;
|
|
@@ -23274,7 +23316,7 @@ declare const operationsByPath: {
|
|
|
23274
23316
|
}[]>;
|
|
23275
23317
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23276
23318
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23277
|
-
type: "system" | "
|
|
23319
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
23278
23320
|
sunsetSecretId?: string;
|
|
23279
23321
|
id?: string;
|
|
23280
23322
|
key: string;
|
|
@@ -24485,7 +24527,7 @@ declare class VercelApi {
|
|
|
24485
24527
|
'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
|
|
24486
24528
|
'GET /v9/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
|
|
24487
24529
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
24488
|
-
type?: "system" | "
|
|
24530
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
24489
24531
|
sunsetSecretId?: string;
|
|
24490
24532
|
id?: string;
|
|
24491
24533
|
key?: string;
|
|
@@ -24559,7 +24601,7 @@ declare class VercelApi {
|
|
|
24559
24601
|
} | {
|
|
24560
24602
|
envs: {
|
|
24561
24603
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
24562
|
-
type?: "system" | "
|
|
24604
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
24563
24605
|
sunsetSecretId?: string;
|
|
24564
24606
|
id?: string;
|
|
24565
24607
|
key?: string;
|
|
@@ -24635,7 +24677,7 @@ declare class VercelApi {
|
|
|
24635
24677
|
} | {
|
|
24636
24678
|
envs: {
|
|
24637
24679
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
24638
|
-
type?: "system" | "
|
|
24680
|
+
type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
24639
24681
|
sunsetSecretId?: string;
|
|
24640
24682
|
id?: string;
|
|
24641
24683
|
key?: string;
|
|
@@ -24927,7 +24969,7 @@ declare class VercelApi {
|
|
|
24927
24969
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
24928
24970
|
system?: boolean;
|
|
24929
24971
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
24930
|
-
type: "system" | "
|
|
24972
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
24931
24973
|
sunsetSecretId?: string;
|
|
24932
24974
|
id?: string;
|
|
24933
24975
|
key: string;
|
|
@@ -24999,7 +25041,7 @@ declare class VercelApi {
|
|
|
24999
25041
|
vsmValue?: string;
|
|
25000
25042
|
} | {
|
|
25001
25043
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25002
|
-
type: "system" | "
|
|
25044
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25003
25045
|
sunsetSecretId?: string;
|
|
25004
25046
|
id?: string;
|
|
25005
25047
|
key: string;
|
|
@@ -25071,7 +25113,7 @@ declare class VercelApi {
|
|
|
25071
25113
|
vsmValue?: string;
|
|
25072
25114
|
} | {
|
|
25073
25115
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25074
|
-
type: "system" | "
|
|
25116
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25075
25117
|
sunsetSecretId?: string;
|
|
25076
25118
|
id?: string;
|
|
25077
25119
|
key: string;
|
|
@@ -25144,7 +25186,7 @@ declare class VercelApi {
|
|
|
25144
25186
|
}[]>;
|
|
25145
25187
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
25146
25188
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
25147
|
-
type: "system" | "
|
|
25189
|
+
type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
|
|
25148
25190
|
sunsetSecretId?: string;
|
|
25149
25191
|
id?: string;
|
|
25150
25192
|
key: string;
|