vercel-api-js 0.19.5 → 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/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
- additionalRoles?: ('CreateProject' | 'FullProductionDeployment')[];
188
+ teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'CreateProject' | 'DEVELOPER' | 'FullProductionDeployment' | 'MEMBER' | 'OWNER' | 'VIEWER')[];
189
189
  teamId?: string;
190
190
  createdAt: number;
191
191
  created: number;
@@ -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';
@@ -2418,6 +2422,15 @@ type UpdateProjectDataCacheResponse = {
2418
2422
  allowServerlessConcurrency?: boolean;
2419
2423
  elasticConcurrencyEnabled?: boolean;
2420
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
+ };
2421
2434
  rootDirectory?: string | null;
2422
2435
  serverlessFunctionRegion?: string | null;
2423
2436
  serverlessFunctionZeroConfigFailover?: boolean;
@@ -2511,6 +2524,10 @@ type UpdateProjectDataCacheResponse = {
2511
2524
  enablePreviewFeedback?: boolean | null;
2512
2525
  enableProductionFeedback?: boolean | null;
2513
2526
  permissions?: {
2527
+ user?: ACLAction[];
2528
+ userConnection?: ACLAction[];
2529
+ webAuthn?: ACLAction[];
2530
+ oauth2Connection?: ACLAction[];
2514
2531
  accessGroup?: ACLAction[];
2515
2532
  aliasGlobal?: ACLAction[];
2516
2533
  analyticsSampling?: ACLAction[];
@@ -2547,6 +2564,7 @@ type UpdateProjectDataCacheResponse = {
2547
2564
  fileUpload?: ACLAction[];
2548
2565
  gitRepository?: ACLAction[];
2549
2566
  ipBlocking?: ACLAction[];
2567
+ imageOptimizationNewPrice?: ACLAction[];
2550
2568
  integration?: ACLAction[];
2551
2569
  integrationAccount?: ACLAction[];
2552
2570
  integrationConfiguration?: ACLAction[];
@@ -2554,6 +2572,7 @@ type UpdateProjectDataCacheResponse = {
2554
2572
  integrationConfigurationProjects?: ACLAction[];
2555
2573
  integrationVercelConfigurationOverride?: ACLAction[];
2556
2574
  integrationConfigurationRole?: ACLAction[];
2575
+ integrationSSOSession?: ACLAction[];
2557
2576
  integrationResource?: ACLAction[];
2558
2577
  integrationEvent?: ACLAction[];
2559
2578
  integrationResourceSecrets?: ACLAction[];
@@ -2561,6 +2580,8 @@ type UpdateProjectDataCacheResponse = {
2561
2580
  marketplaceInstallationMember?: ACLAction[];
2562
2581
  marketplaceBillingData?: ACLAction[];
2563
2582
  marketplaceInvoice?: ACLAction[];
2583
+ marketplaceExperimentationItem?: ACLAction[];
2584
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
2564
2585
  jobGlobal?: ACLAction[];
2565
2586
  logDrain?: ACLAction[];
2566
2587
  Monitoring?: ACLAction[];
@@ -2581,7 +2602,6 @@ type UpdateProjectDataCacheResponse = {
2581
2602
  notificationUsageAlert?: ACLAction[];
2582
2603
  notificationCustomerBudget?: ACLAction[];
2583
2604
  notificationStatementOfReasons?: ACLAction[];
2584
- oauth2Connection?: ACLAction[];
2585
2605
  observabilityConfiguration?: ACLAction[];
2586
2606
  openTelemetryEndpoint?: ACLAction[];
2587
2607
  paymentMethod?: ACLAction[];
@@ -2622,11 +2642,8 @@ type UpdateProjectDataCacheResponse = {
2622
2642
  token?: ACLAction[];
2623
2643
  usage?: ACLAction[];
2624
2644
  usageCycle?: ACLAction[];
2625
- user?: ACLAction[];
2626
- userConnection?: ACLAction[];
2627
2645
  vpcPeeringConnection?: ACLAction[];
2628
2646
  webAnalyticsPlan?: ACLAction[];
2629
- webAuthn?: ACLAction[];
2630
2647
  edgeConfig?: ACLAction[];
2631
2648
  edgeConfigItem?: ACLAction[];
2632
2649
  edgeConfigSchema?: ACLAction[];
@@ -2702,7 +2719,6 @@ type UpdateProjectDataCacheResponse = {
2702
2719
  requestedAt: number;
2703
2720
  type: 'promote' | 'rollback';
2704
2721
  } | null;
2705
- hasFloatingAliases?: boolean;
2706
2722
  protectionBypass?: {
2707
2723
  [key: string]: {
2708
2724
  createdAt: number;
@@ -3653,10 +3669,10 @@ type CreateDeploymentResponse = {
3653
3669
  initReadyAt?: number;
3654
3670
  isFirstBranchDeployment?: boolean;
3655
3671
  lambdas?: {
3656
- createdAt?: number;
3657
3672
  id?: string;
3658
- readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
3673
+ createdAt?: number;
3659
3674
  entrypoint?: string | null;
3675
+ readyState?: 'BUILDING' | 'ERROR' | 'INITIALIZING' | 'READY';
3660
3676
  readyStateAt?: number;
3661
3677
  output: {
3662
3678
  path: string;
@@ -3906,7 +3922,7 @@ type CreateDeploymentResponse = {
3906
3922
  */
3907
3923
  middleware?: number;
3908
3924
  } | {
3909
- handle: 'error' | 'filesystem' | 'hit' | 'miss' | 'resource' | 'rewrite';
3925
+ handle: 'error' | 'filesystem' | 'hit' | 'miss' | 'rewrite' | 'resource';
3910
3926
  src?: string;
3911
3927
  dest?: string;
3912
3928
  status?: number;
@@ -3936,7 +3952,7 @@ type CreateDeploymentResponse = {
3936
3952
  defaultBranch: string;
3937
3953
  name: string;
3938
3954
  private: boolean;
3939
- ownerType: 'user' | 'team';
3955
+ ownerType: 'team' | 'user';
3940
3956
  } | {
3941
3957
  org: string;
3942
3958
  repo: string;
@@ -3947,7 +3963,7 @@ type CreateDeploymentResponse = {
3947
3963
  defaultBranch: string;
3948
3964
  name: string;
3949
3965
  private: boolean;
3950
- ownerType: 'user' | 'team';
3966
+ ownerType: 'team' | 'user';
3951
3967
  } | {
3952
3968
  owner: string;
3953
3969
  repoUuid: string;
@@ -3958,7 +3974,7 @@ type CreateDeploymentResponse = {
3958
3974
  defaultBranch: string;
3959
3975
  name: string;
3960
3976
  private: boolean;
3961
- ownerType: 'user' | 'team';
3977
+ ownerType: 'team' | 'user';
3962
3978
  } | null;
3963
3979
  flags?: {
3964
3980
  definitions: {
@@ -6720,8 +6736,17 @@ type GetAccountInfoPathParams = {
6720
6736
  };
6721
6737
  type GetAccountInfoError = ErrorWrapper<undefined>;
6722
6738
  type GetAccountInfoResponse = {
6739
+ /**
6740
+ * The name of the team the installation is tied to.
6741
+ */
6723
6742
  name?: string;
6743
+ /**
6744
+ * A URL linking to the installation in the Vercel Dashboard.
6745
+ */
6724
6746
  url: string;
6747
+ /**
6748
+ * The best contact for the integration, which can change as team members and their roles change.
6749
+ */
6725
6750
  contact: {
6726
6751
  email: string;
6727
6752
  name?: string;
@@ -6778,7 +6803,7 @@ type CreateEventVariables = {
6778
6803
  pathParams: CreateEventPathParams;
6779
6804
  } & FetcherExtraProps;
6780
6805
  /**
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. <br/> <br/> `resource.updated` event should be dispatched when any state of a resource linked to Vercel is modified by the partner. <br/> <br/> 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/>
6806
+ * 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
6807
  */
6783
6808
  declare const createEvent: (variables: CreateEventVariables, signal?: AbortSignal) => Promise<undefined>;
6784
6809
  type SubmitBillingDataPathParams = {
@@ -7227,6 +7252,7 @@ type GetConfigurationsQueryParams = {
7227
7252
  * ID of the integration
7228
7253
  */
7229
7254
  integrationIdOrSlug?: string;
7255
+ skipBillingData?: string;
7230
7256
  /**
7231
7257
  * The Team identifier to perform the request on behalf of.
7232
7258
  */
@@ -9091,6 +9117,10 @@ type GetProjectsResponse = {
9091
9117
  * 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
9118
  */
9093
9119
  defaultRoute?: string;
9120
+ /**
9121
+ * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
9122
+ */
9123
+ routeObservabilityToDefaultApp?: boolean;
9094
9124
  };
9095
9125
  name: string;
9096
9126
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -9113,6 +9143,15 @@ type GetProjectsResponse = {
9113
9143
  allowServerlessConcurrency?: boolean;
9114
9144
  elasticConcurrencyEnabled?: boolean;
9115
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
+ };
9116
9155
  rootDirectory?: string | null;
9117
9156
  serverlessFunctionRegion?: string | null;
9118
9157
  serverlessFunctionZeroConfigFailover?: boolean;
@@ -9206,6 +9245,10 @@ type GetProjectsResponse = {
9206
9245
  enablePreviewFeedback?: boolean | null;
9207
9246
  enableProductionFeedback?: boolean | null;
9208
9247
  permissions?: {
9248
+ user?: ACLAction[];
9249
+ userConnection?: ACLAction[];
9250
+ webAuthn?: ACLAction[];
9251
+ oauth2Connection?: ACLAction[];
9209
9252
  accessGroup?: ACLAction[];
9210
9253
  aliasGlobal?: ACLAction[];
9211
9254
  analyticsSampling?: ACLAction[];
@@ -9242,6 +9285,7 @@ type GetProjectsResponse = {
9242
9285
  fileUpload?: ACLAction[];
9243
9286
  gitRepository?: ACLAction[];
9244
9287
  ipBlocking?: ACLAction[];
9288
+ imageOptimizationNewPrice?: ACLAction[];
9245
9289
  integration?: ACLAction[];
9246
9290
  integrationAccount?: ACLAction[];
9247
9291
  integrationConfiguration?: ACLAction[];
@@ -9249,6 +9293,7 @@ type GetProjectsResponse = {
9249
9293
  integrationConfigurationProjects?: ACLAction[];
9250
9294
  integrationVercelConfigurationOverride?: ACLAction[];
9251
9295
  integrationConfigurationRole?: ACLAction[];
9296
+ integrationSSOSession?: ACLAction[];
9252
9297
  integrationResource?: ACLAction[];
9253
9298
  integrationEvent?: ACLAction[];
9254
9299
  integrationResourceSecrets?: ACLAction[];
@@ -9256,6 +9301,8 @@ type GetProjectsResponse = {
9256
9301
  marketplaceInstallationMember?: ACLAction[];
9257
9302
  marketplaceBillingData?: ACLAction[];
9258
9303
  marketplaceInvoice?: ACLAction[];
9304
+ marketplaceExperimentationItem?: ACLAction[];
9305
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
9259
9306
  jobGlobal?: ACLAction[];
9260
9307
  logDrain?: ACLAction[];
9261
9308
  Monitoring?: ACLAction[];
@@ -9276,7 +9323,6 @@ type GetProjectsResponse = {
9276
9323
  notificationUsageAlert?: ACLAction[];
9277
9324
  notificationCustomerBudget?: ACLAction[];
9278
9325
  notificationStatementOfReasons?: ACLAction[];
9279
- oauth2Connection?: ACLAction[];
9280
9326
  observabilityConfiguration?: ACLAction[];
9281
9327
  openTelemetryEndpoint?: ACLAction[];
9282
9328
  paymentMethod?: ACLAction[];
@@ -9317,11 +9363,8 @@ type GetProjectsResponse = {
9317
9363
  token?: ACLAction[];
9318
9364
  usage?: ACLAction[];
9319
9365
  usageCycle?: ACLAction[];
9320
- user?: ACLAction[];
9321
- userConnection?: ACLAction[];
9322
9366
  vpcPeeringConnection?: ACLAction[];
9323
9367
  webAnalyticsPlan?: ACLAction[];
9324
- webAuthn?: ACLAction[];
9325
9368
  edgeConfig?: ACLAction[];
9326
9369
  edgeConfigItem?: ACLAction[];
9327
9370
  edgeConfigSchema?: ACLAction[];
@@ -9397,7 +9440,6 @@ type GetProjectsResponse = {
9397
9440
  requestedAt: number;
9398
9441
  type: 'promote' | 'rollback';
9399
9442
  } | null;
9400
- hasFloatingAliases?: boolean;
9401
9443
  protectionBypass?: {
9402
9444
  [key: string]: {
9403
9445
  createdAt: number;
@@ -9867,6 +9909,10 @@ type CreateProjectResponse = {
9867
9909
  * 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
9910
  */
9869
9911
  defaultRoute?: string;
9912
+ /**
9913
+ * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
9914
+ */
9915
+ routeObservabilityToDefaultApp?: boolean;
9870
9916
  };
9871
9917
  name: string;
9872
9918
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -9889,6 +9935,15 @@ type CreateProjectResponse = {
9889
9935
  allowServerlessConcurrency?: boolean;
9890
9936
  elasticConcurrencyEnabled?: boolean;
9891
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
+ };
9892
9947
  rootDirectory?: string | null;
9893
9948
  serverlessFunctionRegion?: string | null;
9894
9949
  serverlessFunctionZeroConfigFailover?: boolean;
@@ -9982,6 +10037,10 @@ type CreateProjectResponse = {
9982
10037
  enablePreviewFeedback?: boolean | null;
9983
10038
  enableProductionFeedback?: boolean | null;
9984
10039
  permissions?: {
10040
+ user?: ACLAction[];
10041
+ userConnection?: ACLAction[];
10042
+ webAuthn?: ACLAction[];
10043
+ oauth2Connection?: ACLAction[];
9985
10044
  accessGroup?: ACLAction[];
9986
10045
  aliasGlobal?: ACLAction[];
9987
10046
  analyticsSampling?: ACLAction[];
@@ -10018,6 +10077,7 @@ type CreateProjectResponse = {
10018
10077
  fileUpload?: ACLAction[];
10019
10078
  gitRepository?: ACLAction[];
10020
10079
  ipBlocking?: ACLAction[];
10080
+ imageOptimizationNewPrice?: ACLAction[];
10021
10081
  integration?: ACLAction[];
10022
10082
  integrationAccount?: ACLAction[];
10023
10083
  integrationConfiguration?: ACLAction[];
@@ -10025,6 +10085,7 @@ type CreateProjectResponse = {
10025
10085
  integrationConfigurationProjects?: ACLAction[];
10026
10086
  integrationVercelConfigurationOverride?: ACLAction[];
10027
10087
  integrationConfigurationRole?: ACLAction[];
10088
+ integrationSSOSession?: ACLAction[];
10028
10089
  integrationResource?: ACLAction[];
10029
10090
  integrationEvent?: ACLAction[];
10030
10091
  integrationResourceSecrets?: ACLAction[];
@@ -10032,6 +10093,8 @@ type CreateProjectResponse = {
10032
10093
  marketplaceInstallationMember?: ACLAction[];
10033
10094
  marketplaceBillingData?: ACLAction[];
10034
10095
  marketplaceInvoice?: ACLAction[];
10096
+ marketplaceExperimentationItem?: ACLAction[];
10097
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
10035
10098
  jobGlobal?: ACLAction[];
10036
10099
  logDrain?: ACLAction[];
10037
10100
  Monitoring?: ACLAction[];
@@ -10052,7 +10115,6 @@ type CreateProjectResponse = {
10052
10115
  notificationUsageAlert?: ACLAction[];
10053
10116
  notificationCustomerBudget?: ACLAction[];
10054
10117
  notificationStatementOfReasons?: ACLAction[];
10055
- oauth2Connection?: ACLAction[];
10056
10118
  observabilityConfiguration?: ACLAction[];
10057
10119
  openTelemetryEndpoint?: ACLAction[];
10058
10120
  paymentMethod?: ACLAction[];
@@ -10093,11 +10155,8 @@ type CreateProjectResponse = {
10093
10155
  token?: ACLAction[];
10094
10156
  usage?: ACLAction[];
10095
10157
  usageCycle?: ACLAction[];
10096
- user?: ACLAction[];
10097
- userConnection?: ACLAction[];
10098
10158
  vpcPeeringConnection?: ACLAction[];
10099
10159
  webAnalyticsPlan?: ACLAction[];
10100
- webAuthn?: ACLAction[];
10101
10160
  edgeConfig?: ACLAction[];
10102
10161
  edgeConfigItem?: ACLAction[];
10103
10162
  edgeConfigSchema?: ACLAction[];
@@ -10173,7 +10232,6 @@ type CreateProjectResponse = {
10173
10232
  requestedAt: number;
10174
10233
  type: 'promote' | 'rollback';
10175
10234
  } | null;
10176
- hasFloatingAliases?: boolean;
10177
10235
  protectionBypass?: {
10178
10236
  [key: string]: {
10179
10237
  createdAt: number;
@@ -10775,6 +10833,10 @@ type GetProjectResponse = {
10775
10833
  * 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
10834
  */
10777
10835
  defaultRoute?: string;
10836
+ /**
10837
+ * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
10838
+ */
10839
+ routeObservabilityToDefaultApp?: boolean;
10778
10840
  };
10779
10841
  name: string;
10780
10842
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -10797,6 +10859,15 @@ type GetProjectResponse = {
10797
10859
  allowServerlessConcurrency?: boolean;
10798
10860
  elasticConcurrencyEnabled?: boolean;
10799
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
+ };
10800
10871
  rootDirectory?: string | null;
10801
10872
  serverlessFunctionRegion?: string | null;
10802
10873
  serverlessFunctionZeroConfigFailover?: boolean;
@@ -10890,6 +10961,10 @@ type GetProjectResponse = {
10890
10961
  enablePreviewFeedback?: boolean | null;
10891
10962
  enableProductionFeedback?: boolean | null;
10892
10963
  permissions?: {
10964
+ user?: ACLAction[];
10965
+ userConnection?: ACLAction[];
10966
+ webAuthn?: ACLAction[];
10967
+ oauth2Connection?: ACLAction[];
10893
10968
  accessGroup?: ACLAction[];
10894
10969
  aliasGlobal?: ACLAction[];
10895
10970
  analyticsSampling?: ACLAction[];
@@ -10926,6 +11001,7 @@ type GetProjectResponse = {
10926
11001
  fileUpload?: ACLAction[];
10927
11002
  gitRepository?: ACLAction[];
10928
11003
  ipBlocking?: ACLAction[];
11004
+ imageOptimizationNewPrice?: ACLAction[];
10929
11005
  integration?: ACLAction[];
10930
11006
  integrationAccount?: ACLAction[];
10931
11007
  integrationConfiguration?: ACLAction[];
@@ -10933,6 +11009,7 @@ type GetProjectResponse = {
10933
11009
  integrationConfigurationProjects?: ACLAction[];
10934
11010
  integrationVercelConfigurationOverride?: ACLAction[];
10935
11011
  integrationConfigurationRole?: ACLAction[];
11012
+ integrationSSOSession?: ACLAction[];
10936
11013
  integrationResource?: ACLAction[];
10937
11014
  integrationEvent?: ACLAction[];
10938
11015
  integrationResourceSecrets?: ACLAction[];
@@ -10940,6 +11017,8 @@ type GetProjectResponse = {
10940
11017
  marketplaceInstallationMember?: ACLAction[];
10941
11018
  marketplaceBillingData?: ACLAction[];
10942
11019
  marketplaceInvoice?: ACLAction[];
11020
+ marketplaceExperimentationItem?: ACLAction[];
11021
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
10943
11022
  jobGlobal?: ACLAction[];
10944
11023
  logDrain?: ACLAction[];
10945
11024
  Monitoring?: ACLAction[];
@@ -10960,7 +11039,6 @@ type GetProjectResponse = {
10960
11039
  notificationUsageAlert?: ACLAction[];
10961
11040
  notificationCustomerBudget?: ACLAction[];
10962
11041
  notificationStatementOfReasons?: ACLAction[];
10963
- oauth2Connection?: ACLAction[];
10964
11042
  observabilityConfiguration?: ACLAction[];
10965
11043
  openTelemetryEndpoint?: ACLAction[];
10966
11044
  paymentMethod?: ACLAction[];
@@ -11001,11 +11079,8 @@ type GetProjectResponse = {
11001
11079
  token?: ACLAction[];
11002
11080
  usage?: ACLAction[];
11003
11081
  usageCycle?: ACLAction[];
11004
- user?: ACLAction[];
11005
- userConnection?: ACLAction[];
11006
11082
  vpcPeeringConnection?: ACLAction[];
11007
11083
  webAnalyticsPlan?: ACLAction[];
11008
- webAuthn?: ACLAction[];
11009
11084
  edgeConfig?: ACLAction[];
11010
11085
  edgeConfigItem?: ACLAction[];
11011
11086
  edgeConfigSchema?: ACLAction[];
@@ -11081,7 +11156,6 @@ type GetProjectResponse = {
11081
11156
  requestedAt: number;
11082
11157
  type: 'promote' | 'rollback';
11083
11158
  } | null;
11084
- hasFloatingAliases?: boolean;
11085
11159
  protectionBypass?: {
11086
11160
  [key: string]: {
11087
11161
  createdAt: number;
@@ -11558,6 +11632,10 @@ type UpdateProjectResponse = {
11558
11632
  * 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
11633
  */
11560
11634
  defaultRoute?: string;
11635
+ /**
11636
+ * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
11637
+ */
11638
+ routeObservabilityToDefaultApp?: boolean;
11561
11639
  };
11562
11640
  name: string;
11563
11641
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -11580,6 +11658,15 @@ type UpdateProjectResponse = {
11580
11658
  allowServerlessConcurrency?: boolean;
11581
11659
  elasticConcurrencyEnabled?: boolean;
11582
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
+ };
11583
11670
  rootDirectory?: string | null;
11584
11671
  serverlessFunctionRegion?: string | null;
11585
11672
  serverlessFunctionZeroConfigFailover?: boolean;
@@ -11673,6 +11760,10 @@ type UpdateProjectResponse = {
11673
11760
  enablePreviewFeedback?: boolean | null;
11674
11761
  enableProductionFeedback?: boolean | null;
11675
11762
  permissions?: {
11763
+ user?: ACLAction[];
11764
+ userConnection?: ACLAction[];
11765
+ webAuthn?: ACLAction[];
11766
+ oauth2Connection?: ACLAction[];
11676
11767
  accessGroup?: ACLAction[];
11677
11768
  aliasGlobal?: ACLAction[];
11678
11769
  analyticsSampling?: ACLAction[];
@@ -11709,6 +11800,7 @@ type UpdateProjectResponse = {
11709
11800
  fileUpload?: ACLAction[];
11710
11801
  gitRepository?: ACLAction[];
11711
11802
  ipBlocking?: ACLAction[];
11803
+ imageOptimizationNewPrice?: ACLAction[];
11712
11804
  integration?: ACLAction[];
11713
11805
  integrationAccount?: ACLAction[];
11714
11806
  integrationConfiguration?: ACLAction[];
@@ -11716,6 +11808,7 @@ type UpdateProjectResponse = {
11716
11808
  integrationConfigurationProjects?: ACLAction[];
11717
11809
  integrationVercelConfigurationOverride?: ACLAction[];
11718
11810
  integrationConfigurationRole?: ACLAction[];
11811
+ integrationSSOSession?: ACLAction[];
11719
11812
  integrationResource?: ACLAction[];
11720
11813
  integrationEvent?: ACLAction[];
11721
11814
  integrationResourceSecrets?: ACLAction[];
@@ -11723,6 +11816,8 @@ type UpdateProjectResponse = {
11723
11816
  marketplaceInstallationMember?: ACLAction[];
11724
11817
  marketplaceBillingData?: ACLAction[];
11725
11818
  marketplaceInvoice?: ACLAction[];
11819
+ marketplaceExperimentationItem?: ACLAction[];
11820
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
11726
11821
  jobGlobal?: ACLAction[];
11727
11822
  logDrain?: ACLAction[];
11728
11823
  Monitoring?: ACLAction[];
@@ -11743,7 +11838,6 @@ type UpdateProjectResponse = {
11743
11838
  notificationUsageAlert?: ACLAction[];
11744
11839
  notificationCustomerBudget?: ACLAction[];
11745
11840
  notificationStatementOfReasons?: ACLAction[];
11746
- oauth2Connection?: ACLAction[];
11747
11841
  observabilityConfiguration?: ACLAction[];
11748
11842
  openTelemetryEndpoint?: ACLAction[];
11749
11843
  paymentMethod?: ACLAction[];
@@ -11784,11 +11878,8 @@ type UpdateProjectResponse = {
11784
11878
  token?: ACLAction[];
11785
11879
  usage?: ACLAction[];
11786
11880
  usageCycle?: ACLAction[];
11787
- user?: ACLAction[];
11788
- userConnection?: ACLAction[];
11789
11881
  vpcPeeringConnection?: ACLAction[];
11790
11882
  webAnalyticsPlan?: ACLAction[];
11791
- webAuthn?: ACLAction[];
11792
11883
  edgeConfig?: ACLAction[];
11793
11884
  edgeConfigItem?: ACLAction[];
11794
11885
  edgeConfigSchema?: ACLAction[];
@@ -11864,7 +11955,6 @@ type UpdateProjectResponse = {
11864
11955
  requestedAt: number;
11865
11956
  type: 'promote' | 'rollback';
11866
11957
  } | null;
11867
- hasFloatingAliases?: boolean;
11868
11958
  protectionBypass?: {
11869
11959
  [key: string]: {
11870
11960
  createdAt: number;
@@ -12904,7 +12994,7 @@ type FilterProjectEnvsVariables = {
12904
12994
  */
12905
12995
  declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
12906
12996
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
12907
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
12997
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
12908
12998
  /**
12909
12999
  * This is used to identiy variables that have been migrated from type secret to sensitive.
12910
13000
  */
@@ -12990,7 +13080,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
12990
13080
  } | {
12991
13081
  envs: {
12992
13082
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
12993
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
13083
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
12994
13084
  /**
12995
13085
  * This is used to identiy variables that have been migrated from type secret to sensitive.
12996
13086
  */
@@ -13078,7 +13168,7 @@ declare const filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?
13078
13168
  } | {
13079
13169
  envs: {
13080
13170
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
13081
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
13171
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
13082
13172
  /**
13083
13173
  * This is used to identiy variables that have been migrated from type secret to sensitive.
13084
13174
  */
@@ -13469,7 +13559,7 @@ type CreateProjectEnvError = ErrorWrapper<undefined>;
13469
13559
  type CreateProjectEnvResponse = {
13470
13560
  created: {
13471
13561
  target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
13472
- type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
13562
+ type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
13473
13563
  /**
13474
13564
  * This is used to identiy variables that have been migrated from type secret to sensitive.
13475
13565
  */
@@ -13554,7 +13644,7 @@ type CreateProjectEnvResponse = {
13554
13644
  system?: boolean;
13555
13645
  } | {
13556
13646
  target?: ('production' | 'preview' | 'development' | 'preview' | 'development')[] | ('production' | 'preview' | 'development' | 'preview' | 'development');
13557
- type?: 'system' | 'secret' | 'encrypted' | 'plain' | 'sensitive';
13647
+ type?: 'system' | 'encrypted' | 'plain' | 'sensitive' | 'secret';
13558
13648
  /**
13559
13649
  * This is used to identiy variables that have been migrated from type secret to sensitive.
13560
13650
  */
@@ -13694,6 +13784,10 @@ type CreateProjectEnvVariables = {
13694
13784
  * @maxLength 500
13695
13785
  */
13696
13786
  comment?: string;
13787
+ /**
13788
+ * The custom environment IDs associated with the environment variable
13789
+ */
13790
+ customEnvironmentIds?: string[];
13697
13791
  } | {
13698
13792
  /**
13699
13793
  * The name of the environment variable
@@ -13733,6 +13827,10 @@ type CreateProjectEnvVariables = {
13733
13827
  * @maxLength 500
13734
13828
  */
13735
13829
  comment?: string;
13830
+ /**
13831
+ * The custom environment IDs associated with the environment variable
13832
+ */
13833
+ customEnvironmentIds: string[];
13736
13834
  }) | ({
13737
13835
  /**
13738
13836
  * The name of the environment variable
@@ -13772,6 +13870,10 @@ type CreateProjectEnvVariables = {
13772
13870
  * @maxLength 500
13773
13871
  */
13774
13872
  comment?: string;
13873
+ /**
13874
+ * The custom environment IDs associated with the environment variable
13875
+ */
13876
+ customEnvironmentIds?: string[];
13775
13877
  } | {
13776
13878
  /**
13777
13879
  * The name of the environment variable
@@ -13811,6 +13913,10 @@ type CreateProjectEnvVariables = {
13811
13913
  * @maxLength 500
13812
13914
  */
13813
13915
  comment?: string;
13916
+ /**
13917
+ * The custom environment IDs associated with the environment variable
13918
+ */
13919
+ customEnvironmentIds: string[];
13814
13920
  })[];
13815
13921
  pathParams: CreateProjectEnvPathParams;
13816
13922
  queryParams?: CreateProjectEnvQueryParams;
@@ -13860,7 +13966,7 @@ type RemoveProjectEnvVariables = {
13860
13966
  declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
13861
13967
  system?: boolean;
13862
13968
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
13863
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
13969
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
13864
13970
  /**
13865
13971
  * This is used to identiy variables that have been migrated from type secret to sensitive.
13866
13972
  */
@@ -13944,7 +14050,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
13944
14050
  vsmValue?: string;
13945
14051
  } | {
13946
14052
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
13947
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
14053
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
13948
14054
  /**
13949
14055
  * This is used to identiy variables that have been migrated from type secret to sensitive.
13950
14056
  */
@@ -14028,7 +14134,7 @@ declare const removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?:
14028
14134
  vsmValue?: string;
14029
14135
  } | {
14030
14136
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
14031
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
14137
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
14032
14138
  /**
14033
14139
  * This is used to identiy variables that have been migrated from type secret to sensitive.
14034
14140
  */
@@ -14187,7 +14293,7 @@ type EditProjectEnvVariables = {
14187
14293
  */
14188
14294
  declare const editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
14189
14295
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
14190
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
14296
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
14191
14297
  /**
14192
14298
  * This is used to identiy variables that have been migrated from type secret to sensitive.
14193
14299
  */
@@ -14652,6 +14758,7 @@ type PutFirewallConfigResponse = {
14652
14758
  permanent: boolean;
14653
14759
  } | null;
14654
14760
  actionDuration?: string | null;
14761
+ bypassSystem?: boolean | null;
14655
14762
  };
14656
14763
  };
14657
14764
  }[];
@@ -14767,6 +14874,7 @@ type PutFirewallConfigRequestBody = {
14767
14874
  permanent: boolean;
14768
14875
  } | null;
14769
14876
  actionDuration?: string | null;
14877
+ bypassSystem?: boolean | null;
14770
14878
  };
14771
14879
  };
14772
14880
  }[];
@@ -14840,6 +14948,7 @@ type UpdateFirewallConfigVariables = {
14840
14948
  permanent: boolean;
14841
14949
  } | null;
14842
14950
  actionDuration?: string | null;
14951
+ bypassSystem?: boolean | null;
14843
14952
  };
14844
14953
  };
14845
14954
  };
@@ -14880,6 +14989,7 @@ type UpdateFirewallConfigVariables = {
14880
14989
  permanent: boolean;
14881
14990
  } | null;
14882
14991
  actionDuration?: string | null;
14992
+ bypassSystem?: boolean | null;
14883
14993
  };
14884
14994
  };
14885
14995
  };
@@ -15031,6 +15141,7 @@ type GetFirewallConfigResponse = {
15031
15141
  permanent: boolean;
15032
15142
  } | null;
15033
15143
  actionDuration?: string | null;
15144
+ bypassSystem?: boolean | null;
15034
15145
  };
15035
15146
  };
15036
15147
  }[];
@@ -15397,12 +15508,6 @@ type GetTeamMembersResponse = {
15397
15508
  * @example OWNER
15398
15509
  */
15399
15510
  role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
15400
- /**
15401
- * Permissions that this user has in addition to their role.
15402
- *
15403
- * @example ['createProjects']
15404
- */
15405
- additionalRoles?: string[];
15406
15511
  /**
15407
15512
  * The ID of this user.
15408
15513
  *
@@ -18263,7 +18368,7 @@ declare const operationsByTag: {
18263
18368
  verifyProjectDomain: (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
18264
18369
  filterProjectEnvs: (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
18265
18370
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18266
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
18371
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18267
18372
  /**
18268
18373
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18269
18374
  */
@@ -18349,7 +18454,7 @@ declare const operationsByTag: {
18349
18454
  } | {
18350
18455
  envs: {
18351
18456
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18352
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
18457
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18353
18458
  /**
18354
18459
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18355
18460
  */
@@ -18437,7 +18542,7 @@ declare const operationsByTag: {
18437
18542
  } | {
18438
18543
  envs: {
18439
18544
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18440
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
18545
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18441
18546
  /**
18442
18547
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18443
18548
  */
@@ -18774,7 +18879,7 @@ declare const operationsByTag: {
18774
18879
  removeProjectEnv: (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
18775
18880
  system?: boolean;
18776
18881
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18777
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
18882
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18778
18883
  /**
18779
18884
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18780
18885
  */
@@ -18858,7 +18963,7 @@ declare const operationsByTag: {
18858
18963
  vsmValue?: string;
18859
18964
  } | {
18860
18965
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18861
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
18966
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18862
18967
  /**
18863
18968
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18864
18969
  */
@@ -18942,7 +19047,7 @@ declare const operationsByTag: {
18942
19047
  vsmValue?: string;
18943
19048
  } | {
18944
19049
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
18945
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
19050
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
18946
19051
  /**
18947
19052
  * This is used to identiy variables that have been migrated from type secret to sensitive.
18948
19053
  */
@@ -19027,7 +19132,7 @@ declare const operationsByTag: {
19027
19132
  }[]>;
19028
19133
  editProjectEnv: (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
19029
19134
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
19030
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
19135
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
19031
19136
  /**
19032
19137
  * This is used to identiy variables that have been migrated from type secret to sensitive.
19033
19138
  */
@@ -22615,7 +22720,7 @@ declare const operationsByPath: {
22615
22720
  'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
22616
22721
  'GET /v9/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
22617
22722
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
22618
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
22723
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
22619
22724
  sunsetSecretId?: string;
22620
22725
  id?: string;
22621
22726
  key?: string;
@@ -22689,7 +22794,7 @@ declare const operationsByPath: {
22689
22794
  } | {
22690
22795
  envs: {
22691
22796
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
22692
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
22797
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
22693
22798
  sunsetSecretId?: string;
22694
22799
  id?: string;
22695
22800
  key?: string;
@@ -22765,7 +22870,7 @@ declare const operationsByPath: {
22765
22870
  } | {
22766
22871
  envs: {
22767
22872
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
22768
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
22873
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
22769
22874
  sunsetSecretId?: string;
22770
22875
  id?: string;
22771
22876
  key?: string;
@@ -23057,7 +23162,7 @@ declare const operationsByPath: {
23057
23162
  'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
23058
23163
  system?: boolean;
23059
23164
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
23060
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
23165
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
23061
23166
  sunsetSecretId?: string;
23062
23167
  id?: string;
23063
23168
  key: string;
@@ -23129,7 +23234,7 @@ declare const operationsByPath: {
23129
23234
  vsmValue?: string;
23130
23235
  } | {
23131
23236
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
23132
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
23237
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
23133
23238
  sunsetSecretId?: string;
23134
23239
  id?: string;
23135
23240
  key: string;
@@ -23201,7 +23306,7 @@ declare const operationsByPath: {
23201
23306
  vsmValue?: string;
23202
23307
  } | {
23203
23308
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
23204
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
23309
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
23205
23310
  sunsetSecretId?: string;
23206
23311
  id?: string;
23207
23312
  key: string;
@@ -23274,7 +23379,7 @@ declare const operationsByPath: {
23274
23379
  }[]>;
23275
23380
  'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
23276
23381
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
23277
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
23382
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
23278
23383
  sunsetSecretId?: string;
23279
23384
  id?: string;
23280
23385
  key: string;
@@ -24485,7 +24590,7 @@ declare class VercelApi {
24485
24590
  'POST /v9/projects/{idOrName}/domains/{domain}/verify': (variables: VerifyProjectDomainVariables, signal?: AbortSignal) => Promise<VerifyProjectDomainResponse>;
24486
24591
  'GET /v9/projects/{idOrName}/env': (variables: FilterProjectEnvsVariables, signal?: AbortSignal) => Promise<{
24487
24592
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
24488
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
24593
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
24489
24594
  sunsetSecretId?: string;
24490
24595
  id?: string;
24491
24596
  key?: string;
@@ -24559,7 +24664,7 @@ declare class VercelApi {
24559
24664
  } | {
24560
24665
  envs: {
24561
24666
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
24562
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
24667
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
24563
24668
  sunsetSecretId?: string;
24564
24669
  id?: string;
24565
24670
  key?: string;
@@ -24635,7 +24740,7 @@ declare class VercelApi {
24635
24740
  } | {
24636
24741
  envs: {
24637
24742
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
24638
- type?: "system" | "secret" | "encrypted" | "plain" | "sensitive";
24743
+ type?: "system" | "encrypted" | "plain" | "sensitive" | "secret";
24639
24744
  sunsetSecretId?: string;
24640
24745
  id?: string;
24641
24746
  key?: string;
@@ -24927,7 +25032,7 @@ declare class VercelApi {
24927
25032
  'DELETE /v9/projects/{idOrName}/env/{id}': (variables: RemoveProjectEnvVariables, signal?: AbortSignal) => Promise<{
24928
25033
  system?: boolean;
24929
25034
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
24930
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
25035
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
24931
25036
  sunsetSecretId?: string;
24932
25037
  id?: string;
24933
25038
  key: string;
@@ -24999,7 +25104,7 @@ declare class VercelApi {
24999
25104
  vsmValue?: string;
25000
25105
  } | {
25001
25106
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
25002
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
25107
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
25003
25108
  sunsetSecretId?: string;
25004
25109
  id?: string;
25005
25110
  key: string;
@@ -25071,7 +25176,7 @@ declare class VercelApi {
25071
25176
  vsmValue?: string;
25072
25177
  } | {
25073
25178
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
25074
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
25179
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
25075
25180
  sunsetSecretId?: string;
25076
25181
  id?: string;
25077
25182
  key: string;
@@ -25144,7 +25249,7 @@ declare class VercelApi {
25144
25249
  }[]>;
25145
25250
  'PATCH /v9/projects/{idOrName}/env/{id}': (variables: EditProjectEnvVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
25146
25251
  target?: ("production" | "preview" | "development" | "preview" | "development")[] | ("production" | "preview" | "development" | "preview" | "development");
25147
- type: "system" | "secret" | "encrypted" | "plain" | "sensitive";
25252
+ type: "system" | "encrypted" | "plain" | "sensitive" | "secret";
25148
25253
  sunsetSecretId?: string;
25149
25254
  id?: string;
25150
25255
  key: string;