vercel-api-js 0.25.2 → 0.25.3
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 +8 -0
- package/dist/index.d.cts +86 -64
- package/dist/index.d.mts +86 -64
- package/dist/index.d.ts +86 -64
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> vercel-api-js@0.25.
|
|
2
|
+
> vercel-api-js@0.25.3 build /home/runner/work/openapi-clients/openapi-clients/packages/vercel-api-js
|
|
3
3
|
> unbuild
|
|
4
4
|
|
|
5
5
|
[info] Automatically detected entries: src/index [esm] [cjs] [dts]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# vercel-api-js
|
|
2
2
|
|
|
3
|
+
## 0.25.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d186f87: Add AWS configuration options to user event and project responses
|
|
8
|
+
- e4a886b: Remove dangerous promotion from canary
|
|
9
|
+
- 9b061f2: Remove northstarMigration from AuthUser schema
|
|
10
|
+
|
|
3
11
|
## 0.25.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -1637,6 +1637,10 @@ type UserEvent = {
|
|
|
1637
1637
|
connectConfigurationId: string;
|
|
1638
1638
|
passive: boolean;
|
|
1639
1639
|
buildsEnabled: boolean;
|
|
1640
|
+
aws?: {
|
|
1641
|
+
subnetIds: string[];
|
|
1642
|
+
securityGroupId: string;
|
|
1643
|
+
};
|
|
1640
1644
|
createdAt: number;
|
|
1641
1645
|
updatedAt: number;
|
|
1642
1646
|
}[] | null;
|
|
@@ -1645,6 +1649,10 @@ type UserEvent = {
|
|
|
1645
1649
|
connectConfigurationId: string;
|
|
1646
1650
|
passive: boolean;
|
|
1647
1651
|
buildsEnabled: boolean;
|
|
1652
|
+
aws?: {
|
|
1653
|
+
subnetIds: string[];
|
|
1654
|
+
securityGroupId: string;
|
|
1655
|
+
};
|
|
1648
1656
|
createdAt: number;
|
|
1649
1657
|
updatedAt: number;
|
|
1650
1658
|
}[] | null;
|
|
@@ -2689,36 +2697,6 @@ type AuthUser = {
|
|
|
2689
2697
|
isCurrentlyBlocked: boolean;
|
|
2690
2698
|
};
|
|
2691
2699
|
};
|
|
2692
|
-
northstarMigration?: {
|
|
2693
|
-
/**
|
|
2694
|
-
* The ID of the team we created for this user.
|
|
2695
|
-
*/
|
|
2696
|
-
teamId: string;
|
|
2697
|
-
/**
|
|
2698
|
-
* The number of projects migrated for this user.
|
|
2699
|
-
*/
|
|
2700
|
-
projects: number;
|
|
2701
|
-
/**
|
|
2702
|
-
* The number of stores migrated for this user.
|
|
2703
|
-
*/
|
|
2704
|
-
stores: number;
|
|
2705
|
-
/**
|
|
2706
|
-
* The number of integration configurations migrated for this user.
|
|
2707
|
-
*/
|
|
2708
|
-
integrationConfigurations: number;
|
|
2709
|
-
/**
|
|
2710
|
-
* The number of integration clients migrated for this user.
|
|
2711
|
-
*/
|
|
2712
|
-
integrationClients: number;
|
|
2713
|
-
/**
|
|
2714
|
-
* The migration start time timestamp for this user.
|
|
2715
|
-
*/
|
|
2716
|
-
startTime: number;
|
|
2717
|
-
/**
|
|
2718
|
-
* The migration end time timestamp for this user.
|
|
2719
|
-
*/
|
|
2720
|
-
endTime: number;
|
|
2721
|
-
};
|
|
2722
2700
|
/**
|
|
2723
2701
|
* The User's unique identifier.
|
|
2724
2702
|
*
|
|
@@ -2753,10 +2731,6 @@ type AuthUser = {
|
|
|
2753
2731
|
* The user's default team.
|
|
2754
2732
|
*/
|
|
2755
2733
|
defaultTeamId: string | null;
|
|
2756
|
-
/**
|
|
2757
|
-
* The user's version. Will always be `northstar`.
|
|
2758
|
-
*/
|
|
2759
|
-
version: 'northstar';
|
|
2760
2734
|
};
|
|
2761
2735
|
/**
|
|
2762
2736
|
* A limited form of data for the currently authenticated User, due to the authentication token missing privileges to read the full User data.
|
|
@@ -2800,10 +2774,6 @@ type AuthUserLimited = {
|
|
|
2800
2774
|
* The user's default team.
|
|
2801
2775
|
*/
|
|
2802
2776
|
defaultTeamId: string | null;
|
|
2803
|
-
/**
|
|
2804
|
-
* The user's version. Will always be `northstar`.
|
|
2805
|
-
*/
|
|
2806
|
-
version: 'northstar';
|
|
2807
2777
|
};
|
|
2808
2778
|
/**
|
|
2809
2779
|
* A deployment file tree entry
|
|
@@ -4393,6 +4363,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
4393
4363
|
connectConfigurationId: string;
|
|
4394
4364
|
passive: boolean;
|
|
4395
4365
|
buildsEnabled: boolean;
|
|
4366
|
+
aws?: {
|
|
4367
|
+
subnetIds: string[];
|
|
4368
|
+
securityGroupId: string;
|
|
4369
|
+
};
|
|
4396
4370
|
createdAt: number;
|
|
4397
4371
|
updatedAt: number;
|
|
4398
4372
|
}[] | null;
|
|
@@ -6014,6 +5988,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
6014
5988
|
* Whether this project is the default application for the microfrontends group. The default application is the one that is used as the top level shell for the microfrontends group and hosts the other microfrontends.
|
|
6015
5989
|
*/
|
|
6016
5990
|
isDefaultApp?: boolean;
|
|
5991
|
+
/**
|
|
5992
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
5993
|
+
*/
|
|
5994
|
+
defaultAppProjectName: string;
|
|
6017
5995
|
/**
|
|
6018
5996
|
* 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.
|
|
6019
5997
|
*/
|
|
@@ -6043,6 +6021,10 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
6043
6021
|
};
|
|
6044
6022
|
};
|
|
6045
6023
|
isDefaultApp: boolean;
|
|
6024
|
+
/**
|
|
6025
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
6026
|
+
*/
|
|
6027
|
+
defaultAppProjectName: string;
|
|
6046
6028
|
/**
|
|
6047
6029
|
* 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.
|
|
6048
6030
|
*/
|
|
@@ -6710,6 +6692,10 @@ type CreateDeploymentResponse = {
|
|
|
6710
6692
|
* Whether this project is the default application for the microfrontends group. The default application is the one that is used as the top level shell for the microfrontends group and hosts the other microfrontends.
|
|
6711
6693
|
*/
|
|
6712
6694
|
isDefaultApp?: boolean;
|
|
6695
|
+
/**
|
|
6696
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
6697
|
+
*/
|
|
6698
|
+
defaultAppProjectName: string;
|
|
6713
6699
|
/**
|
|
6714
6700
|
* 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.
|
|
6715
6701
|
*/
|
|
@@ -6739,6 +6725,10 @@ type CreateDeploymentResponse = {
|
|
|
6739
6725
|
};
|
|
6740
6726
|
};
|
|
6741
6727
|
isDefaultApp: boolean;
|
|
6728
|
+
/**
|
|
6729
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
6730
|
+
*/
|
|
6731
|
+
defaultAppProjectName: string;
|
|
6742
6732
|
/**
|
|
6743
6733
|
* 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.
|
|
6744
6734
|
*/
|
|
@@ -7619,6 +7609,10 @@ type CancelDeploymentResponse = {
|
|
|
7619
7609
|
* Whether this project is the default application for the microfrontends group. The default application is the one that is used as the top level shell for the microfrontends group and hosts the other microfrontends.
|
|
7620
7610
|
*/
|
|
7621
7611
|
isDefaultApp?: boolean;
|
|
7612
|
+
/**
|
|
7613
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
7614
|
+
*/
|
|
7615
|
+
defaultAppProjectName: string;
|
|
7622
7616
|
/**
|
|
7623
7617
|
* 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.
|
|
7624
7618
|
*/
|
|
@@ -7648,6 +7642,10 @@ type CancelDeploymentResponse = {
|
|
|
7648
7642
|
};
|
|
7649
7643
|
};
|
|
7650
7644
|
isDefaultApp: boolean;
|
|
7645
|
+
/**
|
|
7646
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
7647
|
+
*/
|
|
7648
|
+
defaultAppProjectName: string;
|
|
7651
7649
|
/**
|
|
7652
7650
|
* 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.
|
|
7653
7651
|
*/
|
|
@@ -10408,7 +10406,7 @@ type UpdateResourceSecretsRequestBody = {
|
|
|
10408
10406
|
value: string;
|
|
10409
10407
|
prefix?: string;
|
|
10410
10408
|
/**
|
|
10411
|
-
*
|
|
10409
|
+
* A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.
|
|
10412
10410
|
*/
|
|
10413
10411
|
environmentOverrides?: {
|
|
10414
10412
|
[key: string]: string;
|
|
@@ -10438,14 +10436,14 @@ type UpdateResourceSecretsByIdRequestBody = {
|
|
|
10438
10436
|
value: string;
|
|
10439
10437
|
prefix?: string;
|
|
10440
10438
|
/**
|
|
10441
|
-
*
|
|
10439
|
+
* A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.
|
|
10442
10440
|
*/
|
|
10443
10441
|
environmentOverrides?: {
|
|
10444
10442
|
[key: string]: string;
|
|
10445
10443
|
};
|
|
10446
10444
|
}[];
|
|
10447
10445
|
/**
|
|
10448
|
-
* If true, will only
|
|
10446
|
+
* If true, will only overwrite the provided secrets instead of replacing all secrets.
|
|
10449
10447
|
*/
|
|
10450
10448
|
partial?: boolean;
|
|
10451
10449
|
};
|
|
@@ -10505,7 +10503,7 @@ type ImportResourceRequestBody = {
|
|
|
10505
10503
|
value: string;
|
|
10506
10504
|
prefix?: string;
|
|
10507
10505
|
/**
|
|
10508
|
-
*
|
|
10506
|
+
* A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.
|
|
10509
10507
|
*/
|
|
10510
10508
|
environmentOverrides?: {
|
|
10511
10509
|
[key: string]: string;
|
|
@@ -11982,6 +11980,10 @@ type GetProjectsResponse = {
|
|
|
11982
11980
|
connectConfigurationId: string;
|
|
11983
11981
|
passive: boolean;
|
|
11984
11982
|
buildsEnabled: boolean;
|
|
11983
|
+
aws?: {
|
|
11984
|
+
subnetIds: string[];
|
|
11985
|
+
securityGroupId: string;
|
|
11986
|
+
};
|
|
11985
11987
|
createdAt: number;
|
|
11986
11988
|
updatedAt: number;
|
|
11987
11989
|
}[] | null;
|
|
@@ -12956,6 +12958,10 @@ type CreateProjectResponse = {
|
|
|
12956
12958
|
connectConfigurationId: string;
|
|
12957
12959
|
passive: boolean;
|
|
12958
12960
|
buildsEnabled: boolean;
|
|
12961
|
+
aws?: {
|
|
12962
|
+
subnetIds: string[];
|
|
12963
|
+
securityGroupId: string;
|
|
12964
|
+
};
|
|
12959
12965
|
createdAt: number;
|
|
12960
12966
|
updatedAt: number;
|
|
12961
12967
|
}[] | null;
|
|
@@ -14096,6 +14102,10 @@ type GetProjectResponse = {
|
|
|
14096
14102
|
connectConfigurationId: string;
|
|
14097
14103
|
passive: boolean;
|
|
14098
14104
|
buildsEnabled: boolean;
|
|
14105
|
+
aws?: {
|
|
14106
|
+
subnetIds: string[];
|
|
14107
|
+
securityGroupId: string;
|
|
14108
|
+
};
|
|
14099
14109
|
createdAt: number;
|
|
14100
14110
|
updatedAt: number;
|
|
14101
14111
|
}[] | null;
|
|
@@ -15077,6 +15087,10 @@ type UpdateProjectResponse = {
|
|
|
15077
15087
|
connectConfigurationId: string;
|
|
15078
15088
|
passive: boolean;
|
|
15079
15089
|
buildsEnabled: boolean;
|
|
15090
|
+
aws?: {
|
|
15091
|
+
subnetIds: string[];
|
|
15092
|
+
securityGroupId: string;
|
|
15093
|
+
};
|
|
15080
15094
|
createdAt: number;
|
|
15081
15095
|
updatedAt: number;
|
|
15082
15096
|
}[] | null;
|
|
@@ -17702,7 +17716,7 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
|
|
|
17702
17716
|
type CreateProjectEnvResponse = {
|
|
17703
17717
|
created: {
|
|
17704
17718
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
17705
|
-
type?: 'system' | '
|
|
17719
|
+
type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
|
|
17706
17720
|
/**
|
|
17707
17721
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17708
17722
|
*/
|
|
@@ -17784,7 +17798,7 @@ type CreateProjectEnvResponse = {
|
|
|
17784
17798
|
system?: boolean;
|
|
17785
17799
|
} | {
|
|
17786
17800
|
target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
|
|
17787
|
-
type?: 'system' | '
|
|
17801
|
+
type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
|
|
17788
17802
|
/**
|
|
17789
17803
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
17790
17804
|
*/
|
|
@@ -18374,7 +18388,7 @@ type RemoveProjectEnvVariables = {
|
|
|
18374
18388
|
declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
18375
18389
|
system?: boolean;
|
|
18376
18390
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18377
|
-
type: "system" | "
|
|
18391
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
18378
18392
|
/**
|
|
18379
18393
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18380
18394
|
*/
|
|
@@ -18455,7 +18469,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
18455
18469
|
customEnvironmentIds?: string[];
|
|
18456
18470
|
} | {
|
|
18457
18471
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18458
|
-
type: "system" | "
|
|
18472
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
18459
18473
|
/**
|
|
18460
18474
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18461
18475
|
*/
|
|
@@ -18536,7 +18550,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
|
|
|
18536
18550
|
customEnvironmentIds?: string[];
|
|
18537
18551
|
} | {
|
|
18538
18552
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18539
|
-
type: "system" | "
|
|
18553
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
18540
18554
|
/**
|
|
18541
18555
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18542
18556
|
*/
|
|
@@ -18695,7 +18709,7 @@ type EditProjectEnvVariables = {
|
|
|
18695
18709
|
*/
|
|
18696
18710
|
declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
18697
18711
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
18698
|
-
type: "system" | "
|
|
18712
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
18699
18713
|
/**
|
|
18700
18714
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
18701
18715
|
*/
|
|
@@ -18930,10 +18944,6 @@ type RequestPromotePathParams = {
|
|
|
18930
18944
|
deploymentId: string;
|
|
18931
18945
|
};
|
|
18932
18946
|
type RequestPromoteQueryParams = {
|
|
18933
|
-
/**
|
|
18934
|
-
* Skip the rolling release process and promote directly to production
|
|
18935
|
-
*/
|
|
18936
|
-
dangerouslyForcePromoteCanary?: boolean;
|
|
18937
18947
|
/**
|
|
18938
18948
|
* The Team identifier to perform the request on behalf of.
|
|
18939
18949
|
*/
|
|
@@ -23520,7 +23530,7 @@ declare const operationsByTag: {
|
|
|
23520
23530
|
removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
23521
23531
|
system?: boolean;
|
|
23522
23532
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23523
|
-
type: "system" | "
|
|
23533
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
23524
23534
|
/**
|
|
23525
23535
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
23526
23536
|
*/
|
|
@@ -23601,7 +23611,7 @@ declare const operationsByTag: {
|
|
|
23601
23611
|
customEnvironmentIds?: string[];
|
|
23602
23612
|
} | {
|
|
23603
23613
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23604
|
-
type: "system" | "
|
|
23614
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
23605
23615
|
/**
|
|
23606
23616
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
23607
23617
|
*/
|
|
@@ -23682,7 +23692,7 @@ declare const operationsByTag: {
|
|
|
23682
23692
|
customEnvironmentIds?: string[];
|
|
23683
23693
|
} | {
|
|
23684
23694
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23685
|
-
type: "system" | "
|
|
23695
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
23686
23696
|
/**
|
|
23687
23697
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
23688
23698
|
*/
|
|
@@ -23764,7 +23774,7 @@ declare const operationsByTag: {
|
|
|
23764
23774
|
}[]>;
|
|
23765
23775
|
editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23766
23776
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
23767
|
-
type: "system" | "
|
|
23777
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
23768
23778
|
/**
|
|
23769
23779
|
* This is used to identiy variables that have been migrated from type secret to sensitive.
|
|
23770
23780
|
*/
|
|
@@ -24404,6 +24414,10 @@ declare const operationsByTag: {
|
|
|
24404
24414
|
* Whether this project is the default application for the microfrontends group. The default application is the one that is used as the top level shell for the microfrontends group and hosts the other microfrontends.
|
|
24405
24415
|
*/
|
|
24406
24416
|
isDefaultApp?: boolean;
|
|
24417
|
+
/**
|
|
24418
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
24419
|
+
*/
|
|
24420
|
+
defaultAppProjectName: string;
|
|
24407
24421
|
/**
|
|
24408
24422
|
* 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.
|
|
24409
24423
|
*/
|
|
@@ -24433,6 +24447,10 @@ declare const operationsByTag: {
|
|
|
24433
24447
|
};
|
|
24434
24448
|
};
|
|
24435
24449
|
isDefaultApp: boolean;
|
|
24450
|
+
/**
|
|
24451
|
+
* The project name of the default app of this deployment's microfrontends group.
|
|
24452
|
+
*/
|
|
24453
|
+
defaultAppProjectName: string;
|
|
24436
24454
|
/**
|
|
24437
24455
|
* 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.
|
|
24438
24456
|
*/
|
|
@@ -27214,6 +27232,7 @@ declare const operationsByPath: {
|
|
|
27214
27232
|
} | Record<string, any>[];
|
|
27215
27233
|
microfrontends?: {
|
|
27216
27234
|
isDefaultApp?: boolean;
|
|
27235
|
+
defaultAppProjectName: string;
|
|
27217
27236
|
defaultRoute?: string;
|
|
27218
27237
|
groupIds: (string | string)[];
|
|
27219
27238
|
} | {
|
|
@@ -27225,6 +27244,7 @@ declare const operationsByPath: {
|
|
|
27225
27244
|
};
|
|
27226
27245
|
};
|
|
27227
27246
|
isDefaultApp: boolean;
|
|
27247
|
+
defaultAppProjectName: string;
|
|
27228
27248
|
defaultRoute?: string;
|
|
27229
27249
|
groupIds: (string | string)[];
|
|
27230
27250
|
};
|
|
@@ -28265,7 +28285,7 @@ declare const operationsByPath: {
|
|
|
28265
28285
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
28266
28286
|
system?: boolean;
|
|
28267
28287
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28268
|
-
type: "system" | "
|
|
28288
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28269
28289
|
sunsetSecretId?: string;
|
|
28270
28290
|
decrypted?: boolean;
|
|
28271
28291
|
value: string;
|
|
@@ -28337,7 +28357,7 @@ declare const operationsByPath: {
|
|
|
28337
28357
|
customEnvironmentIds?: string[];
|
|
28338
28358
|
} | {
|
|
28339
28359
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28340
|
-
type: "system" | "
|
|
28360
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28341
28361
|
sunsetSecretId?: string;
|
|
28342
28362
|
decrypted?: boolean;
|
|
28343
28363
|
value: string;
|
|
@@ -28409,7 +28429,7 @@ declare const operationsByPath: {
|
|
|
28409
28429
|
customEnvironmentIds?: string[];
|
|
28410
28430
|
} | {
|
|
28411
28431
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28412
|
-
type: "system" | "
|
|
28432
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28413
28433
|
sunsetSecretId?: string;
|
|
28414
28434
|
decrypted?: boolean;
|
|
28415
28435
|
value: string;
|
|
@@ -28482,7 +28502,7 @@ declare const operationsByPath: {
|
|
|
28482
28502
|
}[]>;
|
|
28483
28503
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
28484
28504
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
28485
|
-
type: "system" | "
|
|
28505
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
28486
28506
|
sunsetSecretId?: string;
|
|
28487
28507
|
decrypted?: boolean;
|
|
28488
28508
|
value: string;
|
|
@@ -29275,6 +29295,7 @@ declare class VercelApi {
|
|
|
29275
29295
|
} | Record<string, any>[];
|
|
29276
29296
|
microfrontends?: {
|
|
29277
29297
|
isDefaultApp?: boolean;
|
|
29298
|
+
defaultAppProjectName: string;
|
|
29278
29299
|
defaultRoute?: string;
|
|
29279
29300
|
groupIds: (string | string)[];
|
|
29280
29301
|
} | {
|
|
@@ -29286,6 +29307,7 @@ declare class VercelApi {
|
|
|
29286
29307
|
};
|
|
29287
29308
|
};
|
|
29288
29309
|
isDefaultApp: boolean;
|
|
29310
|
+
defaultAppProjectName: string;
|
|
29289
29311
|
defaultRoute?: string;
|
|
29290
29312
|
groupIds: (string | string)[];
|
|
29291
29313
|
};
|
|
@@ -30326,7 +30348,7 @@ declare class VercelApi {
|
|
|
30326
30348
|
'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
|
|
30327
30349
|
system?: boolean;
|
|
30328
30350
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
30329
|
-
type: "system" | "
|
|
30351
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
30330
30352
|
sunsetSecretId?: string;
|
|
30331
30353
|
decrypted?: boolean;
|
|
30332
30354
|
value: string;
|
|
@@ -30398,7 +30420,7 @@ declare class VercelApi {
|
|
|
30398
30420
|
customEnvironmentIds?: string[];
|
|
30399
30421
|
} | {
|
|
30400
30422
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
30401
|
-
type: "system" | "
|
|
30423
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
30402
30424
|
sunsetSecretId?: string;
|
|
30403
30425
|
decrypted?: boolean;
|
|
30404
30426
|
value: string;
|
|
@@ -30470,7 +30492,7 @@ declare class VercelApi {
|
|
|
30470
30492
|
customEnvironmentIds?: string[];
|
|
30471
30493
|
} | {
|
|
30472
30494
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
30473
|
-
type: "system" | "
|
|
30495
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
30474
30496
|
sunsetSecretId?: string;
|
|
30475
30497
|
decrypted?: boolean;
|
|
30476
30498
|
value: string;
|
|
@@ -30543,7 +30565,7 @@ declare class VercelApi {
|
|
|
30543
30565
|
}[]>;
|
|
30544
30566
|
'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
30545
30567
|
target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
|
|
30546
|
-
type: "system" | "
|
|
30568
|
+
type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
|
|
30547
30569
|
sunsetSecretId?: string;
|
|
30548
30570
|
decrypted?: boolean;
|
|
30549
30571
|
value: string;
|