vercel-api-js 0.20.0 → 0.20.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 +10 -0
- package/dist/index.d.cts +95 -32
- package/dist/index.d.mts +95 -32
- package/dist/index.d.ts +95 -32
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> vercel-api-js@0.20.
|
|
2
|
+
> vercel-api-js@0.20.1 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]
|
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
|
|
11
11
|
[log] dist/index.mjs (total size: 31 kB, chunk size: 31 kB, exports: VercelApi)
|
|
12
12
|
|
|
13
|
-
Σ Total dist size (byte size): 3.
|
|
13
|
+
Σ Total dist size (byte size): 3.04 MB
|
|
14
14
|
[log]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# vercel-api-js
|
|
2
2
|
|
|
3
|
+
## 0.20.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 671ea25: Add integrationSSOSession field to project-related responses
|
|
8
|
+
- 5423343: Add new field 'imageOptimizationNewPrice' to project-related API responses
|
|
9
|
+
- 40d709b: Add new marketplace experimentation data to project responses
|
|
10
|
+
- 30188f2: Add defaultResourceConfig field to multiple API endpoints
|
|
11
|
+
- 05ee70e: Add new permissions for user, userConnection, webAuthn, and oauth2Connection
|
|
12
|
+
|
|
3
13
|
## 0.20.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -185,7 +185,7 @@ type TeamLimited = {
|
|
|
185
185
|
confirmedAt: number;
|
|
186
186
|
accessRequestedAt?: number;
|
|
187
187
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
188
|
-
|
|
188
|
+
teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'CreateProject' | 'DEVELOPER' | 'FullProductionDeployment' | 'MEMBER' | 'OWNER' | 'VIEWER')[];
|
|
189
189
|
teamId?: string;
|
|
190
190
|
createdAt: number;
|
|
191
191
|
created: number;
|
|
@@ -2422,6 +2422,15 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2422
2422
|
allowServerlessConcurrency?: boolean;
|
|
2423
2423
|
elasticConcurrencyEnabled?: boolean;
|
|
2424
2424
|
};
|
|
2425
|
+
defaultResourceConfig?: {
|
|
2426
|
+
fluid?: boolean;
|
|
2427
|
+
functionDefaultRegion?: string | null;
|
|
2428
|
+
functionDefaultTimeout?: number;
|
|
2429
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
2430
|
+
functionZeroConfigFailover?: boolean;
|
|
2431
|
+
allowServerlessConcurrency?: boolean;
|
|
2432
|
+
elasticConcurrencyEnabled?: boolean;
|
|
2433
|
+
};
|
|
2425
2434
|
rootDirectory?: string | null;
|
|
2426
2435
|
serverlessFunctionRegion?: string | null;
|
|
2427
2436
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -2515,6 +2524,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2515
2524
|
enablePreviewFeedback?: boolean | null;
|
|
2516
2525
|
enableProductionFeedback?: boolean | null;
|
|
2517
2526
|
permissions?: {
|
|
2527
|
+
user?: ACLAction[];
|
|
2528
|
+
userConnection?: ACLAction[];
|
|
2529
|
+
webAuthn?: ACLAction[];
|
|
2530
|
+
oauth2Connection?: ACLAction[];
|
|
2518
2531
|
accessGroup?: ACLAction[];
|
|
2519
2532
|
aliasGlobal?: ACLAction[];
|
|
2520
2533
|
analyticsSampling?: ACLAction[];
|
|
@@ -2551,6 +2564,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2551
2564
|
fileUpload?: ACLAction[];
|
|
2552
2565
|
gitRepository?: ACLAction[];
|
|
2553
2566
|
ipBlocking?: ACLAction[];
|
|
2567
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
2554
2568
|
integration?: ACLAction[];
|
|
2555
2569
|
integrationAccount?: ACLAction[];
|
|
2556
2570
|
integrationConfiguration?: ACLAction[];
|
|
@@ -2558,6 +2572,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2558
2572
|
integrationConfigurationProjects?: ACLAction[];
|
|
2559
2573
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
2560
2574
|
integrationConfigurationRole?: ACLAction[];
|
|
2575
|
+
integrationSSOSession?: ACLAction[];
|
|
2561
2576
|
integrationResource?: ACLAction[];
|
|
2562
2577
|
integrationEvent?: ACLAction[];
|
|
2563
2578
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -2565,6 +2580,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2565
2580
|
marketplaceInstallationMember?: ACLAction[];
|
|
2566
2581
|
marketplaceBillingData?: ACLAction[];
|
|
2567
2582
|
marketplaceInvoice?: ACLAction[];
|
|
2583
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
2584
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
2568
2585
|
jobGlobal?: ACLAction[];
|
|
2569
2586
|
logDrain?: ACLAction[];
|
|
2570
2587
|
Monitoring?: ACLAction[];
|
|
@@ -2585,7 +2602,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2585
2602
|
notificationUsageAlert?: ACLAction[];
|
|
2586
2603
|
notificationCustomerBudget?: ACLAction[];
|
|
2587
2604
|
notificationStatementOfReasons?: ACLAction[];
|
|
2588
|
-
oauth2Connection?: ACLAction[];
|
|
2589
2605
|
observabilityConfiguration?: ACLAction[];
|
|
2590
2606
|
openTelemetryEndpoint?: ACLAction[];
|
|
2591
2607
|
paymentMethod?: ACLAction[];
|
|
@@ -2626,11 +2642,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2626
2642
|
token?: ACLAction[];
|
|
2627
2643
|
usage?: ACLAction[];
|
|
2628
2644
|
usageCycle?: ACLAction[];
|
|
2629
|
-
user?: ACLAction[];
|
|
2630
|
-
userConnection?: ACLAction[];
|
|
2631
2645
|
vpcPeeringConnection?: ACLAction[];
|
|
2632
2646
|
webAnalyticsPlan?: ACLAction[];
|
|
2633
|
-
webAuthn?: ACLAction[];
|
|
2634
2647
|
edgeConfig?: ACLAction[];
|
|
2635
2648
|
edgeConfigItem?: ACLAction[];
|
|
2636
2649
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -2706,7 +2719,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2706
2719
|
requestedAt: number;
|
|
2707
2720
|
type: 'promote' | 'rollback';
|
|
2708
2721
|
} | null;
|
|
2709
|
-
hasFloatingAliases?: boolean;
|
|
2710
2722
|
protectionBypass?: {
|
|
2711
2723
|
[key: string]: {
|
|
2712
2724
|
createdAt: number;
|
|
@@ -6724,8 +6736,17 @@ type GetAccountInfoPathParams = {
|
|
|
6724
6736
|
};
|
|
6725
6737
|
type GetAccountInfoError = ErrorWrapper<undefined>;
|
|
6726
6738
|
type GetAccountInfoResponse = {
|
|
6739
|
+
/**
|
|
6740
|
+
* The name of the team the installation is tied to.
|
|
6741
|
+
*/
|
|
6727
6742
|
name?: string;
|
|
6743
|
+
/**
|
|
6744
|
+
* A URL linking to the installation in the Vercel Dashboard.
|
|
6745
|
+
*/
|
|
6728
6746
|
url: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* The best contact for the integration, which can change as team members and their roles change.
|
|
6749
|
+
*/
|
|
6729
6750
|
contact: {
|
|
6730
6751
|
email: string;
|
|
6731
6752
|
name?: string;
|
|
@@ -9122,6 +9143,15 @@ type GetProjectsResponse = {
|
|
|
9122
9143
|
allowServerlessConcurrency?: boolean;
|
|
9123
9144
|
elasticConcurrencyEnabled?: boolean;
|
|
9124
9145
|
};
|
|
9146
|
+
defaultResourceConfig?: {
|
|
9147
|
+
fluid?: boolean;
|
|
9148
|
+
functionDefaultRegion?: string | null;
|
|
9149
|
+
functionDefaultTimeout?: number;
|
|
9150
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9151
|
+
functionZeroConfigFailover?: boolean;
|
|
9152
|
+
allowServerlessConcurrency?: boolean;
|
|
9153
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9154
|
+
};
|
|
9125
9155
|
rootDirectory?: string | null;
|
|
9126
9156
|
serverlessFunctionRegion?: string | null;
|
|
9127
9157
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9215,6 +9245,10 @@ type GetProjectsResponse = {
|
|
|
9215
9245
|
enablePreviewFeedback?: boolean | null;
|
|
9216
9246
|
enableProductionFeedback?: boolean | null;
|
|
9217
9247
|
permissions?: {
|
|
9248
|
+
user?: ACLAction[];
|
|
9249
|
+
userConnection?: ACLAction[];
|
|
9250
|
+
webAuthn?: ACLAction[];
|
|
9251
|
+
oauth2Connection?: ACLAction[];
|
|
9218
9252
|
accessGroup?: ACLAction[];
|
|
9219
9253
|
aliasGlobal?: ACLAction[];
|
|
9220
9254
|
analyticsSampling?: ACLAction[];
|
|
@@ -9251,6 +9285,7 @@ type GetProjectsResponse = {
|
|
|
9251
9285
|
fileUpload?: ACLAction[];
|
|
9252
9286
|
gitRepository?: ACLAction[];
|
|
9253
9287
|
ipBlocking?: ACLAction[];
|
|
9288
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
9254
9289
|
integration?: ACLAction[];
|
|
9255
9290
|
integrationAccount?: ACLAction[];
|
|
9256
9291
|
integrationConfiguration?: ACLAction[];
|
|
@@ -9258,6 +9293,7 @@ type GetProjectsResponse = {
|
|
|
9258
9293
|
integrationConfigurationProjects?: ACLAction[];
|
|
9259
9294
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
9260
9295
|
integrationConfigurationRole?: ACLAction[];
|
|
9296
|
+
integrationSSOSession?: ACLAction[];
|
|
9261
9297
|
integrationResource?: ACLAction[];
|
|
9262
9298
|
integrationEvent?: ACLAction[];
|
|
9263
9299
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -9265,6 +9301,8 @@ type GetProjectsResponse = {
|
|
|
9265
9301
|
marketplaceInstallationMember?: ACLAction[];
|
|
9266
9302
|
marketplaceBillingData?: ACLAction[];
|
|
9267
9303
|
marketplaceInvoice?: ACLAction[];
|
|
9304
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
9305
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
9268
9306
|
jobGlobal?: ACLAction[];
|
|
9269
9307
|
logDrain?: ACLAction[];
|
|
9270
9308
|
Monitoring?: ACLAction[];
|
|
@@ -9285,7 +9323,6 @@ type GetProjectsResponse = {
|
|
|
9285
9323
|
notificationUsageAlert?: ACLAction[];
|
|
9286
9324
|
notificationCustomerBudget?: ACLAction[];
|
|
9287
9325
|
notificationStatementOfReasons?: ACLAction[];
|
|
9288
|
-
oauth2Connection?: ACLAction[];
|
|
9289
9326
|
observabilityConfiguration?: ACLAction[];
|
|
9290
9327
|
openTelemetryEndpoint?: ACLAction[];
|
|
9291
9328
|
paymentMethod?: ACLAction[];
|
|
@@ -9326,11 +9363,8 @@ type GetProjectsResponse = {
|
|
|
9326
9363
|
token?: ACLAction[];
|
|
9327
9364
|
usage?: ACLAction[];
|
|
9328
9365
|
usageCycle?: ACLAction[];
|
|
9329
|
-
user?: ACLAction[];
|
|
9330
|
-
userConnection?: ACLAction[];
|
|
9331
9366
|
vpcPeeringConnection?: ACLAction[];
|
|
9332
9367
|
webAnalyticsPlan?: ACLAction[];
|
|
9333
|
-
webAuthn?: ACLAction[];
|
|
9334
9368
|
edgeConfig?: ACLAction[];
|
|
9335
9369
|
edgeConfigItem?: ACLAction[];
|
|
9336
9370
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -9406,7 +9440,6 @@ type GetProjectsResponse = {
|
|
|
9406
9440
|
requestedAt: number;
|
|
9407
9441
|
type: 'promote' | 'rollback';
|
|
9408
9442
|
} | null;
|
|
9409
|
-
hasFloatingAliases?: boolean;
|
|
9410
9443
|
protectionBypass?: {
|
|
9411
9444
|
[key: string]: {
|
|
9412
9445
|
createdAt: number;
|
|
@@ -9902,6 +9935,15 @@ type CreateProjectResponse = {
|
|
|
9902
9935
|
allowServerlessConcurrency?: boolean;
|
|
9903
9936
|
elasticConcurrencyEnabled?: boolean;
|
|
9904
9937
|
};
|
|
9938
|
+
defaultResourceConfig?: {
|
|
9939
|
+
fluid?: boolean;
|
|
9940
|
+
functionDefaultRegion?: string | null;
|
|
9941
|
+
functionDefaultTimeout?: number;
|
|
9942
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9943
|
+
functionZeroConfigFailover?: boolean;
|
|
9944
|
+
allowServerlessConcurrency?: boolean;
|
|
9945
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9946
|
+
};
|
|
9905
9947
|
rootDirectory?: string | null;
|
|
9906
9948
|
serverlessFunctionRegion?: string | null;
|
|
9907
9949
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9995,6 +10037,10 @@ type CreateProjectResponse = {
|
|
|
9995
10037
|
enablePreviewFeedback?: boolean | null;
|
|
9996
10038
|
enableProductionFeedback?: boolean | null;
|
|
9997
10039
|
permissions?: {
|
|
10040
|
+
user?: ACLAction[];
|
|
10041
|
+
userConnection?: ACLAction[];
|
|
10042
|
+
webAuthn?: ACLAction[];
|
|
10043
|
+
oauth2Connection?: ACLAction[];
|
|
9998
10044
|
accessGroup?: ACLAction[];
|
|
9999
10045
|
aliasGlobal?: ACLAction[];
|
|
10000
10046
|
analyticsSampling?: ACLAction[];
|
|
@@ -10031,6 +10077,7 @@ type CreateProjectResponse = {
|
|
|
10031
10077
|
fileUpload?: ACLAction[];
|
|
10032
10078
|
gitRepository?: ACLAction[];
|
|
10033
10079
|
ipBlocking?: ACLAction[];
|
|
10080
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10034
10081
|
integration?: ACLAction[];
|
|
10035
10082
|
integrationAccount?: ACLAction[];
|
|
10036
10083
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10038,6 +10085,7 @@ type CreateProjectResponse = {
|
|
|
10038
10085
|
integrationConfigurationProjects?: ACLAction[];
|
|
10039
10086
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10040
10087
|
integrationConfigurationRole?: ACLAction[];
|
|
10088
|
+
integrationSSOSession?: ACLAction[];
|
|
10041
10089
|
integrationResource?: ACLAction[];
|
|
10042
10090
|
integrationEvent?: ACLAction[];
|
|
10043
10091
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10045,6 +10093,8 @@ type CreateProjectResponse = {
|
|
|
10045
10093
|
marketplaceInstallationMember?: ACLAction[];
|
|
10046
10094
|
marketplaceBillingData?: ACLAction[];
|
|
10047
10095
|
marketplaceInvoice?: ACLAction[];
|
|
10096
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
10097
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10048
10098
|
jobGlobal?: ACLAction[];
|
|
10049
10099
|
logDrain?: ACLAction[];
|
|
10050
10100
|
Monitoring?: ACLAction[];
|
|
@@ -10065,7 +10115,6 @@ type CreateProjectResponse = {
|
|
|
10065
10115
|
notificationUsageAlert?: ACLAction[];
|
|
10066
10116
|
notificationCustomerBudget?: ACLAction[];
|
|
10067
10117
|
notificationStatementOfReasons?: ACLAction[];
|
|
10068
|
-
oauth2Connection?: ACLAction[];
|
|
10069
10118
|
observabilityConfiguration?: ACLAction[];
|
|
10070
10119
|
openTelemetryEndpoint?: ACLAction[];
|
|
10071
10120
|
paymentMethod?: ACLAction[];
|
|
@@ -10106,11 +10155,8 @@ type CreateProjectResponse = {
|
|
|
10106
10155
|
token?: ACLAction[];
|
|
10107
10156
|
usage?: ACLAction[];
|
|
10108
10157
|
usageCycle?: ACLAction[];
|
|
10109
|
-
user?: ACLAction[];
|
|
10110
|
-
userConnection?: ACLAction[];
|
|
10111
10158
|
vpcPeeringConnection?: ACLAction[];
|
|
10112
10159
|
webAnalyticsPlan?: ACLAction[];
|
|
10113
|
-
webAuthn?: ACLAction[];
|
|
10114
10160
|
edgeConfig?: ACLAction[];
|
|
10115
10161
|
edgeConfigItem?: ACLAction[];
|
|
10116
10162
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -10186,7 +10232,6 @@ type CreateProjectResponse = {
|
|
|
10186
10232
|
requestedAt: number;
|
|
10187
10233
|
type: 'promote' | 'rollback';
|
|
10188
10234
|
} | null;
|
|
10189
|
-
hasFloatingAliases?: boolean;
|
|
10190
10235
|
protectionBypass?: {
|
|
10191
10236
|
[key: string]: {
|
|
10192
10237
|
createdAt: number;
|
|
@@ -10814,6 +10859,15 @@ type GetProjectResponse = {
|
|
|
10814
10859
|
allowServerlessConcurrency?: boolean;
|
|
10815
10860
|
elasticConcurrencyEnabled?: boolean;
|
|
10816
10861
|
};
|
|
10862
|
+
defaultResourceConfig?: {
|
|
10863
|
+
fluid?: boolean;
|
|
10864
|
+
functionDefaultRegion?: string | null;
|
|
10865
|
+
functionDefaultTimeout?: number;
|
|
10866
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
10867
|
+
functionZeroConfigFailover?: boolean;
|
|
10868
|
+
allowServerlessConcurrency?: boolean;
|
|
10869
|
+
elasticConcurrencyEnabled?: boolean;
|
|
10870
|
+
};
|
|
10817
10871
|
rootDirectory?: string | null;
|
|
10818
10872
|
serverlessFunctionRegion?: string | null;
|
|
10819
10873
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -10907,6 +10961,10 @@ type GetProjectResponse = {
|
|
|
10907
10961
|
enablePreviewFeedback?: boolean | null;
|
|
10908
10962
|
enableProductionFeedback?: boolean | null;
|
|
10909
10963
|
permissions?: {
|
|
10964
|
+
user?: ACLAction[];
|
|
10965
|
+
userConnection?: ACLAction[];
|
|
10966
|
+
webAuthn?: ACLAction[];
|
|
10967
|
+
oauth2Connection?: ACLAction[];
|
|
10910
10968
|
accessGroup?: ACLAction[];
|
|
10911
10969
|
aliasGlobal?: ACLAction[];
|
|
10912
10970
|
analyticsSampling?: ACLAction[];
|
|
@@ -10943,6 +11001,7 @@ type GetProjectResponse = {
|
|
|
10943
11001
|
fileUpload?: ACLAction[];
|
|
10944
11002
|
gitRepository?: ACLAction[];
|
|
10945
11003
|
ipBlocking?: ACLAction[];
|
|
11004
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10946
11005
|
integration?: ACLAction[];
|
|
10947
11006
|
integrationAccount?: ACLAction[];
|
|
10948
11007
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10950,6 +11009,7 @@ type GetProjectResponse = {
|
|
|
10950
11009
|
integrationConfigurationProjects?: ACLAction[];
|
|
10951
11010
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10952
11011
|
integrationConfigurationRole?: ACLAction[];
|
|
11012
|
+
integrationSSOSession?: ACLAction[];
|
|
10953
11013
|
integrationResource?: ACLAction[];
|
|
10954
11014
|
integrationEvent?: ACLAction[];
|
|
10955
11015
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10957,6 +11017,8 @@ type GetProjectResponse = {
|
|
|
10957
11017
|
marketplaceInstallationMember?: ACLAction[];
|
|
10958
11018
|
marketplaceBillingData?: ACLAction[];
|
|
10959
11019
|
marketplaceInvoice?: ACLAction[];
|
|
11020
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11021
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10960
11022
|
jobGlobal?: ACLAction[];
|
|
10961
11023
|
logDrain?: ACLAction[];
|
|
10962
11024
|
Monitoring?: ACLAction[];
|
|
@@ -10977,7 +11039,6 @@ type GetProjectResponse = {
|
|
|
10977
11039
|
notificationUsageAlert?: ACLAction[];
|
|
10978
11040
|
notificationCustomerBudget?: ACLAction[];
|
|
10979
11041
|
notificationStatementOfReasons?: ACLAction[];
|
|
10980
|
-
oauth2Connection?: ACLAction[];
|
|
10981
11042
|
observabilityConfiguration?: ACLAction[];
|
|
10982
11043
|
openTelemetryEndpoint?: ACLAction[];
|
|
10983
11044
|
paymentMethod?: ACLAction[];
|
|
@@ -11018,11 +11079,8 @@ type GetProjectResponse = {
|
|
|
11018
11079
|
token?: ACLAction[];
|
|
11019
11080
|
usage?: ACLAction[];
|
|
11020
11081
|
usageCycle?: ACLAction[];
|
|
11021
|
-
user?: ACLAction[];
|
|
11022
|
-
userConnection?: ACLAction[];
|
|
11023
11082
|
vpcPeeringConnection?: ACLAction[];
|
|
11024
11083
|
webAnalyticsPlan?: ACLAction[];
|
|
11025
|
-
webAuthn?: ACLAction[];
|
|
11026
11084
|
edgeConfig?: ACLAction[];
|
|
11027
11085
|
edgeConfigItem?: ACLAction[];
|
|
11028
11086
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11098,7 +11156,6 @@ type GetProjectResponse = {
|
|
|
11098
11156
|
requestedAt: number;
|
|
11099
11157
|
type: 'promote' | 'rollback';
|
|
11100
11158
|
} | null;
|
|
11101
|
-
hasFloatingAliases?: boolean;
|
|
11102
11159
|
protectionBypass?: {
|
|
11103
11160
|
[key: string]: {
|
|
11104
11161
|
createdAt: number;
|
|
@@ -11601,6 +11658,15 @@ type UpdateProjectResponse = {
|
|
|
11601
11658
|
allowServerlessConcurrency?: boolean;
|
|
11602
11659
|
elasticConcurrencyEnabled?: boolean;
|
|
11603
11660
|
};
|
|
11661
|
+
defaultResourceConfig?: {
|
|
11662
|
+
fluid?: boolean;
|
|
11663
|
+
functionDefaultRegion?: string | null;
|
|
11664
|
+
functionDefaultTimeout?: number;
|
|
11665
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11666
|
+
functionZeroConfigFailover?: boolean;
|
|
11667
|
+
allowServerlessConcurrency?: boolean;
|
|
11668
|
+
elasticConcurrencyEnabled?: boolean;
|
|
11669
|
+
};
|
|
11604
11670
|
rootDirectory?: string | null;
|
|
11605
11671
|
serverlessFunctionRegion?: string | null;
|
|
11606
11672
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -11694,6 +11760,10 @@ type UpdateProjectResponse = {
|
|
|
11694
11760
|
enablePreviewFeedback?: boolean | null;
|
|
11695
11761
|
enableProductionFeedback?: boolean | null;
|
|
11696
11762
|
permissions?: {
|
|
11763
|
+
user?: ACLAction[];
|
|
11764
|
+
userConnection?: ACLAction[];
|
|
11765
|
+
webAuthn?: ACLAction[];
|
|
11766
|
+
oauth2Connection?: ACLAction[];
|
|
11697
11767
|
accessGroup?: ACLAction[];
|
|
11698
11768
|
aliasGlobal?: ACLAction[];
|
|
11699
11769
|
analyticsSampling?: ACLAction[];
|
|
@@ -11730,6 +11800,7 @@ type UpdateProjectResponse = {
|
|
|
11730
11800
|
fileUpload?: ACLAction[];
|
|
11731
11801
|
gitRepository?: ACLAction[];
|
|
11732
11802
|
ipBlocking?: ACLAction[];
|
|
11803
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
11733
11804
|
integration?: ACLAction[];
|
|
11734
11805
|
integrationAccount?: ACLAction[];
|
|
11735
11806
|
integrationConfiguration?: ACLAction[];
|
|
@@ -11737,6 +11808,7 @@ type UpdateProjectResponse = {
|
|
|
11737
11808
|
integrationConfigurationProjects?: ACLAction[];
|
|
11738
11809
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
11739
11810
|
integrationConfigurationRole?: ACLAction[];
|
|
11811
|
+
integrationSSOSession?: ACLAction[];
|
|
11740
11812
|
integrationResource?: ACLAction[];
|
|
11741
11813
|
integrationEvent?: ACLAction[];
|
|
11742
11814
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -11744,6 +11816,8 @@ type UpdateProjectResponse = {
|
|
|
11744
11816
|
marketplaceInstallationMember?: ACLAction[];
|
|
11745
11817
|
marketplaceBillingData?: ACLAction[];
|
|
11746
11818
|
marketplaceInvoice?: ACLAction[];
|
|
11819
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11820
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
11747
11821
|
jobGlobal?: ACLAction[];
|
|
11748
11822
|
logDrain?: ACLAction[];
|
|
11749
11823
|
Monitoring?: ACLAction[];
|
|
@@ -11764,7 +11838,6 @@ type UpdateProjectResponse = {
|
|
|
11764
11838
|
notificationUsageAlert?: ACLAction[];
|
|
11765
11839
|
notificationCustomerBudget?: ACLAction[];
|
|
11766
11840
|
notificationStatementOfReasons?: ACLAction[];
|
|
11767
|
-
oauth2Connection?: ACLAction[];
|
|
11768
11841
|
observabilityConfiguration?: ACLAction[];
|
|
11769
11842
|
openTelemetryEndpoint?: ACLAction[];
|
|
11770
11843
|
paymentMethod?: ACLAction[];
|
|
@@ -11805,11 +11878,8 @@ type UpdateProjectResponse = {
|
|
|
11805
11878
|
token?: ACLAction[];
|
|
11806
11879
|
usage?: ACLAction[];
|
|
11807
11880
|
usageCycle?: ACLAction[];
|
|
11808
|
-
user?: ACLAction[];
|
|
11809
|
-
userConnection?: ACLAction[];
|
|
11810
11881
|
vpcPeeringConnection?: ACLAction[];
|
|
11811
11882
|
webAnalyticsPlan?: ACLAction[];
|
|
11812
|
-
webAuthn?: ACLAction[];
|
|
11813
11883
|
edgeConfig?: ACLAction[];
|
|
11814
11884
|
edgeConfigItem?: ACLAction[];
|
|
11815
11885
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11885,7 +11955,6 @@ type UpdateProjectResponse = {
|
|
|
11885
11955
|
requestedAt: number;
|
|
11886
11956
|
type: 'promote' | 'rollback';
|
|
11887
11957
|
} | null;
|
|
11888
|
-
hasFloatingAliases?: boolean;
|
|
11889
11958
|
protectionBypass?: {
|
|
11890
11959
|
[key: string]: {
|
|
11891
11960
|
createdAt: number;
|
|
@@ -15439,12 +15508,6 @@ type GetTeamMembersResponse = {
|
|
|
15439
15508
|
* @example OWNER
|
|
15440
15509
|
*/
|
|
15441
15510
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15442
|
-
/**
|
|
15443
|
-
* Permissions that this user has in addition to their role.
|
|
15444
|
-
*
|
|
15445
|
-
* @example ['createProjects']
|
|
15446
|
-
*/
|
|
15447
|
-
additionalRoles?: string[];
|
|
15448
15511
|
/**
|
|
15449
15512
|
* The ID of this user.
|
|
15450
15513
|
*
|
package/dist/index.d.mts
CHANGED
|
@@ -185,7 +185,7 @@ type TeamLimited = {
|
|
|
185
185
|
confirmedAt: number;
|
|
186
186
|
accessRequestedAt?: number;
|
|
187
187
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
188
|
-
|
|
188
|
+
teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'CreateProject' | 'DEVELOPER' | 'FullProductionDeployment' | 'MEMBER' | 'OWNER' | 'VIEWER')[];
|
|
189
189
|
teamId?: string;
|
|
190
190
|
createdAt: number;
|
|
191
191
|
created: number;
|
|
@@ -2422,6 +2422,15 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2422
2422
|
allowServerlessConcurrency?: boolean;
|
|
2423
2423
|
elasticConcurrencyEnabled?: boolean;
|
|
2424
2424
|
};
|
|
2425
|
+
defaultResourceConfig?: {
|
|
2426
|
+
fluid?: boolean;
|
|
2427
|
+
functionDefaultRegion?: string | null;
|
|
2428
|
+
functionDefaultTimeout?: number;
|
|
2429
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
2430
|
+
functionZeroConfigFailover?: boolean;
|
|
2431
|
+
allowServerlessConcurrency?: boolean;
|
|
2432
|
+
elasticConcurrencyEnabled?: boolean;
|
|
2433
|
+
};
|
|
2425
2434
|
rootDirectory?: string | null;
|
|
2426
2435
|
serverlessFunctionRegion?: string | null;
|
|
2427
2436
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -2515,6 +2524,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2515
2524
|
enablePreviewFeedback?: boolean | null;
|
|
2516
2525
|
enableProductionFeedback?: boolean | null;
|
|
2517
2526
|
permissions?: {
|
|
2527
|
+
user?: ACLAction[];
|
|
2528
|
+
userConnection?: ACLAction[];
|
|
2529
|
+
webAuthn?: ACLAction[];
|
|
2530
|
+
oauth2Connection?: ACLAction[];
|
|
2518
2531
|
accessGroup?: ACLAction[];
|
|
2519
2532
|
aliasGlobal?: ACLAction[];
|
|
2520
2533
|
analyticsSampling?: ACLAction[];
|
|
@@ -2551,6 +2564,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2551
2564
|
fileUpload?: ACLAction[];
|
|
2552
2565
|
gitRepository?: ACLAction[];
|
|
2553
2566
|
ipBlocking?: ACLAction[];
|
|
2567
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
2554
2568
|
integration?: ACLAction[];
|
|
2555
2569
|
integrationAccount?: ACLAction[];
|
|
2556
2570
|
integrationConfiguration?: ACLAction[];
|
|
@@ -2558,6 +2572,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2558
2572
|
integrationConfigurationProjects?: ACLAction[];
|
|
2559
2573
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
2560
2574
|
integrationConfigurationRole?: ACLAction[];
|
|
2575
|
+
integrationSSOSession?: ACLAction[];
|
|
2561
2576
|
integrationResource?: ACLAction[];
|
|
2562
2577
|
integrationEvent?: ACLAction[];
|
|
2563
2578
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -2565,6 +2580,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2565
2580
|
marketplaceInstallationMember?: ACLAction[];
|
|
2566
2581
|
marketplaceBillingData?: ACLAction[];
|
|
2567
2582
|
marketplaceInvoice?: ACLAction[];
|
|
2583
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
2584
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
2568
2585
|
jobGlobal?: ACLAction[];
|
|
2569
2586
|
logDrain?: ACLAction[];
|
|
2570
2587
|
Monitoring?: ACLAction[];
|
|
@@ -2585,7 +2602,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2585
2602
|
notificationUsageAlert?: ACLAction[];
|
|
2586
2603
|
notificationCustomerBudget?: ACLAction[];
|
|
2587
2604
|
notificationStatementOfReasons?: ACLAction[];
|
|
2588
|
-
oauth2Connection?: ACLAction[];
|
|
2589
2605
|
observabilityConfiguration?: ACLAction[];
|
|
2590
2606
|
openTelemetryEndpoint?: ACLAction[];
|
|
2591
2607
|
paymentMethod?: ACLAction[];
|
|
@@ -2626,11 +2642,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2626
2642
|
token?: ACLAction[];
|
|
2627
2643
|
usage?: ACLAction[];
|
|
2628
2644
|
usageCycle?: ACLAction[];
|
|
2629
|
-
user?: ACLAction[];
|
|
2630
|
-
userConnection?: ACLAction[];
|
|
2631
2645
|
vpcPeeringConnection?: ACLAction[];
|
|
2632
2646
|
webAnalyticsPlan?: ACLAction[];
|
|
2633
|
-
webAuthn?: ACLAction[];
|
|
2634
2647
|
edgeConfig?: ACLAction[];
|
|
2635
2648
|
edgeConfigItem?: ACLAction[];
|
|
2636
2649
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -2706,7 +2719,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2706
2719
|
requestedAt: number;
|
|
2707
2720
|
type: 'promote' | 'rollback';
|
|
2708
2721
|
} | null;
|
|
2709
|
-
hasFloatingAliases?: boolean;
|
|
2710
2722
|
protectionBypass?: {
|
|
2711
2723
|
[key: string]: {
|
|
2712
2724
|
createdAt: number;
|
|
@@ -6724,8 +6736,17 @@ type GetAccountInfoPathParams = {
|
|
|
6724
6736
|
};
|
|
6725
6737
|
type GetAccountInfoError = ErrorWrapper<undefined>;
|
|
6726
6738
|
type GetAccountInfoResponse = {
|
|
6739
|
+
/**
|
|
6740
|
+
* The name of the team the installation is tied to.
|
|
6741
|
+
*/
|
|
6727
6742
|
name?: string;
|
|
6743
|
+
/**
|
|
6744
|
+
* A URL linking to the installation in the Vercel Dashboard.
|
|
6745
|
+
*/
|
|
6728
6746
|
url: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* The best contact for the integration, which can change as team members and their roles change.
|
|
6749
|
+
*/
|
|
6729
6750
|
contact: {
|
|
6730
6751
|
email: string;
|
|
6731
6752
|
name?: string;
|
|
@@ -9122,6 +9143,15 @@ type GetProjectsResponse = {
|
|
|
9122
9143
|
allowServerlessConcurrency?: boolean;
|
|
9123
9144
|
elasticConcurrencyEnabled?: boolean;
|
|
9124
9145
|
};
|
|
9146
|
+
defaultResourceConfig?: {
|
|
9147
|
+
fluid?: boolean;
|
|
9148
|
+
functionDefaultRegion?: string | null;
|
|
9149
|
+
functionDefaultTimeout?: number;
|
|
9150
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9151
|
+
functionZeroConfigFailover?: boolean;
|
|
9152
|
+
allowServerlessConcurrency?: boolean;
|
|
9153
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9154
|
+
};
|
|
9125
9155
|
rootDirectory?: string | null;
|
|
9126
9156
|
serverlessFunctionRegion?: string | null;
|
|
9127
9157
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9215,6 +9245,10 @@ type GetProjectsResponse = {
|
|
|
9215
9245
|
enablePreviewFeedback?: boolean | null;
|
|
9216
9246
|
enableProductionFeedback?: boolean | null;
|
|
9217
9247
|
permissions?: {
|
|
9248
|
+
user?: ACLAction[];
|
|
9249
|
+
userConnection?: ACLAction[];
|
|
9250
|
+
webAuthn?: ACLAction[];
|
|
9251
|
+
oauth2Connection?: ACLAction[];
|
|
9218
9252
|
accessGroup?: ACLAction[];
|
|
9219
9253
|
aliasGlobal?: ACLAction[];
|
|
9220
9254
|
analyticsSampling?: ACLAction[];
|
|
@@ -9251,6 +9285,7 @@ type GetProjectsResponse = {
|
|
|
9251
9285
|
fileUpload?: ACLAction[];
|
|
9252
9286
|
gitRepository?: ACLAction[];
|
|
9253
9287
|
ipBlocking?: ACLAction[];
|
|
9288
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
9254
9289
|
integration?: ACLAction[];
|
|
9255
9290
|
integrationAccount?: ACLAction[];
|
|
9256
9291
|
integrationConfiguration?: ACLAction[];
|
|
@@ -9258,6 +9293,7 @@ type GetProjectsResponse = {
|
|
|
9258
9293
|
integrationConfigurationProjects?: ACLAction[];
|
|
9259
9294
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
9260
9295
|
integrationConfigurationRole?: ACLAction[];
|
|
9296
|
+
integrationSSOSession?: ACLAction[];
|
|
9261
9297
|
integrationResource?: ACLAction[];
|
|
9262
9298
|
integrationEvent?: ACLAction[];
|
|
9263
9299
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -9265,6 +9301,8 @@ type GetProjectsResponse = {
|
|
|
9265
9301
|
marketplaceInstallationMember?: ACLAction[];
|
|
9266
9302
|
marketplaceBillingData?: ACLAction[];
|
|
9267
9303
|
marketplaceInvoice?: ACLAction[];
|
|
9304
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
9305
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
9268
9306
|
jobGlobal?: ACLAction[];
|
|
9269
9307
|
logDrain?: ACLAction[];
|
|
9270
9308
|
Monitoring?: ACLAction[];
|
|
@@ -9285,7 +9323,6 @@ type GetProjectsResponse = {
|
|
|
9285
9323
|
notificationUsageAlert?: ACLAction[];
|
|
9286
9324
|
notificationCustomerBudget?: ACLAction[];
|
|
9287
9325
|
notificationStatementOfReasons?: ACLAction[];
|
|
9288
|
-
oauth2Connection?: ACLAction[];
|
|
9289
9326
|
observabilityConfiguration?: ACLAction[];
|
|
9290
9327
|
openTelemetryEndpoint?: ACLAction[];
|
|
9291
9328
|
paymentMethod?: ACLAction[];
|
|
@@ -9326,11 +9363,8 @@ type GetProjectsResponse = {
|
|
|
9326
9363
|
token?: ACLAction[];
|
|
9327
9364
|
usage?: ACLAction[];
|
|
9328
9365
|
usageCycle?: ACLAction[];
|
|
9329
|
-
user?: ACLAction[];
|
|
9330
|
-
userConnection?: ACLAction[];
|
|
9331
9366
|
vpcPeeringConnection?: ACLAction[];
|
|
9332
9367
|
webAnalyticsPlan?: ACLAction[];
|
|
9333
|
-
webAuthn?: ACLAction[];
|
|
9334
9368
|
edgeConfig?: ACLAction[];
|
|
9335
9369
|
edgeConfigItem?: ACLAction[];
|
|
9336
9370
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -9406,7 +9440,6 @@ type GetProjectsResponse = {
|
|
|
9406
9440
|
requestedAt: number;
|
|
9407
9441
|
type: 'promote' | 'rollback';
|
|
9408
9442
|
} | null;
|
|
9409
|
-
hasFloatingAliases?: boolean;
|
|
9410
9443
|
protectionBypass?: {
|
|
9411
9444
|
[key: string]: {
|
|
9412
9445
|
createdAt: number;
|
|
@@ -9902,6 +9935,15 @@ type CreateProjectResponse = {
|
|
|
9902
9935
|
allowServerlessConcurrency?: boolean;
|
|
9903
9936
|
elasticConcurrencyEnabled?: boolean;
|
|
9904
9937
|
};
|
|
9938
|
+
defaultResourceConfig?: {
|
|
9939
|
+
fluid?: boolean;
|
|
9940
|
+
functionDefaultRegion?: string | null;
|
|
9941
|
+
functionDefaultTimeout?: number;
|
|
9942
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9943
|
+
functionZeroConfigFailover?: boolean;
|
|
9944
|
+
allowServerlessConcurrency?: boolean;
|
|
9945
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9946
|
+
};
|
|
9905
9947
|
rootDirectory?: string | null;
|
|
9906
9948
|
serverlessFunctionRegion?: string | null;
|
|
9907
9949
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9995,6 +10037,10 @@ type CreateProjectResponse = {
|
|
|
9995
10037
|
enablePreviewFeedback?: boolean | null;
|
|
9996
10038
|
enableProductionFeedback?: boolean | null;
|
|
9997
10039
|
permissions?: {
|
|
10040
|
+
user?: ACLAction[];
|
|
10041
|
+
userConnection?: ACLAction[];
|
|
10042
|
+
webAuthn?: ACLAction[];
|
|
10043
|
+
oauth2Connection?: ACLAction[];
|
|
9998
10044
|
accessGroup?: ACLAction[];
|
|
9999
10045
|
aliasGlobal?: ACLAction[];
|
|
10000
10046
|
analyticsSampling?: ACLAction[];
|
|
@@ -10031,6 +10077,7 @@ type CreateProjectResponse = {
|
|
|
10031
10077
|
fileUpload?: ACLAction[];
|
|
10032
10078
|
gitRepository?: ACLAction[];
|
|
10033
10079
|
ipBlocking?: ACLAction[];
|
|
10080
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10034
10081
|
integration?: ACLAction[];
|
|
10035
10082
|
integrationAccount?: ACLAction[];
|
|
10036
10083
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10038,6 +10085,7 @@ type CreateProjectResponse = {
|
|
|
10038
10085
|
integrationConfigurationProjects?: ACLAction[];
|
|
10039
10086
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10040
10087
|
integrationConfigurationRole?: ACLAction[];
|
|
10088
|
+
integrationSSOSession?: ACLAction[];
|
|
10041
10089
|
integrationResource?: ACLAction[];
|
|
10042
10090
|
integrationEvent?: ACLAction[];
|
|
10043
10091
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10045,6 +10093,8 @@ type CreateProjectResponse = {
|
|
|
10045
10093
|
marketplaceInstallationMember?: ACLAction[];
|
|
10046
10094
|
marketplaceBillingData?: ACLAction[];
|
|
10047
10095
|
marketplaceInvoice?: ACLAction[];
|
|
10096
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
10097
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10048
10098
|
jobGlobal?: ACLAction[];
|
|
10049
10099
|
logDrain?: ACLAction[];
|
|
10050
10100
|
Monitoring?: ACLAction[];
|
|
@@ -10065,7 +10115,6 @@ type CreateProjectResponse = {
|
|
|
10065
10115
|
notificationUsageAlert?: ACLAction[];
|
|
10066
10116
|
notificationCustomerBudget?: ACLAction[];
|
|
10067
10117
|
notificationStatementOfReasons?: ACLAction[];
|
|
10068
|
-
oauth2Connection?: ACLAction[];
|
|
10069
10118
|
observabilityConfiguration?: ACLAction[];
|
|
10070
10119
|
openTelemetryEndpoint?: ACLAction[];
|
|
10071
10120
|
paymentMethod?: ACLAction[];
|
|
@@ -10106,11 +10155,8 @@ type CreateProjectResponse = {
|
|
|
10106
10155
|
token?: ACLAction[];
|
|
10107
10156
|
usage?: ACLAction[];
|
|
10108
10157
|
usageCycle?: ACLAction[];
|
|
10109
|
-
user?: ACLAction[];
|
|
10110
|
-
userConnection?: ACLAction[];
|
|
10111
10158
|
vpcPeeringConnection?: ACLAction[];
|
|
10112
10159
|
webAnalyticsPlan?: ACLAction[];
|
|
10113
|
-
webAuthn?: ACLAction[];
|
|
10114
10160
|
edgeConfig?: ACLAction[];
|
|
10115
10161
|
edgeConfigItem?: ACLAction[];
|
|
10116
10162
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -10186,7 +10232,6 @@ type CreateProjectResponse = {
|
|
|
10186
10232
|
requestedAt: number;
|
|
10187
10233
|
type: 'promote' | 'rollback';
|
|
10188
10234
|
} | null;
|
|
10189
|
-
hasFloatingAliases?: boolean;
|
|
10190
10235
|
protectionBypass?: {
|
|
10191
10236
|
[key: string]: {
|
|
10192
10237
|
createdAt: number;
|
|
@@ -10814,6 +10859,15 @@ type GetProjectResponse = {
|
|
|
10814
10859
|
allowServerlessConcurrency?: boolean;
|
|
10815
10860
|
elasticConcurrencyEnabled?: boolean;
|
|
10816
10861
|
};
|
|
10862
|
+
defaultResourceConfig?: {
|
|
10863
|
+
fluid?: boolean;
|
|
10864
|
+
functionDefaultRegion?: string | null;
|
|
10865
|
+
functionDefaultTimeout?: number;
|
|
10866
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
10867
|
+
functionZeroConfigFailover?: boolean;
|
|
10868
|
+
allowServerlessConcurrency?: boolean;
|
|
10869
|
+
elasticConcurrencyEnabled?: boolean;
|
|
10870
|
+
};
|
|
10817
10871
|
rootDirectory?: string | null;
|
|
10818
10872
|
serverlessFunctionRegion?: string | null;
|
|
10819
10873
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -10907,6 +10961,10 @@ type GetProjectResponse = {
|
|
|
10907
10961
|
enablePreviewFeedback?: boolean | null;
|
|
10908
10962
|
enableProductionFeedback?: boolean | null;
|
|
10909
10963
|
permissions?: {
|
|
10964
|
+
user?: ACLAction[];
|
|
10965
|
+
userConnection?: ACLAction[];
|
|
10966
|
+
webAuthn?: ACLAction[];
|
|
10967
|
+
oauth2Connection?: ACLAction[];
|
|
10910
10968
|
accessGroup?: ACLAction[];
|
|
10911
10969
|
aliasGlobal?: ACLAction[];
|
|
10912
10970
|
analyticsSampling?: ACLAction[];
|
|
@@ -10943,6 +11001,7 @@ type GetProjectResponse = {
|
|
|
10943
11001
|
fileUpload?: ACLAction[];
|
|
10944
11002
|
gitRepository?: ACLAction[];
|
|
10945
11003
|
ipBlocking?: ACLAction[];
|
|
11004
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10946
11005
|
integration?: ACLAction[];
|
|
10947
11006
|
integrationAccount?: ACLAction[];
|
|
10948
11007
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10950,6 +11009,7 @@ type GetProjectResponse = {
|
|
|
10950
11009
|
integrationConfigurationProjects?: ACLAction[];
|
|
10951
11010
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10952
11011
|
integrationConfigurationRole?: ACLAction[];
|
|
11012
|
+
integrationSSOSession?: ACLAction[];
|
|
10953
11013
|
integrationResource?: ACLAction[];
|
|
10954
11014
|
integrationEvent?: ACLAction[];
|
|
10955
11015
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10957,6 +11017,8 @@ type GetProjectResponse = {
|
|
|
10957
11017
|
marketplaceInstallationMember?: ACLAction[];
|
|
10958
11018
|
marketplaceBillingData?: ACLAction[];
|
|
10959
11019
|
marketplaceInvoice?: ACLAction[];
|
|
11020
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11021
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10960
11022
|
jobGlobal?: ACLAction[];
|
|
10961
11023
|
logDrain?: ACLAction[];
|
|
10962
11024
|
Monitoring?: ACLAction[];
|
|
@@ -10977,7 +11039,6 @@ type GetProjectResponse = {
|
|
|
10977
11039
|
notificationUsageAlert?: ACLAction[];
|
|
10978
11040
|
notificationCustomerBudget?: ACLAction[];
|
|
10979
11041
|
notificationStatementOfReasons?: ACLAction[];
|
|
10980
|
-
oauth2Connection?: ACLAction[];
|
|
10981
11042
|
observabilityConfiguration?: ACLAction[];
|
|
10982
11043
|
openTelemetryEndpoint?: ACLAction[];
|
|
10983
11044
|
paymentMethod?: ACLAction[];
|
|
@@ -11018,11 +11079,8 @@ type GetProjectResponse = {
|
|
|
11018
11079
|
token?: ACLAction[];
|
|
11019
11080
|
usage?: ACLAction[];
|
|
11020
11081
|
usageCycle?: ACLAction[];
|
|
11021
|
-
user?: ACLAction[];
|
|
11022
|
-
userConnection?: ACLAction[];
|
|
11023
11082
|
vpcPeeringConnection?: ACLAction[];
|
|
11024
11083
|
webAnalyticsPlan?: ACLAction[];
|
|
11025
|
-
webAuthn?: ACLAction[];
|
|
11026
11084
|
edgeConfig?: ACLAction[];
|
|
11027
11085
|
edgeConfigItem?: ACLAction[];
|
|
11028
11086
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11098,7 +11156,6 @@ type GetProjectResponse = {
|
|
|
11098
11156
|
requestedAt: number;
|
|
11099
11157
|
type: 'promote' | 'rollback';
|
|
11100
11158
|
} | null;
|
|
11101
|
-
hasFloatingAliases?: boolean;
|
|
11102
11159
|
protectionBypass?: {
|
|
11103
11160
|
[key: string]: {
|
|
11104
11161
|
createdAt: number;
|
|
@@ -11601,6 +11658,15 @@ type UpdateProjectResponse = {
|
|
|
11601
11658
|
allowServerlessConcurrency?: boolean;
|
|
11602
11659
|
elasticConcurrencyEnabled?: boolean;
|
|
11603
11660
|
};
|
|
11661
|
+
defaultResourceConfig?: {
|
|
11662
|
+
fluid?: boolean;
|
|
11663
|
+
functionDefaultRegion?: string | null;
|
|
11664
|
+
functionDefaultTimeout?: number;
|
|
11665
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11666
|
+
functionZeroConfigFailover?: boolean;
|
|
11667
|
+
allowServerlessConcurrency?: boolean;
|
|
11668
|
+
elasticConcurrencyEnabled?: boolean;
|
|
11669
|
+
};
|
|
11604
11670
|
rootDirectory?: string | null;
|
|
11605
11671
|
serverlessFunctionRegion?: string | null;
|
|
11606
11672
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -11694,6 +11760,10 @@ type UpdateProjectResponse = {
|
|
|
11694
11760
|
enablePreviewFeedback?: boolean | null;
|
|
11695
11761
|
enableProductionFeedback?: boolean | null;
|
|
11696
11762
|
permissions?: {
|
|
11763
|
+
user?: ACLAction[];
|
|
11764
|
+
userConnection?: ACLAction[];
|
|
11765
|
+
webAuthn?: ACLAction[];
|
|
11766
|
+
oauth2Connection?: ACLAction[];
|
|
11697
11767
|
accessGroup?: ACLAction[];
|
|
11698
11768
|
aliasGlobal?: ACLAction[];
|
|
11699
11769
|
analyticsSampling?: ACLAction[];
|
|
@@ -11730,6 +11800,7 @@ type UpdateProjectResponse = {
|
|
|
11730
11800
|
fileUpload?: ACLAction[];
|
|
11731
11801
|
gitRepository?: ACLAction[];
|
|
11732
11802
|
ipBlocking?: ACLAction[];
|
|
11803
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
11733
11804
|
integration?: ACLAction[];
|
|
11734
11805
|
integrationAccount?: ACLAction[];
|
|
11735
11806
|
integrationConfiguration?: ACLAction[];
|
|
@@ -11737,6 +11808,7 @@ type UpdateProjectResponse = {
|
|
|
11737
11808
|
integrationConfigurationProjects?: ACLAction[];
|
|
11738
11809
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
11739
11810
|
integrationConfigurationRole?: ACLAction[];
|
|
11811
|
+
integrationSSOSession?: ACLAction[];
|
|
11740
11812
|
integrationResource?: ACLAction[];
|
|
11741
11813
|
integrationEvent?: ACLAction[];
|
|
11742
11814
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -11744,6 +11816,8 @@ type UpdateProjectResponse = {
|
|
|
11744
11816
|
marketplaceInstallationMember?: ACLAction[];
|
|
11745
11817
|
marketplaceBillingData?: ACLAction[];
|
|
11746
11818
|
marketplaceInvoice?: ACLAction[];
|
|
11819
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11820
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
11747
11821
|
jobGlobal?: ACLAction[];
|
|
11748
11822
|
logDrain?: ACLAction[];
|
|
11749
11823
|
Monitoring?: ACLAction[];
|
|
@@ -11764,7 +11838,6 @@ type UpdateProjectResponse = {
|
|
|
11764
11838
|
notificationUsageAlert?: ACLAction[];
|
|
11765
11839
|
notificationCustomerBudget?: ACLAction[];
|
|
11766
11840
|
notificationStatementOfReasons?: ACLAction[];
|
|
11767
|
-
oauth2Connection?: ACLAction[];
|
|
11768
11841
|
observabilityConfiguration?: ACLAction[];
|
|
11769
11842
|
openTelemetryEndpoint?: ACLAction[];
|
|
11770
11843
|
paymentMethod?: ACLAction[];
|
|
@@ -11805,11 +11878,8 @@ type UpdateProjectResponse = {
|
|
|
11805
11878
|
token?: ACLAction[];
|
|
11806
11879
|
usage?: ACLAction[];
|
|
11807
11880
|
usageCycle?: ACLAction[];
|
|
11808
|
-
user?: ACLAction[];
|
|
11809
|
-
userConnection?: ACLAction[];
|
|
11810
11881
|
vpcPeeringConnection?: ACLAction[];
|
|
11811
11882
|
webAnalyticsPlan?: ACLAction[];
|
|
11812
|
-
webAuthn?: ACLAction[];
|
|
11813
11883
|
edgeConfig?: ACLAction[];
|
|
11814
11884
|
edgeConfigItem?: ACLAction[];
|
|
11815
11885
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11885,7 +11955,6 @@ type UpdateProjectResponse = {
|
|
|
11885
11955
|
requestedAt: number;
|
|
11886
11956
|
type: 'promote' | 'rollback';
|
|
11887
11957
|
} | null;
|
|
11888
|
-
hasFloatingAliases?: boolean;
|
|
11889
11958
|
protectionBypass?: {
|
|
11890
11959
|
[key: string]: {
|
|
11891
11960
|
createdAt: number;
|
|
@@ -15439,12 +15508,6 @@ type GetTeamMembersResponse = {
|
|
|
15439
15508
|
* @example OWNER
|
|
15440
15509
|
*/
|
|
15441
15510
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15442
|
-
/**
|
|
15443
|
-
* Permissions that this user has in addition to their role.
|
|
15444
|
-
*
|
|
15445
|
-
* @example ['createProjects']
|
|
15446
|
-
*/
|
|
15447
|
-
additionalRoles?: string[];
|
|
15448
15511
|
/**
|
|
15449
15512
|
* The ID of this user.
|
|
15450
15513
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ type TeamLimited = {
|
|
|
185
185
|
confirmedAt: number;
|
|
186
186
|
accessRequestedAt?: number;
|
|
187
187
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
188
|
-
|
|
188
|
+
teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'CreateProject' | 'DEVELOPER' | 'FullProductionDeployment' | 'MEMBER' | 'OWNER' | 'VIEWER')[];
|
|
189
189
|
teamId?: string;
|
|
190
190
|
createdAt: number;
|
|
191
191
|
created: number;
|
|
@@ -2422,6 +2422,15 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2422
2422
|
allowServerlessConcurrency?: boolean;
|
|
2423
2423
|
elasticConcurrencyEnabled?: boolean;
|
|
2424
2424
|
};
|
|
2425
|
+
defaultResourceConfig?: {
|
|
2426
|
+
fluid?: boolean;
|
|
2427
|
+
functionDefaultRegion?: string | null;
|
|
2428
|
+
functionDefaultTimeout?: number;
|
|
2429
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
2430
|
+
functionZeroConfigFailover?: boolean;
|
|
2431
|
+
allowServerlessConcurrency?: boolean;
|
|
2432
|
+
elasticConcurrencyEnabled?: boolean;
|
|
2433
|
+
};
|
|
2425
2434
|
rootDirectory?: string | null;
|
|
2426
2435
|
serverlessFunctionRegion?: string | null;
|
|
2427
2436
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -2515,6 +2524,10 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2515
2524
|
enablePreviewFeedback?: boolean | null;
|
|
2516
2525
|
enableProductionFeedback?: boolean | null;
|
|
2517
2526
|
permissions?: {
|
|
2527
|
+
user?: ACLAction[];
|
|
2528
|
+
userConnection?: ACLAction[];
|
|
2529
|
+
webAuthn?: ACLAction[];
|
|
2530
|
+
oauth2Connection?: ACLAction[];
|
|
2518
2531
|
accessGroup?: ACLAction[];
|
|
2519
2532
|
aliasGlobal?: ACLAction[];
|
|
2520
2533
|
analyticsSampling?: ACLAction[];
|
|
@@ -2551,6 +2564,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2551
2564
|
fileUpload?: ACLAction[];
|
|
2552
2565
|
gitRepository?: ACLAction[];
|
|
2553
2566
|
ipBlocking?: ACLAction[];
|
|
2567
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
2554
2568
|
integration?: ACLAction[];
|
|
2555
2569
|
integrationAccount?: ACLAction[];
|
|
2556
2570
|
integrationConfiguration?: ACLAction[];
|
|
@@ -2558,6 +2572,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2558
2572
|
integrationConfigurationProjects?: ACLAction[];
|
|
2559
2573
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
2560
2574
|
integrationConfigurationRole?: ACLAction[];
|
|
2575
|
+
integrationSSOSession?: ACLAction[];
|
|
2561
2576
|
integrationResource?: ACLAction[];
|
|
2562
2577
|
integrationEvent?: ACLAction[];
|
|
2563
2578
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -2565,6 +2580,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2565
2580
|
marketplaceInstallationMember?: ACLAction[];
|
|
2566
2581
|
marketplaceBillingData?: ACLAction[];
|
|
2567
2582
|
marketplaceInvoice?: ACLAction[];
|
|
2583
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
2584
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
2568
2585
|
jobGlobal?: ACLAction[];
|
|
2569
2586
|
logDrain?: ACLAction[];
|
|
2570
2587
|
Monitoring?: ACLAction[];
|
|
@@ -2585,7 +2602,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2585
2602
|
notificationUsageAlert?: ACLAction[];
|
|
2586
2603
|
notificationCustomerBudget?: ACLAction[];
|
|
2587
2604
|
notificationStatementOfReasons?: ACLAction[];
|
|
2588
|
-
oauth2Connection?: ACLAction[];
|
|
2589
2605
|
observabilityConfiguration?: ACLAction[];
|
|
2590
2606
|
openTelemetryEndpoint?: ACLAction[];
|
|
2591
2607
|
paymentMethod?: ACLAction[];
|
|
@@ -2626,11 +2642,8 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2626
2642
|
token?: ACLAction[];
|
|
2627
2643
|
usage?: ACLAction[];
|
|
2628
2644
|
usageCycle?: ACLAction[];
|
|
2629
|
-
user?: ACLAction[];
|
|
2630
|
-
userConnection?: ACLAction[];
|
|
2631
2645
|
vpcPeeringConnection?: ACLAction[];
|
|
2632
2646
|
webAnalyticsPlan?: ACLAction[];
|
|
2633
|
-
webAuthn?: ACLAction[];
|
|
2634
2647
|
edgeConfig?: ACLAction[];
|
|
2635
2648
|
edgeConfigItem?: ACLAction[];
|
|
2636
2649
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -2706,7 +2719,6 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2706
2719
|
requestedAt: number;
|
|
2707
2720
|
type: 'promote' | 'rollback';
|
|
2708
2721
|
} | null;
|
|
2709
|
-
hasFloatingAliases?: boolean;
|
|
2710
2722
|
protectionBypass?: {
|
|
2711
2723
|
[key: string]: {
|
|
2712
2724
|
createdAt: number;
|
|
@@ -6724,8 +6736,17 @@ type GetAccountInfoPathParams = {
|
|
|
6724
6736
|
};
|
|
6725
6737
|
type GetAccountInfoError = ErrorWrapper<undefined>;
|
|
6726
6738
|
type GetAccountInfoResponse = {
|
|
6739
|
+
/**
|
|
6740
|
+
* The name of the team the installation is tied to.
|
|
6741
|
+
*/
|
|
6727
6742
|
name?: string;
|
|
6743
|
+
/**
|
|
6744
|
+
* A URL linking to the installation in the Vercel Dashboard.
|
|
6745
|
+
*/
|
|
6728
6746
|
url: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* The best contact for the integration, which can change as team members and their roles change.
|
|
6749
|
+
*/
|
|
6729
6750
|
contact: {
|
|
6730
6751
|
email: string;
|
|
6731
6752
|
name?: string;
|
|
@@ -9122,6 +9143,15 @@ type GetProjectsResponse = {
|
|
|
9122
9143
|
allowServerlessConcurrency?: boolean;
|
|
9123
9144
|
elasticConcurrencyEnabled?: boolean;
|
|
9124
9145
|
};
|
|
9146
|
+
defaultResourceConfig?: {
|
|
9147
|
+
fluid?: boolean;
|
|
9148
|
+
functionDefaultRegion?: string | null;
|
|
9149
|
+
functionDefaultTimeout?: number;
|
|
9150
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9151
|
+
functionZeroConfigFailover?: boolean;
|
|
9152
|
+
allowServerlessConcurrency?: boolean;
|
|
9153
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9154
|
+
};
|
|
9125
9155
|
rootDirectory?: string | null;
|
|
9126
9156
|
serverlessFunctionRegion?: string | null;
|
|
9127
9157
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9215,6 +9245,10 @@ type GetProjectsResponse = {
|
|
|
9215
9245
|
enablePreviewFeedback?: boolean | null;
|
|
9216
9246
|
enableProductionFeedback?: boolean | null;
|
|
9217
9247
|
permissions?: {
|
|
9248
|
+
user?: ACLAction[];
|
|
9249
|
+
userConnection?: ACLAction[];
|
|
9250
|
+
webAuthn?: ACLAction[];
|
|
9251
|
+
oauth2Connection?: ACLAction[];
|
|
9218
9252
|
accessGroup?: ACLAction[];
|
|
9219
9253
|
aliasGlobal?: ACLAction[];
|
|
9220
9254
|
analyticsSampling?: ACLAction[];
|
|
@@ -9251,6 +9285,7 @@ type GetProjectsResponse = {
|
|
|
9251
9285
|
fileUpload?: ACLAction[];
|
|
9252
9286
|
gitRepository?: ACLAction[];
|
|
9253
9287
|
ipBlocking?: ACLAction[];
|
|
9288
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
9254
9289
|
integration?: ACLAction[];
|
|
9255
9290
|
integrationAccount?: ACLAction[];
|
|
9256
9291
|
integrationConfiguration?: ACLAction[];
|
|
@@ -9258,6 +9293,7 @@ type GetProjectsResponse = {
|
|
|
9258
9293
|
integrationConfigurationProjects?: ACLAction[];
|
|
9259
9294
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
9260
9295
|
integrationConfigurationRole?: ACLAction[];
|
|
9296
|
+
integrationSSOSession?: ACLAction[];
|
|
9261
9297
|
integrationResource?: ACLAction[];
|
|
9262
9298
|
integrationEvent?: ACLAction[];
|
|
9263
9299
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -9265,6 +9301,8 @@ type GetProjectsResponse = {
|
|
|
9265
9301
|
marketplaceInstallationMember?: ACLAction[];
|
|
9266
9302
|
marketplaceBillingData?: ACLAction[];
|
|
9267
9303
|
marketplaceInvoice?: ACLAction[];
|
|
9304
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
9305
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
9268
9306
|
jobGlobal?: ACLAction[];
|
|
9269
9307
|
logDrain?: ACLAction[];
|
|
9270
9308
|
Monitoring?: ACLAction[];
|
|
@@ -9285,7 +9323,6 @@ type GetProjectsResponse = {
|
|
|
9285
9323
|
notificationUsageAlert?: ACLAction[];
|
|
9286
9324
|
notificationCustomerBudget?: ACLAction[];
|
|
9287
9325
|
notificationStatementOfReasons?: ACLAction[];
|
|
9288
|
-
oauth2Connection?: ACLAction[];
|
|
9289
9326
|
observabilityConfiguration?: ACLAction[];
|
|
9290
9327
|
openTelemetryEndpoint?: ACLAction[];
|
|
9291
9328
|
paymentMethod?: ACLAction[];
|
|
@@ -9326,11 +9363,8 @@ type GetProjectsResponse = {
|
|
|
9326
9363
|
token?: ACLAction[];
|
|
9327
9364
|
usage?: ACLAction[];
|
|
9328
9365
|
usageCycle?: ACLAction[];
|
|
9329
|
-
user?: ACLAction[];
|
|
9330
|
-
userConnection?: ACLAction[];
|
|
9331
9366
|
vpcPeeringConnection?: ACLAction[];
|
|
9332
9367
|
webAnalyticsPlan?: ACLAction[];
|
|
9333
|
-
webAuthn?: ACLAction[];
|
|
9334
9368
|
edgeConfig?: ACLAction[];
|
|
9335
9369
|
edgeConfigItem?: ACLAction[];
|
|
9336
9370
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -9406,7 +9440,6 @@ type GetProjectsResponse = {
|
|
|
9406
9440
|
requestedAt: number;
|
|
9407
9441
|
type: 'promote' | 'rollback';
|
|
9408
9442
|
} | null;
|
|
9409
|
-
hasFloatingAliases?: boolean;
|
|
9410
9443
|
protectionBypass?: {
|
|
9411
9444
|
[key: string]: {
|
|
9412
9445
|
createdAt: number;
|
|
@@ -9902,6 +9935,15 @@ type CreateProjectResponse = {
|
|
|
9902
9935
|
allowServerlessConcurrency?: boolean;
|
|
9903
9936
|
elasticConcurrencyEnabled?: boolean;
|
|
9904
9937
|
};
|
|
9938
|
+
defaultResourceConfig?: {
|
|
9939
|
+
fluid?: boolean;
|
|
9940
|
+
functionDefaultRegion?: string | null;
|
|
9941
|
+
functionDefaultTimeout?: number;
|
|
9942
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9943
|
+
functionZeroConfigFailover?: boolean;
|
|
9944
|
+
allowServerlessConcurrency?: boolean;
|
|
9945
|
+
elasticConcurrencyEnabled?: boolean;
|
|
9946
|
+
};
|
|
9905
9947
|
rootDirectory?: string | null;
|
|
9906
9948
|
serverlessFunctionRegion?: string | null;
|
|
9907
9949
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -9995,6 +10037,10 @@ type CreateProjectResponse = {
|
|
|
9995
10037
|
enablePreviewFeedback?: boolean | null;
|
|
9996
10038
|
enableProductionFeedback?: boolean | null;
|
|
9997
10039
|
permissions?: {
|
|
10040
|
+
user?: ACLAction[];
|
|
10041
|
+
userConnection?: ACLAction[];
|
|
10042
|
+
webAuthn?: ACLAction[];
|
|
10043
|
+
oauth2Connection?: ACLAction[];
|
|
9998
10044
|
accessGroup?: ACLAction[];
|
|
9999
10045
|
aliasGlobal?: ACLAction[];
|
|
10000
10046
|
analyticsSampling?: ACLAction[];
|
|
@@ -10031,6 +10077,7 @@ type CreateProjectResponse = {
|
|
|
10031
10077
|
fileUpload?: ACLAction[];
|
|
10032
10078
|
gitRepository?: ACLAction[];
|
|
10033
10079
|
ipBlocking?: ACLAction[];
|
|
10080
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10034
10081
|
integration?: ACLAction[];
|
|
10035
10082
|
integrationAccount?: ACLAction[];
|
|
10036
10083
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10038,6 +10085,7 @@ type CreateProjectResponse = {
|
|
|
10038
10085
|
integrationConfigurationProjects?: ACLAction[];
|
|
10039
10086
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10040
10087
|
integrationConfigurationRole?: ACLAction[];
|
|
10088
|
+
integrationSSOSession?: ACLAction[];
|
|
10041
10089
|
integrationResource?: ACLAction[];
|
|
10042
10090
|
integrationEvent?: ACLAction[];
|
|
10043
10091
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10045,6 +10093,8 @@ type CreateProjectResponse = {
|
|
|
10045
10093
|
marketplaceInstallationMember?: ACLAction[];
|
|
10046
10094
|
marketplaceBillingData?: ACLAction[];
|
|
10047
10095
|
marketplaceInvoice?: ACLAction[];
|
|
10096
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
10097
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10048
10098
|
jobGlobal?: ACLAction[];
|
|
10049
10099
|
logDrain?: ACLAction[];
|
|
10050
10100
|
Monitoring?: ACLAction[];
|
|
@@ -10065,7 +10115,6 @@ type CreateProjectResponse = {
|
|
|
10065
10115
|
notificationUsageAlert?: ACLAction[];
|
|
10066
10116
|
notificationCustomerBudget?: ACLAction[];
|
|
10067
10117
|
notificationStatementOfReasons?: ACLAction[];
|
|
10068
|
-
oauth2Connection?: ACLAction[];
|
|
10069
10118
|
observabilityConfiguration?: ACLAction[];
|
|
10070
10119
|
openTelemetryEndpoint?: ACLAction[];
|
|
10071
10120
|
paymentMethod?: ACLAction[];
|
|
@@ -10106,11 +10155,8 @@ type CreateProjectResponse = {
|
|
|
10106
10155
|
token?: ACLAction[];
|
|
10107
10156
|
usage?: ACLAction[];
|
|
10108
10157
|
usageCycle?: ACLAction[];
|
|
10109
|
-
user?: ACLAction[];
|
|
10110
|
-
userConnection?: ACLAction[];
|
|
10111
10158
|
vpcPeeringConnection?: ACLAction[];
|
|
10112
10159
|
webAnalyticsPlan?: ACLAction[];
|
|
10113
|
-
webAuthn?: ACLAction[];
|
|
10114
10160
|
edgeConfig?: ACLAction[];
|
|
10115
10161
|
edgeConfigItem?: ACLAction[];
|
|
10116
10162
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -10186,7 +10232,6 @@ type CreateProjectResponse = {
|
|
|
10186
10232
|
requestedAt: number;
|
|
10187
10233
|
type: 'promote' | 'rollback';
|
|
10188
10234
|
} | null;
|
|
10189
|
-
hasFloatingAliases?: boolean;
|
|
10190
10235
|
protectionBypass?: {
|
|
10191
10236
|
[key: string]: {
|
|
10192
10237
|
createdAt: number;
|
|
@@ -10814,6 +10859,15 @@ type GetProjectResponse = {
|
|
|
10814
10859
|
allowServerlessConcurrency?: boolean;
|
|
10815
10860
|
elasticConcurrencyEnabled?: boolean;
|
|
10816
10861
|
};
|
|
10862
|
+
defaultResourceConfig?: {
|
|
10863
|
+
fluid?: boolean;
|
|
10864
|
+
functionDefaultRegion?: string | null;
|
|
10865
|
+
functionDefaultTimeout?: number;
|
|
10866
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
10867
|
+
functionZeroConfigFailover?: boolean;
|
|
10868
|
+
allowServerlessConcurrency?: boolean;
|
|
10869
|
+
elasticConcurrencyEnabled?: boolean;
|
|
10870
|
+
};
|
|
10817
10871
|
rootDirectory?: string | null;
|
|
10818
10872
|
serverlessFunctionRegion?: string | null;
|
|
10819
10873
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -10907,6 +10961,10 @@ type GetProjectResponse = {
|
|
|
10907
10961
|
enablePreviewFeedback?: boolean | null;
|
|
10908
10962
|
enableProductionFeedback?: boolean | null;
|
|
10909
10963
|
permissions?: {
|
|
10964
|
+
user?: ACLAction[];
|
|
10965
|
+
userConnection?: ACLAction[];
|
|
10966
|
+
webAuthn?: ACLAction[];
|
|
10967
|
+
oauth2Connection?: ACLAction[];
|
|
10910
10968
|
accessGroup?: ACLAction[];
|
|
10911
10969
|
aliasGlobal?: ACLAction[];
|
|
10912
10970
|
analyticsSampling?: ACLAction[];
|
|
@@ -10943,6 +11001,7 @@ type GetProjectResponse = {
|
|
|
10943
11001
|
fileUpload?: ACLAction[];
|
|
10944
11002
|
gitRepository?: ACLAction[];
|
|
10945
11003
|
ipBlocking?: ACLAction[];
|
|
11004
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
10946
11005
|
integration?: ACLAction[];
|
|
10947
11006
|
integrationAccount?: ACLAction[];
|
|
10948
11007
|
integrationConfiguration?: ACLAction[];
|
|
@@ -10950,6 +11009,7 @@ type GetProjectResponse = {
|
|
|
10950
11009
|
integrationConfigurationProjects?: ACLAction[];
|
|
10951
11010
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
10952
11011
|
integrationConfigurationRole?: ACLAction[];
|
|
11012
|
+
integrationSSOSession?: ACLAction[];
|
|
10953
11013
|
integrationResource?: ACLAction[];
|
|
10954
11014
|
integrationEvent?: ACLAction[];
|
|
10955
11015
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -10957,6 +11017,8 @@ type GetProjectResponse = {
|
|
|
10957
11017
|
marketplaceInstallationMember?: ACLAction[];
|
|
10958
11018
|
marketplaceBillingData?: ACLAction[];
|
|
10959
11019
|
marketplaceInvoice?: ACLAction[];
|
|
11020
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11021
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
10960
11022
|
jobGlobal?: ACLAction[];
|
|
10961
11023
|
logDrain?: ACLAction[];
|
|
10962
11024
|
Monitoring?: ACLAction[];
|
|
@@ -10977,7 +11039,6 @@ type GetProjectResponse = {
|
|
|
10977
11039
|
notificationUsageAlert?: ACLAction[];
|
|
10978
11040
|
notificationCustomerBudget?: ACLAction[];
|
|
10979
11041
|
notificationStatementOfReasons?: ACLAction[];
|
|
10980
|
-
oauth2Connection?: ACLAction[];
|
|
10981
11042
|
observabilityConfiguration?: ACLAction[];
|
|
10982
11043
|
openTelemetryEndpoint?: ACLAction[];
|
|
10983
11044
|
paymentMethod?: ACLAction[];
|
|
@@ -11018,11 +11079,8 @@ type GetProjectResponse = {
|
|
|
11018
11079
|
token?: ACLAction[];
|
|
11019
11080
|
usage?: ACLAction[];
|
|
11020
11081
|
usageCycle?: ACLAction[];
|
|
11021
|
-
user?: ACLAction[];
|
|
11022
|
-
userConnection?: ACLAction[];
|
|
11023
11082
|
vpcPeeringConnection?: ACLAction[];
|
|
11024
11083
|
webAnalyticsPlan?: ACLAction[];
|
|
11025
|
-
webAuthn?: ACLAction[];
|
|
11026
11084
|
edgeConfig?: ACLAction[];
|
|
11027
11085
|
edgeConfigItem?: ACLAction[];
|
|
11028
11086
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11098,7 +11156,6 @@ type GetProjectResponse = {
|
|
|
11098
11156
|
requestedAt: number;
|
|
11099
11157
|
type: 'promote' | 'rollback';
|
|
11100
11158
|
} | null;
|
|
11101
|
-
hasFloatingAliases?: boolean;
|
|
11102
11159
|
protectionBypass?: {
|
|
11103
11160
|
[key: string]: {
|
|
11104
11161
|
createdAt: number;
|
|
@@ -11601,6 +11658,15 @@ type UpdateProjectResponse = {
|
|
|
11601
11658
|
allowServerlessConcurrency?: boolean;
|
|
11602
11659
|
elasticConcurrencyEnabled?: boolean;
|
|
11603
11660
|
};
|
|
11661
|
+
defaultResourceConfig?: {
|
|
11662
|
+
fluid?: boolean;
|
|
11663
|
+
functionDefaultRegion?: string | null;
|
|
11664
|
+
functionDefaultTimeout?: number;
|
|
11665
|
+
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11666
|
+
functionZeroConfigFailover?: boolean;
|
|
11667
|
+
allowServerlessConcurrency?: boolean;
|
|
11668
|
+
elasticConcurrencyEnabled?: boolean;
|
|
11669
|
+
};
|
|
11604
11670
|
rootDirectory?: string | null;
|
|
11605
11671
|
serverlessFunctionRegion?: string | null;
|
|
11606
11672
|
serverlessFunctionZeroConfigFailover?: boolean;
|
|
@@ -11694,6 +11760,10 @@ type UpdateProjectResponse = {
|
|
|
11694
11760
|
enablePreviewFeedback?: boolean | null;
|
|
11695
11761
|
enableProductionFeedback?: boolean | null;
|
|
11696
11762
|
permissions?: {
|
|
11763
|
+
user?: ACLAction[];
|
|
11764
|
+
userConnection?: ACLAction[];
|
|
11765
|
+
webAuthn?: ACLAction[];
|
|
11766
|
+
oauth2Connection?: ACLAction[];
|
|
11697
11767
|
accessGroup?: ACLAction[];
|
|
11698
11768
|
aliasGlobal?: ACLAction[];
|
|
11699
11769
|
analyticsSampling?: ACLAction[];
|
|
@@ -11730,6 +11800,7 @@ type UpdateProjectResponse = {
|
|
|
11730
11800
|
fileUpload?: ACLAction[];
|
|
11731
11801
|
gitRepository?: ACLAction[];
|
|
11732
11802
|
ipBlocking?: ACLAction[];
|
|
11803
|
+
imageOptimizationNewPrice?: ACLAction[];
|
|
11733
11804
|
integration?: ACLAction[];
|
|
11734
11805
|
integrationAccount?: ACLAction[];
|
|
11735
11806
|
integrationConfiguration?: ACLAction[];
|
|
@@ -11737,6 +11808,7 @@ type UpdateProjectResponse = {
|
|
|
11737
11808
|
integrationConfigurationProjects?: ACLAction[];
|
|
11738
11809
|
integrationVercelConfigurationOverride?: ACLAction[];
|
|
11739
11810
|
integrationConfigurationRole?: ACLAction[];
|
|
11811
|
+
integrationSSOSession?: ACLAction[];
|
|
11740
11812
|
integrationResource?: ACLAction[];
|
|
11741
11813
|
integrationEvent?: ACLAction[];
|
|
11742
11814
|
integrationResourceSecrets?: ACLAction[];
|
|
@@ -11744,6 +11816,8 @@ type UpdateProjectResponse = {
|
|
|
11744
11816
|
marketplaceInstallationMember?: ACLAction[];
|
|
11745
11817
|
marketplaceBillingData?: ACLAction[];
|
|
11746
11818
|
marketplaceInvoice?: ACLAction[];
|
|
11819
|
+
marketplaceExperimentationItem?: ACLAction[];
|
|
11820
|
+
marketplaceExperimentationEdgeConfigData?: ACLAction[];
|
|
11747
11821
|
jobGlobal?: ACLAction[];
|
|
11748
11822
|
logDrain?: ACLAction[];
|
|
11749
11823
|
Monitoring?: ACLAction[];
|
|
@@ -11764,7 +11838,6 @@ type UpdateProjectResponse = {
|
|
|
11764
11838
|
notificationUsageAlert?: ACLAction[];
|
|
11765
11839
|
notificationCustomerBudget?: ACLAction[];
|
|
11766
11840
|
notificationStatementOfReasons?: ACLAction[];
|
|
11767
|
-
oauth2Connection?: ACLAction[];
|
|
11768
11841
|
observabilityConfiguration?: ACLAction[];
|
|
11769
11842
|
openTelemetryEndpoint?: ACLAction[];
|
|
11770
11843
|
paymentMethod?: ACLAction[];
|
|
@@ -11805,11 +11878,8 @@ type UpdateProjectResponse = {
|
|
|
11805
11878
|
token?: ACLAction[];
|
|
11806
11879
|
usage?: ACLAction[];
|
|
11807
11880
|
usageCycle?: ACLAction[];
|
|
11808
|
-
user?: ACLAction[];
|
|
11809
|
-
userConnection?: ACLAction[];
|
|
11810
11881
|
vpcPeeringConnection?: ACLAction[];
|
|
11811
11882
|
webAnalyticsPlan?: ACLAction[];
|
|
11812
|
-
webAuthn?: ACLAction[];
|
|
11813
11883
|
edgeConfig?: ACLAction[];
|
|
11814
11884
|
edgeConfigItem?: ACLAction[];
|
|
11815
11885
|
edgeConfigSchema?: ACLAction[];
|
|
@@ -11885,7 +11955,6 @@ type UpdateProjectResponse = {
|
|
|
11885
11955
|
requestedAt: number;
|
|
11886
11956
|
type: 'promote' | 'rollback';
|
|
11887
11957
|
} | null;
|
|
11888
|
-
hasFloatingAliases?: boolean;
|
|
11889
11958
|
protectionBypass?: {
|
|
11890
11959
|
[key: string]: {
|
|
11891
11960
|
createdAt: number;
|
|
@@ -15439,12 +15508,6 @@ type GetTeamMembersResponse = {
|
|
|
15439
15508
|
* @example OWNER
|
|
15440
15509
|
*/
|
|
15441
15510
|
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15442
|
-
/**
|
|
15443
|
-
* Permissions that this user has in addition to their role.
|
|
15444
|
-
*
|
|
15445
|
-
* @example ['createProjects']
|
|
15446
|
-
*/
|
|
15447
|
-
additionalRoles?: string[];
|
|
15448
15511
|
/**
|
|
15449
15512
|
* The ID of this user.
|
|
15450
15513
|
*
|