vercel-api-js 0.20.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -184,8 +184,9 @@ type TeamLimited = {
184
184
  confirmed: boolean;
185
185
  confirmedAt: number;
186
186
  accessRequestedAt?: number;
187
- role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
188
- additionalRoles?: ('CreateProject' | 'FullProductionDeployment')[];
187
+ role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
188
+ teamRoles?: ('BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER')[];
189
+ teamPermissions?: ('CreateProject' | 'FullProductionDeployment')[];
189
190
  teamId?: string;
190
191
  createdAt: number;
191
192
  created: number;
@@ -214,6 +215,73 @@ type TeamLimited = {
214
215
  */
215
216
  createdAt: number;
216
217
  };
218
+ /**
219
+ * Authentication token metadata.
220
+ */
221
+ type AuthToken = {
222
+ /**
223
+ * The unique identifier of the token.
224
+ *
225
+ * @example 5d9f2ebd38ddca62e5d51e9c1704c72530bdc8bfdd41e782a6687c48399e8391
226
+ */
227
+ id: string;
228
+ /**
229
+ * The human-readable name of the token.
230
+ */
231
+ name: string;
232
+ /**
233
+ * The type of the token.
234
+ *
235
+ * @example oauth2-token
236
+ */
237
+ type: string;
238
+ /**
239
+ * The origin of how the token was created.
240
+ *
241
+ * @example github
242
+ */
243
+ origin?: string;
244
+ /**
245
+ * The access scopes granted to the token.
246
+ */
247
+ scopes?: ({
248
+ type: 'user';
249
+ sudo?: {
250
+ /**
251
+ * Possible multi-factor origins
252
+ */
253
+ origin: 'totp' | 'webauthn' | 'recovery-code';
254
+ expiresAt: number;
255
+ };
256
+ origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
257
+ createdAt: number;
258
+ expiresAt?: number;
259
+ } | {
260
+ type: 'team';
261
+ teamId: string;
262
+ origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
263
+ createdAt: number;
264
+ expiresAt?: number;
265
+ })[];
266
+ /**
267
+ * Timestamp (in milliseconds) of when the token expires.
268
+ *
269
+ * @example 1632816536002
270
+ */
271
+ expiresAt?: number;
272
+ /**
273
+ * Timestamp (in milliseconds) of when the token was most recently used.
274
+ *
275
+ * @example 1632816536002
276
+ */
277
+ activeAt: number;
278
+ /**
279
+ * Timestamp (in milliseconds) of when the token was created.
280
+ *
281
+ * @example 1632816536002
282
+ */
283
+ createdAt: number;
284
+ };
217
285
  /**
218
286
  * Data for the currently authenticated User.
219
287
  */
@@ -230,7 +298,7 @@ type AuthUser = {
230
298
  softBlock: {
231
299
  blockedAt: number;
232
300
  reason: 'BLOCKED_FOR_PLATFORM_ABUSE' | 'ENTERPRISE_TRIAL_ENDED' | 'FAIR_USE_LIMITS_EXCEEDED' | 'SUBSCRIPTION_CANCELED' | 'SUBSCRIPTION_EXPIRED' | 'UNPAID_INVOICE';
233
- blockedDueToOverageType?: 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobStores' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'buildMinute' | 'dataCacheRead' | 'dataCacheRevalidation' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequest' | 'edgeRequestAdditionalCpuDuration' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
301
+ blockedDueToOverageType?: 'aiCredits' | 'analyticsUsage' | 'artifacts' | 'bandwidth' | 'blobStores' | 'blobTotalAdvancedRequests' | 'blobTotalAvgSizeInBytes' | 'blobTotalGetResponseObjectSizeInBytes' | 'blobTotalSimpleRequests' | 'buildMinute' | 'dataCacheRead' | 'dataCacheRevalidation' | 'dataCacheWrite' | 'edgeConfigRead' | 'edgeConfigWrite' | 'edgeFunctionExecutionUnits' | 'edgeMiddlewareInvocations' | 'edgeRequest' | 'edgeRequestAdditionalCpuDuration' | 'elasticConcurrencyBuildSlots' | 'fastDataTransfer' | 'fastOriginTransfer' | 'functionDuration' | 'functionInvocation' | 'imageOptimizationCacheRead' | 'imageOptimizationCacheWrite' | 'imageOptimizationTransformation' | 'logDrainsVolume' | 'monitoringMetric' | 'objectDataTransfer' | 'observabilityEvent' | 'postgresComputeTime' | 'postgresDataStorage' | 'postgresDataTransfer' | 'postgresDatabase' | 'postgresWrittenData' | 'serverlessFunctionExecution' | 'sourceImages' | 'storageRedisTotalBandwidthInBytes' | 'storageRedisTotalCommands' | 'storageRedisTotalDailyAvgStorageInBytes' | 'storageRedisTotalDatabases' | 'wafOwaspExcessBytes' | 'wafOwaspRequests' | 'wafRateLimitRequest' | 'webAnalyticsEvent';
234
302
  } | null;
235
303
  /**
236
304
  * An object containing billing infomation associated with the User account.
@@ -354,10 +422,12 @@ type AuthUser = {
354
422
  projectId: string;
355
423
  scopeSlug: string;
356
424
  scopeId: string;
425
+ teamId?: string;
357
426
  } | {
358
427
  spaceId: string;
359
428
  scopeSlug: string;
360
429
  scopeId: string;
430
+ teamId?: string;
361
431
  })[];
362
432
  /**
363
433
  * Whether the user has a trial available for a paid plan subscription.
@@ -501,66 +571,6 @@ type AuthUserLimited = {
501
571
  */
502
572
  version: 'northstar';
503
573
  };
504
- /**
505
- * Authentication token metadata.
506
- */
507
- type AuthToken = {
508
- /**
509
- * The unique identifier of the token.
510
- *
511
- * @example 5d9f2ebd38ddca62e5d51e9c1704c72530bdc8bfdd41e782a6687c48399e8391
512
- */
513
- id: string;
514
- /**
515
- * The human-readable name of the token.
516
- */
517
- name: string;
518
- /**
519
- * The type of the token.
520
- *
521
- * @example oauth2-token
522
- */
523
- type: string;
524
- /**
525
- * The origin of how the token was created.
526
- *
527
- * @example github
528
- */
529
- origin?: string;
530
- /**
531
- * The access scopes granted to the token.
532
- */
533
- scopes?: ({
534
- type: 'user';
535
- origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
536
- createdAt: number;
537
- expiresAt?: number;
538
- } | {
539
- type: 'team';
540
- teamId: string;
541
- origin: 'saml' | 'github' | 'gitlab' | 'bitbucket' | 'email' | 'manual' | 'passkey' | 'otp' | 'sms' | 'invite';
542
- createdAt: number;
543
- expiresAt?: number;
544
- })[];
545
- /**
546
- * Timestamp (in milliseconds) of when the token expires.
547
- *
548
- * @example 1632816536002
549
- */
550
- expiresAt?: number;
551
- /**
552
- * Timestamp (in milliseconds) of when the token was most recently used.
553
- *
554
- * @example 1632816536002
555
- */
556
- activeAt: number;
557
- /**
558
- * Timestamp (in milliseconds) of when the token was created.
559
- *
560
- * @example 1632816536002
561
- */
562
- createdAt: number;
563
- };
564
574
  /**
565
575
  * A deployment file tree entry
566
576
  */
@@ -887,7 +897,7 @@ type ListAccessGroupMembersResponse = {
887
897
  username: string;
888
898
  name?: string;
889
899
  createdAt?: string;
890
- teamRole: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
900
+ teamRole: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
891
901
  }[];
892
902
  pagination: {
893
903
  count: number;
@@ -2232,7 +2242,7 @@ type UpdateProjectDataCacheResponse = {
2232
2242
  vsmValue?: string;
2233
2243
  }[];
2234
2244
  customEnvironments?: Record<string, any>[];
2235
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
2245
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
2236
2246
  gitForkProtection?: boolean;
2237
2247
  gitLFS?: boolean;
2238
2248
  id: string;
@@ -2382,8 +2392,11 @@ type UpdateProjectDataCacheResponse = {
2382
2392
  updatedAt: number;
2383
2393
  /**
2384
2394
  * The group IDs of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
2395
+ *
2396
+ * @maxItems 2
2397
+ * @minItems 2
2385
2398
  */
2386
- groupIds: string[];
2399
+ groupIds: (string | string)[];
2387
2400
  /**
2388
2401
  * Whether microfrontends are enabled for this project.
2389
2402
  */
@@ -2397,9 +2410,17 @@ type UpdateProjectDataCacheResponse = {
2397
2410
  */
2398
2411
  defaultRoute?: string;
2399
2412
  /**
2400
- * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
2413
+ * Whether observability data should be routed to this microfrontend project or a root project.
2414
+ */
2415
+ routeObservabilityToThisProject?: boolean;
2416
+ } | {
2417
+ updatedAt: number;
2418
+ /**
2419
+ * @maxItems 2
2420
+ * @minItems 2
2401
2421
  */
2402
- routeObservabilityToDefaultApp?: boolean;
2422
+ groupIds: (string | string)[];
2423
+ enabled: boolean;
2403
2424
  };
2404
2425
  name: string;
2405
2426
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -2413,13 +2434,20 @@ type UpdateProjectDataCacheResponse = {
2413
2434
  passwordProtection?: Record<string, any> | null;
2414
2435
  productionDeploymentsFastLane?: boolean;
2415
2436
  publicSource?: boolean | null;
2416
- resourceConfig?: {
2437
+ resourceConfig: {
2438
+ fluid?: boolean;
2439
+ functionDefaultRegions: string[];
2440
+ functionDefaultTimeout?: number;
2441
+ functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
2442
+ functionZeroConfigFailover?: boolean;
2443
+ elasticConcurrencyEnabled?: boolean;
2444
+ };
2445
+ defaultResourceConfig: {
2417
2446
  fluid?: boolean;
2418
- functionDefaultRegion?: string | null;
2447
+ functionDefaultRegions: string[];
2419
2448
  functionDefaultTimeout?: number;
2420
2449
  functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
2421
2450
  functionZeroConfigFailover?: boolean;
2422
- allowServerlessConcurrency?: boolean;
2423
2451
  elasticConcurrencyEnabled?: boolean;
2424
2452
  };
2425
2453
  rootDirectory?: string | null;
@@ -2515,6 +2543,11 @@ type UpdateProjectDataCacheResponse = {
2515
2543
  enablePreviewFeedback?: boolean | null;
2516
2544
  enableProductionFeedback?: boolean | null;
2517
2545
  permissions?: {
2546
+ user?: ACLAction[];
2547
+ userConnection?: ACLAction[];
2548
+ userSudo?: ACLAction[];
2549
+ webAuthn?: ACLAction[];
2550
+ oauth2Connection?: ACLAction[];
2518
2551
  accessGroup?: ACLAction[];
2519
2552
  aliasGlobal?: ACLAction[];
2520
2553
  analyticsSampling?: ACLAction[];
@@ -2551,6 +2584,7 @@ type UpdateProjectDataCacheResponse = {
2551
2584
  fileUpload?: ACLAction[];
2552
2585
  gitRepository?: ACLAction[];
2553
2586
  ipBlocking?: ACLAction[];
2587
+ imageOptimizationNewPrice?: ACLAction[];
2554
2588
  integration?: ACLAction[];
2555
2589
  integrationAccount?: ACLAction[];
2556
2590
  integrationConfiguration?: ACLAction[];
@@ -2558,6 +2592,7 @@ type UpdateProjectDataCacheResponse = {
2558
2592
  integrationConfigurationProjects?: ACLAction[];
2559
2593
  integrationVercelConfigurationOverride?: ACLAction[];
2560
2594
  integrationConfigurationRole?: ACLAction[];
2595
+ integrationSSOSession?: ACLAction[];
2561
2596
  integrationResource?: ACLAction[];
2562
2597
  integrationEvent?: ACLAction[];
2563
2598
  integrationResourceSecrets?: ACLAction[];
@@ -2565,6 +2600,8 @@ type UpdateProjectDataCacheResponse = {
2565
2600
  marketplaceInstallationMember?: ACLAction[];
2566
2601
  marketplaceBillingData?: ACLAction[];
2567
2602
  marketplaceInvoice?: ACLAction[];
2603
+ marketplaceExperimentationItem?: ACLAction[];
2604
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
2568
2605
  jobGlobal?: ACLAction[];
2569
2606
  logDrain?: ACLAction[];
2570
2607
  Monitoring?: ACLAction[];
@@ -2585,7 +2622,6 @@ type UpdateProjectDataCacheResponse = {
2585
2622
  notificationUsageAlert?: ACLAction[];
2586
2623
  notificationCustomerBudget?: ACLAction[];
2587
2624
  notificationStatementOfReasons?: ACLAction[];
2588
- oauth2Connection?: ACLAction[];
2589
2625
  observabilityConfiguration?: ACLAction[];
2590
2626
  openTelemetryEndpoint?: ACLAction[];
2591
2627
  paymentMethod?: ACLAction[];
@@ -2626,11 +2662,8 @@ type UpdateProjectDataCacheResponse = {
2626
2662
  token?: ACLAction[];
2627
2663
  usage?: ACLAction[];
2628
2664
  usageCycle?: ACLAction[];
2629
- user?: ACLAction[];
2630
- userConnection?: ACLAction[];
2631
2665
  vpcPeeringConnection?: ACLAction[];
2632
2666
  webAnalyticsPlan?: ACLAction[];
2633
- webAuthn?: ACLAction[];
2634
2667
  edgeConfig?: ACLAction[];
2635
2668
  edgeConfigItem?: ACLAction[];
2636
2669
  edgeConfigSchema?: ACLAction[];
@@ -2706,7 +2739,6 @@ type UpdateProjectDataCacheResponse = {
2706
2739
  requestedAt: number;
2707
2740
  type: 'promote' | 'rollback';
2708
2741
  } | null;
2709
- hasFloatingAliases?: boolean;
2710
2742
  protectionBypass?: {
2711
2743
  [key: string]: {
2712
2744
  createdAt: number;
@@ -2923,6 +2955,32 @@ type GetDeploymentEventsVariables = {
2923
2955
  * Get the build logs of a deployment by deployment ID and build ID. It can work as an infinite stream of logs or as a JSON endpoint depending on the input parameters.
2924
2956
  */
2925
2957
  declare const getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<undefined>;
2958
+ type UpdateIntegrationDeploymentActionPathParams = {
2959
+ deploymentId: string;
2960
+ integrationConfigurationId: string;
2961
+ resourceId: string;
2962
+ action: string;
2963
+ };
2964
+ type UpdateIntegrationDeploymentActionError = ErrorWrapper<undefined>;
2965
+ type UpdateIntegrationDeploymentActionRequestBody = {
2966
+ status?: 'failed' | 'running' | 'succeeded';
2967
+ statusText?: string;
2968
+ outcomes?: {
2969
+ kind: string;
2970
+ secrets: {
2971
+ name: string;
2972
+ value: string;
2973
+ }[];
2974
+ }[];
2975
+ };
2976
+ type UpdateIntegrationDeploymentActionVariables = {
2977
+ body: UpdateIntegrationDeploymentActionRequestBody;
2978
+ pathParams: UpdateIntegrationDeploymentActionPathParams;
2979
+ } & FetcherExtraProps;
2980
+ /**
2981
+ * Updates the deployment integration action for the specified integration installation
2982
+ */
2983
+ declare const updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
2926
2984
  type GetDeploymentPathParams = {
2927
2985
  /**
2928
2986
  * The unique identifier or hostname of the deployment.
@@ -2970,7 +3028,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
2970
3028
  projectSettings: {
2971
3029
  buildCommand?: string | null;
2972
3030
  devCommand?: string | null;
2973
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
3031
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
2974
3032
  commandForIgnoringBuildStep?: string | null;
2975
3033
  installCommand?: string | null;
2976
3034
  outputDirectory?: string | null;
@@ -3343,8 +3401,11 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
3343
3401
  defaultRoute?: string;
3344
3402
  /**
3345
3403
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
3404
+ *
3405
+ * @maxItems 2
3406
+ * @minItems 2
3346
3407
  */
3347
- groupIds: string[];
3408
+ groupIds: (string | string)[];
3348
3409
  } | {
3349
3410
  /**
3350
3411
  * A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
@@ -3369,8 +3430,22 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
3369
3430
  defaultRoute?: string;
3370
3431
  /**
3371
3432
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
3433
+ *
3434
+ * @maxItems 2
3435
+ * @minItems 2
3372
3436
  */
3373
- groupIds: string[];
3437
+ groupIds: (string | string)[];
3438
+ };
3439
+ /**
3440
+ * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
3441
+ */
3442
+ config?: {
3443
+ version?: number;
3444
+ functionType: "fluid" | "standard";
3445
+ functionMemoryType: "standard" | "standard_legacy" | "performance";
3446
+ functionTimeout: number | null;
3447
+ secureComputePrimaryRegion: string | null;
3448
+ secureComputeFallbackRegion: string | null;
3374
3449
  };
3375
3450
  } | {
3376
3451
  alias?: string[];
@@ -3575,7 +3650,7 @@ type CreateDeploymentResponse = {
3575
3650
  buildCommand?: string | null;
3576
3651
  commandForIgnoringBuildStep?: string | null;
3577
3652
  devCommand?: string | null;
3578
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
3653
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
3579
3654
  installCommand?: string | null;
3580
3655
  outputDirectory?: string | null;
3581
3656
  speedInsights?: {
@@ -3823,8 +3898,11 @@ type CreateDeploymentResponse = {
3823
3898
  defaultRoute?: string;
3824
3899
  /**
3825
3900
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
3901
+ *
3902
+ * @maxItems 2
3903
+ * @minItems 2
3826
3904
  */
3827
- groupIds: string[];
3905
+ groupIds: (string | string)[];
3828
3906
  } | {
3829
3907
  /**
3830
3908
  * A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
@@ -3849,10 +3927,24 @@ type CreateDeploymentResponse = {
3849
3927
  defaultRoute?: string;
3850
3928
  /**
3851
3929
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
3930
+ *
3931
+ * @maxItems 2
3932
+ * @minItems 2
3852
3933
  */
3853
- groupIds: string[];
3934
+ groupIds: (string | string)[];
3854
3935
  };
3855
3936
  monorepoManager?: string | null;
3937
+ /**
3938
+ * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
3939
+ */
3940
+ config?: {
3941
+ version?: number;
3942
+ functionType: 'fluid' | 'standard';
3943
+ functionMemoryType: 'performance' | 'standard' | 'standard_legacy';
3944
+ functionTimeout: number | null;
3945
+ secureComputePrimaryRegion: string | null;
3946
+ secureComputeFallbackRegion: string | null;
3947
+ };
3856
3948
  functions?: {
3857
3949
  [key: string]: {
3858
3950
  memory?: number;
@@ -4141,7 +4233,7 @@ type CreateDeploymentRequestBody = {
4141
4233
  /**
4142
4234
  * The framework that is being used for this project. When `null` is used no framework is selected
4143
4235
  */
4144
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
4236
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
4145
4237
  /**
4146
4238
  * The install command for this project. When `null` is used this value will be automatically detected
4147
4239
  *
@@ -4182,9 +4274,11 @@ type CreateDeploymentRequestBody = {
4182
4274
  sourceFilesOutsideRootDirectory?: boolean;
4183
4275
  };
4184
4276
  /**
4185
- * Either not defined, `staging`, or `production`. If `staging`, a staging alias in the format `<project>-<team>.vercel.app` will be assigned. If `production`, any aliases defined in `alias` will be assigned. If omitted, the target will be `preview`
4277
+ * Either not defined, `staging`, `production`, or a custom environment identifier. If `staging`, a staging alias in the format `<project>-<team>.vercel.app` will be assigned. If `production`, any aliases defined in `alias` will be assigned. If omitted, the target will be `preview`.
4278
+ *
4279
+ * @example production
4186
4280
  */
4187
- target?: 'production' | 'staging';
4281
+ target?: string;
4188
4282
  /**
4189
4283
  * When `true` and `deploymentId` is passed in, the sha from the previous deployment's `gitSource` is removed forcing the latest commit to be used.
4190
4284
  */
@@ -4232,7 +4326,7 @@ type CancelDeploymentResponse = {
4232
4326
  projectSettings: {
4233
4327
  buildCommand?: string | null;
4234
4328
  devCommand?: string | null;
4235
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
4329
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
4236
4330
  commandForIgnoringBuildStep?: string | null;
4237
4331
  installCommand?: string | null;
4238
4332
  outputDirectory?: string | null;
@@ -4605,8 +4699,11 @@ type CancelDeploymentResponse = {
4605
4699
  defaultRoute?: string;
4606
4700
  /**
4607
4701
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
4702
+ *
4703
+ * @maxItems 2
4704
+ * @minItems 2
4608
4705
  */
4609
- groupIds: string[];
4706
+ groupIds: (string | string)[];
4610
4707
  } | {
4611
4708
  /**
4612
4709
  * A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
@@ -4631,8 +4728,22 @@ type CancelDeploymentResponse = {
4631
4728
  defaultRoute?: string;
4632
4729
  /**
4633
4730
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
4731
+ *
4732
+ * @maxItems 2
4733
+ * @minItems 2
4634
4734
  */
4635
- groupIds: string[];
4735
+ groupIds: (string | string)[];
4736
+ };
4737
+ /**
4738
+ * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
4739
+ */
4740
+ config?: {
4741
+ version?: number;
4742
+ functionType: 'fluid' | 'standard';
4743
+ functionMemoryType: 'performance' | 'standard' | 'standard_legacy';
4744
+ functionTimeout: number | null;
4745
+ secureComputePrimaryRegion: string | null;
4746
+ secureComputeFallbackRegion: string | null;
4636
4747
  };
4637
4748
  };
4638
4749
  type CancelDeploymentVariables = {
@@ -6019,11 +6130,6 @@ type DeleteDomainQueryParams = {
6019
6130
  };
6020
6131
  type DeleteDomainError = ErrorWrapper<undefined>;
6021
6132
  type DeleteDomainResponse = {
6022
- /**
6023
- * The id of the newly created DNS record
6024
- *
6025
- * @example rec_V0fra8eEgQwEpFhYG2vTzC3K
6026
- */
6027
6133
  uid: string;
6028
6134
  };
6029
6135
  type DeleteDomainVariables = {
@@ -6034,7 +6140,10 @@ type DeleteDomainVariables = {
6034
6140
  * Delete a previously registered domain name from Vercel. Deleting a domain will automatically remove any associated aliases.
6035
6141
  */
6036
6142
  declare const deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
6037
- type GetEdgeConfigsQueryParams = {
6143
+ type GetConfigurableLogDrainPathParams = {
6144
+ id: string;
6145
+ };
6146
+ type GetConfigurableLogDrainQueryParams = {
6038
6147
  /**
6039
6148
  * The Team identifier to perform the request on behalf of.
6040
6149
  */
@@ -6044,41 +6153,47 @@ type GetEdgeConfigsQueryParams = {
6044
6153
  */
6045
6154
  slug?: string;
6046
6155
  };
6047
- type GetEdgeConfigsError = ErrorWrapper<undefined>;
6048
- type GetEdgeConfigsResponse = {
6049
- id?: string;
6050
- createdAt?: number;
6051
- ownerId?: string;
6052
- /**
6053
- * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
6054
- */
6055
- slug?: string;
6056
- updatedAt?: number;
6057
- digest?: string;
6058
- /**
6059
- * Keeps track of the current state of the Edge Config while it gets transferred.
6060
- */
6061
- transfer?: {
6062
- fromAccountId: string;
6063
- startedAt: number;
6064
- doneAt: number | null;
6065
- };
6066
- schema?: Record<string, any>;
6067
- purpose?: {
6068
- type: 'flags';
6069
- projectId: string;
6156
+ type GetConfigurableLogDrainError = ErrorWrapper<undefined>;
6157
+ type GetConfigurableLogDrainResponse = {
6158
+ clientId?: string;
6159
+ configurationId?: string;
6160
+ deliveryFormat: 'json' | 'ndjson' | 'syslog';
6161
+ sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
6162
+ environments: ('preview' | 'production')[];
6163
+ status?: 'disabled' | 'enabled' | 'errored';
6164
+ disabledAt?: number;
6165
+ disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
6166
+ disabledBy?: string;
6167
+ firstErrorTimestamp?: number;
6168
+ samplingRate?: number;
6169
+ hideIpAddresses?: boolean;
6170
+ id: string;
6171
+ createdAt: number;
6172
+ deletedAt: number | null;
6173
+ updatedAt: number;
6174
+ url: string;
6175
+ headers?: {
6176
+ [key: string]: string;
6070
6177
  };
6071
- sizeInBytes: number;
6072
- itemCount: number;
6178
+ projectIds?: string[];
6179
+ name: string;
6180
+ teamId?: string | null;
6181
+ ownerId: string;
6182
+ createdFrom?: 'integration' | 'self-served';
6183
+ secret: string;
6073
6184
  };
6074
- type GetEdgeConfigsVariables = {
6075
- queryParams?: GetEdgeConfigsQueryParams;
6185
+ type GetConfigurableLogDrainVariables = {
6186
+ pathParams: GetConfigurableLogDrainPathParams;
6187
+ queryParams?: GetConfigurableLogDrainQueryParams;
6076
6188
  } & FetcherExtraProps;
6077
6189
  /**
6078
- * Returns all Edge Configs.
6190
+ * Retrieves a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be accessed.
6079
6191
  */
6080
- declare const getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
6081
- type CreateEdgeConfigQueryParams = {
6192
+ declare const getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
6193
+ type DeleteConfigurableLogDrainPathParams = {
6194
+ id: string;
6195
+ };
6196
+ type DeleteConfigurableLogDrainQueryParams = {
6082
6197
  /**
6083
6198
  * The Team identifier to perform the request on behalf of.
6084
6199
  */
@@ -6088,11 +6203,229 @@ type CreateEdgeConfigQueryParams = {
6088
6203
  */
6089
6204
  slug?: string;
6090
6205
  };
6091
- type CreateEdgeConfigError = ErrorWrapper<undefined>;
6092
- type CreateEdgeConfigResponse = {
6093
- createdAt?: number;
6094
- updatedAt?: number;
6095
- id?: string;
6206
+ type DeleteConfigurableLogDrainError = ErrorWrapper<undefined>;
6207
+ type DeleteConfigurableLogDrainVariables = {
6208
+ pathParams: DeleteConfigurableLogDrainPathParams;
6209
+ queryParams?: DeleteConfigurableLogDrainQueryParams;
6210
+ } & FetcherExtraProps;
6211
+ /**
6212
+ * Deletes a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be deleted.
6213
+ */
6214
+ declare const deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
6215
+ type GetAllLogDrainsQueryParams = {
6216
+ /**
6217
+ * @pattern ^[a-zA-z0-9_]+$
6218
+ */
6219
+ projectId?: string;
6220
+ projectIdOrName?: string;
6221
+ /**
6222
+ * The Team identifier to perform the request on behalf of.
6223
+ */
6224
+ teamId?: string;
6225
+ /**
6226
+ * The Team slug to perform the request on behalf of.
6227
+ */
6228
+ slug?: string;
6229
+ };
6230
+ type GetAllLogDrainsError = ErrorWrapper<undefined>;
6231
+ type GetAllLogDrainsResponse = {
6232
+ clientId?: string;
6233
+ configurationId?: string;
6234
+ deliveryFormat: 'json' | 'ndjson' | 'syslog';
6235
+ sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
6236
+ environments: ('preview' | 'production')[];
6237
+ status?: 'disabled' | 'enabled' | 'errored';
6238
+ disabledAt?: number;
6239
+ disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
6240
+ disabledBy?: string;
6241
+ firstErrorTimestamp?: number;
6242
+ samplingRate?: number;
6243
+ hideIpAddresses?: boolean;
6244
+ id: string;
6245
+ createdAt: number;
6246
+ deletedAt: number | null;
6247
+ updatedAt: number;
6248
+ url: string;
6249
+ headers?: {
6250
+ [key: string]: string;
6251
+ };
6252
+ projectIds?: string[];
6253
+ name: string;
6254
+ teamId?: string | null;
6255
+ ownerId: string;
6256
+ createdFrom?: 'integration' | 'self-served';
6257
+ secret: string;
6258
+ }[];
6259
+ type GetAllLogDrainsVariables = {
6260
+ queryParams?: GetAllLogDrainsQueryParams;
6261
+ } & FetcherExtraProps;
6262
+ /**
6263
+ * Retrieves a list of all the Log Drains owned by the account. This endpoint must be called with an account AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated account can be accessed.
6264
+ */
6265
+ declare const getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
6266
+ type CreateConfigurableLogDrainQueryParams = {
6267
+ /**
6268
+ * The Team identifier to perform the request on behalf of.
6269
+ */
6270
+ teamId?: string;
6271
+ /**
6272
+ * The Team slug to perform the request on behalf of.
6273
+ */
6274
+ slug?: string;
6275
+ };
6276
+ type CreateConfigurableLogDrainError = ErrorWrapper<undefined>;
6277
+ type CreateConfigurableLogDrainResponse = {
6278
+ /**
6279
+ * The secret to validate the log-drain payload
6280
+ */
6281
+ secret?: string;
6282
+ clientId?: string;
6283
+ configurationId?: string;
6284
+ deliveryFormat: 'json' | 'ndjson' | 'syslog';
6285
+ sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
6286
+ environments: ('preview' | 'production')[];
6287
+ status?: 'disabled' | 'enabled' | 'errored';
6288
+ disabledAt?: number;
6289
+ disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
6290
+ disabledBy?: string;
6291
+ firstErrorTimestamp?: number;
6292
+ samplingRate?: number;
6293
+ hideIpAddresses?: boolean;
6294
+ id: string;
6295
+ createdAt: number;
6296
+ deletedAt: number | null;
6297
+ updatedAt: number;
6298
+ url: string;
6299
+ headers?: {
6300
+ [key: string]: string;
6301
+ };
6302
+ projectIds?: string[];
6303
+ name: string;
6304
+ teamId?: string | null;
6305
+ ownerId: string;
6306
+ createdFrom?: 'integration' | 'self-served';
6307
+ };
6308
+ type CreateConfigurableLogDrainRequestBody = {
6309
+ /**
6310
+ * The delivery log format
6311
+ *
6312
+ * @example json
6313
+ */
6314
+ deliveryFormat: 'json' | 'ndjson';
6315
+ /**
6316
+ * The log drain url
6317
+ *
6318
+ * @format uri
6319
+ * @pattern ^(http|https)?://
6320
+ */
6321
+ url: string;
6322
+ /**
6323
+ * Headers to be sent together with the request
6324
+ */
6325
+ headers?: {
6326
+ [key: string]: string;
6327
+ };
6328
+ /**
6329
+ * @minItems 1
6330
+ * @maxItems 50
6331
+ */
6332
+ projectIds?: string[];
6333
+ /**
6334
+ * @uniqueItems true
6335
+ * @minItems 1
6336
+ */
6337
+ sources: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
6338
+ /**
6339
+ * @uniqueItems true
6340
+ * @minItems 1
6341
+ */
6342
+ environments?: ('preview' | 'production')[];
6343
+ /**
6344
+ * Custom secret of log drain
6345
+ */
6346
+ secret?: string;
6347
+ /**
6348
+ * The sampling rate for this log drain. It should be a percentage rate between 0 and 100. With max 2 decimal points
6349
+ *
6350
+ * @minimum 0.01
6351
+ * @maximum 1
6352
+ */
6353
+ samplingRate?: number;
6354
+ /**
6355
+ * The custom name of this log drain.
6356
+ */
6357
+ name?: string;
6358
+ };
6359
+ type CreateConfigurableLogDrainVariables = {
6360
+ body: CreateConfigurableLogDrainRequestBody;
6361
+ queryParams?: CreateConfigurableLogDrainQueryParams;
6362
+ } & FetcherExtraProps;
6363
+ /**
6364
+ * Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
6365
+ */
6366
+ declare const createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
6367
+ type GetEdgeConfigsQueryParams = {
6368
+ /**
6369
+ * The Team identifier to perform the request on behalf of.
6370
+ */
6371
+ teamId?: string;
6372
+ /**
6373
+ * The Team slug to perform the request on behalf of.
6374
+ */
6375
+ slug?: string;
6376
+ };
6377
+ type GetEdgeConfigsError = ErrorWrapper<undefined>;
6378
+ type GetEdgeConfigsResponse = {
6379
+ id?: string;
6380
+ createdAt?: number;
6381
+ ownerId?: string;
6382
+ /**
6383
+ * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
6384
+ */
6385
+ slug?: string;
6386
+ updatedAt?: number;
6387
+ digest?: string;
6388
+ /**
6389
+ * Keeps track of the current state of the Edge Config while it gets transferred.
6390
+ */
6391
+ transfer?: {
6392
+ fromAccountId: string;
6393
+ startedAt: number;
6394
+ doneAt: number | null;
6395
+ };
6396
+ schema?: Record<string, any>;
6397
+ purpose?: {
6398
+ type: 'flags';
6399
+ projectId: string;
6400
+ } | {
6401
+ type: 'experimentation';
6402
+ resourceId: string;
6403
+ };
6404
+ sizeInBytes: number;
6405
+ itemCount: number;
6406
+ };
6407
+ type GetEdgeConfigsVariables = {
6408
+ queryParams?: GetEdgeConfigsQueryParams;
6409
+ } & FetcherExtraProps;
6410
+ /**
6411
+ * Returns all Edge Configs.
6412
+ */
6413
+ declare const getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
6414
+ type CreateEdgeConfigQueryParams = {
6415
+ /**
6416
+ * The Team identifier to perform the request on behalf of.
6417
+ */
6418
+ teamId?: string;
6419
+ /**
6420
+ * The Team slug to perform the request on behalf of.
6421
+ */
6422
+ slug?: string;
6423
+ };
6424
+ type CreateEdgeConfigError = ErrorWrapper<undefined>;
6425
+ type CreateEdgeConfigResponse = {
6426
+ createdAt?: number;
6427
+ updatedAt?: number;
6428
+ id?: string;
6096
6429
  /**
6097
6430
  * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
6098
6431
  */
@@ -6111,6 +6444,9 @@ type CreateEdgeConfigResponse = {
6111
6444
  purpose?: {
6112
6445
  type: 'flags';
6113
6446
  projectId: string;
6447
+ } | {
6448
+ type: 'experimentation';
6449
+ resourceId: string;
6114
6450
  };
6115
6451
  sizeInBytes: number;
6116
6452
  itemCount: number;
@@ -6169,6 +6505,9 @@ type GetEdgeConfigResponse = {
6169
6505
  purpose?: {
6170
6506
  type: 'flags';
6171
6507
  projectId: string;
6508
+ } | {
6509
+ type: 'experimentation';
6510
+ resourceId: string;
6172
6511
  };
6173
6512
  sizeInBytes: number;
6174
6513
  itemCount: number;
@@ -6217,6 +6556,9 @@ type UpdateEdgeConfigResponse = {
6217
6556
  purpose?: {
6218
6557
  type: 'flags';
6219
6558
  projectId: string;
6559
+ } | {
6560
+ type: 'experimentation';
6561
+ resourceId: string;
6220
6562
  };
6221
6563
  sizeInBytes: number;
6222
6564
  itemCount: number;
@@ -6307,13 +6649,13 @@ type PatchEdgeConfigItemsResponse = {
6307
6649
  };
6308
6650
  type PatchEdgeConfigItemsRequestBody = {
6309
6651
  items: ({
6310
- operation: void;
6652
+ operation: 'create';
6311
6653
  } | {
6312
6654
  operation: 'update' | 'upsert';
6313
6655
  } | {
6314
6656
  operation: 'update' | 'upsert';
6315
6657
  } | {
6316
- operation: void;
6658
+ operation: 'delete';
6317
6659
  })[];
6318
6660
  definition: void;
6319
6661
  };
@@ -6724,8 +7066,17 @@ type GetAccountInfoPathParams = {
6724
7066
  };
6725
7067
  type GetAccountInfoError = ErrorWrapper<undefined>;
6726
7068
  type GetAccountInfoResponse = {
7069
+ /**
7070
+ * The name of the team the installation is tied to.
7071
+ */
6727
7072
  name?: string;
7073
+ /**
7074
+ * A URL linking to the installation in the Vercel Dashboard.
7075
+ */
6728
7076
  url: string;
7077
+ /**
7078
+ * The best contact for the integration, which can change as team members and their roles change.
7079
+ */
6729
7080
  contact: {
6730
7081
  email: string;
6731
7082
  name?: string;
@@ -7183,6 +7534,44 @@ type UpdateInvoiceVariables = {
7183
7534
  * This endpoint allows the partner to request a refund for an invoice to Vercel. The invoice is created using the [Submit Invoice API](#submit-invoice-api).
7184
7535
  */
7185
7536
  declare const updateInvoice: (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
7537
+ type SubmitPrepaymentBalancesPathParams = {
7538
+ integrationConfigurationId: string;
7539
+ };
7540
+ type SubmitPrepaymentBalancesError = ErrorWrapper<undefined>;
7541
+ type SubmitPrepaymentBalancesRequestBody = {
7542
+ /**
7543
+ * Server time of your integration, used to determine the most recent data for race conditions & updates. Only the latest usage data for a given day, week, and month will be kept.
7544
+ *
7545
+ * @format date-time
7546
+ */
7547
+ timestamp: string;
7548
+ balances: {
7549
+ /**
7550
+ * Partner's resource ID, exclude if credits are tied to the installation and not an individual resource.
7551
+ */
7552
+ resourceId?: string;
7553
+ /**
7554
+ * A human-readable description of the credits the user currently has, e.g. \"2,000 Tokens\"
7555
+ */
7556
+ credit?: string;
7557
+ /**
7558
+ * The name of the credits, for display purposes, e.g. \"Tokens\"
7559
+ */
7560
+ nameLabel?: string;
7561
+ /**
7562
+ * The dollar value of the credit balance, in USD and provided in cents, which is used to trigger automatic purchase thresholds.
7563
+ */
7564
+ currencyValueInCents: number;
7565
+ }[];
7566
+ };
7567
+ type SubmitPrepaymentBalancesVariables = {
7568
+ body: SubmitPrepaymentBalancesRequestBody;
7569
+ pathParams: SubmitPrepaymentBalancesPathParams;
7570
+ } & FetcherExtraProps;
7571
+ /**
7572
+ * Sends the prepayment balances. The partner should do this at least once a day and ideally once per hour. <br/> Use the `credentials.access_token` we provided in the [Upsert Installation](#upsert-installation) body to authorize this request.
7573
+ */
7574
+ declare const submitPrepaymentBalances: (variables: SubmitPrepaymentBalancesVariables, signal?: AbortSignal) => Promise<undefined>;
7186
7575
  type UpdateResourceSecretsPathParams = {
7187
7576
  integrationConfigurationId: string;
7188
7577
  integrationProductIdOrSlug: string;
@@ -7224,14 +7613,59 @@ type UpdateResourceSecretsByIdVariables = {
7224
7613
  * This endpoint updates the secrets of a resource. If a resource has projects connected, the connected secrets are updated with the new secrets. The old secrets may still be used by existing connected projects because they are not automatically redeployed. Redeployment is a manual action and must be completed by the user. All new project connections will use the new secrets.<br/> <br/> Use cases for this endpoint:<br/> <br/> - Resetting the credentials of a database in the partner. If the user requests the credentials to be updated in the partner’s application, the partner post the new set of secrets to Vercel, the user should redeploy their application and the expire the old credentials.<br/>
7225
7614
  */
7226
7615
  declare const updateResourceSecretsById: (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
7227
- type GetConfigurationsQueryParams = {
7616
+ type ImportResourcePathParams = {
7617
+ integrationConfigurationId: string;
7618
+ resourceId: string;
7619
+ };
7620
+ type ImportResourceError = ErrorWrapper<undefined>;
7621
+ type ImportResourceResponse = {
7622
+ name: string;
7623
+ };
7624
+ type ImportResourceRequestBody = {
7625
+ productId: string;
7626
+ name: string;
7627
+ status: 'error' | 'pending' | 'ready' | 'resumed' | 'suspended' | 'uninstalled';
7628
+ metadata?: {
7629
+ [key: string]: any;
7630
+ };
7631
+ billingPlan?: {
7632
+ id: string;
7633
+ type: 'prepayment' | 'subscription';
7634
+ name: string;
7635
+ paymentMethodRequired?: boolean;
7636
+ } & {
7637
+ [key: string]: any;
7638
+ };
7639
+ notification?: {
7640
+ level: 'error' | 'info' | 'warn';
7641
+ title: string;
7642
+ message?: string;
7643
+ /**
7644
+ * @format uri
7645
+ */
7646
+ href?: string;
7647
+ };
7648
+ secrets?: {
7649
+ name: string;
7650
+ value: string;
7651
+ prefix?: string;
7652
+ }[];
7653
+ };
7654
+ type ImportResourceVariables = {
7655
+ body: ImportResourceRequestBody;
7656
+ pathParams: ImportResourcePathParams;
7657
+ } & FetcherExtraProps;
7658
+ /**
7659
+ * This endpoint imports (upserts) a resource to Vercel's installation. This may be needed if resources can be independently created on the partner's side and need to be synchronized to Vercel.
7660
+ */
7661
+ declare const importResource: (variables: ImportResourceVariables, signal?: AbortSignal) => Promise<ImportResourceResponse>;
7662
+ type GetConfigurationsQueryParams = {
7228
7663
  view: 'account' | 'project';
7229
7664
  installationType?: 'marketplace' | 'external';
7230
7665
  /**
7231
7666
  * ID of the integration
7232
7667
  */
7233
7668
  integrationIdOrSlug?: string;
7234
- skipBillingData?: string;
7235
7669
  /**
7236
7670
  * The Team identifier to perform the request on behalf of.
7237
7671
  */
@@ -7346,41 +7780,14 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
7346
7780
  * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
7347
7781
  */
7348
7782
  installationType?: "marketplace" | "external";
7349
- billingPlan?: {
7350
- id: string;
7351
- type: "prepayment" | "subscription";
7352
- name: string;
7353
- scope?: "installation" | "resource";
7354
- description: string;
7355
- paymentMethodRequired?: boolean;
7356
- preauthorizationAmount?: number;
7357
- cost?: string;
7358
- details?: {
7359
- label: string;
7360
- value?: string;
7361
- }[];
7362
- heightlightedDetails?: {
7363
- label: string;
7364
- value?: string;
7365
- }[];
7366
- quote?: {
7367
- line: string;
7368
- amount: string;
7369
- }[];
7370
- effectiveDate?: string;
7371
- };
7372
- billingTotal?: string;
7373
- periodStart?: string;
7374
- periodEnd?: string;
7375
7783
  }[] | {
7376
7784
  integration: {
7377
7785
  name: string;
7378
7786
  icon: string;
7379
- category: string;
7380
7787
  isLegacy: boolean;
7381
7788
  flags?: string[];
7382
7789
  assignedBetaLabelAt?: number;
7383
- tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experiments" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
7790
+ tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
7384
7791
  };
7385
7792
  /**
7386
7793
  * A timestamp that tells you when the configuration was installed successfully
@@ -7479,32 +7886,6 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
7479
7886
  * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
7480
7887
  */
7481
7888
  installationType?: "marketplace" | "external";
7482
- billingPlan?: {
7483
- id: string;
7484
- type: "prepayment" | "subscription";
7485
- name: string;
7486
- scope?: "installation" | "resource";
7487
- description: string;
7488
- paymentMethodRequired?: boolean;
7489
- preauthorizationAmount?: number;
7490
- cost?: string;
7491
- details?: {
7492
- label: string;
7493
- value?: string;
7494
- }[];
7495
- heightlightedDetails?: {
7496
- label: string;
7497
- value?: string;
7498
- }[];
7499
- quote?: {
7500
- line: string;
7501
- amount: string;
7502
- }[];
7503
- effectiveDate?: string;
7504
- };
7505
- billingTotal?: string;
7506
- periodStart?: string;
7507
- periodEnd?: string;
7508
7889
  }[]>;
7509
7890
  type GetConfigurationPathParams = {
7510
7891
  /**
@@ -7533,32 +7914,6 @@ type GetConfigurationVariables = {
7533
7914
  * Allows to retrieve a the configuration with the provided id in case it exists. The authenticated user or team must be the owner of the config in order to access it.
7534
7915
  */
7535
7916
  declare const getConfiguration: (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
7536
- billingPlan?: {
7537
- id: string;
7538
- type: "prepayment" | "subscription";
7539
- name: string;
7540
- scope?: "installation" | "resource";
7541
- description: string;
7542
- paymentMethodRequired?: boolean;
7543
- preauthorizationAmount?: number;
7544
- cost?: string;
7545
- details?: {
7546
- label: string;
7547
- value?: string;
7548
- }[];
7549
- heightlightedDetails?: {
7550
- label: string;
7551
- value?: string;
7552
- }[];
7553
- quote?: {
7554
- line: string;
7555
- amount: string;
7556
- }[];
7557
- effectiveDate?: string;
7558
- };
7559
- billingTotal?: string;
7560
- periodStart?: string;
7561
- periodEnd?: string;
7562
7917
  /**
7563
7918
  * A timestamp that tells you when the configuration was installed successfully
7564
7919
  *
@@ -8208,250 +8563,187 @@ declare const searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal)
8208
8563
  updatedAt: number;
8209
8564
  }[];
8210
8565
  }>;
8211
- type GetConfigurableLogDrainPathParams = {
8212
- id: string;
8213
- };
8214
- type GetConfigurableLogDrainQueryParams = {
8215
- /**
8216
- * The Team identifier to perform the request on behalf of.
8217
- */
8218
- teamId?: string;
8219
- /**
8220
- * The Team slug to perform the request on behalf of.
8221
- */
8222
- slug?: string;
8566
+ type GetV1ExperimentationItemsQueryParams = {
8567
+ resourceId?: string;
8223
8568
  };
8224
- type GetConfigurableLogDrainError = ErrorWrapper<undefined>;
8225
- type GetConfigurableLogDrainResponse = {
8226
- id: string;
8227
- deliveryFormat: 'json' | 'ndjson' | 'syslog';
8228
- url: string;
8229
- name: string;
8230
- clientId?: string;
8231
- configurationId?: string;
8232
- teamId?: string | null;
8233
- ownerId: string;
8234
- projectIds?: string[];
8235
- createdAt: number;
8236
- deletedAt: number | null;
8237
- updatedAt: number;
8238
- sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
8239
- headers?: {
8240
- [key: string]: string;
8241
- };
8242
- environments: ('preview' | 'production')[];
8243
- status?: 'disabled' | 'enabled' | 'errored';
8244
- disabledAt?: number;
8245
- disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
8246
- disabledBy?: string;
8247
- firstErrorTimestamp?: number;
8248
- samplingRate?: number;
8249
- hideIpAddresses?: boolean;
8250
- secret: string;
8251
- createdFrom?: 'self-served';
8569
+ type GetV1ExperimentationItemsError = ErrorWrapper<undefined>;
8570
+ type GetV1ExperimentationItemsResponse = {
8571
+ items: {
8572
+ /**
8573
+ * The Vercel generated ID for this item Integrations should not receive this in API responses
8574
+ */
8575
+ id: string;
8576
+ slug: string;
8577
+ origin: string;
8578
+ /**
8579
+ * The ID the partner has for this item. Integrations should receive this as `id` in API responses
8580
+ */
8581
+ externalId: string;
8582
+ /**
8583
+ * The id of the integration installation on a team
8584
+ */
8585
+ integrationConfigurationId: string;
8586
+ /**
8587
+ * The flags collection ID
8588
+ */
8589
+ resourceId: string;
8590
+ /**
8591
+ * An optional functional category for the item. Categorization semantics are: - flag (can resolve variants, can freely update variant resolution, usually does not perform analysis) - experiment (has variants, constrains changes to variant allocations, performs analysis) Using statsig as an example: - FeatureGate -> flag - Experiment -> experiment - Autotune -> experiment Forwards compatibility for other primitives can be considered, ex. `DynamicConfig`, `Holdouts`, `Layers`
8592
+ */
8593
+ category?: 'experiment' | 'flag';
8594
+ name?: string;
8595
+ description?: string;
8596
+ isArchived?: boolean;
8597
+ createdAt?: number;
8598
+ updatedAt?: number;
8599
+ }[];
8252
8600
  };
8253
- type GetConfigurableLogDrainVariables = {
8254
- pathParams: GetConfigurableLogDrainPathParams;
8255
- queryParams?: GetConfigurableLogDrainQueryParams;
8601
+ type GetV1ExperimentationItemsVariables = {
8602
+ queryParams?: GetV1ExperimentationItemsQueryParams;
8256
8603
  } & FetcherExtraProps;
8257
8604
  /**
8258
- * Retrieves a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be accessed.
8605
+ * Query experimentation items
8259
8606
  */
8260
- declare const getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
8261
- type DeleteConfigurableLogDrainPathParams = {
8262
- id: string;
8607
+ declare const getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
8608
+ type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
8609
+ integrationConfigurationId: string;
8610
+ resourceId: string;
8263
8611
  };
8264
- type DeleteConfigurableLogDrainQueryParams = {
8265
- /**
8266
- * The Team identifier to perform the request on behalf of.
8267
- */
8268
- teamId?: string;
8612
+ type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = ErrorWrapper<undefined>;
8613
+ type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = {
8269
8614
  /**
8270
- * The Team slug to perform the request on behalf of.
8615
+ * @maxItems 50
8271
8616
  */
8272
- slug?: string;
8617
+ items: {
8618
+ /**
8619
+ * @maxLength 1024
8620
+ */
8621
+ id: string;
8622
+ /**
8623
+ * @maxLength 1024
8624
+ */
8625
+ slug: string;
8626
+ /**
8627
+ * @maxLength 2048
8628
+ */
8629
+ origin: string;
8630
+ category?: 'experiment' | 'flag';
8631
+ /**
8632
+ * @maxLength 1024
8633
+ */
8634
+ name?: string;
8635
+ /**
8636
+ * @maxLength 1024
8637
+ */
8638
+ description?: string;
8639
+ isArchived?: boolean;
8640
+ createdAt?: number;
8641
+ updatedAt?: number;
8642
+ }[];
8273
8643
  };
8274
- type DeleteConfigurableLogDrainError = ErrorWrapper<undefined>;
8275
- type DeleteConfigurableLogDrainVariables = {
8276
- pathParams: DeleteConfigurableLogDrainPathParams;
8277
- queryParams?: DeleteConfigurableLogDrainQueryParams;
8644
+ type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables = {
8645
+ body: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody;
8646
+ pathParams: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams;
8278
8647
  } & FetcherExtraProps;
8279
8648
  /**
8280
- * Deletes a Configurable Log Drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated team can be deleted.
8649
+ * Create one or multiple experimentation items
8281
8650
  */
8282
- declare const deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
8283
- type GetAllLogDrainsQueryParams = {
8651
+ declare const postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
8652
+ type PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = {
8653
+ integrationConfigurationId: string;
8654
+ resourceId: string;
8655
+ itemId: string;
8656
+ };
8657
+ type PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = ErrorWrapper<undefined>;
8658
+ type PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody = {
8284
8659
  /**
8285
- * @pattern ^[a-zA-z0-9_]+$
8660
+ * @maxLength 1024
8286
8661
  */
8287
- projectId?: string;
8662
+ slug: string;
8288
8663
  /**
8289
- * The Team identifier to perform the request on behalf of.
8664
+ * @maxLength 2048
8290
8665
  */
8291
- teamId?: string;
8666
+ origin: string;
8292
8667
  /**
8293
- * The Team slug to perform the request on behalf of.
8668
+ * @maxLength 1024
8294
8669
  */
8295
- slug?: string;
8670
+ name?: string;
8671
+ category?: 'experiment' | 'flag';
8672
+ /**
8673
+ * @maxLength 1024
8674
+ */
8675
+ description?: string;
8676
+ isArchived?: boolean;
8677
+ createdAt?: number;
8678
+ updatedAt?: number;
8296
8679
  };
8297
- type GetAllLogDrainsError = ErrorWrapper<undefined>;
8298
- type GetAllLogDrainsResponse = {
8299
- id: string;
8300
- deliveryFormat: 'json' | 'ndjson' | 'syslog';
8301
- url: string;
8302
- name: string;
8303
- clientId?: string;
8304
- configurationId?: string;
8305
- teamId?: string | null;
8306
- ownerId: string;
8307
- projectIds?: string[];
8308
- createdAt: number;
8309
- deletedAt: number | null;
8680
+ type PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = {
8681
+ body: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody;
8682
+ pathParams: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
8683
+ } & FetcherExtraProps;
8684
+ /**
8685
+ * Patch an existing experimentation item
8686
+ */
8687
+ declare const patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
8688
+ type DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = {
8689
+ integrationConfigurationId: string;
8690
+ resourceId: string;
8691
+ itemId: string;
8692
+ };
8693
+ type DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = ErrorWrapper<undefined>;
8694
+ type DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = {
8695
+ pathParams: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
8696
+ } & FetcherExtraProps;
8697
+ /**
8698
+ * Delete an existing experimentation item
8699
+ */
8700
+ declare const deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
8701
+ type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams = {
8702
+ integrationConfigurationId: string;
8703
+ resourceId: string;
8704
+ };
8705
+ type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError = ErrorWrapper<undefined>;
8706
+ type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse = {
8707
+ items: {
8708
+ [key: string]: EdgeConfigItemValue;
8709
+ };
8310
8710
  updatedAt: number;
8311
- sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
8312
- headers?: {
8313
- [key: string]: string;
8711
+ digest: string;
8712
+ };
8713
+ type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody = {
8714
+ data: {
8715
+ [key: string]: (string | number | boolean | null | Record<string, any>) | (string | number | boolean | null | Record<string, any>)[];
8314
8716
  };
8315
- environments: ('preview' | 'production')[];
8316
- status?: 'disabled' | 'enabled' | 'errored';
8317
- disabledAt?: number;
8318
- disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
8319
- disabledBy?: string;
8320
- firstErrorTimestamp?: number;
8321
- samplingRate?: number;
8322
- hideIpAddresses?: boolean;
8323
- secret: string;
8324
- createdFrom?: 'self-served';
8325
- }[];
8326
- type GetAllLogDrainsVariables = {
8327
- queryParams?: GetAllLogDrainsQueryParams;
8717
+ };
8718
+ type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables = {
8719
+ body: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody;
8720
+ pathParams: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams;
8328
8721
  } & FetcherExtraProps;
8329
8722
  /**
8330
- * Retrieves a list of all the Log Drains owned by the account. This endpoint must be called with an account AccessToken (integration OAuth2 clients are not allowed). Only log drains owned by the authenticated account can be accessed.
8723
+ * When the user enabled Edge Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Edge Config.
8331
8724
  */
8332
- declare const getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
8333
- type CreateConfigurableLogDrainQueryParams = {
8725
+ declare const putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: (variables: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, signal?: AbortSignal) => Promise<PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse>;
8726
+ type GetProjectMembersPathParams = {
8334
8727
  /**
8335
- * The Team identifier to perform the request on behalf of.
8728
+ * The ID or name of the Project.
8729
+ *
8730
+ * @example prj_pavWOn1iLObbXLRiwVvzmPrTWyTf
8336
8731
  */
8337
- teamId?: string;
8732
+ idOrName: string;
8733
+ };
8734
+ type GetProjectMembersQueryParams = {
8338
8735
  /**
8339
- * The Team slug to perform the request on behalf of.
8736
+ * Limit how many project members should be returned
8737
+ *
8738
+ * @example 20
8739
+ * @minimum 1
8740
+ * @maximum 100
8340
8741
  */
8341
- slug?: string;
8342
- };
8343
- type CreateConfigurableLogDrainError = ErrorWrapper<undefined>;
8344
- type CreateConfigurableLogDrainResponse = {
8742
+ limit?: number;
8345
8743
  /**
8346
- * The secret to validate the log-drain payload
8347
- */
8348
- secret?: string;
8349
- id: string;
8350
- deliveryFormat: 'json' | 'ndjson' | 'syslog';
8351
- url: string;
8352
- name: string;
8353
- clientId?: string;
8354
- configurationId?: string;
8355
- teamId?: string | null;
8356
- ownerId: string;
8357
- projectIds?: string[];
8358
- createdAt: number;
8359
- deletedAt: number | null;
8360
- updatedAt: number;
8361
- sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
8362
- headers?: {
8363
- [key: string]: string;
8364
- };
8365
- environments: ('preview' | 'production')[];
8366
- status?: 'disabled' | 'enabled' | 'errored';
8367
- disabledAt?: number;
8368
- disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
8369
- disabledBy?: string;
8370
- firstErrorTimestamp?: number;
8371
- samplingRate?: number;
8372
- hideIpAddresses?: boolean;
8373
- createdFrom?: 'self-served';
8374
- };
8375
- type CreateConfigurableLogDrainRequestBody = {
8376
- /**
8377
- * The delivery log format
8378
- *
8379
- * @example json
8380
- */
8381
- deliveryFormat: 'json' | 'ndjson';
8382
- /**
8383
- * The log drain url
8384
- *
8385
- * @format uri
8386
- * @pattern ^(http|https)?://
8387
- */
8388
- url: string;
8389
- /**
8390
- * Headers to be sent together with the request
8391
- */
8392
- headers?: {
8393
- [key: string]: string;
8394
- };
8395
- /**
8396
- * @minItems 1
8397
- * @maxItems 50
8398
- */
8399
- projectIds?: string[];
8400
- /**
8401
- * @uniqueItems true
8402
- * @minItems 1
8403
- */
8404
- sources: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
8405
- /**
8406
- * @uniqueItems true
8407
- * @minItems 1
8408
- */
8409
- environments?: ('preview' | 'production')[];
8410
- /**
8411
- * Custom secret of log drain
8412
- */
8413
- secret?: string;
8414
- /**
8415
- * The sampling rate for this log drain. It should be a percentage rate between 0 and 100. With max 2 decimal points
8416
- *
8417
- * @minimum 0.01
8418
- * @maximum 1
8419
- */
8420
- samplingRate?: number;
8421
- /**
8422
- * The custom name of this log drain.
8423
- */
8424
- name?: string;
8425
- };
8426
- type CreateConfigurableLogDrainVariables = {
8427
- body: CreateConfigurableLogDrainRequestBody;
8428
- queryParams?: CreateConfigurableLogDrainQueryParams;
8429
- } & FetcherExtraProps;
8430
- /**
8431
- * Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
8432
- */
8433
- declare const createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
8434
- type GetProjectMembersPathParams = {
8435
- /**
8436
- * The ID or name of the Project.
8437
- *
8438
- * @example prj_pavWOn1iLObbXLRiwVvzmPrTWyTf
8439
- */
8440
- idOrName: string;
8441
- };
8442
- type GetProjectMembersQueryParams = {
8443
- /**
8444
- * Limit how many project members should be returned
8445
- *
8446
- * @example 20
8447
- * @minimum 1
8448
- * @maximum 100
8449
- */
8450
- limit?: number;
8451
- /**
8452
- * Timestamp in milliseconds to only include members added since then.
8453
- *
8454
- * @example 1540095775951
8744
+ * Timestamp in milliseconds to only include members added since then.
8745
+ *
8746
+ * @example 1540095775951
8455
8747
  */
8456
8748
  since?: number;
8457
8749
  /**
@@ -8536,7 +8828,7 @@ declare const getProjectMembers: (variables: GetProjectMembersVariables, signal?
8536
8828
  *
8537
8829
  * @example CONTRIBUTOR
8538
8830
  */
8539
- teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
8831
+ teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
8540
8832
  }[];
8541
8833
  pagination: {
8542
8834
  hasNext: boolean;
@@ -8932,7 +9224,7 @@ type GetProjectsResponse = {
8932
9224
  vsmValue?: string;
8933
9225
  }[];
8934
9226
  customEnvironments?: Record<string, any>[];
8935
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
9227
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
8936
9228
  gitForkProtection?: boolean;
8937
9229
  gitLFS?: boolean;
8938
9230
  id: string;
@@ -9082,8 +9374,11 @@ type GetProjectsResponse = {
9082
9374
  updatedAt: number;
9083
9375
  /**
9084
9376
  * The group IDs of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
9377
+ *
9378
+ * @maxItems 2
9379
+ * @minItems 2
9085
9380
  */
9086
- groupIds: string[];
9381
+ groupIds: (string | string)[];
9087
9382
  /**
9088
9383
  * Whether microfrontends are enabled for this project.
9089
9384
  */
@@ -9097,9 +9392,17 @@ type GetProjectsResponse = {
9097
9392
  */
9098
9393
  defaultRoute?: string;
9099
9394
  /**
9100
- * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
9395
+ * Whether observability data should be routed to this microfrontend project or a root project.
9396
+ */
9397
+ routeObservabilityToThisProject?: boolean;
9398
+ } | {
9399
+ updatedAt: number;
9400
+ /**
9401
+ * @maxItems 2
9402
+ * @minItems 2
9101
9403
  */
9102
- routeObservabilityToDefaultApp?: boolean;
9404
+ groupIds: (string | string)[];
9405
+ enabled: boolean;
9103
9406
  };
9104
9407
  name: string;
9105
9408
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -9113,13 +9416,20 @@ type GetProjectsResponse = {
9113
9416
  passwordProtection?: Record<string, any> | null;
9114
9417
  productionDeploymentsFastLane?: boolean;
9115
9418
  publicSource?: boolean | null;
9116
- resourceConfig?: {
9419
+ resourceConfig: {
9420
+ fluid?: boolean;
9421
+ functionDefaultRegions: string[];
9422
+ functionDefaultTimeout?: number;
9423
+ functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
9424
+ functionZeroConfigFailover?: boolean;
9425
+ elasticConcurrencyEnabled?: boolean;
9426
+ };
9427
+ defaultResourceConfig: {
9117
9428
  fluid?: boolean;
9118
- functionDefaultRegion?: string | null;
9429
+ functionDefaultRegions: string[];
9119
9430
  functionDefaultTimeout?: number;
9120
9431
  functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
9121
9432
  functionZeroConfigFailover?: boolean;
9122
- allowServerlessConcurrency?: boolean;
9123
9433
  elasticConcurrencyEnabled?: boolean;
9124
9434
  };
9125
9435
  rootDirectory?: string | null;
@@ -9215,6 +9525,11 @@ type GetProjectsResponse = {
9215
9525
  enablePreviewFeedback?: boolean | null;
9216
9526
  enableProductionFeedback?: boolean | null;
9217
9527
  permissions?: {
9528
+ user?: ACLAction[];
9529
+ userConnection?: ACLAction[];
9530
+ userSudo?: ACLAction[];
9531
+ webAuthn?: ACLAction[];
9532
+ oauth2Connection?: ACLAction[];
9218
9533
  accessGroup?: ACLAction[];
9219
9534
  aliasGlobal?: ACLAction[];
9220
9535
  analyticsSampling?: ACLAction[];
@@ -9251,6 +9566,7 @@ type GetProjectsResponse = {
9251
9566
  fileUpload?: ACLAction[];
9252
9567
  gitRepository?: ACLAction[];
9253
9568
  ipBlocking?: ACLAction[];
9569
+ imageOptimizationNewPrice?: ACLAction[];
9254
9570
  integration?: ACLAction[];
9255
9571
  integrationAccount?: ACLAction[];
9256
9572
  integrationConfiguration?: ACLAction[];
@@ -9258,6 +9574,7 @@ type GetProjectsResponse = {
9258
9574
  integrationConfigurationProjects?: ACLAction[];
9259
9575
  integrationVercelConfigurationOverride?: ACLAction[];
9260
9576
  integrationConfigurationRole?: ACLAction[];
9577
+ integrationSSOSession?: ACLAction[];
9261
9578
  integrationResource?: ACLAction[];
9262
9579
  integrationEvent?: ACLAction[];
9263
9580
  integrationResourceSecrets?: ACLAction[];
@@ -9265,6 +9582,8 @@ type GetProjectsResponse = {
9265
9582
  marketplaceInstallationMember?: ACLAction[];
9266
9583
  marketplaceBillingData?: ACLAction[];
9267
9584
  marketplaceInvoice?: ACLAction[];
9585
+ marketplaceExperimentationItem?: ACLAction[];
9586
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
9268
9587
  jobGlobal?: ACLAction[];
9269
9588
  logDrain?: ACLAction[];
9270
9589
  Monitoring?: ACLAction[];
@@ -9285,7 +9604,6 @@ type GetProjectsResponse = {
9285
9604
  notificationUsageAlert?: ACLAction[];
9286
9605
  notificationCustomerBudget?: ACLAction[];
9287
9606
  notificationStatementOfReasons?: ACLAction[];
9288
- oauth2Connection?: ACLAction[];
9289
9607
  observabilityConfiguration?: ACLAction[];
9290
9608
  openTelemetryEndpoint?: ACLAction[];
9291
9609
  paymentMethod?: ACLAction[];
@@ -9326,11 +9644,8 @@ type GetProjectsResponse = {
9326
9644
  token?: ACLAction[];
9327
9645
  usage?: ACLAction[];
9328
9646
  usageCycle?: ACLAction[];
9329
- user?: ACLAction[];
9330
- userConnection?: ACLAction[];
9331
9647
  vpcPeeringConnection?: ACLAction[];
9332
9648
  webAnalyticsPlan?: ACLAction[];
9333
- webAuthn?: ACLAction[];
9334
9649
  edgeConfig?: ACLAction[];
9335
9650
  edgeConfigItem?: ACLAction[];
9336
9651
  edgeConfigSchema?: ACLAction[];
@@ -9406,7 +9721,6 @@ type GetProjectsResponse = {
9406
9721
  requestedAt: number;
9407
9722
  type: 'promote' | 'rollback';
9408
9723
  } | null;
9409
- hasFloatingAliases?: boolean;
9410
9724
  protectionBypass?: {
9411
9725
  [key: string]: {
9412
9726
  createdAt: number;
@@ -9712,7 +10026,7 @@ type CreateProjectResponse = {
9712
10026
  vsmValue?: string;
9713
10027
  }[];
9714
10028
  customEnvironments?: Record<string, any>[];
9715
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
10029
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
9716
10030
  gitForkProtection?: boolean;
9717
10031
  gitLFS?: boolean;
9718
10032
  id: string;
@@ -9862,8 +10176,11 @@ type CreateProjectResponse = {
9862
10176
  updatedAt: number;
9863
10177
  /**
9864
10178
  * The group IDs of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
10179
+ *
10180
+ * @maxItems 2
10181
+ * @minItems 2
9865
10182
  */
9866
- groupIds: string[];
10183
+ groupIds: (string | string)[];
9867
10184
  /**
9868
10185
  * Whether microfrontends are enabled for this project.
9869
10186
  */
@@ -9877,9 +10194,17 @@ type CreateProjectResponse = {
9877
10194
  */
9878
10195
  defaultRoute?: string;
9879
10196
  /**
9880
- * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
10197
+ * Whether observability data should be routed to this microfrontend project or a root project.
10198
+ */
10199
+ routeObservabilityToThisProject?: boolean;
10200
+ } | {
10201
+ updatedAt: number;
10202
+ /**
10203
+ * @maxItems 2
10204
+ * @minItems 2
9881
10205
  */
9882
- routeObservabilityToDefaultApp?: boolean;
10206
+ groupIds: (string | string)[];
10207
+ enabled: boolean;
9883
10208
  };
9884
10209
  name: string;
9885
10210
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -9893,13 +10218,20 @@ type CreateProjectResponse = {
9893
10218
  passwordProtection?: Record<string, any> | null;
9894
10219
  productionDeploymentsFastLane?: boolean;
9895
10220
  publicSource?: boolean | null;
9896
- resourceConfig?: {
10221
+ resourceConfig: {
10222
+ fluid?: boolean;
10223
+ functionDefaultRegions: string[];
10224
+ functionDefaultTimeout?: number;
10225
+ functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
10226
+ functionZeroConfigFailover?: boolean;
10227
+ elasticConcurrencyEnabled?: boolean;
10228
+ };
10229
+ defaultResourceConfig: {
9897
10230
  fluid?: boolean;
9898
- functionDefaultRegion?: string | null;
10231
+ functionDefaultRegions: string[];
9899
10232
  functionDefaultTimeout?: number;
9900
10233
  functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
9901
10234
  functionZeroConfigFailover?: boolean;
9902
- allowServerlessConcurrency?: boolean;
9903
10235
  elasticConcurrencyEnabled?: boolean;
9904
10236
  };
9905
10237
  rootDirectory?: string | null;
@@ -9995,6 +10327,11 @@ type CreateProjectResponse = {
9995
10327
  enablePreviewFeedback?: boolean | null;
9996
10328
  enableProductionFeedback?: boolean | null;
9997
10329
  permissions?: {
10330
+ user?: ACLAction[];
10331
+ userConnection?: ACLAction[];
10332
+ userSudo?: ACLAction[];
10333
+ webAuthn?: ACLAction[];
10334
+ oauth2Connection?: ACLAction[];
9998
10335
  accessGroup?: ACLAction[];
9999
10336
  aliasGlobal?: ACLAction[];
10000
10337
  analyticsSampling?: ACLAction[];
@@ -10031,6 +10368,7 @@ type CreateProjectResponse = {
10031
10368
  fileUpload?: ACLAction[];
10032
10369
  gitRepository?: ACLAction[];
10033
10370
  ipBlocking?: ACLAction[];
10371
+ imageOptimizationNewPrice?: ACLAction[];
10034
10372
  integration?: ACLAction[];
10035
10373
  integrationAccount?: ACLAction[];
10036
10374
  integrationConfiguration?: ACLAction[];
@@ -10038,6 +10376,7 @@ type CreateProjectResponse = {
10038
10376
  integrationConfigurationProjects?: ACLAction[];
10039
10377
  integrationVercelConfigurationOverride?: ACLAction[];
10040
10378
  integrationConfigurationRole?: ACLAction[];
10379
+ integrationSSOSession?: ACLAction[];
10041
10380
  integrationResource?: ACLAction[];
10042
10381
  integrationEvent?: ACLAction[];
10043
10382
  integrationResourceSecrets?: ACLAction[];
@@ -10045,6 +10384,8 @@ type CreateProjectResponse = {
10045
10384
  marketplaceInstallationMember?: ACLAction[];
10046
10385
  marketplaceBillingData?: ACLAction[];
10047
10386
  marketplaceInvoice?: ACLAction[];
10387
+ marketplaceExperimentationItem?: ACLAction[];
10388
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
10048
10389
  jobGlobal?: ACLAction[];
10049
10390
  logDrain?: ACLAction[];
10050
10391
  Monitoring?: ACLAction[];
@@ -10065,7 +10406,6 @@ type CreateProjectResponse = {
10065
10406
  notificationUsageAlert?: ACLAction[];
10066
10407
  notificationCustomerBudget?: ACLAction[];
10067
10408
  notificationStatementOfReasons?: ACLAction[];
10068
- oauth2Connection?: ACLAction[];
10069
10409
  observabilityConfiguration?: ACLAction[];
10070
10410
  openTelemetryEndpoint?: ACLAction[];
10071
10411
  paymentMethod?: ACLAction[];
@@ -10106,11 +10446,8 @@ type CreateProjectResponse = {
10106
10446
  token?: ACLAction[];
10107
10447
  usage?: ACLAction[];
10108
10448
  usageCycle?: ACLAction[];
10109
- user?: ACLAction[];
10110
- userConnection?: ACLAction[];
10111
10449
  vpcPeeringConnection?: ACLAction[];
10112
10450
  webAnalyticsPlan?: ACLAction[];
10113
- webAuthn?: ACLAction[];
10114
10451
  edgeConfig?: ACLAction[];
10115
10452
  edgeConfigItem?: ACLAction[];
10116
10453
  edgeConfigSchema?: ACLAction[];
@@ -10186,7 +10523,6 @@ type CreateProjectResponse = {
10186
10523
  requestedAt: number;
10187
10524
  type: 'promote' | 'rollback';
10188
10525
  } | null;
10189
- hasFloatingAliases?: boolean;
10190
10526
  protectionBypass?: {
10191
10527
  [key: string]: {
10192
10528
  createdAt: number;
@@ -10355,7 +10691,7 @@ type CreateProjectRequestBody = {
10355
10691
  /**
10356
10692
  * The framework that is being used for this project. When `null` is used no framework is selected
10357
10693
  */
10358
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola';
10694
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola';
10359
10695
  /**
10360
10696
  * The Git Repository that will be connected to the project. When this is defined, any pushes to the specified connected Git Repository will be automatically deployed
10361
10697
  */
@@ -10624,7 +10960,7 @@ type GetProjectResponse = {
10624
10960
  vsmValue?: string;
10625
10961
  }[];
10626
10962
  customEnvironments?: Record<string, any>[];
10627
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
10963
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
10628
10964
  gitForkProtection?: boolean;
10629
10965
  gitLFS?: boolean;
10630
10966
  id: string;
@@ -10774,8 +11110,11 @@ type GetProjectResponse = {
10774
11110
  updatedAt: number;
10775
11111
  /**
10776
11112
  * The group IDs of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
11113
+ *
11114
+ * @maxItems 2
11115
+ * @minItems 2
10777
11116
  */
10778
- groupIds: string[];
11117
+ groupIds: (string | string)[];
10779
11118
  /**
10780
11119
  * Whether microfrontends are enabled for this project.
10781
11120
  */
@@ -10789,9 +11128,17 @@ type GetProjectResponse = {
10789
11128
  */
10790
11129
  defaultRoute?: string;
10791
11130
  /**
10792
- * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
11131
+ * Whether observability data should be routed to this microfrontend project or a root project.
11132
+ */
11133
+ routeObservabilityToThisProject?: boolean;
11134
+ } | {
11135
+ updatedAt: number;
11136
+ /**
11137
+ * @maxItems 2
11138
+ * @minItems 2
10793
11139
  */
10794
- routeObservabilityToDefaultApp?: boolean;
11140
+ groupIds: (string | string)[];
11141
+ enabled: boolean;
10795
11142
  };
10796
11143
  name: string;
10797
11144
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -10805,13 +11152,20 @@ type GetProjectResponse = {
10805
11152
  passwordProtection?: Record<string, any> | null;
10806
11153
  productionDeploymentsFastLane?: boolean;
10807
11154
  publicSource?: boolean | null;
10808
- resourceConfig?: {
11155
+ resourceConfig: {
11156
+ fluid?: boolean;
11157
+ functionDefaultRegions: string[];
11158
+ functionDefaultTimeout?: number;
11159
+ functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
11160
+ functionZeroConfigFailover?: boolean;
11161
+ elasticConcurrencyEnabled?: boolean;
11162
+ };
11163
+ defaultResourceConfig: {
10809
11164
  fluid?: boolean;
10810
- functionDefaultRegion?: string | null;
11165
+ functionDefaultRegions: string[];
10811
11166
  functionDefaultTimeout?: number;
10812
11167
  functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
10813
11168
  functionZeroConfigFailover?: boolean;
10814
- allowServerlessConcurrency?: boolean;
10815
11169
  elasticConcurrencyEnabled?: boolean;
10816
11170
  };
10817
11171
  rootDirectory?: string | null;
@@ -10907,6 +11261,11 @@ type GetProjectResponse = {
10907
11261
  enablePreviewFeedback?: boolean | null;
10908
11262
  enableProductionFeedback?: boolean | null;
10909
11263
  permissions?: {
11264
+ user?: ACLAction[];
11265
+ userConnection?: ACLAction[];
11266
+ userSudo?: ACLAction[];
11267
+ webAuthn?: ACLAction[];
11268
+ oauth2Connection?: ACLAction[];
10910
11269
  accessGroup?: ACLAction[];
10911
11270
  aliasGlobal?: ACLAction[];
10912
11271
  analyticsSampling?: ACLAction[];
@@ -10943,6 +11302,7 @@ type GetProjectResponse = {
10943
11302
  fileUpload?: ACLAction[];
10944
11303
  gitRepository?: ACLAction[];
10945
11304
  ipBlocking?: ACLAction[];
11305
+ imageOptimizationNewPrice?: ACLAction[];
10946
11306
  integration?: ACLAction[];
10947
11307
  integrationAccount?: ACLAction[];
10948
11308
  integrationConfiguration?: ACLAction[];
@@ -10950,6 +11310,7 @@ type GetProjectResponse = {
10950
11310
  integrationConfigurationProjects?: ACLAction[];
10951
11311
  integrationVercelConfigurationOverride?: ACLAction[];
10952
11312
  integrationConfigurationRole?: ACLAction[];
11313
+ integrationSSOSession?: ACLAction[];
10953
11314
  integrationResource?: ACLAction[];
10954
11315
  integrationEvent?: ACLAction[];
10955
11316
  integrationResourceSecrets?: ACLAction[];
@@ -10957,6 +11318,8 @@ type GetProjectResponse = {
10957
11318
  marketplaceInstallationMember?: ACLAction[];
10958
11319
  marketplaceBillingData?: ACLAction[];
10959
11320
  marketplaceInvoice?: ACLAction[];
11321
+ marketplaceExperimentationItem?: ACLAction[];
11322
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
10960
11323
  jobGlobal?: ACLAction[];
10961
11324
  logDrain?: ACLAction[];
10962
11325
  Monitoring?: ACLAction[];
@@ -10977,7 +11340,6 @@ type GetProjectResponse = {
10977
11340
  notificationUsageAlert?: ACLAction[];
10978
11341
  notificationCustomerBudget?: ACLAction[];
10979
11342
  notificationStatementOfReasons?: ACLAction[];
10980
- oauth2Connection?: ACLAction[];
10981
11343
  observabilityConfiguration?: ACLAction[];
10982
11344
  openTelemetryEndpoint?: ACLAction[];
10983
11345
  paymentMethod?: ACLAction[];
@@ -11018,11 +11380,8 @@ type GetProjectResponse = {
11018
11380
  token?: ACLAction[];
11019
11381
  usage?: ACLAction[];
11020
11382
  usageCycle?: ACLAction[];
11021
- user?: ACLAction[];
11022
- userConnection?: ACLAction[];
11023
11383
  vpcPeeringConnection?: ACLAction[];
11024
11384
  webAnalyticsPlan?: ACLAction[];
11025
- webAuthn?: ACLAction[];
11026
11385
  edgeConfig?: ACLAction[];
11027
11386
  edgeConfigItem?: ACLAction[];
11028
11387
  edgeConfigSchema?: ACLAction[];
@@ -11098,7 +11457,6 @@ type GetProjectResponse = {
11098
11457
  requestedAt: number;
11099
11458
  type: 'promote' | 'rollback';
11100
11459
  } | null;
11101
- hasFloatingAliases?: boolean;
11102
11460
  protectionBypass?: {
11103
11461
  [key: string]: {
11104
11462
  createdAt: number;
@@ -11411,7 +11769,7 @@ type UpdateProjectResponse = {
11411
11769
  vsmValue?: string;
11412
11770
  }[];
11413
11771
  customEnvironments?: Record<string, any>[];
11414
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
11772
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
11415
11773
  gitForkProtection?: boolean;
11416
11774
  gitLFS?: boolean;
11417
11775
  id: string;
@@ -11561,8 +11919,11 @@ type UpdateProjectResponse = {
11561
11919
  updatedAt: number;
11562
11920
  /**
11563
11921
  * The group IDs of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
11922
+ *
11923
+ * @maxItems 2
11924
+ * @minItems 2
11564
11925
  */
11565
- groupIds: string[];
11926
+ groupIds: (string | string)[];
11566
11927
  /**
11567
11928
  * Whether microfrontends are enabled for this project.
11568
11929
  */
@@ -11576,9 +11937,17 @@ type UpdateProjectResponse = {
11576
11937
  */
11577
11938
  defaultRoute?: string;
11578
11939
  /**
11579
- * Whether observability data should be routed to the default app in this microfrontend's group, or it should go to this microfrontend.
11940
+ * Whether observability data should be routed to this microfrontend project or a root project.
11941
+ */
11942
+ routeObservabilityToThisProject?: boolean;
11943
+ } | {
11944
+ updatedAt: number;
11945
+ /**
11946
+ * @maxItems 2
11947
+ * @minItems 2
11580
11948
  */
11581
- routeObservabilityToDefaultApp?: boolean;
11949
+ groupIds: (string | string)[];
11950
+ enabled: boolean;
11582
11951
  };
11583
11952
  name: string;
11584
11953
  nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
@@ -11592,13 +11961,20 @@ type UpdateProjectResponse = {
11592
11961
  passwordProtection?: Record<string, any> | null;
11593
11962
  productionDeploymentsFastLane?: boolean;
11594
11963
  publicSource?: boolean | null;
11595
- resourceConfig?: {
11964
+ resourceConfig: {
11965
+ fluid?: boolean;
11966
+ functionDefaultRegions: string[];
11967
+ functionDefaultTimeout?: number;
11968
+ functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
11969
+ functionZeroConfigFailover?: boolean;
11970
+ elasticConcurrencyEnabled?: boolean;
11971
+ };
11972
+ defaultResourceConfig: {
11596
11973
  fluid?: boolean;
11597
- functionDefaultRegion?: string | null;
11974
+ functionDefaultRegions: string[];
11598
11975
  functionDefaultTimeout?: number;
11599
11976
  functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
11600
11977
  functionZeroConfigFailover?: boolean;
11601
- allowServerlessConcurrency?: boolean;
11602
11978
  elasticConcurrencyEnabled?: boolean;
11603
11979
  };
11604
11980
  rootDirectory?: string | null;
@@ -11694,6 +12070,11 @@ type UpdateProjectResponse = {
11694
12070
  enablePreviewFeedback?: boolean | null;
11695
12071
  enableProductionFeedback?: boolean | null;
11696
12072
  permissions?: {
12073
+ user?: ACLAction[];
12074
+ userConnection?: ACLAction[];
12075
+ userSudo?: ACLAction[];
12076
+ webAuthn?: ACLAction[];
12077
+ oauth2Connection?: ACLAction[];
11697
12078
  accessGroup?: ACLAction[];
11698
12079
  aliasGlobal?: ACLAction[];
11699
12080
  analyticsSampling?: ACLAction[];
@@ -11730,6 +12111,7 @@ type UpdateProjectResponse = {
11730
12111
  fileUpload?: ACLAction[];
11731
12112
  gitRepository?: ACLAction[];
11732
12113
  ipBlocking?: ACLAction[];
12114
+ imageOptimizationNewPrice?: ACLAction[];
11733
12115
  integration?: ACLAction[];
11734
12116
  integrationAccount?: ACLAction[];
11735
12117
  integrationConfiguration?: ACLAction[];
@@ -11737,6 +12119,7 @@ type UpdateProjectResponse = {
11737
12119
  integrationConfigurationProjects?: ACLAction[];
11738
12120
  integrationVercelConfigurationOverride?: ACLAction[];
11739
12121
  integrationConfigurationRole?: ACLAction[];
12122
+ integrationSSOSession?: ACLAction[];
11740
12123
  integrationResource?: ACLAction[];
11741
12124
  integrationEvent?: ACLAction[];
11742
12125
  integrationResourceSecrets?: ACLAction[];
@@ -11744,6 +12127,8 @@ type UpdateProjectResponse = {
11744
12127
  marketplaceInstallationMember?: ACLAction[];
11745
12128
  marketplaceBillingData?: ACLAction[];
11746
12129
  marketplaceInvoice?: ACLAction[];
12130
+ marketplaceExperimentationItem?: ACLAction[];
12131
+ marketplaceExperimentationEdgeConfigData?: ACLAction[];
11747
12132
  jobGlobal?: ACLAction[];
11748
12133
  logDrain?: ACLAction[];
11749
12134
  Monitoring?: ACLAction[];
@@ -11764,7 +12149,6 @@ type UpdateProjectResponse = {
11764
12149
  notificationUsageAlert?: ACLAction[];
11765
12150
  notificationCustomerBudget?: ACLAction[];
11766
12151
  notificationStatementOfReasons?: ACLAction[];
11767
- oauth2Connection?: ACLAction[];
11768
12152
  observabilityConfiguration?: ACLAction[];
11769
12153
  openTelemetryEndpoint?: ACLAction[];
11770
12154
  paymentMethod?: ACLAction[];
@@ -11805,11 +12189,8 @@ type UpdateProjectResponse = {
11805
12189
  token?: ACLAction[];
11806
12190
  usage?: ACLAction[];
11807
12191
  usageCycle?: ACLAction[];
11808
- user?: ACLAction[];
11809
- userConnection?: ACLAction[];
11810
12192
  vpcPeeringConnection?: ACLAction[];
11811
12193
  webAnalyticsPlan?: ACLAction[];
11812
- webAuthn?: ACLAction[];
11813
12194
  edgeConfig?: ACLAction[];
11814
12195
  edgeConfigItem?: ACLAction[];
11815
12196
  edgeConfigSchema?: ACLAction[];
@@ -11885,7 +12266,6 @@ type UpdateProjectResponse = {
11885
12266
  requestedAt: number;
11886
12267
  type: 'promote' | 'rollback';
11887
12268
  } | null;
11888
- hasFloatingAliases?: boolean;
11889
12269
  protectionBypass?: {
11890
12270
  [key: string]: {
11891
12271
  createdAt: number;
@@ -12035,7 +12415,7 @@ type UpdateProjectRequestBody = {
12035
12415
  /**
12036
12416
  * The framework that is being used for this project. When `null` is used no framework is selected
12037
12417
  */
12038
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
12418
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | any | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
12039
12419
  /**
12040
12420
  * Specifies whether PRs from Git forks should require a team member's authorization before it can be deployed
12041
12421
  */
@@ -12246,13 +12626,13 @@ type DeleteProjectVariables = {
12246
12626
  * Delete a specific project by passing either the project `id` or `name` in the URL.
12247
12627
  */
12248
12628
  declare const deleteProject: (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
12249
- type PostV1ProjectsIdOrNameCustomEnvironmentsPathParams = {
12629
+ type CreateCustomEnvironmentPathParams = {
12250
12630
  /**
12251
12631
  * The unique project identifier or the project name
12252
12632
  */
12253
12633
  idOrName: string;
12254
12634
  };
12255
- type PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams = {
12635
+ type CreateCustomEnvironmentQueryParams = {
12256
12636
  /**
12257
12637
  * The Team identifier to perform the request on behalf of.
12258
12638
  */
@@ -12262,8 +12642,8 @@ type PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams = {
12262
12642
  */
12263
12643
  slug?: string;
12264
12644
  };
12265
- type PostV1ProjectsIdOrNameCustomEnvironmentsError = ErrorWrapper<undefined>;
12266
- type PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody = {
12645
+ type CreateCustomEnvironmentError = ErrorWrapper<undefined>;
12646
+ type CreateCustomEnvironmentRequestBody = {
12267
12647
  /**
12268
12648
  * The slug of the custom environment to create.
12269
12649
  *
@@ -12296,15 +12676,15 @@ type PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody = {
12296
12676
  */
12297
12677
  copyEnvVarsFrom?: string;
12298
12678
  };
12299
- type PostV1ProjectsIdOrNameCustomEnvironmentsVariables = {
12300
- body?: PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody;
12301
- pathParams: PostV1ProjectsIdOrNameCustomEnvironmentsPathParams;
12302
- queryParams?: PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams;
12679
+ type CreateCustomEnvironmentVariables = {
12680
+ body?: CreateCustomEnvironmentRequestBody;
12681
+ pathParams: CreateCustomEnvironmentPathParams;
12682
+ queryParams?: CreateCustomEnvironmentQueryParams;
12303
12683
  } & FetcherExtraProps;
12304
12684
  /**
12305
12685
  * Creates a custom environment for the current project. Cannot be named 'Production' or 'Preview'.
12306
12686
  */
12307
- declare const postV1ProjectsIdOrNameCustomEnvironments: (variables: PostV1ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12687
+ declare const createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12308
12688
  type GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = {
12309
12689
  /**
12310
12690
  * The unique project identifier or the project name
@@ -12337,7 +12717,7 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
12337
12717
  * Retrieve custom environments for the project. Must not be named 'Production' or 'Preview'.
12338
12718
  */
12339
12719
  declare const getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
12340
- type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12720
+ type GetCustomEnvironmentPathParams = {
12341
12721
  /**
12342
12722
  * The unique project identifier or the project name
12343
12723
  */
@@ -12347,7 +12727,7 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12347
12727
  */
12348
12728
  environmentSlugOrId: string;
12349
12729
  };
12350
- type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
12730
+ type GetCustomEnvironmentQueryParams = {
12351
12731
  /**
12352
12732
  * The Team identifier to perform the request on behalf of.
12353
12733
  */
@@ -12357,16 +12737,16 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
12357
12737
  */
12358
12738
  slug?: string;
12359
12739
  };
12360
- type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = ErrorWrapper<undefined>;
12361
- type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = {
12362
- pathParams: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
12363
- queryParams?: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
12740
+ type GetCustomEnvironmentError = ErrorWrapper<undefined>;
12741
+ type GetCustomEnvironmentVariables = {
12742
+ pathParams: GetCustomEnvironmentPathParams;
12743
+ queryParams?: GetCustomEnvironmentQueryParams;
12364
12744
  } & FetcherExtraProps;
12365
12745
  /**
12366
12746
  * Retrieve a custom environment for the project. Must not be named 'Production' or 'Preview'.
12367
12747
  */
12368
- declare const getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12369
- type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12748
+ declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12749
+ type UpdateCustomEnvironmentPathParams = {
12370
12750
  /**
12371
12751
  * The unique project identifier or the project name
12372
12752
  */
@@ -12376,7 +12756,7 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12376
12756
  */
12377
12757
  environmentSlugOrId: string;
12378
12758
  };
12379
- type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
12759
+ type UpdateCustomEnvironmentQueryParams = {
12380
12760
  /**
12381
12761
  * The Team identifier to perform the request on behalf of.
12382
12762
  */
@@ -12386,8 +12766,8 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
12386
12766
  */
12387
12767
  slug?: string;
12388
12768
  };
12389
- type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = ErrorWrapper<undefined>;
12390
- type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = {
12769
+ type UpdateCustomEnvironmentError = ErrorWrapper<undefined>;
12770
+ type UpdateCustomEnvironmentRequestBody = {
12391
12771
  /**
12392
12772
  * The slug of the custom environment.
12393
12773
  *
@@ -12416,16 +12796,16 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = {
12416
12796
  pattern: string;
12417
12797
  } | null;
12418
12798
  };
12419
- type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = {
12420
- body?: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody;
12421
- pathParams: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
12422
- queryParams?: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
12799
+ type UpdateCustomEnvironmentVariables = {
12800
+ body?: UpdateCustomEnvironmentRequestBody;
12801
+ pathParams: UpdateCustomEnvironmentPathParams;
12802
+ queryParams?: UpdateCustomEnvironmentQueryParams;
12423
12803
  } & FetcherExtraProps;
12424
12804
  /**
12425
12805
  * Update a custom environment for the project. Must not be named 'Production' or 'Preview'.
12426
12806
  */
12427
- declare const patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12428
- type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12807
+ declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12808
+ type RemoveCustomEnvironmentPathParams = {
12429
12809
  /**
12430
12810
  * The unique project identifier or the project name
12431
12811
  */
@@ -12435,7 +12815,7 @@ type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
12435
12815
  */
12436
12816
  environmentSlugOrId: string;
12437
12817
  };
12438
- type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
12818
+ type RemoveCustomEnvironmentQueryParams = {
12439
12819
  /**
12440
12820
  * The Team identifier to perform the request on behalf of.
12441
12821
  */
@@ -12445,22 +12825,22 @@ type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams =
12445
12825
  */
12446
12826
  slug?: string;
12447
12827
  };
12448
- type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = ErrorWrapper<undefined>;
12449
- type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = {
12828
+ type RemoveCustomEnvironmentError = ErrorWrapper<undefined>;
12829
+ type RemoveCustomEnvironmentRequestBody = {
12450
12830
  /**
12451
12831
  * Delete Environment Variables that are not assigned to any environments.
12452
12832
  */
12453
12833
  deleteUnassignedEnvironmentVariables?: boolean;
12454
12834
  };
12455
- type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = {
12456
- body: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody;
12457
- pathParams: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
12458
- queryParams?: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
12835
+ type RemoveCustomEnvironmentVariables = {
12836
+ body: RemoveCustomEnvironmentRequestBody;
12837
+ pathParams: RemoveCustomEnvironmentPathParams;
12838
+ queryParams?: RemoveCustomEnvironmentQueryParams;
12459
12839
  } & FetcherExtraProps;
12460
12840
  /**
12461
12841
  * Remove a custom environment for the project. Must not be named 'Production' or 'Preview'.
12462
12842
  */
12463
- declare const deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12843
+ declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
12464
12844
  type GetProjectDomainsPathParams = {
12465
12845
  /**
12466
12846
  * The unique project identifier or the project name
@@ -14205,6 +14585,9 @@ type EditProjectEnvRequestBody = {
14205
14585
  * @example bkWIjbnxcvo78
14206
14586
  */
14207
14587
  value?: string;
14588
+ /**
14589
+ * The custom environments that the environment variable should be synced to
14590
+ */
14208
14591
  customEnvironmentIds?: string[];
14209
14592
  /**
14210
14593
  * A comment to add context on what this env var is for
@@ -15250,9 +15633,16 @@ type AddBypassIpVariables = {
15250
15633
  * @maxLength 2544
15251
15634
  */
15252
15635
  domain: string;
15636
+ /**
15637
+ * If the specified bypass will apply to all domains for a project.
15638
+ */
15253
15639
  projectScope?: boolean;
15254
15640
  sourceIp?: string;
15255
15641
  allSources?: boolean;
15642
+ /**
15643
+ * Time to live in milliseconds
15644
+ */
15645
+ ttl?: number;
15256
15646
  /**
15257
15647
  * @maxLength 500
15258
15648
  */
@@ -15263,9 +15653,16 @@ type AddBypassIpVariables = {
15263
15653
  * @maxLength 2544
15264
15654
  */
15265
15655
  domain?: string;
15656
+ /**
15657
+ * If the specified bypass will apply to all domains for a project.
15658
+ */
15266
15659
  projectScope: boolean;
15267
15660
  sourceIp?: string;
15268
15661
  allSources?: boolean;
15662
+ /**
15663
+ * Time to live in milliseconds
15664
+ */
15665
+ ttl?: number;
15269
15666
  /**
15270
15667
  * @maxLength 500
15271
15668
  */
@@ -15438,13 +15835,7 @@ type GetTeamMembersResponse = {
15438
15835
  *
15439
15836
  * @example OWNER
15440
15837
  */
15441
- 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[];
15838
+ role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
15448
15839
  /**
15449
15840
  * The ID of this user.
15450
15841
  *
@@ -15504,7 +15895,7 @@ type GetTeamMembersResponse = {
15504
15895
  accessGroups?: string[];
15505
15896
  id: string;
15506
15897
  email?: string;
15507
- role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
15898
+ role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
15508
15899
  isDSyncUser: boolean;
15509
15900
  createdAt?: number;
15510
15901
  expired?: boolean;
@@ -15560,12 +15951,22 @@ type InviteUserToTeamRequestBody = {
15560
15951
  /**
15561
15952
  * The role of the user to invite
15562
15953
  *
15954
+ * @default BILLING
15955
+ * @default CONTRIBUTOR
15956
+ * @default DEVELOPER
15563
15957
  * @default MEMBER
15958
+ * @default OWNER
15959
+ * @default SECURITY
15564
15960
  * @default VIEWER
15961
+ * @example BILLING
15962
+ * @example CONTRIBUTOR
15963
+ * @example DEVELOPER
15565
15964
  * @example MEMBER
15965
+ * @example OWNER
15966
+ * @example SECURITY
15566
15967
  * @example VIEWER
15567
15968
  */
15568
- role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
15969
+ role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
15569
15970
  projects?: {
15570
15971
  /**
15571
15972
  * The ID of the project.
@@ -15612,11 +16013,25 @@ declare const inviteUserToTeam: (variables: InviteUserToTeamVariables, signal?:
15612
16013
  *
15613
16014
  * @example MEMBER
15614
16015
  */
15615
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
16016
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
16017
+ /**
16018
+ * The team roles of the user
16019
+ *
16020
+ * @example MEMBER
16021
+ */
16022
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
16023
+ /**
16024
+ * The team permissions of the user
16025
+ *
16026
+ * @example CreateProject
16027
+ */
16028
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
15616
16029
  } | {
15617
16030
  uid: string;
15618
16031
  username: string;
15619
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
16032
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
16033
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
16034
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
15620
16035
  }>;
15621
16036
  type RequestAccessToTeamError = ErrorWrapper<undefined>;
15622
16037
  type RequestAccessToTeamResponse = {
@@ -15977,7 +16392,7 @@ type PatchTeamRequestBody = {
15977
16392
  * Directory groups to role or access group mappings.
15978
16393
  */
15979
16394
  roles?: {
15980
- [key: string]: ('OWNER' | 'MEMBER' | 'DEVELOPER' | 'BILLING' | 'VIEWER' | 'CONTRIBUTOR') | {
16395
+ [key: string]: ('OWNER' | 'MEMBER' | 'DEVELOPER' | 'SECURITY' | 'BILLING' | 'VIEWER' | 'CONTRIBUTOR') | {
15981
16396
  /**
15982
16397
  * @pattern ^ag_[A-z0-9_ -]+$
15983
16398
  */
@@ -16276,54 +16691,6 @@ declare const uploadFile: (variables: UploadFileVariables, signal?: AbortSignal)
16276
16691
  */
16277
16692
  urls: string[];
16278
16693
  }>;
16279
- type GetAuthUserError = ErrorWrapper<undefined>;
16280
- type GetAuthUserResponse = {
16281
- user: AuthUser | AuthUserLimited;
16282
- };
16283
- type GetAuthUserVariables = FetcherExtraProps;
16284
- /**
16285
- * Retrieves information related to the currently authenticated User.
16286
- */
16287
- declare const getAuthUser: (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
16288
- type RequestDeleteError = ErrorWrapper<undefined>;
16289
- type RequestDeleteResponse = {
16290
- /**
16291
- * Unique identifier of the User who has initiated deletion.
16292
- */
16293
- id: string;
16294
- /**
16295
- * Email address of the User who has initiated deletion.
16296
- */
16297
- email: string;
16298
- /**
16299
- * User deletion progress status.
16300
- *
16301
- * @example Verification email sent
16302
- */
16303
- message: string;
16304
- };
16305
- type RequestDeleteRequestBody = {
16306
- /**
16307
- * Optional array of objects that describe the reason why the User account is being deleted.
16308
- */
16309
- reasons?: {
16310
- /**
16311
- * Idenitifier slug of the reason why the User account is being deleted.
16312
- */
16313
- slug: string;
16314
- /**
16315
- * Description of the reason why the User account is being deleted.
16316
- */
16317
- description: string;
16318
- }[];
16319
- };
16320
- type RequestDeleteVariables = {
16321
- body?: RequestDeleteRequestBody;
16322
- } & FetcherExtraProps;
16323
- /**
16324
- * Initiates the deletion process for the currently authenticated User, by sending a deletion confirmation email. The email contains a link that the user needs to visit in order to proceed with the deletion process.
16325
- */
16326
- declare const requestDelete: (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
16327
16694
  type ListAuthTokensError = ErrorWrapper<undefined>;
16328
16695
  type ListAuthTokensResponse = {
16329
16696
  tokens: AuthToken[];
@@ -16410,8 +16777,56 @@ type DeleteAuthTokenVariables = {
16410
16777
  * Invalidate an authentication token, such that it will no longer be valid for future HTTP requests.
16411
16778
  */
16412
16779
  declare const deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
16413
- type CreateWebhookQueryParams = {
16414
- /**
16780
+ type GetAuthUserError = ErrorWrapper<undefined>;
16781
+ type GetAuthUserResponse = {
16782
+ user: AuthUser | AuthUserLimited;
16783
+ };
16784
+ type GetAuthUserVariables = FetcherExtraProps;
16785
+ /**
16786
+ * Retrieves information related to the currently authenticated User.
16787
+ */
16788
+ declare const getAuthUser: (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
16789
+ type RequestDeleteError = ErrorWrapper<undefined>;
16790
+ type RequestDeleteResponse = {
16791
+ /**
16792
+ * Unique identifier of the User who has initiated deletion.
16793
+ */
16794
+ id: string;
16795
+ /**
16796
+ * Email address of the User who has initiated deletion.
16797
+ */
16798
+ email: string;
16799
+ /**
16800
+ * User deletion progress status.
16801
+ *
16802
+ * @example Verification email sent
16803
+ */
16804
+ message: string;
16805
+ };
16806
+ type RequestDeleteRequestBody = {
16807
+ /**
16808
+ * Optional array of objects that describe the reason why the User account is being deleted.
16809
+ */
16810
+ reasons?: {
16811
+ /**
16812
+ * Idenitifier slug of the reason why the User account is being deleted.
16813
+ */
16814
+ slug: string;
16815
+ /**
16816
+ * Description of the reason why the User account is being deleted.
16817
+ */
16818
+ description: string;
16819
+ }[];
16820
+ };
16821
+ type RequestDeleteVariables = {
16822
+ body?: RequestDeleteRequestBody;
16823
+ } & FetcherExtraProps;
16824
+ /**
16825
+ * Initiates the deletion process for the currently authenticated User, by sending a deletion confirmation email. The email contains a link that the user needs to visit in order to proceed with the deletion process.
16826
+ */
16827
+ declare const requestDelete: (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
16828
+ type CreateWebhookQueryParams = {
16829
+ /**
16415
16830
  * The Team identifier to perform the request on behalf of.
16416
16831
  */
16417
16832
  teamId?: string;
@@ -16518,7 +16933,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
16518
16933
  projectsMetadata: {
16519
16934
  id: string;
16520
16935
  name: string;
16521
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
16936
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
16522
16937
  latestDeployment?: string;
16523
16938
  }[] | null;
16524
16939
  /**
@@ -16695,6 +17110,157 @@ type DeleteWebhookVariables = {
16695
17110
  * Deletes a webhook
16696
17111
  */
16697
17112
  declare const deleteWebhook: (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
17113
+ type ListDeploymentAliasesPathParams = {
17114
+ /**
17115
+ * The ID of the deployment the aliases should be listed for
17116
+ *
17117
+ * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17118
+ */
17119
+ id: string;
17120
+ };
17121
+ type ListDeploymentAliasesQueryParams = {
17122
+ /**
17123
+ * The Team identifier to perform the request on behalf of.
17124
+ */
17125
+ teamId?: string;
17126
+ /**
17127
+ * The Team slug to perform the request on behalf of.
17128
+ */
17129
+ slug?: string;
17130
+ };
17131
+ type ListDeploymentAliasesError = ErrorWrapper<undefined>;
17132
+ type ListDeploymentAliasesResponse = {
17133
+ /**
17134
+ * A list of the aliases assigned to the deployment
17135
+ */
17136
+ aliases: {
17137
+ /**
17138
+ * The unique identifier of the alias
17139
+ *
17140
+ * @example 2WjyKQmM8ZnGcJsPWMrHRHrE
17141
+ */
17142
+ uid: string;
17143
+ /**
17144
+ * The alias name, it could be a `.vercel.app` subdomain or a custom domain
17145
+ *
17146
+ * @example my-alias.vercel.app
17147
+ */
17148
+ alias: string;
17149
+ /**
17150
+ * The date when the alias was created
17151
+ *
17152
+ * @format date-time
17153
+ * @example 2017-04-26T23:00:34.232Z
17154
+ */
17155
+ created: string;
17156
+ /**
17157
+ * Target destination domain for redirect when the alias is a redirect
17158
+ */
17159
+ redirect?: string | null;
17160
+ /**
17161
+ * The protection bypass for the alias
17162
+ */
17163
+ protectionBypass?: {
17164
+ [key: string]: {
17165
+ createdAt: number;
17166
+ createdBy: string;
17167
+ scope: 'shareable-link';
17168
+ } | {
17169
+ createdAt: number;
17170
+ lastUpdatedAt: number;
17171
+ lastUpdatedBy: string;
17172
+ access: 'requested' | 'granted';
17173
+ scope: 'user';
17174
+ } | {
17175
+ createdAt: number;
17176
+ createdBy: string;
17177
+ scope: 'alias-protection-override';
17178
+ } | {
17179
+ createdAt: number;
17180
+ lastUpdatedAt: number;
17181
+ lastUpdatedBy: string;
17182
+ scope: 'email_invite';
17183
+ };
17184
+ };
17185
+ }[];
17186
+ };
17187
+ type ListDeploymentAliasesVariables = {
17188
+ pathParams: ListDeploymentAliasesPathParams;
17189
+ queryParams?: ListDeploymentAliasesQueryParams;
17190
+ } & FetcherExtraProps;
17191
+ /**
17192
+ * Retrieves all Aliases for the Deployment with the given ID. The authenticated user or team must own the deployment.
17193
+ */
17194
+ declare const listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
17195
+ type AssignAliasPathParams = {
17196
+ /**
17197
+ * The ID of the deployment the aliases should be listed for
17198
+ *
17199
+ * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17200
+ */
17201
+ id: string;
17202
+ };
17203
+ type AssignAliasQueryParams = {
17204
+ /**
17205
+ * The Team identifier to perform the request on behalf of.
17206
+ */
17207
+ teamId?: string;
17208
+ /**
17209
+ * The Team slug to perform the request on behalf of.
17210
+ */
17211
+ slug?: string;
17212
+ };
17213
+ type AssignAliasError = ErrorWrapper<undefined>;
17214
+ type AssignAliasResponse = {
17215
+ /**
17216
+ * The unique identifier of the alias
17217
+ *
17218
+ * @example 2WjyKQmM8ZnGcJsPWMrHRHrE
17219
+ */
17220
+ uid: string;
17221
+ /**
17222
+ * The assigned alias name
17223
+ *
17224
+ * @example my-alias.vercel.app
17225
+ */
17226
+ alias: string;
17227
+ /**
17228
+ * The date when the alias was created
17229
+ *
17230
+ * @format date-time
17231
+ * @example 2017-04-26T23:00:34.232Z
17232
+ */
17233
+ created: string;
17234
+ /**
17235
+ * The unique identifier of the previously aliased deployment, only received when the alias was used before
17236
+ *
17237
+ * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17238
+ */
17239
+ oldDeploymentId?: string | null;
17240
+ };
17241
+ type AssignAliasRequestBody = {
17242
+ /**
17243
+ * The alias we want to assign to the deployment defined in the URL
17244
+ *
17245
+ * @example my-alias.vercel.app
17246
+ */
17247
+ alias?: string;
17248
+ /**
17249
+ * The redirect property will take precedence over the deployment id from the URL and consists of a hostname (like test.com) to which the alias should redirect using status code 307
17250
+ *
17251
+ * @example null
17252
+ */
17253
+ redirect?: string | null;
17254
+ };
17255
+ type AssignAliasVariables = {
17256
+ body?: AssignAliasRequestBody;
17257
+ pathParams: AssignAliasPathParams;
17258
+ queryParams?: AssignAliasQueryParams;
17259
+ } & FetcherExtraProps;
17260
+ /**
17261
+ * Creates a new alias for the deployment with the given deployment ID. The authenticated user or team must own this deployment. If the desired alias is already assigned to another deployment, then it will be removed from the old deployment and assigned to the new one.
17262
+ */
17263
+ declare const assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
16698
17264
  type ListAliasesQueryParams = {
16699
17265
  /**
16700
17266
  * Get only aliases of the given domain name
@@ -17098,15 +17664,31 @@ type DeleteAliasVariables = {
17098
17664
  * Delete an Alias with the specified ID.
17099
17665
  */
17100
17666
  declare const deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
17101
- type ListDeploymentAliasesPathParams = {
17667
+ type GetCertsError = ErrorWrapper<undefined>;
17668
+ type GetCertsResponse = {
17669
+ certs: {
17670
+ cn: string;
17671
+ uid: string;
17672
+ /**
17673
+ * @format date-time
17674
+ */
17675
+ created: string;
17676
+ /**
17677
+ * @format date-time
17678
+ */
17679
+ expiration: string;
17680
+ autoRenew: boolean;
17681
+ }[];
17682
+ };
17683
+ type GetCertsVariables = FetcherExtraProps;
17684
+ declare const getCerts: (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
17685
+ type GetCertByIdPathParams = {
17102
17686
  /**
17103
- * The ID of the deployment the aliases should be listed for
17104
- *
17105
- * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17687
+ * The cert id
17106
17688
  */
17107
17689
  id: string;
17108
17690
  };
17109
- type ListDeploymentAliasesQueryParams = {
17691
+ type GetCertByIdQueryParams = {
17110
17692
  /**
17111
17693
  * The Team identifier to perform the request on behalf of.
17112
17694
  */
@@ -17116,192 +17698,25 @@ type ListDeploymentAliasesQueryParams = {
17116
17698
  */
17117
17699
  slug?: string;
17118
17700
  };
17119
- type ListDeploymentAliasesError = ErrorWrapper<undefined>;
17120
- type ListDeploymentAliasesResponse = {
17701
+ type GetCertByIdError = ErrorWrapper<undefined>;
17702
+ type GetCertByIdResponse = {
17703
+ id: string;
17704
+ createdAt: number;
17705
+ expiresAt: number;
17706
+ autoRenew: boolean;
17707
+ cns: string[];
17708
+ };
17709
+ type GetCertByIdVariables = {
17710
+ pathParams: GetCertByIdPathParams;
17711
+ queryParams?: GetCertByIdQueryParams;
17712
+ } & FetcherExtraProps;
17713
+ /**
17714
+ * Get cert by id
17715
+ */
17716
+ declare const getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
17717
+ type RemoveCertPathParams = {
17121
17718
  /**
17122
- * A list of the aliases assigned to the deployment
17123
- */
17124
- aliases: {
17125
- /**
17126
- * The unique identifier of the alias
17127
- *
17128
- * @example 2WjyKQmM8ZnGcJsPWMrHRHrE
17129
- */
17130
- uid: string;
17131
- /**
17132
- * The alias name, it could be a `.vercel.app` subdomain or a custom domain
17133
- *
17134
- * @example my-alias.vercel.app
17135
- */
17136
- alias: string;
17137
- /**
17138
- * The date when the alias was created
17139
- *
17140
- * @format date-time
17141
- * @example 2017-04-26T23:00:34.232Z
17142
- */
17143
- created: string;
17144
- /**
17145
- * Target destination domain for redirect when the alias is a redirect
17146
- */
17147
- redirect?: string | null;
17148
- /**
17149
- * The protection bypass for the alias
17150
- */
17151
- protectionBypass?: {
17152
- [key: string]: {
17153
- createdAt: number;
17154
- createdBy: string;
17155
- scope: 'shareable-link';
17156
- } | {
17157
- createdAt: number;
17158
- lastUpdatedAt: number;
17159
- lastUpdatedBy: string;
17160
- access: 'requested' | 'granted';
17161
- scope: 'user';
17162
- } | {
17163
- createdAt: number;
17164
- createdBy: string;
17165
- scope: 'alias-protection-override';
17166
- } | {
17167
- createdAt: number;
17168
- lastUpdatedAt: number;
17169
- lastUpdatedBy: string;
17170
- scope: 'email_invite';
17171
- };
17172
- };
17173
- }[];
17174
- };
17175
- type ListDeploymentAliasesVariables = {
17176
- pathParams: ListDeploymentAliasesPathParams;
17177
- queryParams?: ListDeploymentAliasesQueryParams;
17178
- } & FetcherExtraProps;
17179
- /**
17180
- * Retrieves all Aliases for the Deployment with the given ID. The authenticated user or team must own the deployment.
17181
- */
17182
- declare const listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
17183
- type AssignAliasPathParams = {
17184
- /**
17185
- * The ID of the deployment the aliases should be listed for
17186
- *
17187
- * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17188
- */
17189
- id: string;
17190
- };
17191
- type AssignAliasQueryParams = {
17192
- /**
17193
- * The Team identifier to perform the request on behalf of.
17194
- */
17195
- teamId?: string;
17196
- /**
17197
- * The Team slug to perform the request on behalf of.
17198
- */
17199
- slug?: string;
17200
- };
17201
- type AssignAliasError = ErrorWrapper<undefined>;
17202
- type AssignAliasResponse = {
17203
- /**
17204
- * The unique identifier of the alias
17205
- *
17206
- * @example 2WjyKQmM8ZnGcJsPWMrHRHrE
17207
- */
17208
- uid: string;
17209
- /**
17210
- * The assigned alias name
17211
- *
17212
- * @example my-alias.vercel.app
17213
- */
17214
- alias: string;
17215
- /**
17216
- * The date when the alias was created
17217
- *
17218
- * @format date-time
17219
- * @example 2017-04-26T23:00:34.232Z
17220
- */
17221
- created: string;
17222
- /**
17223
- * The unique identifier of the previously aliased deployment, only received when the alias was used before
17224
- *
17225
- * @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
17226
- */
17227
- oldDeploymentId?: string | null;
17228
- };
17229
- type AssignAliasRequestBody = {
17230
- /**
17231
- * The alias we want to assign to the deployment defined in the URL
17232
- *
17233
- * @example my-alias.vercel.app
17234
- */
17235
- alias?: string;
17236
- /**
17237
- * The redirect property will take precedence over the deployment id from the URL and consists of a hostname (like test.com) to which the alias should redirect using status code 307
17238
- *
17239
- * @example null
17240
- */
17241
- redirect?: string | null;
17242
- };
17243
- type AssignAliasVariables = {
17244
- body?: AssignAliasRequestBody;
17245
- pathParams: AssignAliasPathParams;
17246
- queryParams?: AssignAliasQueryParams;
17247
- } & FetcherExtraProps;
17248
- /**
17249
- * Creates a new alias for the deployment with the given deployment ID. The authenticated user or team must own this deployment. If the desired alias is already assigned to another deployment, then it will be removed from the old deployment and assigned to the new one.
17250
- */
17251
- declare const assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
17252
- type GetCertsError = ErrorWrapper<undefined>;
17253
- type GetCertsResponse = {
17254
- certs: {
17255
- cn: string;
17256
- uid: string;
17257
- /**
17258
- * @format date-time
17259
- */
17260
- created: string;
17261
- /**
17262
- * @format date-time
17263
- */
17264
- expiration: string;
17265
- autoRenew: boolean;
17266
- }[];
17267
- };
17268
- type GetCertsVariables = FetcherExtraProps;
17269
- declare const getCerts: (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
17270
- type GetCertByIdPathParams = {
17271
- /**
17272
- * The cert id
17273
- */
17274
- id: string;
17275
- };
17276
- type GetCertByIdQueryParams = {
17277
- /**
17278
- * The Team identifier to perform the request on behalf of.
17279
- */
17280
- teamId?: string;
17281
- /**
17282
- * The Team slug to perform the request on behalf of.
17283
- */
17284
- slug?: string;
17285
- };
17286
- type GetCertByIdError = ErrorWrapper<undefined>;
17287
- type GetCertByIdResponse = {
17288
- id: string;
17289
- createdAt: number;
17290
- expiresAt: number;
17291
- autoRenew: boolean;
17292
- cns: string[];
17293
- };
17294
- type GetCertByIdVariables = {
17295
- pathParams: GetCertByIdPathParams;
17296
- queryParams?: GetCertByIdQueryParams;
17297
- } & FetcherExtraProps;
17298
- /**
17299
- * Get cert by id
17300
- */
17301
- declare const getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
17302
- type RemoveCertPathParams = {
17303
- /**
17304
- * The cert id to remove
17719
+ * The cert id to remove
17305
17720
  */
17306
17721
  id: string;
17307
17722
  };
@@ -17423,7 +17838,7 @@ type ListDeploymentFilesVariables = {
17423
17838
  queryParams?: ListDeploymentFilesQueryParams;
17424
17839
  } & FetcherExtraProps;
17425
17840
  /**
17426
- * Allows to retrieve the file structure of a deployment by supplying the deployment unique identifier.
17841
+ * Allows to retrieve the file structure of the source code of a deployment by supplying the deployment unique identifier. If the deployment was created with the Vercel CLI or the API directly with the `files` key, it will have a file tree that can be retrievable.
17427
17842
  */
17428
17843
  declare const listDeploymentFiles: (variables: ListDeploymentFilesVariables, signal?: AbortSignal) => Promise<ListDeploymentFilesResponse>;
17429
17844
  type GetDeploymentFileContentsPathParams = {
@@ -17710,7 +18125,7 @@ type GetDeploymentsResponse = {
17710
18125
  * The project settings which was used for this deployment
17711
18126
  */
17712
18127
  projectSettings?: {
17713
- framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
18128
+ framework?: 'angular' | 'astro' | 'blitzjs' | 'brunch' | 'create-react-app' | 'docusaurus' | 'docusaurus-2' | 'dojo' | 'eleventy' | 'ember' | 'fasthtml' | 'gatsby' | 'gridsome' | 'hexo' | 'hugo' | 'hydrogen' | 'ionic-angular' | 'ionic-react' | 'jekyll' | 'middleman' | 'nextjs' | 'nuxtjs' | 'parcel' | 'polymer' | 'preact' | 'react-router' | 'redwoodjs' | 'remix' | 'saber' | 'sanity' | 'sanity-v3' | 'sapper' | 'scully' | 'solidstart' | 'solidstart-1' | 'stencil' | 'storybook' | 'svelte' | 'sveltekit' | 'sveltekit-1' | 'umijs' | 'vite' | 'vitepress' | 'vue' | 'vuepress' | 'zola' | null;
17714
18129
  gitForkProtection?: boolean;
17715
18130
  customerSupportCodeVisibility?: boolean;
17716
18131
  gitLFS?: boolean;
@@ -19168,6 +19583,7 @@ declare const operationsByTag: {
19168
19583
  };
19169
19584
  deployments: {
19170
19585
  getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<undefined>;
19586
+ updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
19171
19587
  getDeployment: (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
19172
19588
  aliasAssignedAt?: number | boolean | null;
19173
19589
  alwaysRefuseToBuild?: boolean;
@@ -19183,7 +19599,7 @@ declare const operationsByTag: {
19183
19599
  projectSettings: {
19184
19600
  buildCommand?: string | null;
19185
19601
  devCommand?: string | null;
19186
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
19602
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
19187
19603
  commandForIgnoringBuildStep?: string | null;
19188
19604
  installCommand?: string | null;
19189
19605
  outputDirectory?: string | null;
@@ -19556,8 +19972,11 @@ declare const operationsByTag: {
19556
19972
  defaultRoute?: string;
19557
19973
  /**
19558
19974
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
19975
+ *
19976
+ * @maxItems 2
19977
+ * @minItems 2
19559
19978
  */
19560
- groupIds: string[];
19979
+ groupIds: (string | string)[];
19561
19980
  } | {
19562
19981
  /**
19563
19982
  * A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment.
@@ -19582,8 +20001,22 @@ declare const operationsByTag: {
19582
20001
  defaultRoute?: string;
19583
20002
  /**
19584
20003
  * The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together.
20004
+ *
20005
+ * @maxItems 2
20006
+ * @minItems 2
19585
20007
  */
19586
- groupIds: string[];
20008
+ groupIds: (string | string)[];
20009
+ };
20010
+ /**
20011
+ * Since February 2025 the configuration must include snapshot data at the time of deployment creation to capture properties for the /deployments/:id/config endpoint utilized for displaying Deployment Configuration on the frontend This is optional because older deployments may not have this data captured
20012
+ */
20013
+ config?: {
20014
+ version?: number;
20015
+ functionType: "fluid" | "standard";
20016
+ functionMemoryType: "standard" | "standard_legacy" | "performance";
20017
+ functionTimeout: number | null;
20018
+ secureComputePrimaryRegion: string | null;
20019
+ secureComputeFallbackRegion: string | null;
19587
20020
  };
19588
20021
  } | {
19589
20022
  alias?: string[];
@@ -19768,175 +20201,8 @@ declare const operationsByTag: {
19768
20201
  getDeployments: (variables: GetDeploymentsVariables, signal?: AbortSignal) => Promise<GetDeploymentsResponse>;
19769
20202
  deleteDeployment: (variables: DeleteDeploymentVariables, signal?: AbortSignal) => Promise<DeleteDeploymentResponse>;
19770
20203
  };
19771
- domains: {
19772
- buyDomain: (variables: BuyDomainVariables, signal?: AbortSignal) => Promise<BuyDomainResponse>;
19773
- checkDomainPrice: (variables: CheckDomainPriceVariables, signal?: AbortSignal) => Promise<CheckDomainPriceResponse>;
19774
- checkDomainStatus: (variables: CheckDomainStatusVariables, signal?: AbortSignal) => Promise<CheckDomainStatusResponse>;
19775
- getDomainTransfer: (variables: GetDomainTransferVariables, signal?: AbortSignal) => Promise<GetDomainTransferResponse>;
19776
- getDomainConfig: (variables: GetDomainConfigVariables, signal?: AbortSignal) => Promise<GetDomainConfigResponse>;
19777
- getDomain: (variables: GetDomainVariables, signal?: AbortSignal) => Promise<GetDomainResponse>;
19778
- getDomains: (variables: GetDomainsVariables, signal?: AbortSignal) => Promise<GetDomainsResponse>;
19779
- createOrTransferDomain: (variables: CreateOrTransferDomainVariables, signal?: AbortSignal) => Promise<CreateOrTransferDomainResponse>;
19780
- patchDomain: (variables: PatchDomainVariables, signal?: AbortSignal) => Promise<{
19781
- moved: boolean;
19782
- } | {
19783
- moved: boolean;
19784
- token: string;
19785
- } | {
19786
- renew?: boolean;
19787
- customNameservers?: string[];
19788
- zone?: boolean;
19789
- }>;
19790
- deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
19791
- };
19792
- dns: {
19793
- getRecords: (variables: GetRecordsVariables, signal?: AbortSignal) => Promise<string | {
19794
- records: {
19795
- id: string;
19796
- slug: string;
19797
- name: string;
19798
- type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
19799
- value: string;
19800
- mxPriority?: number;
19801
- priority?: number;
19802
- creator: string;
19803
- created: number | null;
19804
- updated: number | null;
19805
- createdAt: number | null;
19806
- updatedAt: number | null;
19807
- }[];
19808
- } | {
19809
- records: {
19810
- id: string;
19811
- slug: string;
19812
- name: string;
19813
- type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
19814
- value: string;
19815
- mxPriority?: number;
19816
- priority?: number;
19817
- creator: string;
19818
- created: number | null;
19819
- updated: number | null;
19820
- createdAt: number | null;
19821
- updatedAt: number | null;
19822
- }[];
19823
- pagination: Pagination;
19824
- }>;
19825
- createRecord: (variables: CreateRecordVariables, signal?: AbortSignal) => Promise<{
19826
- uid: string;
19827
- updated: number;
19828
- } | {
19829
- /**
19830
- * The id of the newly created DNS record
19831
- *
19832
- * @example rec_V0fra8eEgQwEpFhYG2vTzC3K
19833
- */
19834
- uid: string;
19835
- }>;
19836
- updateRecord: (variables: UpdateRecordVariables, signal?: AbortSignal) => Promise<UpdateRecordResponse>;
19837
- removeRecord: (variables: RemoveRecordVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
19838
- };
19839
- edgeConfig: {
19840
- getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
19841
- createEdgeConfig: (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
19842
- getEdgeConfig: (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
19843
- updateEdgeConfig: (variables: UpdateEdgeConfigVariables, signal?: AbortSignal) => Promise<UpdateEdgeConfigResponse>;
19844
- deleteEdgeConfig: (variables: DeleteEdgeConfigVariables, signal?: AbortSignal) => Promise<undefined>;
19845
- getEdgeConfigItems: (variables: GetEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
19846
- patchEdgeConfigItems: (variables: PatchEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<PatchEdgeConfigItemsResponse>;
19847
- getEdgeConfigSchema: (variables: GetEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
19848
- patchEdgeConfigSchema: (variables: PatchEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
19849
- deleteEdgeConfigSchema: (variables: DeleteEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<undefined>;
19850
- getEdgeConfigItem: (variables: GetEdgeConfigItemVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
19851
- getEdgeConfigTokens: (variables: GetEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
19852
- deleteEdgeConfigTokens: (variables: DeleteEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<undefined>;
19853
- getEdgeConfigToken: (variables: GetEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
19854
- createEdgeConfigToken: (variables: CreateEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigTokenResponse>;
19855
- getEdgeConfigBackup: (variables: GetEdgeConfigBackupVariables, signal?: AbortSignal) => Promise<{
19856
- id: string;
19857
- lastModified: number;
19858
- backup: {
19859
- digest: string;
19860
- items: {
19861
- [key: string]: {
19862
- updatedAt: number;
19863
- value: EdgeConfigItemValue;
19864
- description?: string;
19865
- createdAt: number;
19866
- };
19867
- };
19868
- /**
19869
- * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
19870
- */
19871
- slug: string;
19872
- updatedAt: number;
19873
- };
19874
- metadata: {
19875
- updatedAt?: string;
19876
- updatedBy?: string;
19877
- itemsCount?: number;
19878
- itemsBytes?: number;
19879
- };
19880
- user?: {
19881
- id: string;
19882
- username: string;
19883
- email: string;
19884
- name?: string;
19885
- avatar?: string;
19886
- };
19887
- } | {
19888
- user: {
19889
- id: string;
19890
- username: string;
19891
- email: string;
19892
- name?: string;
19893
- avatar?: string;
19894
- };
19895
- id: string;
19896
- lastModified: number;
19897
- backup: {
19898
- digest: string;
19899
- items: {
19900
- [key: string]: {
19901
- updatedAt: number;
19902
- value: EdgeConfigItemValue;
19903
- description?: string;
19904
- createdAt: number;
19905
- };
19906
- };
19907
- /**
19908
- * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
19909
- */
19910
- slug: string;
19911
- updatedAt: number;
19912
- };
19913
- metadata: {
19914
- updatedAt?: string;
19915
- updatedBy?: string;
19916
- itemsCount?: number;
19917
- itemsBytes?: number;
19918
- };
19919
- }>;
19920
- getEdgeConfigBackups: (variables: GetEdgeConfigBackupsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigBackupsResponse>;
19921
- };
19922
- user: {
19923
- listUserEvents: (variables: ListUserEventsVariables, signal?: AbortSignal) => Promise<ListUserEventsResponse>;
19924
- getAuthUser: (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
19925
- requestDelete: (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
19926
- };
19927
- marketplace: {
19928
- getAccountInfo: (variables: GetAccountInfoVariables, signal?: AbortSignal) => Promise<GetAccountInfoResponse>;
19929
- getMember: (variables: GetMemberVariables, signal?: AbortSignal) => Promise<GetMemberResponse>;
19930
- createEvent: (variables: CreateEventVariables, signal?: AbortSignal) => Promise<undefined>;
19931
- submitBillingData: (variables: SubmitBillingDataVariables, signal?: AbortSignal) => Promise<undefined>;
19932
- submitInvoice: (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
19933
- getInvoice: (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
19934
- updateInvoice: (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
19935
- updateResourceSecrets: (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
19936
- updateResourceSecretsById: (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
19937
- exchangeSsoToken: (variables: ExchangeSsoTokenVariables, signal?: AbortSignal) => Promise<ExchangeSsoTokenResponse>;
19938
- };
19939
20204
  integrations: {
20205
+ updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
19940
20206
  getConfigurations: (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
19941
20207
  /**
19942
20208
  * A timestamp that tells you when the configuration was installed successfully
@@ -20035,41 +20301,14 @@ declare const operationsByTag: {
20035
20301
  * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
20036
20302
  */
20037
20303
  installationType?: "marketplace" | "external";
20038
- billingPlan?: {
20039
- id: string;
20040
- type: "prepayment" | "subscription";
20041
- name: string;
20042
- scope?: "installation" | "resource";
20043
- description: string;
20044
- paymentMethodRequired?: boolean;
20045
- preauthorizationAmount?: number;
20046
- cost?: string;
20047
- details?: {
20048
- label: string;
20049
- value?: string;
20050
- }[];
20051
- heightlightedDetails?: {
20052
- label: string;
20053
- value?: string;
20054
- }[];
20055
- quote?: {
20056
- line: string;
20057
- amount: string;
20058
- }[];
20059
- effectiveDate?: string;
20060
- };
20061
- billingTotal?: string;
20062
- periodStart?: string;
20063
- periodEnd?: string;
20064
20304
  }[] | {
20065
20305
  integration: {
20066
20306
  name: string;
20067
20307
  icon: string;
20068
- category: string;
20069
20308
  isLegacy: boolean;
20070
20309
  flags?: string[];
20071
20310
  assignedBetaLabelAt?: number;
20072
- tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experiments" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
20311
+ tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
20073
20312
  };
20074
20313
  /**
20075
20314
  * A timestamp that tells you when the configuration was installed successfully
@@ -20168,60 +20407,8 @@ declare const operationsByTag: {
20168
20407
  * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
20169
20408
  */
20170
20409
  installationType?: "marketplace" | "external";
20171
- billingPlan?: {
20172
- id: string;
20173
- type: "prepayment" | "subscription";
20174
- name: string;
20175
- scope?: "installation" | "resource";
20176
- description: string;
20177
- paymentMethodRequired?: boolean;
20178
- preauthorizationAmount?: number;
20179
- cost?: string;
20180
- details?: {
20181
- label: string;
20182
- value?: string;
20183
- }[];
20184
- heightlightedDetails?: {
20185
- label: string;
20186
- value?: string;
20187
- }[];
20188
- quote?: {
20189
- line: string;
20190
- amount: string;
20191
- }[];
20192
- effectiveDate?: string;
20193
- };
20194
- billingTotal?: string;
20195
- periodStart?: string;
20196
- periodEnd?: string;
20197
20410
  }[]>;
20198
20411
  getConfiguration: (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
20199
- billingPlan?: {
20200
- id: string;
20201
- type: "prepayment" | "subscription";
20202
- name: string;
20203
- scope?: "installation" | "resource";
20204
- description: string;
20205
- paymentMethodRequired?: boolean;
20206
- preauthorizationAmount?: number;
20207
- cost?: string;
20208
- details?: {
20209
- label: string;
20210
- value?: string;
20211
- }[];
20212
- heightlightedDetails?: {
20213
- label: string;
20214
- value?: string;
20215
- }[];
20216
- quote?: {
20217
- line: string;
20218
- amount: string;
20219
- }[];
20220
- effectiveDate?: string;
20221
- };
20222
- billingTotal?: string;
20223
- periodStart?: string;
20224
- periodEnd?: string;
20225
20412
  /**
20226
20413
  * A timestamp that tells you when the configuration was installed successfully
20227
20414
  *
@@ -20413,42 +20600,225 @@ declare const operationsByTag: {
20413
20600
  */
20414
20601
  deletedAt?: number | null;
20415
20602
  /**
20416
- * A timestamp that tells you when the configuration deletion has been started for cases when the deletion needs to be settled/approved by partners, such as when marketplace invoices have been paid.
20603
+ * A timestamp that tells you when the configuration deletion has been started for cases when the deletion needs to be settled/approved by partners, such as when marketplace invoices have been paid.
20604
+ *
20605
+ * @example 1558531915505
20606
+ */
20607
+ deleteRequestedAt?: number | null;
20608
+ disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
20609
+ /**
20610
+ * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
20611
+ */
20612
+ installationType?: "marketplace" | "external";
20613
+ canConfigureOpenTelemetry?: boolean;
20614
+ }>;
20615
+ deleteConfiguration: (variables: DeleteConfigurationVariables, signal?: AbortSignal) => Promise<undefined>;
20616
+ gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
20617
+ searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
20618
+ gitAccount: {
20619
+ provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
20620
+ namespaceId: string | number | null;
20621
+ };
20622
+ repos: {
20623
+ id: string | number;
20624
+ provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
20625
+ url: string;
20626
+ name: string;
20627
+ slug: string;
20628
+ namespace: string;
20629
+ owner: {
20630
+ id: string | number;
20631
+ name: string;
20632
+ };
20633
+ ownerType: "user" | "team";
20634
+ private: boolean;
20635
+ defaultBranch: string;
20636
+ updatedAt: number;
20637
+ }[];
20638
+ }>;
20639
+ };
20640
+ domains: {
20641
+ buyDomain: (variables: BuyDomainVariables, signal?: AbortSignal) => Promise<BuyDomainResponse>;
20642
+ checkDomainPrice: (variables: CheckDomainPriceVariables, signal?: AbortSignal) => Promise<CheckDomainPriceResponse>;
20643
+ checkDomainStatus: (variables: CheckDomainStatusVariables, signal?: AbortSignal) => Promise<CheckDomainStatusResponse>;
20644
+ getDomainTransfer: (variables: GetDomainTransferVariables, signal?: AbortSignal) => Promise<GetDomainTransferResponse>;
20645
+ getDomainConfig: (variables: GetDomainConfigVariables, signal?: AbortSignal) => Promise<GetDomainConfigResponse>;
20646
+ getDomain: (variables: GetDomainVariables, signal?: AbortSignal) => Promise<GetDomainResponse>;
20647
+ getDomains: (variables: GetDomainsVariables, signal?: AbortSignal) => Promise<GetDomainsResponse>;
20648
+ createOrTransferDomain: (variables: CreateOrTransferDomainVariables, signal?: AbortSignal) => Promise<CreateOrTransferDomainResponse>;
20649
+ patchDomain: (variables: PatchDomainVariables, signal?: AbortSignal) => Promise<{
20650
+ moved: boolean;
20651
+ } | {
20652
+ moved: boolean;
20653
+ token: string;
20654
+ } | {
20655
+ renew?: boolean;
20656
+ customNameservers?: string[];
20657
+ zone?: boolean;
20658
+ }>;
20659
+ deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
20660
+ };
20661
+ dns: {
20662
+ getRecords: (variables: GetRecordsVariables, signal?: AbortSignal) => Promise<string | {
20663
+ records: {
20664
+ id: string;
20665
+ slug: string;
20666
+ name: string;
20667
+ type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
20668
+ value: string;
20669
+ mxPriority?: number;
20670
+ priority?: number;
20671
+ creator: string;
20672
+ created: number | null;
20673
+ updated: number | null;
20674
+ createdAt: number | null;
20675
+ updatedAt: number | null;
20676
+ }[];
20677
+ } | {
20678
+ records: {
20679
+ id: string;
20680
+ slug: string;
20681
+ name: string;
20682
+ type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
20683
+ value: string;
20684
+ mxPriority?: number;
20685
+ priority?: number;
20686
+ creator: string;
20687
+ created: number | null;
20688
+ updated: number | null;
20689
+ createdAt: number | null;
20690
+ updatedAt: number | null;
20691
+ }[];
20692
+ pagination: Pagination;
20693
+ }>;
20694
+ createRecord: (variables: CreateRecordVariables, signal?: AbortSignal) => Promise<{
20695
+ uid: string;
20696
+ updated: number;
20697
+ } | {
20698
+ /**
20699
+ * The id of the newly created DNS record
20417
20700
  *
20418
- * @example 1558531915505
20419
- */
20420
- deleteRequestedAt?: number | null;
20421
- disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
20422
- /**
20423
- * Defines the installation type. - 'external' integrations are installed via the existing integrations flow - 'marketplace' integrations are natively installed: - when accepting the TOS of a partner during the store creation process - if undefined, assume 'external'
20701
+ * @example rec_V0fra8eEgQwEpFhYG2vTzC3K
20424
20702
  */
20425
- installationType?: "marketplace" | "external";
20426
- canConfigureOpenTelemetry?: boolean;
20703
+ uid: string;
20427
20704
  }>;
20428
- deleteConfiguration: (variables: DeleteConfigurationVariables, signal?: AbortSignal) => Promise<undefined>;
20429
- gitNamespaces: (variables: GitNamespacesVariables, signal?: AbortSignal) => Promise<GitNamespacesResponse>;
20430
- searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
20431
- gitAccount: {
20432
- provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
20433
- namespaceId: string | number | null;
20434
- };
20435
- repos: {
20436
- id: string | number;
20437
- provider: "github" | "github-custom-host" | "gitlab" | "bitbucket";
20438
- url: string;
20439
- name: string;
20705
+ updateRecord: (variables: UpdateRecordVariables, signal?: AbortSignal) => Promise<UpdateRecordResponse>;
20706
+ removeRecord: (variables: RemoveRecordVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20707
+ };
20708
+ logDrains: {
20709
+ getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
20710
+ deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
20711
+ getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
20712
+ createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
20713
+ getIntegrationLogDrains: (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
20714
+ createLogDrain: (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
20715
+ deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
20716
+ };
20717
+ edgeConfig: {
20718
+ getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
20719
+ createEdgeConfig: (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
20720
+ getEdgeConfig: (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
20721
+ updateEdgeConfig: (variables: UpdateEdgeConfigVariables, signal?: AbortSignal) => Promise<UpdateEdgeConfigResponse>;
20722
+ deleteEdgeConfig: (variables: DeleteEdgeConfigVariables, signal?: AbortSignal) => Promise<undefined>;
20723
+ getEdgeConfigItems: (variables: GetEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
20724
+ patchEdgeConfigItems: (variables: PatchEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<PatchEdgeConfigItemsResponse>;
20725
+ getEdgeConfigSchema: (variables: GetEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
20726
+ patchEdgeConfigSchema: (variables: PatchEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
20727
+ deleteEdgeConfigSchema: (variables: DeleteEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<undefined>;
20728
+ getEdgeConfigItem: (variables: GetEdgeConfigItemVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
20729
+ getEdgeConfigTokens: (variables: GetEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
20730
+ deleteEdgeConfigTokens: (variables: DeleteEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<undefined>;
20731
+ getEdgeConfigToken: (variables: GetEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
20732
+ createEdgeConfigToken: (variables: CreateEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigTokenResponse>;
20733
+ getEdgeConfigBackup: (variables: GetEdgeConfigBackupVariables, signal?: AbortSignal) => Promise<{
20734
+ id: string;
20735
+ lastModified: number;
20736
+ backup: {
20737
+ digest: string;
20738
+ items: {
20739
+ [key: string]: {
20740
+ updatedAt: number;
20741
+ value: EdgeConfigItemValue;
20742
+ description?: string;
20743
+ createdAt: number;
20744
+ };
20745
+ };
20746
+ /**
20747
+ * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
20748
+ */
20440
20749
  slug: string;
20441
- namespace: string;
20442
- owner: {
20443
- id: string | number;
20444
- name: string;
20750
+ updatedAt: number;
20751
+ };
20752
+ metadata: {
20753
+ updatedAt?: string;
20754
+ updatedBy?: string;
20755
+ itemsCount?: number;
20756
+ itemsBytes?: number;
20757
+ };
20758
+ user?: {
20759
+ id: string;
20760
+ username: string;
20761
+ email: string;
20762
+ name?: string;
20763
+ avatar?: string;
20764
+ };
20765
+ } | {
20766
+ user: {
20767
+ id: string;
20768
+ username: string;
20769
+ email: string;
20770
+ name?: string;
20771
+ avatar?: string;
20772
+ };
20773
+ id: string;
20774
+ lastModified: number;
20775
+ backup: {
20776
+ digest: string;
20777
+ items: {
20778
+ [key: string]: {
20779
+ updatedAt: number;
20780
+ value: EdgeConfigItemValue;
20781
+ description?: string;
20782
+ createdAt: number;
20783
+ };
20445
20784
  };
20446
- ownerType: "user" | "team";
20447
- private: boolean;
20448
- defaultBranch: string;
20785
+ /**
20786
+ * Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
20787
+ */
20788
+ slug: string;
20449
20789
  updatedAt: number;
20450
- }[];
20790
+ };
20791
+ metadata: {
20792
+ updatedAt?: string;
20793
+ updatedBy?: string;
20794
+ itemsCount?: number;
20795
+ itemsBytes?: number;
20796
+ };
20451
20797
  }>;
20798
+ getEdgeConfigBackups: (variables: GetEdgeConfigBackupsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigBackupsResponse>;
20799
+ };
20800
+ user: {
20801
+ listUserEvents: (variables: ListUserEventsVariables, signal?: AbortSignal) => Promise<ListUserEventsResponse>;
20802
+ getAuthUser: (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
20803
+ requestDelete: (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
20804
+ };
20805
+ marketplace: {
20806
+ getAccountInfo: (variables: GetAccountInfoVariables, signal?: AbortSignal) => Promise<GetAccountInfoResponse>;
20807
+ getMember: (variables: GetMemberVariables, signal?: AbortSignal) => Promise<GetMemberResponse>;
20808
+ createEvent: (variables: CreateEventVariables, signal?: AbortSignal) => Promise<undefined>;
20809
+ submitBillingData: (variables: SubmitBillingDataVariables, signal?: AbortSignal) => Promise<undefined>;
20810
+ submitInvoice: (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
20811
+ getInvoice: (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
20812
+ updateInvoice: (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
20813
+ submitPrepaymentBalances: (variables: SubmitPrepaymentBalancesVariables, signal?: AbortSignal) => Promise<undefined>;
20814
+ updateResourceSecrets: (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
20815
+ updateResourceSecretsById: (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
20816
+ importResource: (variables: ImportResourceVariables, signal?: AbortSignal) => Promise<ImportResourceResponse>;
20817
+ exchangeSsoToken: (variables: ExchangeSsoTokenVariables, signal?: AbortSignal) => Promise<ExchangeSsoTokenResponse>;
20818
+ postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
20819
+ patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
20820
+ deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
20821
+ putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: (variables: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, signal?: AbortSignal) => Promise<PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse>;
20452
20822
  };
20453
20823
  authentication: {
20454
20824
  exchangeSsoToken: (variables: ExchangeSsoTokenVariables, signal?: AbortSignal) => Promise<ExchangeSsoTokenResponse>;
@@ -20457,14 +20827,8 @@ declare const operationsByTag: {
20457
20827
  getAuthToken: (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
20458
20828
  deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
20459
20829
  };
20460
- logDrains: {
20461
- getIntegrationLogDrains: (variables: GetIntegrationLogDrainsVariables, signal?: AbortSignal) => Promise<GetIntegrationLogDrainsResponse>;
20462
- createLogDrain: (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
20463
- deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
20464
- getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
20465
- deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
20466
- getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
20467
- createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
20830
+ apiExperimentation: {
20831
+ getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
20468
20832
  };
20469
20833
  projectMembers: {
20470
20834
  getProjectMembers: (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
@@ -20522,7 +20886,7 @@ declare const operationsByTag: {
20522
20886
  *
20523
20887
  * @example CONTRIBUTOR
20524
20888
  */
20525
- teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
20889
+ teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
20526
20890
  }[];
20527
20891
  pagination: {
20528
20892
  hasNext: boolean;
@@ -20550,11 +20914,11 @@ declare const operationsByTag: {
20550
20914
  removeProjectMember: (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
20551
20915
  };
20552
20916
  environment: {
20553
- postV1ProjectsIdOrNameCustomEnvironments: (variables: PostV1ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20917
+ createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20554
20918
  getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
20555
- getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20556
- patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20557
- deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: (variables: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20919
+ getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20920
+ updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20921
+ removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
20558
20922
  };
20559
20923
  security: {
20560
20924
  updateAttackChallengeMode: (variables: UpdateAttackChallengeModeVariables, signal?: AbortSignal) => Promise<UpdateAttackChallengeModeResponse>;
@@ -20680,11 +21044,25 @@ declare const operationsByTag: {
20680
21044
  *
20681
21045
  * @example MEMBER
20682
21046
  */
20683
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
21047
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
21048
+ /**
21049
+ * The team roles of the user
21050
+ *
21051
+ * @example MEMBER
21052
+ */
21053
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
21054
+ /**
21055
+ * The team permissions of the user
21056
+ *
21057
+ * @example CreateProject
21058
+ */
21059
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
20684
21060
  } | {
20685
21061
  uid: string;
20686
21062
  username: string;
20687
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
21063
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
21064
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
21065
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
20688
21066
  }>;
20689
21067
  requestAccessToTeam: (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
20690
21068
  getTeamAccessRequest: (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
@@ -20704,7 +21082,7 @@ declare const operationsByTag: {
20704
21082
  projectsMetadata: {
20705
21083
  id: string;
20706
21084
  name: string;
20707
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
21085
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
20708
21086
  latestDeployment?: string;
20709
21087
  }[] | null;
20710
21088
  /**
@@ -20797,11 +21175,11 @@ declare const operationsByTag: {
20797
21175
  deleteWebhook: (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
20798
21176
  };
20799
21177
  aliases: {
21178
+ listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
21179
+ assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
20800
21180
  listAliases: (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
20801
21181
  getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
20802
21182
  deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
20803
- listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
20804
- assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
20805
21183
  };
20806
21184
  certs: {
20807
21185
  getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
@@ -20893,6 +21271,11 @@ type components_CreateConfigurableLogDrainQueryParams = CreateConfigurableLogDra
20893
21271
  type components_CreateConfigurableLogDrainRequestBody = CreateConfigurableLogDrainRequestBody;
20894
21272
  type components_CreateConfigurableLogDrainResponse = CreateConfigurableLogDrainResponse;
20895
21273
  type components_CreateConfigurableLogDrainVariables = CreateConfigurableLogDrainVariables;
21274
+ type components_CreateCustomEnvironmentError = CreateCustomEnvironmentError;
21275
+ type components_CreateCustomEnvironmentPathParams = CreateCustomEnvironmentPathParams;
21276
+ type components_CreateCustomEnvironmentQueryParams = CreateCustomEnvironmentQueryParams;
21277
+ type components_CreateCustomEnvironmentRequestBody = CreateCustomEnvironmentRequestBody;
21278
+ type components_CreateCustomEnvironmentVariables = CreateCustomEnvironmentVariables;
20896
21279
  type components_CreateDeploymentError = CreateDeploymentError;
20897
21280
  type components_CreateDeploymentQueryParams = CreateDeploymentQueryParams;
20898
21281
  type components_CreateDeploymentRequestBody = CreateDeploymentRequestBody;
@@ -21029,11 +21412,9 @@ type components_DeleteTeamQueryParams = DeleteTeamQueryParams;
21029
21412
  type components_DeleteTeamRequestBody = DeleteTeamRequestBody;
21030
21413
  type components_DeleteTeamResponse = DeleteTeamResponse;
21031
21414
  type components_DeleteTeamVariables = DeleteTeamVariables;
21032
- type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError;
21033
- type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
21034
- type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
21035
- type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody;
21036
- type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables;
21415
+ type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
21416
+ type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
21417
+ type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables;
21037
21418
  type components_DeleteWebhookError = DeleteWebhookError;
21038
21419
  type components_DeleteWebhookPathParams = DeleteWebhookPathParams;
21039
21420
  type components_DeleteWebhookQueryParams = DeleteWebhookQueryParams;
@@ -21112,6 +21493,10 @@ type components_GetConfigurationVariables = GetConfigurationVariables;
21112
21493
  type components_GetConfigurationsError = GetConfigurationsError;
21113
21494
  type components_GetConfigurationsQueryParams = GetConfigurationsQueryParams;
21114
21495
  type components_GetConfigurationsVariables = GetConfigurationsVariables;
21496
+ type components_GetCustomEnvironmentError = GetCustomEnvironmentError;
21497
+ type components_GetCustomEnvironmentPathParams = GetCustomEnvironmentPathParams;
21498
+ type components_GetCustomEnvironmentQueryParams = GetCustomEnvironmentQueryParams;
21499
+ type components_GetCustomEnvironmentVariables = GetCustomEnvironmentVariables;
21115
21500
  type components_GetDeploymentError = GetDeploymentError;
21116
21501
  type components_GetDeploymentEventsError = GetDeploymentEventsError;
21117
21502
  type components_GetDeploymentEventsPathParams = GetDeploymentEventsPathParams;
@@ -21256,10 +21641,10 @@ type components_GetTeamsError = GetTeamsError;
21256
21641
  type components_GetTeamsQueryParams = GetTeamsQueryParams;
21257
21642
  type components_GetTeamsResponse = GetTeamsResponse;
21258
21643
  type components_GetTeamsVariables = GetTeamsVariables;
21259
- type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError;
21260
- type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
21261
- type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
21262
- type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables;
21644
+ type components_GetV1ExperimentationItemsError = GetV1ExperimentationItemsError;
21645
+ type components_GetV1ExperimentationItemsQueryParams = GetV1ExperimentationItemsQueryParams;
21646
+ type components_GetV1ExperimentationItemsResponse = GetV1ExperimentationItemsResponse;
21647
+ type components_GetV1ExperimentationItemsVariables = GetV1ExperimentationItemsVariables;
21263
21648
  type components_GetV9ProjectsIdOrNameCustomEnvironmentsError = GetV9ProjectsIdOrNameCustomEnvironmentsError;
21264
21649
  type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
21265
21650
  type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams;
@@ -21277,6 +21662,11 @@ type components_GitNamespacesError = GitNamespacesError;
21277
21662
  type components_GitNamespacesQueryParams = GitNamespacesQueryParams;
21278
21663
  type components_GitNamespacesResponse = GitNamespacesResponse;
21279
21664
  type components_GitNamespacesVariables = GitNamespacesVariables;
21665
+ type components_ImportResourceError = ImportResourceError;
21666
+ type components_ImportResourcePathParams = ImportResourcePathParams;
21667
+ type components_ImportResourceRequestBody = ImportResourceRequestBody;
21668
+ type components_ImportResourceResponse = ImportResourceResponse;
21669
+ type components_ImportResourceVariables = ImportResourceVariables;
21280
21670
  type components_InviteUserToTeamError = InviteUserToTeamError;
21281
21671
  type components_InviteUserToTeamRequestBody = InviteUserToTeamRequestBody;
21282
21672
  type components_InviteUserToTeamVariables = InviteUserToTeamVariables;
@@ -21351,25 +21741,28 @@ type components_PatchTeamPathParams = PatchTeamPathParams;
21351
21741
  type components_PatchTeamQueryParams = PatchTeamQueryParams;
21352
21742
  type components_PatchTeamRequestBody = PatchTeamRequestBody;
21353
21743
  type components_PatchTeamVariables = PatchTeamVariables;
21354
- type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError;
21355
- type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams;
21356
- type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams;
21357
- type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody;
21358
- type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables;
21744
+ type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
21745
+ type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
21746
+ type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody;
21747
+ type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables;
21359
21748
  type components_PauseProjectError = PauseProjectError;
21360
21749
  type components_PauseProjectPathParams = PauseProjectPathParams;
21361
21750
  type components_PauseProjectQueryParams = PauseProjectQueryParams;
21362
21751
  type components_PauseProjectVariables = PauseProjectVariables;
21363
- type components_PostV1ProjectsIdOrNameCustomEnvironmentsError = PostV1ProjectsIdOrNameCustomEnvironmentsError;
21364
- type components_PostV1ProjectsIdOrNameCustomEnvironmentsPathParams = PostV1ProjectsIdOrNameCustomEnvironmentsPathParams;
21365
- type components_PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams = PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams;
21366
- type components_PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody = PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody;
21367
- type components_PostV1ProjectsIdOrNameCustomEnvironmentsVariables = PostV1ProjectsIdOrNameCustomEnvironmentsVariables;
21752
+ type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError;
21753
+ type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams;
21754
+ type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody;
21755
+ type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables;
21368
21756
  type components_PutFirewallConfigError = PutFirewallConfigError;
21369
21757
  type components_PutFirewallConfigQueryParams = PutFirewallConfigQueryParams;
21370
21758
  type components_PutFirewallConfigRequestBody = PutFirewallConfigRequestBody;
21371
21759
  type components_PutFirewallConfigResponse = PutFirewallConfigResponse;
21372
21760
  type components_PutFirewallConfigVariables = PutFirewallConfigVariables;
21761
+ type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError = PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError;
21762
+ type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams = PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams;
21763
+ type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody = PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody;
21764
+ type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse = PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse;
21765
+ type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables = PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables;
21373
21766
  type components_ReadAccessGroupError = ReadAccessGroupError;
21374
21767
  type components_ReadAccessGroupPathParams = ReadAccessGroupPathParams;
21375
21768
  type components_ReadAccessGroupProjectError = ReadAccessGroupProjectError;
@@ -21393,6 +21786,11 @@ type components_RemoveCertError = RemoveCertError;
21393
21786
  type components_RemoveCertPathParams = RemoveCertPathParams;
21394
21787
  type components_RemoveCertQueryParams = RemoveCertQueryParams;
21395
21788
  type components_RemoveCertVariables = RemoveCertVariables;
21789
+ type components_RemoveCustomEnvironmentError = RemoveCustomEnvironmentError;
21790
+ type components_RemoveCustomEnvironmentPathParams = RemoveCustomEnvironmentPathParams;
21791
+ type components_RemoveCustomEnvironmentQueryParams = RemoveCustomEnvironmentQueryParams;
21792
+ type components_RemoveCustomEnvironmentRequestBody = RemoveCustomEnvironmentRequestBody;
21793
+ type components_RemoveCustomEnvironmentVariables = RemoveCustomEnvironmentVariables;
21396
21794
  type components_RemoveProjectDomainError = RemoveProjectDomainError;
21397
21795
  type components_RemoveProjectDomainPathParams = RemoveProjectDomainPathParams;
21398
21796
  type components_RemoveProjectDomainQueryParams = RemoveProjectDomainQueryParams;
@@ -21453,6 +21851,10 @@ type components_SubmitInvoicePathParams = SubmitInvoicePathParams;
21453
21851
  type components_SubmitInvoiceRequestBody = SubmitInvoiceRequestBody;
21454
21852
  type components_SubmitInvoiceResponse = SubmitInvoiceResponse;
21455
21853
  type components_SubmitInvoiceVariables = SubmitInvoiceVariables;
21854
+ type components_SubmitPrepaymentBalancesError = SubmitPrepaymentBalancesError;
21855
+ type components_SubmitPrepaymentBalancesPathParams = SubmitPrepaymentBalancesPathParams;
21856
+ type components_SubmitPrepaymentBalancesRequestBody = SubmitPrepaymentBalancesRequestBody;
21857
+ type components_SubmitPrepaymentBalancesVariables = SubmitPrepaymentBalancesVariables;
21456
21858
  type components_UnpauseProjectError = UnpauseProjectError;
21457
21859
  type components_UnpauseProjectPathParams = UnpauseProjectPathParams;
21458
21860
  type components_UnpauseProjectQueryParams = UnpauseProjectQueryParams;
@@ -21480,6 +21882,11 @@ type components_UpdateCheckQueryParams = UpdateCheckQueryParams;
21480
21882
  type components_UpdateCheckRequestBody = UpdateCheckRequestBody;
21481
21883
  type components_UpdateCheckResponse = UpdateCheckResponse;
21482
21884
  type components_UpdateCheckVariables = UpdateCheckVariables;
21885
+ type components_UpdateCustomEnvironmentError = UpdateCustomEnvironmentError;
21886
+ type components_UpdateCustomEnvironmentPathParams = UpdateCustomEnvironmentPathParams;
21887
+ type components_UpdateCustomEnvironmentQueryParams = UpdateCustomEnvironmentQueryParams;
21888
+ type components_UpdateCustomEnvironmentRequestBody = UpdateCustomEnvironmentRequestBody;
21889
+ type components_UpdateCustomEnvironmentVariables = UpdateCustomEnvironmentVariables;
21483
21890
  type components_UpdateEdgeConfigError = UpdateEdgeConfigError;
21484
21891
  type components_UpdateEdgeConfigPathParams = UpdateEdgeConfigPathParams;
21485
21892
  type components_UpdateEdgeConfigQueryParams = UpdateEdgeConfigQueryParams;
@@ -21489,6 +21896,10 @@ type components_UpdateEdgeConfigVariables = UpdateEdgeConfigVariables;
21489
21896
  type components_UpdateFirewallConfigError = UpdateFirewallConfigError;
21490
21897
  type components_UpdateFirewallConfigQueryParams = UpdateFirewallConfigQueryParams;
21491
21898
  type components_UpdateFirewallConfigVariables = UpdateFirewallConfigVariables;
21899
+ type components_UpdateIntegrationDeploymentActionError = UpdateIntegrationDeploymentActionError;
21900
+ type components_UpdateIntegrationDeploymentActionPathParams = UpdateIntegrationDeploymentActionPathParams;
21901
+ type components_UpdateIntegrationDeploymentActionRequestBody = UpdateIntegrationDeploymentActionRequestBody;
21902
+ type components_UpdateIntegrationDeploymentActionVariables = UpdateIntegrationDeploymentActionVariables;
21492
21903
  type components_UpdateInvoiceError = UpdateInvoiceError;
21493
21904
  type components_UpdateInvoicePathParams = UpdateInvoicePathParams;
21494
21905
  type components_UpdateInvoiceRequestBody = UpdateInvoiceRequestBody;
@@ -21571,6 +21982,7 @@ declare const components_createAccessGroupProject: typeof createAccessGroupProje
21571
21982
  declare const components_createAuthToken: typeof createAuthToken;
21572
21983
  declare const components_createCheck: typeof createCheck;
21573
21984
  declare const components_createConfigurableLogDrain: typeof createConfigurableLogDrain;
21985
+ declare const components_createCustomEnvironment: typeof createCustomEnvironment;
21574
21986
  declare const components_createDeployment: typeof createDeployment;
21575
21987
  declare const components_createEdgeConfig: typeof createEdgeConfig;
21576
21988
  declare const components_createEdgeConfigToken: typeof createEdgeConfigToken;
@@ -21601,7 +22013,7 @@ declare const components_deleteProject: typeof deleteProject;
21601
22013
  declare const components_deleteSecret: typeof deleteSecret;
21602
22014
  declare const components_deleteTeam: typeof deleteTeam;
21603
22015
  declare const components_deleteTeamInviteCode: typeof deleteTeamInviteCode;
21604
- declare const components_deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: typeof deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId;
22016
+ declare const components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
21605
22017
  declare const components_deleteWebhook: typeof deleteWebhook;
21606
22018
  declare const components_downloadArtifact: typeof downloadArtifact;
21607
22019
  declare const components_editProjectEnv: typeof editProjectEnv;
@@ -21621,6 +22033,7 @@ declare const components_getCheck: typeof getCheck;
21621
22033
  declare const components_getConfigurableLogDrain: typeof getConfigurableLogDrain;
21622
22034
  declare const components_getConfiguration: typeof getConfiguration;
21623
22035
  declare const components_getConfigurations: typeof getConfigurations;
22036
+ declare const components_getCustomEnvironment: typeof getCustomEnvironment;
21624
22037
  declare const components_getDeployment: typeof getDeployment;
21625
22038
  declare const components_getDeploymentEvents: typeof getDeploymentEvents;
21626
22039
  declare const components_getDeploymentFileContents: typeof getDeploymentFileContents;
@@ -21655,11 +22068,12 @@ declare const components_getTeam: typeof getTeam;
21655
22068
  declare const components_getTeamAccessRequest: typeof getTeamAccessRequest;
21656
22069
  declare const components_getTeamMembers: typeof getTeamMembers;
21657
22070
  declare const components_getTeams: typeof getTeams;
22071
+ declare const components_getV1ExperimentationItems: typeof getV1ExperimentationItems;
21658
22072
  declare const components_getV9ProjectsIdOrNameCustomEnvironments: typeof getV9ProjectsIdOrNameCustomEnvironments;
21659
- declare const components_getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: typeof getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId;
21660
22073
  declare const components_getWebhook: typeof getWebhook;
21661
22074
  declare const components_getWebhooks: typeof getWebhooks;
21662
22075
  declare const components_gitNamespaces: typeof gitNamespaces;
22076
+ declare const components_importResource: typeof importResource;
21663
22077
  declare const components_inviteUserToTeam: typeof inviteUserToTeam;
21664
22078
  declare const components_issueCert: typeof issueCert;
21665
22079
  declare const components_joinTeam: typeof joinTeam;
@@ -21678,15 +22092,17 @@ declare const components_patchDomain: typeof patchDomain;
21678
22092
  declare const components_patchEdgeConfigItems: typeof patchEdgeConfigItems;
21679
22093
  declare const components_patchEdgeConfigSchema: typeof patchEdgeConfigSchema;
21680
22094
  declare const components_patchTeam: typeof patchTeam;
21681
- declare const components_patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: typeof patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId;
22095
+ declare const components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
21682
22096
  declare const components_pauseProject: typeof pauseProject;
21683
- declare const components_postV1ProjectsIdOrNameCustomEnvironments: typeof postV1ProjectsIdOrNameCustomEnvironments;
22097
+ declare const components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: typeof postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems;
21684
22098
  declare const components_putFirewallConfig: typeof putFirewallConfig;
22099
+ declare const components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: typeof putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig;
21685
22100
  declare const components_readAccessGroup: typeof readAccessGroup;
21686
22101
  declare const components_readAccessGroupProject: typeof readAccessGroupProject;
21687
22102
  declare const components_recordEvents: typeof recordEvents;
21688
22103
  declare const components_removeBypassIp: typeof removeBypassIp;
21689
22104
  declare const components_removeCert: typeof removeCert;
22105
+ declare const components_removeCustomEnvironment: typeof removeCustomEnvironment;
21690
22106
  declare const components_removeProjectDomain: typeof removeProjectDomain;
21691
22107
  declare const components_removeProjectEnv: typeof removeProjectEnv;
21692
22108
  declare const components_removeProjectMember: typeof removeProjectMember;
@@ -21701,13 +22117,16 @@ declare const components_searchRepo: typeof searchRepo;
21701
22117
  declare const components_status: typeof status;
21702
22118
  declare const components_submitBillingData: typeof submitBillingData;
21703
22119
  declare const components_submitInvoice: typeof submitInvoice;
22120
+ declare const components_submitPrepaymentBalances: typeof submitPrepaymentBalances;
21704
22121
  declare const components_unpauseProject: typeof unpauseProject;
21705
22122
  declare const components_updateAccessGroup: typeof updateAccessGroup;
21706
22123
  declare const components_updateAccessGroupProject: typeof updateAccessGroupProject;
21707
22124
  declare const components_updateAttackChallengeMode: typeof updateAttackChallengeMode;
21708
22125
  declare const components_updateCheck: typeof updateCheck;
22126
+ declare const components_updateCustomEnvironment: typeof updateCustomEnvironment;
21709
22127
  declare const components_updateEdgeConfig: typeof updateEdgeConfig;
21710
22128
  declare const components_updateFirewallConfig: typeof updateFirewallConfig;
22129
+ declare const components_updateIntegrationDeploymentAction: typeof updateIntegrationDeploymentAction;
21711
22130
  declare const components_updateInvoice: typeof updateInvoice;
21712
22131
  declare const components_updateProject: typeof updateProject;
21713
22132
  declare const components_updateProjectDataCache: typeof updateProjectDataCache;
@@ -21722,7 +22141,7 @@ declare const components_uploadCert: typeof uploadCert;
21722
22141
  declare const components_uploadFile: typeof uploadFile;
21723
22142
  declare const components_verifyProjectDomain: typeof verifyProjectDomain;
21724
22143
  declare namespace components {
21725
- export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateConfigurableLogDrainError as CreateConfigurableLogDrainError, type components_CreateConfigurableLogDrainQueryParams as CreateConfigurableLogDrainQueryParams, type components_CreateConfigurableLogDrainRequestBody as CreateConfigurableLogDrainRequestBody, type components_CreateConfigurableLogDrainResponse as CreateConfigurableLogDrainResponse, type components_CreateConfigurableLogDrainVariables as CreateConfigurableLogDrainVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError as DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError, type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams as DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams, type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams as DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams, type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody as DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody, type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables as DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAllLogDrainsError as GetAllLogDrainsError, type components_GetAllLogDrainsQueryParams as GetAllLogDrainsQueryParams, type components_GetAllLogDrainsResponse as GetAllLogDrainsResponse, type components_GetAllLogDrainsVariables as GetAllLogDrainsVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurableLogDrainError as GetConfigurableLogDrainError, type components_GetConfigurableLogDrainPathParams as GetConfigurableLogDrainPathParams, type components_GetConfigurableLogDrainQueryParams as GetConfigurableLogDrainQueryParams, type components_GetConfigurableLogDrainResponse as GetConfigurableLogDrainResponse, type components_GetConfigurableLogDrainVariables as GetConfigurableLogDrainVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError as GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables as GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_GitNamespacesError as GitNamespacesError, type components_GitNamespacesQueryParams as GitNamespacesQueryParams, type components_GitNamespacesResponse as GitNamespacesResponse, type components_GitNamespacesVariables as GitNamespacesVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError as PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdError, type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams as PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams, type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams as PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams, type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody as PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody, type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables as PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1ProjectsIdOrNameCustomEnvironmentsError as PostV1ProjectsIdOrNameCustomEnvironmentsError, type components_PostV1ProjectsIdOrNameCustomEnvironmentsPathParams as PostV1ProjectsIdOrNameCustomEnvironmentsPathParams, type components_PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams as PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody as PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody, type components_PostV1ProjectsIdOrNameCustomEnvironmentsVariables as PostV1ProjectsIdOrNameCustomEnvironmentsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_SearchRepoError as SearchRepoError, type components_SearchRepoQueryParams as SearchRepoQueryParams, type components_SearchRepoVariables as SearchRepoVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createConfigurableLogDrain as createConfigurableLogDrain, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId as deleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAllLogDrains as getAllLogDrains, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfigurableLogDrain as getConfigurableLogDrain, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId as getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_gitNamespaces as gitNamespaces, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId as patchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId, components_pauseProject as pauseProject, components_postV1ProjectsIdOrNameCustomEnvironments as postV1ProjectsIdOrNameCustomEnvironments, components_putFirewallConfig as putFirewallConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_searchRepo as searchRepo, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
22144
+ export { type components_AcceptProjectTransferRequestError as AcceptProjectTransferRequestError, type components_AcceptProjectTransferRequestPathParams as AcceptProjectTransferRequestPathParams, type components_AcceptProjectTransferRequestQueryParams as AcceptProjectTransferRequestQueryParams, type components_AcceptProjectTransferRequestRequestBody as AcceptProjectTransferRequestRequestBody, type components_AcceptProjectTransferRequestVariables as AcceptProjectTransferRequestVariables, type components_AddBypassIpError as AddBypassIpError, type components_AddBypassIpQueryParams as AddBypassIpQueryParams, type components_AddBypassIpVariables as AddBypassIpVariables, type components_AddProjectDomainError as AddProjectDomainError, type components_AddProjectDomainPathParams as AddProjectDomainPathParams, type components_AddProjectDomainQueryParams as AddProjectDomainQueryParams, type components_AddProjectDomainRequestBody as AddProjectDomainRequestBody, type components_AddProjectDomainResponse as AddProjectDomainResponse, type components_AddProjectDomainVariables as AddProjectDomainVariables, type components_AddProjectMemberError as AddProjectMemberError, type components_AddProjectMemberPathParams as AddProjectMemberPathParams, type components_AddProjectMemberQueryParams as AddProjectMemberQueryParams, type components_AddProjectMemberResponse as AddProjectMemberResponse, type components_AddProjectMemberVariables as AddProjectMemberVariables, type components_ArtifactQueryError as ArtifactQueryError, type components_ArtifactQueryQueryParams as ArtifactQueryQueryParams, type components_ArtifactQueryRequestBody as ArtifactQueryRequestBody, type components_ArtifactQueryResponse as ArtifactQueryResponse, type components_ArtifactQueryVariables as ArtifactQueryVariables, type components_AssignAliasError as AssignAliasError, type components_AssignAliasPathParams as AssignAliasPathParams, type components_AssignAliasQueryParams as AssignAliasQueryParams, type components_AssignAliasRequestBody as AssignAliasRequestBody, type components_AssignAliasResponse as AssignAliasResponse, type components_AssignAliasVariables as AssignAliasVariables, type components_BuyDomainError as BuyDomainError, type components_BuyDomainQueryParams as BuyDomainQueryParams, type components_BuyDomainRequestBody as BuyDomainRequestBody, type components_BuyDomainResponse as BuyDomainResponse, type components_BuyDomainVariables as BuyDomainVariables, type components_CancelDeploymentError as CancelDeploymentError, type components_CancelDeploymentPathParams as CancelDeploymentPathParams, type components_CancelDeploymentQueryParams as CancelDeploymentQueryParams, type components_CancelDeploymentResponse as CancelDeploymentResponse, type components_CancelDeploymentVariables as CancelDeploymentVariables, type components_CheckDomainPriceError as CheckDomainPriceError, type components_CheckDomainPriceQueryParams as CheckDomainPriceQueryParams, type components_CheckDomainPriceResponse as CheckDomainPriceResponse, type components_CheckDomainPriceVariables as CheckDomainPriceVariables, type components_CheckDomainStatusError as CheckDomainStatusError, type components_CheckDomainStatusQueryParams as CheckDomainStatusQueryParams, type components_CheckDomainStatusResponse as CheckDomainStatusResponse, type components_CheckDomainStatusVariables as CheckDomainStatusVariables, type components_CreateAccessGroupError as CreateAccessGroupError, type components_CreateAccessGroupProjectError as CreateAccessGroupProjectError, type components_CreateAccessGroupProjectPathParams as CreateAccessGroupProjectPathParams, type components_CreateAccessGroupProjectQueryParams as CreateAccessGroupProjectQueryParams, type components_CreateAccessGroupProjectRequestBody as CreateAccessGroupProjectRequestBody, type components_CreateAccessGroupProjectResponse as CreateAccessGroupProjectResponse, type components_CreateAccessGroupProjectVariables as CreateAccessGroupProjectVariables, type components_CreateAccessGroupQueryParams as CreateAccessGroupQueryParams, type components_CreateAccessGroupRequestBody as CreateAccessGroupRequestBody, type components_CreateAccessGroupResponse as CreateAccessGroupResponse, type components_CreateAccessGroupVariables as CreateAccessGroupVariables, type components_CreateAuthTokenError as CreateAuthTokenError, type components_CreateAuthTokenQueryParams as CreateAuthTokenQueryParams, type components_CreateAuthTokenRequestBody as CreateAuthTokenRequestBody, type components_CreateAuthTokenResponse as CreateAuthTokenResponse, type components_CreateAuthTokenVariables as CreateAuthTokenVariables, type components_CreateCheckError as CreateCheckError, type components_CreateCheckPathParams as CreateCheckPathParams, type components_CreateCheckQueryParams as CreateCheckQueryParams, type components_CreateCheckRequestBody as CreateCheckRequestBody, type components_CreateCheckResponse as CreateCheckResponse, type components_CreateCheckVariables as CreateCheckVariables, type components_CreateConfigurableLogDrainError as CreateConfigurableLogDrainError, type components_CreateConfigurableLogDrainQueryParams as CreateConfigurableLogDrainQueryParams, type components_CreateConfigurableLogDrainRequestBody as CreateConfigurableLogDrainRequestBody, type components_CreateConfigurableLogDrainResponse as CreateConfigurableLogDrainResponse, type components_CreateConfigurableLogDrainVariables as CreateConfigurableLogDrainVariables, type components_CreateCustomEnvironmentError as CreateCustomEnvironmentError, type components_CreateCustomEnvironmentPathParams as CreateCustomEnvironmentPathParams, type components_CreateCustomEnvironmentQueryParams as CreateCustomEnvironmentQueryParams, type components_CreateCustomEnvironmentRequestBody as CreateCustomEnvironmentRequestBody, type components_CreateCustomEnvironmentVariables as CreateCustomEnvironmentVariables, type components_CreateDeploymentError as CreateDeploymentError, type components_CreateDeploymentQueryParams as CreateDeploymentQueryParams, type components_CreateDeploymentRequestBody as CreateDeploymentRequestBody, type components_CreateDeploymentResponse as CreateDeploymentResponse, type components_CreateDeploymentVariables as CreateDeploymentVariables, type components_CreateEdgeConfigError as CreateEdgeConfigError, type components_CreateEdgeConfigQueryParams as CreateEdgeConfigQueryParams, type components_CreateEdgeConfigRequestBody as CreateEdgeConfigRequestBody, type components_CreateEdgeConfigResponse as CreateEdgeConfigResponse, type components_CreateEdgeConfigTokenError as CreateEdgeConfigTokenError, type components_CreateEdgeConfigTokenPathParams as CreateEdgeConfigTokenPathParams, type components_CreateEdgeConfigTokenQueryParams as CreateEdgeConfigTokenQueryParams, type components_CreateEdgeConfigTokenRequestBody as CreateEdgeConfigTokenRequestBody, type components_CreateEdgeConfigTokenResponse as CreateEdgeConfigTokenResponse, type components_CreateEdgeConfigTokenVariables as CreateEdgeConfigTokenVariables, type components_CreateEdgeConfigVariables as CreateEdgeConfigVariables, type components_CreateEventError as CreateEventError, type components_CreateEventPathParams as CreateEventPathParams, type components_CreateEventRequestBody as CreateEventRequestBody, type components_CreateEventVariables as CreateEventVariables, type components_CreateLogDrainError as CreateLogDrainError, type components_CreateLogDrainQueryParams as CreateLogDrainQueryParams, type components_CreateLogDrainRequestBody as CreateLogDrainRequestBody, type components_CreateLogDrainResponse as CreateLogDrainResponse, type components_CreateLogDrainVariables as CreateLogDrainVariables, type components_CreateOrTransferDomainError as CreateOrTransferDomainError, type components_CreateOrTransferDomainQueryParams as CreateOrTransferDomainQueryParams, type components_CreateOrTransferDomainResponse as CreateOrTransferDomainResponse, type components_CreateOrTransferDomainVariables as CreateOrTransferDomainVariables, type components_CreateProjectEnvError as CreateProjectEnvError, type components_CreateProjectEnvPathParams as CreateProjectEnvPathParams, type components_CreateProjectEnvQueryParams as CreateProjectEnvQueryParams, type components_CreateProjectEnvResponse as CreateProjectEnvResponse, type components_CreateProjectEnvVariables as CreateProjectEnvVariables, type components_CreateProjectError as CreateProjectError, type components_CreateProjectQueryParams as CreateProjectQueryParams, type components_CreateProjectRequestBody as CreateProjectRequestBody, type components_CreateProjectResponse as CreateProjectResponse, type components_CreateProjectTransferRequestError as CreateProjectTransferRequestError, type components_CreateProjectTransferRequestPathParams as CreateProjectTransferRequestPathParams, type components_CreateProjectTransferRequestQueryParams as CreateProjectTransferRequestQueryParams, type components_CreateProjectTransferRequestResponse as CreateProjectTransferRequestResponse, type components_CreateProjectTransferRequestVariables as CreateProjectTransferRequestVariables, type components_CreateProjectVariables as CreateProjectVariables, type components_CreateRecordError as CreateRecordError, type components_CreateRecordPathParams as CreateRecordPathParams, type components_CreateRecordQueryParams as CreateRecordQueryParams, type components_CreateRecordVariables as CreateRecordVariables, type components_CreateSecretError as CreateSecretError, type components_CreateSecretQueryParams as CreateSecretQueryParams, type components_CreateSecretRequestBody as CreateSecretRequestBody, type components_CreateSecretResponse as CreateSecretResponse, type components_CreateSecretVariables as CreateSecretVariables, type components_CreateTeamError as CreateTeamError, type components_CreateTeamRequestBody as CreateTeamRequestBody, type components_CreateTeamResponse as CreateTeamResponse, type components_CreateTeamVariables as CreateTeamVariables, type components_CreateWebhookError as CreateWebhookError, type components_CreateWebhookQueryParams as CreateWebhookQueryParams, type components_CreateWebhookRequestBody as CreateWebhookRequestBody, type components_CreateWebhookResponse as CreateWebhookResponse, type components_CreateWebhookVariables as CreateWebhookVariables, type components_DeleteAccessGroupError as DeleteAccessGroupError, type components_DeleteAccessGroupPathParams as DeleteAccessGroupPathParams, type components_DeleteAccessGroupProjectError as DeleteAccessGroupProjectError, type components_DeleteAccessGroupProjectPathParams as DeleteAccessGroupProjectPathParams, type components_DeleteAccessGroupProjectQueryParams as DeleteAccessGroupProjectQueryParams, type components_DeleteAccessGroupProjectVariables as DeleteAccessGroupProjectVariables, type components_DeleteAccessGroupQueryParams as DeleteAccessGroupQueryParams, type components_DeleteAccessGroupVariables as DeleteAccessGroupVariables, type components_DeleteAliasError as DeleteAliasError, type components_DeleteAliasPathParams as DeleteAliasPathParams, type components_DeleteAliasQueryParams as DeleteAliasQueryParams, type components_DeleteAliasResponse as DeleteAliasResponse, type components_DeleteAliasVariables as DeleteAliasVariables, type components_DeleteAuthTokenError as DeleteAuthTokenError, type components_DeleteAuthTokenPathParams as DeleteAuthTokenPathParams, type components_DeleteAuthTokenResponse as DeleteAuthTokenResponse, type components_DeleteAuthTokenVariables as DeleteAuthTokenVariables, type components_DeleteConfigurableLogDrainError as DeleteConfigurableLogDrainError, type components_DeleteConfigurableLogDrainPathParams as DeleteConfigurableLogDrainPathParams, type components_DeleteConfigurableLogDrainQueryParams as DeleteConfigurableLogDrainQueryParams, type components_DeleteConfigurableLogDrainVariables as DeleteConfigurableLogDrainVariables, type components_DeleteConfigurationError as DeleteConfigurationError, type components_DeleteConfigurationPathParams as DeleteConfigurationPathParams, type components_DeleteConfigurationQueryParams as DeleteConfigurationQueryParams, type components_DeleteConfigurationVariables as DeleteConfigurationVariables, type components_DeleteDataCachePurgeAllError as DeleteDataCachePurgeAllError, type components_DeleteDataCachePurgeAllQueryParams as DeleteDataCachePurgeAllQueryParams, type components_DeleteDataCachePurgeAllVariables as DeleteDataCachePurgeAllVariables, type components_DeleteDeploymentError as DeleteDeploymentError, type components_DeleteDeploymentPathParams as DeleteDeploymentPathParams, type components_DeleteDeploymentQueryParams as DeleteDeploymentQueryParams, type components_DeleteDeploymentResponse as DeleteDeploymentResponse, type components_DeleteDeploymentVariables as DeleteDeploymentVariables, type components_DeleteDomainError as DeleteDomainError, type components_DeleteDomainPathParams as DeleteDomainPathParams, type components_DeleteDomainQueryParams as DeleteDomainQueryParams, type components_DeleteDomainResponse as DeleteDomainResponse, type components_DeleteDomainVariables as DeleteDomainVariables, type components_DeleteEdgeConfigError as DeleteEdgeConfigError, type components_DeleteEdgeConfigPathParams as DeleteEdgeConfigPathParams, type components_DeleteEdgeConfigQueryParams as DeleteEdgeConfigQueryParams, type components_DeleteEdgeConfigSchemaError as DeleteEdgeConfigSchemaError, type components_DeleteEdgeConfigSchemaPathParams as DeleteEdgeConfigSchemaPathParams, type components_DeleteEdgeConfigSchemaQueryParams as DeleteEdgeConfigSchemaQueryParams, type components_DeleteEdgeConfigSchemaVariables as DeleteEdgeConfigSchemaVariables, type components_DeleteEdgeConfigTokensError as DeleteEdgeConfigTokensError, type components_DeleteEdgeConfigTokensPathParams as DeleteEdgeConfigTokensPathParams, type components_DeleteEdgeConfigTokensQueryParams as DeleteEdgeConfigTokensQueryParams, type components_DeleteEdgeConfigTokensRequestBody as DeleteEdgeConfigTokensRequestBody, type components_DeleteEdgeConfigTokensVariables as DeleteEdgeConfigTokensVariables, type components_DeleteEdgeConfigVariables as DeleteEdgeConfigVariables, type components_DeleteIntegrationLogDrainError as DeleteIntegrationLogDrainError, type components_DeleteIntegrationLogDrainPathParams as DeleteIntegrationLogDrainPathParams, type components_DeleteIntegrationLogDrainQueryParams as DeleteIntegrationLogDrainQueryParams, type components_DeleteIntegrationLogDrainVariables as DeleteIntegrationLogDrainVariables, type components_DeleteProjectError as DeleteProjectError, type components_DeleteProjectPathParams as DeleteProjectPathParams, type components_DeleteProjectQueryParams as DeleteProjectQueryParams, type components_DeleteProjectVariables as DeleteProjectVariables, type components_DeleteSecretError as DeleteSecretError, type components_DeleteSecretPathParams as DeleteSecretPathParams, type components_DeleteSecretQueryParams as DeleteSecretQueryParams, type components_DeleteSecretResponse as DeleteSecretResponse, type components_DeleteSecretVariables as DeleteSecretVariables, type components_DeleteTeamError as DeleteTeamError, type components_DeleteTeamInviteCodeError as DeleteTeamInviteCodeError, type components_DeleteTeamInviteCodePathParams as DeleteTeamInviteCodePathParams, type components_DeleteTeamInviteCodeResponse as DeleteTeamInviteCodeResponse, type components_DeleteTeamInviteCodeVariables as DeleteTeamInviteCodeVariables, type components_DeleteTeamPathParams as DeleteTeamPathParams, type components_DeleteTeamQueryParams as DeleteTeamQueryParams, type components_DeleteTeamRequestBody as DeleteTeamRequestBody, type components_DeleteTeamResponse as DeleteTeamResponse, type components_DeleteTeamVariables as DeleteTeamVariables, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_DeleteWebhookError as DeleteWebhookError, type components_DeleteWebhookPathParams as DeleteWebhookPathParams, type components_DeleteWebhookQueryParams as DeleteWebhookQueryParams, type components_DeleteWebhookVariables as DeleteWebhookVariables, type components_DownloadArtifactError as DownloadArtifactError, type components_DownloadArtifactHeaders as DownloadArtifactHeaders, type components_DownloadArtifactPathParams as DownloadArtifactPathParams, type components_DownloadArtifactQueryParams as DownloadArtifactQueryParams, type components_DownloadArtifactVariables as DownloadArtifactVariables, type components_EditProjectEnvError as EditProjectEnvError, type components_EditProjectEnvPathParams as EditProjectEnvPathParams, type components_EditProjectEnvQueryParams as EditProjectEnvQueryParams, type components_EditProjectEnvRequestBody as EditProjectEnvRequestBody, type components_EditProjectEnvVariables as EditProjectEnvVariables, type components_ExchangeSsoTokenError as ExchangeSsoTokenError, type components_ExchangeSsoTokenRequestBody as ExchangeSsoTokenRequestBody, type components_ExchangeSsoTokenResponse as ExchangeSsoTokenResponse, type components_ExchangeSsoTokenVariables as ExchangeSsoTokenVariables, type components_FilterProjectEnvsError as FilterProjectEnvsError, type components_FilterProjectEnvsPathParams as FilterProjectEnvsPathParams, type components_FilterProjectEnvsQueryParams as FilterProjectEnvsQueryParams, type components_FilterProjectEnvsVariables as FilterProjectEnvsVariables, type components_GetAccountInfoError as GetAccountInfoError, type components_GetAccountInfoPathParams as GetAccountInfoPathParams, type components_GetAccountInfoResponse as GetAccountInfoResponse, type components_GetAccountInfoVariables as GetAccountInfoVariables, type components_GetActiveAttackStatusError as GetActiveAttackStatusError, type components_GetActiveAttackStatusQueryParams as GetActiveAttackStatusQueryParams, type components_GetActiveAttackStatusVariables as GetActiveAttackStatusVariables, type components_GetAliasError as GetAliasError, type components_GetAliasPathParams as GetAliasPathParams, type components_GetAliasQueryParams as GetAliasQueryParams, type components_GetAliasResponse as GetAliasResponse, type components_GetAliasVariables as GetAliasVariables, type components_GetAllChecksError as GetAllChecksError, type components_GetAllChecksPathParams as GetAllChecksPathParams, type components_GetAllChecksQueryParams as GetAllChecksQueryParams, type components_GetAllChecksResponse as GetAllChecksResponse, type components_GetAllChecksVariables as GetAllChecksVariables, type components_GetAllLogDrainsError as GetAllLogDrainsError, type components_GetAllLogDrainsQueryParams as GetAllLogDrainsQueryParams, type components_GetAllLogDrainsResponse as GetAllLogDrainsResponse, type components_GetAllLogDrainsVariables as GetAllLogDrainsVariables, type components_GetAuthTokenError as GetAuthTokenError, type components_GetAuthTokenPathParams as GetAuthTokenPathParams, type components_GetAuthTokenResponse as GetAuthTokenResponse, type components_GetAuthTokenVariables as GetAuthTokenVariables, type components_GetAuthUserError as GetAuthUserError, type components_GetAuthUserResponse as GetAuthUserResponse, type components_GetAuthUserVariables as GetAuthUserVariables, type components_GetBypassIpError as GetBypassIpError, type components_GetBypassIpQueryParams as GetBypassIpQueryParams, type components_GetBypassIpVariables as GetBypassIpVariables, type components_GetCertByIdError as GetCertByIdError, type components_GetCertByIdPathParams as GetCertByIdPathParams, type components_GetCertByIdQueryParams as GetCertByIdQueryParams, type components_GetCertByIdResponse as GetCertByIdResponse, type components_GetCertByIdVariables as GetCertByIdVariables, type components_GetCertsError as GetCertsError, type components_GetCertsResponse as GetCertsResponse, type components_GetCertsVariables as GetCertsVariables, type components_GetCheckError as GetCheckError, type components_GetCheckPathParams as GetCheckPathParams, type components_GetCheckQueryParams as GetCheckQueryParams, type components_GetCheckResponse as GetCheckResponse, type components_GetCheckVariables as GetCheckVariables, type components_GetConfigurableLogDrainError as GetConfigurableLogDrainError, type components_GetConfigurableLogDrainPathParams as GetConfigurableLogDrainPathParams, type components_GetConfigurableLogDrainQueryParams as GetConfigurableLogDrainQueryParams, type components_GetConfigurableLogDrainResponse as GetConfigurableLogDrainResponse, type components_GetConfigurableLogDrainVariables as GetConfigurableLogDrainVariables, type components_GetConfigurationError as GetConfigurationError, type components_GetConfigurationPathParams as GetConfigurationPathParams, type components_GetConfigurationQueryParams as GetConfigurationQueryParams, type components_GetConfigurationVariables as GetConfigurationVariables, type components_GetConfigurationsError as GetConfigurationsError, type components_GetConfigurationsQueryParams as GetConfigurationsQueryParams, type components_GetConfigurationsVariables as GetConfigurationsVariables, type components_GetCustomEnvironmentError as GetCustomEnvironmentError, type components_GetCustomEnvironmentPathParams as GetCustomEnvironmentPathParams, type components_GetCustomEnvironmentQueryParams as GetCustomEnvironmentQueryParams, type components_GetCustomEnvironmentVariables as GetCustomEnvironmentVariables, type components_GetDeploymentError as GetDeploymentError, type components_GetDeploymentEventsError as GetDeploymentEventsError, type components_GetDeploymentEventsPathParams as GetDeploymentEventsPathParams, type components_GetDeploymentEventsQueryParams as GetDeploymentEventsQueryParams, type components_GetDeploymentEventsVariables as GetDeploymentEventsVariables, type components_GetDeploymentFileContentsError as GetDeploymentFileContentsError, type components_GetDeploymentFileContentsPathParams as GetDeploymentFileContentsPathParams, type components_GetDeploymentFileContentsQueryParams as GetDeploymentFileContentsQueryParams, type components_GetDeploymentFileContentsVariables as GetDeploymentFileContentsVariables, type components_GetDeploymentPathParams as GetDeploymentPathParams, type components_GetDeploymentQueryParams as GetDeploymentQueryParams, type components_GetDeploymentVariables as GetDeploymentVariables, type components_GetDeploymentsError as GetDeploymentsError, type components_GetDeploymentsQueryParams as GetDeploymentsQueryParams, type components_GetDeploymentsResponse as GetDeploymentsResponse, type components_GetDeploymentsVariables as GetDeploymentsVariables, type components_GetDomainConfigError as GetDomainConfigError, type components_GetDomainConfigPathParams as GetDomainConfigPathParams, type components_GetDomainConfigQueryParams as GetDomainConfigQueryParams, type components_GetDomainConfigResponse as GetDomainConfigResponse, type components_GetDomainConfigVariables as GetDomainConfigVariables, type components_GetDomainError as GetDomainError, type components_GetDomainPathParams as GetDomainPathParams, type components_GetDomainQueryParams as GetDomainQueryParams, type components_GetDomainResponse as GetDomainResponse, type components_GetDomainTransferError as GetDomainTransferError, type components_GetDomainTransferQueryParams as GetDomainTransferQueryParams, type components_GetDomainTransferResponse as GetDomainTransferResponse, type components_GetDomainTransferVariables as GetDomainTransferVariables, type components_GetDomainVariables as GetDomainVariables, type components_GetDomainsError as GetDomainsError, type components_GetDomainsQueryParams as GetDomainsQueryParams, type components_GetDomainsResponse as GetDomainsResponse, type components_GetDomainsVariables as GetDomainsVariables, type components_GetEdgeConfigBackupError as GetEdgeConfigBackupError, type components_GetEdgeConfigBackupPathParams as GetEdgeConfigBackupPathParams, type components_GetEdgeConfigBackupQueryParams as GetEdgeConfigBackupQueryParams, type components_GetEdgeConfigBackupVariables as GetEdgeConfigBackupVariables, type components_GetEdgeConfigBackupsError as GetEdgeConfigBackupsError, type components_GetEdgeConfigBackupsPathParams as GetEdgeConfigBackupsPathParams, type components_GetEdgeConfigBackupsQueryParams as GetEdgeConfigBackupsQueryParams, type components_GetEdgeConfigBackupsResponse as GetEdgeConfigBackupsResponse, type components_GetEdgeConfigBackupsVariables as GetEdgeConfigBackupsVariables, type components_GetEdgeConfigError as GetEdgeConfigError, type components_GetEdgeConfigItemError as GetEdgeConfigItemError, type components_GetEdgeConfigItemPathParams as GetEdgeConfigItemPathParams, type components_GetEdgeConfigItemQueryParams as GetEdgeConfigItemQueryParams, type components_GetEdgeConfigItemVariables as GetEdgeConfigItemVariables, type components_GetEdgeConfigItemsError as GetEdgeConfigItemsError, type components_GetEdgeConfigItemsPathParams as GetEdgeConfigItemsPathParams, type components_GetEdgeConfigItemsQueryParams as GetEdgeConfigItemsQueryParams, type components_GetEdgeConfigItemsVariables as GetEdgeConfigItemsVariables, type components_GetEdgeConfigPathParams as GetEdgeConfigPathParams, type components_GetEdgeConfigQueryParams as GetEdgeConfigQueryParams, type components_GetEdgeConfigResponse as GetEdgeConfigResponse, type components_GetEdgeConfigSchemaError as GetEdgeConfigSchemaError, type components_GetEdgeConfigSchemaPathParams as GetEdgeConfigSchemaPathParams, type components_GetEdgeConfigSchemaQueryParams as GetEdgeConfigSchemaQueryParams, type components_GetEdgeConfigSchemaVariables as GetEdgeConfigSchemaVariables, type components_GetEdgeConfigTokenError as GetEdgeConfigTokenError, type components_GetEdgeConfigTokenPathParams as GetEdgeConfigTokenPathParams, type components_GetEdgeConfigTokenQueryParams as GetEdgeConfigTokenQueryParams, type components_GetEdgeConfigTokenVariables as GetEdgeConfigTokenVariables, type components_GetEdgeConfigTokensError as GetEdgeConfigTokensError, type components_GetEdgeConfigTokensPathParams as GetEdgeConfigTokensPathParams, type components_GetEdgeConfigTokensQueryParams as GetEdgeConfigTokensQueryParams, type components_GetEdgeConfigTokensVariables as GetEdgeConfigTokensVariables, type components_GetEdgeConfigVariables as GetEdgeConfigVariables, type components_GetEdgeConfigsError as GetEdgeConfigsError, type components_GetEdgeConfigsQueryParams as GetEdgeConfigsQueryParams, type components_GetEdgeConfigsResponse as GetEdgeConfigsResponse, type components_GetEdgeConfigsVariables as GetEdgeConfigsVariables, type components_GetFirewallConfigError as GetFirewallConfigError, type components_GetFirewallConfigQueryParams as GetFirewallConfigQueryParams, type components_GetFirewallConfigResponse as GetFirewallConfigResponse, type components_GetFirewallConfigVariables as GetFirewallConfigVariables, type components_GetIntegrationLogDrainsError as GetIntegrationLogDrainsError, type components_GetIntegrationLogDrainsQueryParams as GetIntegrationLogDrainsQueryParams, type components_GetIntegrationLogDrainsResponse as GetIntegrationLogDrainsResponse, type components_GetIntegrationLogDrainsVariables as GetIntegrationLogDrainsVariables, type components_GetInvoiceError as GetInvoiceError, type components_GetInvoicePathParams as GetInvoicePathParams, type components_GetInvoiceResponse as GetInvoiceResponse, type components_GetInvoiceVariables as GetInvoiceVariables, type components_GetMemberError as GetMemberError, type components_GetMemberPathParams as GetMemberPathParams, type components_GetMemberResponse as GetMemberResponse, type components_GetMemberVariables as GetMemberVariables, type components_GetProjectDomainError as GetProjectDomainError, type components_GetProjectDomainPathParams as GetProjectDomainPathParams, type components_GetProjectDomainQueryParams as GetProjectDomainQueryParams, type components_GetProjectDomainResponse as GetProjectDomainResponse, type components_GetProjectDomainVariables as GetProjectDomainVariables, type components_GetProjectDomainsError as GetProjectDomainsError, type components_GetProjectDomainsPathParams as GetProjectDomainsPathParams, type components_GetProjectDomainsQueryParams as GetProjectDomainsQueryParams, type components_GetProjectDomainsResponse as GetProjectDomainsResponse, type components_GetProjectDomainsVariables as GetProjectDomainsVariables, type components_GetProjectEnvError as GetProjectEnvError, type components_GetProjectEnvPathParams as GetProjectEnvPathParams, type components_GetProjectEnvQueryParams as GetProjectEnvQueryParams, type components_GetProjectEnvVariables as GetProjectEnvVariables, type components_GetProjectError as GetProjectError, type components_GetProjectMembersError as GetProjectMembersError, type components_GetProjectMembersPathParams as GetProjectMembersPathParams, type components_GetProjectMembersQueryParams as GetProjectMembersQueryParams, type components_GetProjectMembersVariables as GetProjectMembersVariables, type components_GetProjectPathParams as GetProjectPathParams, type components_GetProjectQueryParams as GetProjectQueryParams, type components_GetProjectResponse as GetProjectResponse, type components_GetProjectVariables as GetProjectVariables, type components_GetProjectsError as GetProjectsError, type components_GetProjectsQueryParams as GetProjectsQueryParams, type components_GetProjectsResponse as GetProjectsResponse, type components_GetProjectsVariables as GetProjectsVariables, type components_GetRecordsError as GetRecordsError, type components_GetRecordsPathParams as GetRecordsPathParams, type components_GetRecordsQueryParams as GetRecordsQueryParams, type components_GetRecordsVariables as GetRecordsVariables, type components_GetSecretError as GetSecretError, type components_GetSecretPathParams as GetSecretPathParams, type components_GetSecretQueryParams as GetSecretQueryParams, type components_GetSecretResponse as GetSecretResponse, type components_GetSecretVariables as GetSecretVariables, type components_GetSecretsError as GetSecretsError, type components_GetSecretsQueryParams as GetSecretsQueryParams, type components_GetSecretsResponse as GetSecretsResponse, type components_GetSecretsVariables as GetSecretsVariables, type components_GetTeamAccessRequestError as GetTeamAccessRequestError, type components_GetTeamAccessRequestPathParams as GetTeamAccessRequestPathParams, type components_GetTeamAccessRequestResponse as GetTeamAccessRequestResponse, type components_GetTeamAccessRequestVariables as GetTeamAccessRequestVariables, type components_GetTeamError as GetTeamError, type components_GetTeamMembersError as GetTeamMembersError, type components_GetTeamMembersQueryParams as GetTeamMembersQueryParams, type components_GetTeamMembersResponse as GetTeamMembersResponse, type components_GetTeamMembersVariables as GetTeamMembersVariables, type components_GetTeamPathParams as GetTeamPathParams, type components_GetTeamQueryParams as GetTeamQueryParams, type components_GetTeamVariables as GetTeamVariables, type components_GetTeamsError as GetTeamsError, type components_GetTeamsQueryParams as GetTeamsQueryParams, type components_GetTeamsResponse as GetTeamsResponse, type components_GetTeamsVariables as GetTeamsVariables, type components_GetV1ExperimentationItemsError as GetV1ExperimentationItemsError, type components_GetV1ExperimentationItemsQueryParams as GetV1ExperimentationItemsQueryParams, type components_GetV1ExperimentationItemsResponse as GetV1ExperimentationItemsResponse, type components_GetV1ExperimentationItemsVariables as GetV1ExperimentationItemsVariables, type components_GetV9ProjectsIdOrNameCustomEnvironmentsError as GetV9ProjectsIdOrNameCustomEnvironmentsError, type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams as GetV9ProjectsIdOrNameCustomEnvironmentsPathParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams as GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams, type components_GetV9ProjectsIdOrNameCustomEnvironmentsResponse as GetV9ProjectsIdOrNameCustomEnvironmentsResponse, type components_GetV9ProjectsIdOrNameCustomEnvironmentsVariables as GetV9ProjectsIdOrNameCustomEnvironmentsVariables, type components_GetWebhookError as GetWebhookError, type components_GetWebhookPathParams as GetWebhookPathParams, type components_GetWebhookQueryParams as GetWebhookQueryParams, type components_GetWebhookResponse as GetWebhookResponse, type components_GetWebhookVariables as GetWebhookVariables, type components_GetWebhooksError as GetWebhooksError, type components_GetWebhooksQueryParams as GetWebhooksQueryParams, type components_GetWebhooksVariables as GetWebhooksVariables, type components_GitNamespacesError as GitNamespacesError, type components_GitNamespacesQueryParams as GitNamespacesQueryParams, type components_GitNamespacesResponse as GitNamespacesResponse, type components_GitNamespacesVariables as GitNamespacesVariables, type components_ImportResourceError as ImportResourceError, type components_ImportResourcePathParams as ImportResourcePathParams, type components_ImportResourceRequestBody as ImportResourceRequestBody, type components_ImportResourceResponse as ImportResourceResponse, type components_ImportResourceVariables as ImportResourceVariables, type components_InviteUserToTeamError as InviteUserToTeamError, type components_InviteUserToTeamRequestBody as InviteUserToTeamRequestBody, type components_InviteUserToTeamVariables as InviteUserToTeamVariables, type components_IssueCertError as IssueCertError, type components_IssueCertQueryParams as IssueCertQueryParams, type components_IssueCertRequestBody as IssueCertRequestBody, type components_IssueCertResponse as IssueCertResponse, type components_IssueCertVariables as IssueCertVariables, type components_JoinTeamError as JoinTeamError, type components_JoinTeamRequestBody as JoinTeamRequestBody, type components_JoinTeamResponse as JoinTeamResponse, type components_JoinTeamVariables as JoinTeamVariables, type components_ListAccessGroupMembersError as ListAccessGroupMembersError, type components_ListAccessGroupMembersPathParams as ListAccessGroupMembersPathParams, type components_ListAccessGroupMembersQueryParams as ListAccessGroupMembersQueryParams, type components_ListAccessGroupMembersResponse as ListAccessGroupMembersResponse, type components_ListAccessGroupMembersVariables as ListAccessGroupMembersVariables, type components_ListAccessGroupProjectsError as ListAccessGroupProjectsError, type components_ListAccessGroupProjectsPathParams as ListAccessGroupProjectsPathParams, type components_ListAccessGroupProjectsQueryParams as ListAccessGroupProjectsQueryParams, type components_ListAccessGroupProjectsResponse as ListAccessGroupProjectsResponse, type components_ListAccessGroupProjectsVariables as ListAccessGroupProjectsVariables, type components_ListAccessGroupsError as ListAccessGroupsError, type components_ListAccessGroupsQueryParams as ListAccessGroupsQueryParams, type components_ListAccessGroupsVariables as ListAccessGroupsVariables, type components_ListAliasesError as ListAliasesError, type components_ListAliasesQueryParams as ListAliasesQueryParams, type components_ListAliasesResponse as ListAliasesResponse, type components_ListAliasesVariables as ListAliasesVariables, type components_ListAuthTokensError as ListAuthTokensError, type components_ListAuthTokensResponse as ListAuthTokensResponse, type components_ListAuthTokensVariables as ListAuthTokensVariables, type components_ListDeploymentAliasesError as ListDeploymentAliasesError, type components_ListDeploymentAliasesPathParams as ListDeploymentAliasesPathParams, type components_ListDeploymentAliasesQueryParams as ListDeploymentAliasesQueryParams, type components_ListDeploymentAliasesResponse as ListDeploymentAliasesResponse, type components_ListDeploymentAliasesVariables as ListDeploymentAliasesVariables, type components_ListDeploymentFilesError as ListDeploymentFilesError, type components_ListDeploymentFilesPathParams as ListDeploymentFilesPathParams, type components_ListDeploymentFilesQueryParams as ListDeploymentFilesQueryParams, type components_ListDeploymentFilesResponse as ListDeploymentFilesResponse, type components_ListDeploymentFilesVariables as ListDeploymentFilesVariables, type components_ListPromoteAliasesError as ListPromoteAliasesError, type components_ListPromoteAliasesPathParams as ListPromoteAliasesPathParams, type components_ListPromoteAliasesQueryParams as ListPromoteAliasesQueryParams, type components_ListPromoteAliasesVariables as ListPromoteAliasesVariables, type components_ListUserEventsError as ListUserEventsError, type components_ListUserEventsQueryParams as ListUserEventsQueryParams, type components_ListUserEventsResponse as ListUserEventsResponse, type components_ListUserEventsVariables as ListUserEventsVariables, type components_PatchDataCacheBillingSettingsError as PatchDataCacheBillingSettingsError, type components_PatchDataCacheBillingSettingsRequestBody as PatchDataCacheBillingSettingsRequestBody, type components_PatchDataCacheBillingSettingsResponse as PatchDataCacheBillingSettingsResponse, type components_PatchDataCacheBillingSettingsVariables as PatchDataCacheBillingSettingsVariables, type components_PatchDomainError as PatchDomainError, type components_PatchDomainPathParams as PatchDomainPathParams, type components_PatchDomainQueryParams as PatchDomainQueryParams, type components_PatchDomainVariables as PatchDomainVariables, type components_PatchEdgeConfigItemsError as PatchEdgeConfigItemsError, type components_PatchEdgeConfigItemsPathParams as PatchEdgeConfigItemsPathParams, type components_PatchEdgeConfigItemsQueryParams as PatchEdgeConfigItemsQueryParams, type components_PatchEdgeConfigItemsRequestBody as PatchEdgeConfigItemsRequestBody, type components_PatchEdgeConfigItemsResponse as PatchEdgeConfigItemsResponse, type components_PatchEdgeConfigItemsVariables as PatchEdgeConfigItemsVariables, type components_PatchEdgeConfigSchemaError as PatchEdgeConfigSchemaError, type components_PatchEdgeConfigSchemaPathParams as PatchEdgeConfigSchemaPathParams, type components_PatchEdgeConfigSchemaQueryParams as PatchEdgeConfigSchemaQueryParams, type components_PatchEdgeConfigSchemaRequestBody as PatchEdgeConfigSchemaRequestBody, type components_PatchEdgeConfigSchemaVariables as PatchEdgeConfigSchemaVariables, type components_PatchTeamError as PatchTeamError, type components_PatchTeamPathParams as PatchTeamPathParams, type components_PatchTeamQueryParams as PatchTeamQueryParams, type components_PatchTeamRequestBody as PatchTeamRequestBody, type components_PatchTeamVariables as PatchTeamVariables, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody, type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables as PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, type components_PauseProjectError as PauseProjectError, type components_PauseProjectPathParams as PauseProjectPathParams, type components_PauseProjectQueryParams as PauseProjectQueryParams, type components_PauseProjectVariables as PauseProjectVariables, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody, type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables as PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, type components_PutFirewallConfigError as PutFirewallConfigError, type components_PutFirewallConfigQueryParams as PutFirewallConfigQueryParams, type components_PutFirewallConfigRequestBody as PutFirewallConfigRequestBody, type components_PutFirewallConfigResponse as PutFirewallConfigResponse, type components_PutFirewallConfigVariables as PutFirewallConfigVariables, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigError, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse, type components_PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables as PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, type components_ReadAccessGroupError as ReadAccessGroupError, type components_ReadAccessGroupPathParams as ReadAccessGroupPathParams, type components_ReadAccessGroupProjectError as ReadAccessGroupProjectError, type components_ReadAccessGroupProjectPathParams as ReadAccessGroupProjectPathParams, type components_ReadAccessGroupProjectQueryParams as ReadAccessGroupProjectQueryParams, type components_ReadAccessGroupProjectResponse as ReadAccessGroupProjectResponse, type components_ReadAccessGroupProjectVariables as ReadAccessGroupProjectVariables, type components_ReadAccessGroupQueryParams as ReadAccessGroupQueryParams, type components_ReadAccessGroupResponse as ReadAccessGroupResponse, type components_ReadAccessGroupVariables as ReadAccessGroupVariables, type components_RecordEventsError as RecordEventsError, type components_RecordEventsHeaders as RecordEventsHeaders, type components_RecordEventsQueryParams as RecordEventsQueryParams, type components_RecordEventsRequestBody as RecordEventsRequestBody, type components_RecordEventsVariables as RecordEventsVariables, type components_RemoveBypassIpError as RemoveBypassIpError, type components_RemoveBypassIpQueryParams as RemoveBypassIpQueryParams, type components_RemoveBypassIpResponse as RemoveBypassIpResponse, type components_RemoveBypassIpVariables as RemoveBypassIpVariables, type components_RemoveCertError as RemoveCertError, type components_RemoveCertPathParams as RemoveCertPathParams, type components_RemoveCertQueryParams as RemoveCertQueryParams, type components_RemoveCertVariables as RemoveCertVariables, type components_RemoveCustomEnvironmentError as RemoveCustomEnvironmentError, type components_RemoveCustomEnvironmentPathParams as RemoveCustomEnvironmentPathParams, type components_RemoveCustomEnvironmentQueryParams as RemoveCustomEnvironmentQueryParams, type components_RemoveCustomEnvironmentRequestBody as RemoveCustomEnvironmentRequestBody, type components_RemoveCustomEnvironmentVariables as RemoveCustomEnvironmentVariables, type components_RemoveProjectDomainError as RemoveProjectDomainError, type components_RemoveProjectDomainPathParams as RemoveProjectDomainPathParams, type components_RemoveProjectDomainQueryParams as RemoveProjectDomainQueryParams, type components_RemoveProjectDomainVariables as RemoveProjectDomainVariables, type components_RemoveProjectEnvError as RemoveProjectEnvError, type components_RemoveProjectEnvPathParams as RemoveProjectEnvPathParams, type components_RemoveProjectEnvQueryParams as RemoveProjectEnvQueryParams, type components_RemoveProjectEnvVariables as RemoveProjectEnvVariables, type components_RemoveProjectMemberError as RemoveProjectMemberError, type components_RemoveProjectMemberPathParams as RemoveProjectMemberPathParams, type components_RemoveProjectMemberQueryParams as RemoveProjectMemberQueryParams, type components_RemoveProjectMemberResponse as RemoveProjectMemberResponse, type components_RemoveProjectMemberVariables as RemoveProjectMemberVariables, type components_RemoveRecordError as RemoveRecordError, type components_RemoveRecordPathParams as RemoveRecordPathParams, type components_RemoveRecordQueryParams as RemoveRecordQueryParams, type components_RemoveRecordVariables as RemoveRecordVariables, type components_RemoveTeamMemberError as RemoveTeamMemberError, type components_RemoveTeamMemberPathParams as RemoveTeamMemberPathParams, type components_RemoveTeamMemberQueryParams as RemoveTeamMemberQueryParams, type components_RemoveTeamMemberResponse as RemoveTeamMemberResponse, type components_RemoveTeamMemberVariables as RemoveTeamMemberVariables, type components_RenameSecretError as RenameSecretError, type components_RenameSecretPathParams as RenameSecretPathParams, type components_RenameSecretQueryParams as RenameSecretQueryParams, type components_RenameSecretRequestBody as RenameSecretRequestBody, type components_RenameSecretResponse as RenameSecretResponse, type components_RenameSecretVariables as RenameSecretVariables, type components_RequestAccessToTeamError as RequestAccessToTeamError, type components_RequestAccessToTeamRequestBody as RequestAccessToTeamRequestBody, type components_RequestAccessToTeamResponse as RequestAccessToTeamResponse, type components_RequestAccessToTeamVariables as RequestAccessToTeamVariables, type components_RequestDeleteError as RequestDeleteError, type components_RequestDeleteRequestBody as RequestDeleteRequestBody, type components_RequestDeleteResponse as RequestDeleteResponse, type components_RequestDeleteVariables as RequestDeleteVariables, type components_RequestPromoteError as RequestPromoteError, type components_RequestPromotePathParams as RequestPromotePathParams, type components_RequestPromoteQueryParams as RequestPromoteQueryParams, type components_RequestPromoteVariables as RequestPromoteVariables, type components_RerequestCheckError as RerequestCheckError, type components_RerequestCheckPathParams as RerequestCheckPathParams, type components_RerequestCheckQueryParams as RerequestCheckQueryParams, type components_RerequestCheckVariables as RerequestCheckVariables, type components_SearchRepoError as SearchRepoError, type components_SearchRepoQueryParams as SearchRepoQueryParams, type components_SearchRepoVariables as SearchRepoVariables, type components_StatusError as StatusError, type components_StatusQueryParams as StatusQueryParams, type components_StatusResponse as StatusResponse, type components_StatusVariables as StatusVariables, type components_SubmitBillingDataError as SubmitBillingDataError, type components_SubmitBillingDataPathParams as SubmitBillingDataPathParams, type components_SubmitBillingDataRequestBody as SubmitBillingDataRequestBody, type components_SubmitBillingDataVariables as SubmitBillingDataVariables, type components_SubmitInvoiceError as SubmitInvoiceError, type components_SubmitInvoicePathParams as SubmitInvoicePathParams, type components_SubmitInvoiceRequestBody as SubmitInvoiceRequestBody, type components_SubmitInvoiceResponse as SubmitInvoiceResponse, type components_SubmitInvoiceVariables as SubmitInvoiceVariables, type components_SubmitPrepaymentBalancesError as SubmitPrepaymentBalancesError, type components_SubmitPrepaymentBalancesPathParams as SubmitPrepaymentBalancesPathParams, type components_SubmitPrepaymentBalancesRequestBody as SubmitPrepaymentBalancesRequestBody, type components_SubmitPrepaymentBalancesVariables as SubmitPrepaymentBalancesVariables, type components_UnpauseProjectError as UnpauseProjectError, type components_UnpauseProjectPathParams as UnpauseProjectPathParams, type components_UnpauseProjectQueryParams as UnpauseProjectQueryParams, type components_UnpauseProjectVariables as UnpauseProjectVariables, type components_UpdateAccessGroupError as UpdateAccessGroupError, type components_UpdateAccessGroupPathParams as UpdateAccessGroupPathParams, type components_UpdateAccessGroupProjectError as UpdateAccessGroupProjectError, type components_UpdateAccessGroupProjectPathParams as UpdateAccessGroupProjectPathParams, type components_UpdateAccessGroupProjectQueryParams as UpdateAccessGroupProjectQueryParams, type components_UpdateAccessGroupProjectRequestBody as UpdateAccessGroupProjectRequestBody, type components_UpdateAccessGroupProjectResponse as UpdateAccessGroupProjectResponse, type components_UpdateAccessGroupProjectVariables as UpdateAccessGroupProjectVariables, type components_UpdateAccessGroupQueryParams as UpdateAccessGroupQueryParams, type components_UpdateAccessGroupRequestBody as UpdateAccessGroupRequestBody, type components_UpdateAccessGroupResponse as UpdateAccessGroupResponse, type components_UpdateAccessGroupVariables as UpdateAccessGroupVariables, type components_UpdateAttackChallengeModeError as UpdateAttackChallengeModeError, type components_UpdateAttackChallengeModeQueryParams as UpdateAttackChallengeModeQueryParams, type components_UpdateAttackChallengeModeRequestBody as UpdateAttackChallengeModeRequestBody, type components_UpdateAttackChallengeModeResponse as UpdateAttackChallengeModeResponse, type components_UpdateAttackChallengeModeVariables as UpdateAttackChallengeModeVariables, type components_UpdateCheckError as UpdateCheckError, type components_UpdateCheckPathParams as UpdateCheckPathParams, type components_UpdateCheckQueryParams as UpdateCheckQueryParams, type components_UpdateCheckRequestBody as UpdateCheckRequestBody, type components_UpdateCheckResponse as UpdateCheckResponse, type components_UpdateCheckVariables as UpdateCheckVariables, type components_UpdateCustomEnvironmentError as UpdateCustomEnvironmentError, type components_UpdateCustomEnvironmentPathParams as UpdateCustomEnvironmentPathParams, type components_UpdateCustomEnvironmentQueryParams as UpdateCustomEnvironmentQueryParams, type components_UpdateCustomEnvironmentRequestBody as UpdateCustomEnvironmentRequestBody, type components_UpdateCustomEnvironmentVariables as UpdateCustomEnvironmentVariables, type components_UpdateEdgeConfigError as UpdateEdgeConfigError, type components_UpdateEdgeConfigPathParams as UpdateEdgeConfigPathParams, type components_UpdateEdgeConfigQueryParams as UpdateEdgeConfigQueryParams, type components_UpdateEdgeConfigRequestBody as UpdateEdgeConfigRequestBody, type components_UpdateEdgeConfigResponse as UpdateEdgeConfigResponse, type components_UpdateEdgeConfigVariables as UpdateEdgeConfigVariables, type components_UpdateFirewallConfigError as UpdateFirewallConfigError, type components_UpdateFirewallConfigQueryParams as UpdateFirewallConfigQueryParams, type components_UpdateFirewallConfigVariables as UpdateFirewallConfigVariables, type components_UpdateIntegrationDeploymentActionError as UpdateIntegrationDeploymentActionError, type components_UpdateIntegrationDeploymentActionPathParams as UpdateIntegrationDeploymentActionPathParams, type components_UpdateIntegrationDeploymentActionRequestBody as UpdateIntegrationDeploymentActionRequestBody, type components_UpdateIntegrationDeploymentActionVariables as UpdateIntegrationDeploymentActionVariables, type components_UpdateInvoiceError as UpdateInvoiceError, type components_UpdateInvoicePathParams as UpdateInvoicePathParams, type components_UpdateInvoiceRequestBody as UpdateInvoiceRequestBody, type components_UpdateInvoiceVariables as UpdateInvoiceVariables, type components_UpdateProjectDataCacheError as UpdateProjectDataCacheError, type components_UpdateProjectDataCachePathParams as UpdateProjectDataCachePathParams, type components_UpdateProjectDataCacheQueryParams as UpdateProjectDataCacheQueryParams, type components_UpdateProjectDataCacheRequestBody as UpdateProjectDataCacheRequestBody, type components_UpdateProjectDataCacheResponse as UpdateProjectDataCacheResponse, type components_UpdateProjectDataCacheVariables as UpdateProjectDataCacheVariables, type components_UpdateProjectDomainError as UpdateProjectDomainError, type components_UpdateProjectDomainPathParams as UpdateProjectDomainPathParams, type components_UpdateProjectDomainQueryParams as UpdateProjectDomainQueryParams, type components_UpdateProjectDomainRequestBody as UpdateProjectDomainRequestBody, type components_UpdateProjectDomainResponse as UpdateProjectDomainResponse, type components_UpdateProjectDomainVariables as UpdateProjectDomainVariables, type components_UpdateProjectError as UpdateProjectError, type components_UpdateProjectPathParams as UpdateProjectPathParams, type components_UpdateProjectProtectionBypassError as UpdateProjectProtectionBypassError, type components_UpdateProjectProtectionBypassPathParams as UpdateProjectProtectionBypassPathParams, type components_UpdateProjectProtectionBypassQueryParams as UpdateProjectProtectionBypassQueryParams, type components_UpdateProjectProtectionBypassRequestBody as UpdateProjectProtectionBypassRequestBody, type components_UpdateProjectProtectionBypassResponse as UpdateProjectProtectionBypassResponse, type components_UpdateProjectProtectionBypassVariables as UpdateProjectProtectionBypassVariables, type components_UpdateProjectQueryParams as UpdateProjectQueryParams, type components_UpdateProjectRequestBody as UpdateProjectRequestBody, type components_UpdateProjectResponse as UpdateProjectResponse, type components_UpdateProjectVariables as UpdateProjectVariables, type components_UpdateRecordError as UpdateRecordError, type components_UpdateRecordPathParams as UpdateRecordPathParams, type components_UpdateRecordQueryParams as UpdateRecordQueryParams, type components_UpdateRecordRequestBody as UpdateRecordRequestBody, type components_UpdateRecordResponse as UpdateRecordResponse, type components_UpdateRecordVariables as UpdateRecordVariables, type components_UpdateResourceSecretsByIdError as UpdateResourceSecretsByIdError, type components_UpdateResourceSecretsByIdPathParams as UpdateResourceSecretsByIdPathParams, type components_UpdateResourceSecretsByIdRequestBody as UpdateResourceSecretsByIdRequestBody, type components_UpdateResourceSecretsByIdVariables as UpdateResourceSecretsByIdVariables, type components_UpdateResourceSecretsError as UpdateResourceSecretsError, type components_UpdateResourceSecretsPathParams as UpdateResourceSecretsPathParams, type components_UpdateResourceSecretsRequestBody as UpdateResourceSecretsRequestBody, type components_UpdateResourceSecretsVariables as UpdateResourceSecretsVariables, type components_UpdateTeamMemberError as UpdateTeamMemberError, type components_UpdateTeamMemberPathParams as UpdateTeamMemberPathParams, type components_UpdateTeamMemberRequestBody as UpdateTeamMemberRequestBody, type components_UpdateTeamMemberResponse as UpdateTeamMemberResponse, type components_UpdateTeamMemberVariables as UpdateTeamMemberVariables, type components_UploadArtifactError as UploadArtifactError, type components_UploadArtifactHeaders as UploadArtifactHeaders, type components_UploadArtifactPathParams as UploadArtifactPathParams, type components_UploadArtifactQueryParams as UploadArtifactQueryParams, type components_UploadArtifactResponse as UploadArtifactResponse, type components_UploadArtifactVariables as UploadArtifactVariables, type components_UploadCertError as UploadCertError, type components_UploadCertQueryParams as UploadCertQueryParams, type components_UploadCertRequestBody as UploadCertRequestBody, type components_UploadCertResponse as UploadCertResponse, type components_UploadCertVariables as UploadCertVariables, type components_UploadFileError as UploadFileError, type components_UploadFileHeaders as UploadFileHeaders, type components_UploadFileQueryParams as UploadFileQueryParams, type components_UploadFileVariables as UploadFileVariables, type components_VerifyProjectDomainError as VerifyProjectDomainError, type components_VerifyProjectDomainPathParams as VerifyProjectDomainPathParams, type components_VerifyProjectDomainQueryParams as VerifyProjectDomainQueryParams, type components_VerifyProjectDomainResponse as VerifyProjectDomainResponse, type components_VerifyProjectDomainVariables as VerifyProjectDomainVariables, components_acceptProjectTransferRequest as acceptProjectTransferRequest, components_addBypassIp as addBypassIp, components_addProjectDomain as addProjectDomain, components_addProjectMember as addProjectMember, components_artifactQuery as artifactQuery, components_assignAlias as assignAlias, components_buyDomain as buyDomain, components_cancelDeployment as cancelDeployment, components_checkDomainPrice as checkDomainPrice, components_checkDomainStatus as checkDomainStatus, components_createAccessGroup as createAccessGroup, components_createAccessGroupProject as createAccessGroupProject, components_createAuthToken as createAuthToken, components_createCheck as createCheck, components_createConfigurableLogDrain as createConfigurableLogDrain, components_createCustomEnvironment as createCustomEnvironment, components_createDeployment as createDeployment, components_createEdgeConfig as createEdgeConfig, components_createEdgeConfigToken as createEdgeConfigToken, components_createEvent as createEvent, components_createLogDrain as createLogDrain, components_createOrTransferDomain as createOrTransferDomain, components_createProject as createProject, components_createProjectEnv as createProjectEnv, components_createProjectTransferRequest as createProjectTransferRequest, components_createRecord as createRecord, components_createSecret as createSecret, components_createTeam as createTeam, components_createWebhook as createWebhook, components_deleteAccessGroup as deleteAccessGroup, components_deleteAccessGroupProject as deleteAccessGroupProject, components_deleteAlias as deleteAlias, components_deleteAuthToken as deleteAuthToken, components_deleteConfigurableLogDrain as deleteConfigurableLogDrain, components_deleteConfiguration as deleteConfiguration, components_deleteDataCachePurgeAll as deleteDataCachePurgeAll, components_deleteDeployment as deleteDeployment, components_deleteDomain as deleteDomain, components_deleteEdgeConfig as deleteEdgeConfig, components_deleteEdgeConfigSchema as deleteEdgeConfigSchema, components_deleteEdgeConfigTokens as deleteEdgeConfigTokens, components_deleteIntegrationLogDrain as deleteIntegrationLogDrain, components_deleteProject as deleteProject, components_deleteSecret as deleteSecret, components_deleteTeam as deleteTeam, components_deleteTeamInviteCode as deleteTeamInviteCode, components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_deleteWebhook as deleteWebhook, components_downloadArtifact as downloadArtifact, components_editProjectEnv as editProjectEnv, components_exchangeSsoToken as exchangeSsoToken, components_filterProjectEnvs as filterProjectEnvs, components_getAccountInfo as getAccountInfo, components_getActiveAttackStatus as getActiveAttackStatus, components_getAlias as getAlias, components_getAllChecks as getAllChecks, components_getAllLogDrains as getAllLogDrains, components_getAuthToken as getAuthToken, components_getAuthUser as getAuthUser, components_getBypassIp as getBypassIp, components_getCertById as getCertById, components_getCerts as getCerts, components_getCheck as getCheck, components_getConfigurableLogDrain as getConfigurableLogDrain, components_getConfiguration as getConfiguration, components_getConfigurations as getConfigurations, components_getCustomEnvironment as getCustomEnvironment, components_getDeployment as getDeployment, components_getDeploymentEvents as getDeploymentEvents, components_getDeploymentFileContents as getDeploymentFileContents, components_getDeployments as getDeployments, components_getDomain as getDomain, components_getDomainConfig as getDomainConfig, components_getDomainTransfer as getDomainTransfer, components_getDomains as getDomains, components_getEdgeConfig as getEdgeConfig, components_getEdgeConfigBackup as getEdgeConfigBackup, components_getEdgeConfigBackups as getEdgeConfigBackups, components_getEdgeConfigItem as getEdgeConfigItem, components_getEdgeConfigItems as getEdgeConfigItems, components_getEdgeConfigSchema as getEdgeConfigSchema, components_getEdgeConfigToken as getEdgeConfigToken, components_getEdgeConfigTokens as getEdgeConfigTokens, components_getEdgeConfigs as getEdgeConfigs, components_getFirewallConfig as getFirewallConfig, components_getIntegrationLogDrains as getIntegrationLogDrains, components_getInvoice as getInvoice, components_getMember as getMember, components_getProject as getProject, components_getProjectDomain as getProjectDomain, components_getProjectDomains as getProjectDomains, components_getProjectEnv as getProjectEnv, components_getProjectMembers as getProjectMembers, components_getProjects as getProjects, components_getRecords as getRecords, components_getSecret as getSecret, components_getSecrets as getSecrets, components_getTeam as getTeam, components_getTeamAccessRequest as getTeamAccessRequest, components_getTeamMembers as getTeamMembers, components_getTeams as getTeams, components_getV1ExperimentationItems as getV1ExperimentationItems, components_getV9ProjectsIdOrNameCustomEnvironments as getV9ProjectsIdOrNameCustomEnvironments, components_getWebhook as getWebhook, components_getWebhooks as getWebhooks, components_gitNamespaces as gitNamespaces, components_importResource as importResource, components_inviteUserToTeam as inviteUserToTeam, components_issueCert as issueCert, components_joinTeam as joinTeam, components_listAccessGroupMembers as listAccessGroupMembers, components_listAccessGroupProjects as listAccessGroupProjects, components_listAccessGroups as listAccessGroups, components_listAliases as listAliases, components_listAuthTokens as listAuthTokens, components_listDeploymentAliases as listDeploymentAliases, components_listDeploymentFiles as listDeploymentFiles, components_listPromoteAliases as listPromoteAliases, components_listUserEvents as listUserEvents, components_operationsByTag as operationsByTag, components_patchDataCacheBillingSettings as patchDataCacheBillingSettings, components_patchDomain as patchDomain, components_patchEdgeConfigItems as patchEdgeConfigItems, components_patchEdgeConfigSchema as patchEdgeConfigSchema, components_patchTeam as patchTeam, components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId as patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId, components_pauseProject as pauseProject, components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems as postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems, components_putFirewallConfig as putFirewallConfig, components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig as putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig, components_readAccessGroup as readAccessGroup, components_readAccessGroupProject as readAccessGroupProject, components_recordEvents as recordEvents, components_removeBypassIp as removeBypassIp, components_removeCert as removeCert, components_removeCustomEnvironment as removeCustomEnvironment, components_removeProjectDomain as removeProjectDomain, components_removeProjectEnv as removeProjectEnv, components_removeProjectMember as removeProjectMember, components_removeRecord as removeRecord, components_removeTeamMember as removeTeamMember, components_renameSecret as renameSecret, components_requestAccessToTeam as requestAccessToTeam, components_requestDelete as requestDelete, components_requestPromote as requestPromote, components_rerequestCheck as rerequestCheck, components_searchRepo as searchRepo, components_status as status, components_submitBillingData as submitBillingData, components_submitInvoice as submitInvoice, components_submitPrepaymentBalances as submitPrepaymentBalances, components_unpauseProject as unpauseProject, components_updateAccessGroup as updateAccessGroup, components_updateAccessGroupProject as updateAccessGroupProject, components_updateAttackChallengeMode as updateAttackChallengeMode, components_updateCheck as updateCheck, components_updateCustomEnvironment as updateCustomEnvironment, components_updateEdgeConfig as updateEdgeConfig, components_updateFirewallConfig as updateFirewallConfig, components_updateIntegrationDeploymentAction as updateIntegrationDeploymentAction, components_updateInvoice as updateInvoice, components_updateProject as updateProject, components_updateProjectDataCache as updateProjectDataCache, components_updateProjectDomain as updateProjectDomain, components_updateProjectProtectionBypass as updateProjectProtectionBypass, components_updateRecord as updateRecord, components_updateResourceSecrets as updateResourceSecrets, components_updateResourceSecretsById as updateResourceSecretsById, components_updateTeamMember as updateTeamMember, components_uploadArtifact as uploadArtifact, components_uploadCert as uploadCert, components_uploadFile as uploadFile, components_verifyProjectDomain as verifyProjectDomain };
21726
22145
  }
21727
22146
 
21728
22147
  declare const operationsByPath: {
@@ -21769,6 +22188,7 @@ declare const operationsByPath: {
21769
22188
  'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
21770
22189
  'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
21771
22190
  'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<undefined>;
22191
+ 'PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}': (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
21772
22192
  'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
21773
22193
  aliasAssignedAt?: number | boolean | null;
21774
22194
  alwaysRefuseToBuild?: boolean;
@@ -21784,7 +22204,7 @@ declare const operationsByPath: {
21784
22204
  projectSettings: {
21785
22205
  buildCommand?: string | null;
21786
22206
  devCommand?: string | null;
21787
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
22207
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
21788
22208
  commandForIgnoringBuildStep?: string | null;
21789
22209
  installCommand?: string | null;
21790
22210
  outputDirectory?: string | null;
@@ -22104,7 +22524,7 @@ declare const operationsByPath: {
22104
22524
  microfrontends?: {
22105
22525
  isDefaultApp?: boolean;
22106
22526
  defaultRoute?: string;
22107
- groupIds: string[];
22527
+ groupIds: (string | string)[];
22108
22528
  } | {
22109
22529
  applications?: {
22110
22530
  [key: string]: {
@@ -22115,7 +22535,15 @@ declare const operationsByPath: {
22115
22535
  };
22116
22536
  isDefaultApp: boolean;
22117
22537
  defaultRoute?: string;
22118
- groupIds: string[];
22538
+ groupIds: (string | string)[];
22539
+ };
22540
+ config?: {
22541
+ version?: number;
22542
+ functionType: "fluid" | "standard";
22543
+ functionMemoryType: "standard" | "standard_legacy" | "performance";
22544
+ functionTimeout: number | null;
22545
+ secureComputePrimaryRegion: string | null;
22546
+ secureComputeFallbackRegion: string | null;
22119
22547
  };
22120
22548
  } | {
22121
22549
  alias?: string[];
@@ -22334,6 +22762,10 @@ declare const operationsByPath: {
22334
22762
  zone?: boolean;
22335
22763
  }>;
22336
22764
  'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
22765
+ 'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
22766
+ 'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
22767
+ 'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
22768
+ 'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
22337
22769
  'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
22338
22770
  'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
22339
22771
  'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
@@ -22417,8 +22849,10 @@ declare const operationsByPath: {
22417
22849
  'POST /v1/installations/{integrationConfigurationId}/billing/invoices': (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
22418
22850
  'GET /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}': (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
22419
22851
  'POST /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}/actions': (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
22852
+ 'POST /v1/installations/{integrationConfigurationId}/billing/balance': (variables: SubmitPrepaymentBalancesVariables, signal?: AbortSignal) => Promise<undefined>;
22420
22853
  'PUT /v1/installations/{integrationConfigurationId}/products/{integrationProductIdOrSlug}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
22421
22854
  'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
22855
+ 'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}': (variables: ImportResourceVariables, signal?: AbortSignal) => Promise<ImportResourceResponse>;
22422
22856
  'GET /v1/integrations/configurations': (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
22423
22857
  completedAt?: number;
22424
22858
  createdAt?: number;
@@ -22438,41 +22872,14 @@ declare const operationsByPath: {
22438
22872
  deleteRequestedAt?: number | null;
22439
22873
  disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
22440
22874
  installationType?: "marketplace" | "external";
22441
- billingPlan?: {
22442
- id: string;
22443
- type: "prepayment" | "subscription";
22444
- name: string;
22445
- scope?: "installation" | "resource";
22446
- description: string;
22447
- paymentMethodRequired?: boolean;
22448
- preauthorizationAmount?: number;
22449
- cost?: string;
22450
- details?: {
22451
- label: string;
22452
- value?: string;
22453
- }[];
22454
- heightlightedDetails?: {
22455
- label: string;
22456
- value?: string;
22457
- }[];
22458
- quote?: {
22459
- line: string;
22460
- amount: string;
22461
- }[];
22462
- effectiveDate?: string;
22463
- };
22464
- billingTotal?: string;
22465
- periodStart?: string;
22466
- periodEnd?: string;
22467
22875
  }[] | {
22468
22876
  integration: {
22469
22877
  name: string;
22470
22878
  icon: string;
22471
- category: string;
22472
22879
  isLegacy: boolean;
22473
22880
  flags?: string[];
22474
22881
  assignedBetaLabelAt?: number;
22475
- tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experiments" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
22882
+ tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
22476
22883
  };
22477
22884
  completedAt?: number;
22478
22885
  createdAt: number;
@@ -22492,60 +22899,8 @@ declare const operationsByPath: {
22492
22899
  deleteRequestedAt?: number | null;
22493
22900
  disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
22494
22901
  installationType?: "marketplace" | "external";
22495
- billingPlan?: {
22496
- id: string;
22497
- type: "prepayment" | "subscription";
22498
- name: string;
22499
- scope?: "installation" | "resource";
22500
- description: string;
22501
- paymentMethodRequired?: boolean;
22502
- preauthorizationAmount?: number;
22503
- cost?: string;
22504
- details?: {
22505
- label: string;
22506
- value?: string;
22507
- }[];
22508
- heightlightedDetails?: {
22509
- label: string;
22510
- value?: string;
22511
- }[];
22512
- quote?: {
22513
- line: string;
22514
- amount: string;
22515
- }[];
22516
- effectiveDate?: string;
22517
- };
22518
- billingTotal?: string;
22519
- periodStart?: string;
22520
- periodEnd?: string;
22521
22902
  }[]>;
22522
22903
  'GET /v1/integrations/configuration/{id}': (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
22523
- billingPlan?: {
22524
- id: string;
22525
- type: "prepayment" | "subscription";
22526
- name: string;
22527
- scope?: "installation" | "resource";
22528
- description: string;
22529
- paymentMethodRequired?: boolean;
22530
- preauthorizationAmount?: number;
22531
- cost?: string;
22532
- details?: {
22533
- label: string;
22534
- value?: string;
22535
- }[];
22536
- heightlightedDetails?: {
22537
- label: string;
22538
- value?: string;
22539
- }[];
22540
- quote?: {
22541
- line: string;
22542
- amount: string;
22543
- }[];
22544
- effectiveDate?: string;
22545
- };
22546
- billingTotal?: string;
22547
- periodStart?: string;
22548
- periodEnd?: string;
22549
22904
  completedAt?: number;
22550
22905
  createdAt: number;
22551
22906
  id: string;
@@ -22614,10 +22969,11 @@ declare const operationsByPath: {
22614
22969
  updatedAt: number;
22615
22970
  }[];
22616
22971
  }>;
22617
- 'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
22618
- 'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
22619
- 'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
22620
- 'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
22972
+ 'GET /v1/experimentation/items': (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
22973
+ 'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
22974
+ 'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
22975
+ 'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
22976
+ 'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config': (variables: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, signal?: AbortSignal) => Promise<PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse>;
22621
22977
  'GET /v1/projects/{idOrName}/members': (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
22622
22978
  members: {
22623
22979
  avatar?: string;
@@ -22628,7 +22984,7 @@ declare const operationsByPath: {
22628
22984
  username: string;
22629
22985
  name?: string;
22630
22986
  createdAt: number;
22631
- teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
22987
+ teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
22632
22988
  }[];
22633
22989
  pagination: {
22634
22990
  hasNext: boolean;
@@ -22639,16 +22995,16 @@ declare const operationsByPath: {
22639
22995
  }>;
22640
22996
  'POST /v1/projects/{idOrName}/members': (variables: AddProjectMemberVariables, signal?: AbortSignal) => Promise<AddProjectMemberResponse>;
22641
22997
  'DELETE /v1/projects/{idOrName}/members/{uid}': (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
22642
- 'GET /v9/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
22998
+ 'GET /v10/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
22643
22999
  'POST /v10/projects': (variables: CreateProjectVariables, signal?: AbortSignal) => Promise<CreateProjectResponse>;
22644
23000
  'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
22645
23001
  'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
22646
23002
  'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
22647
- 'POST /v1/projects/{idOrName}/custom-environments': (variables: PostV1ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
23003
+ 'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
22648
23004
  'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
22649
- 'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
22650
- 'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
22651
- 'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
23005
+ 'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
23006
+ 'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
23007
+ 'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
22652
23008
  'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
22653
23009
  'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
22654
23010
  'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
@@ -23501,11 +23857,15 @@ declare const operationsByPath: {
23501
23857
  uid: string;
23502
23858
  username: string;
23503
23859
  email?: string;
23504
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
23860
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
23861
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
23862
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
23505
23863
  } | {
23506
23864
  uid: string;
23507
23865
  username: string;
23508
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
23866
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
23867
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
23868
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
23509
23869
  }>;
23510
23870
  'POST /v1/teams/{teamId}/request': (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
23511
23871
  'GET /v1/teams/{teamId}/request/{userId}': (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
@@ -23521,18 +23881,18 @@ declare const operationsByPath: {
23521
23881
  'POST /v2/files': (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
23522
23882
  urls: string[];
23523
23883
  }>;
23524
- 'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
23525
- 'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
23526
23884
  'GET /v5/user/tokens': (variables: ListAuthTokensVariables, signal?: AbortSignal) => Promise<ListAuthTokensResponse>;
23527
23885
  'POST /v3/user/tokens': (variables: CreateAuthTokenVariables, signal?: AbortSignal) => Promise<CreateAuthTokenResponse>;
23528
23886
  'GET /v5/user/tokens/{tokenId}': (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
23529
23887
  'DELETE /v3/user/tokens/{tokenId}': (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
23888
+ 'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
23889
+ 'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
23530
23890
  'POST /v1/webhooks': (variables: CreateWebhookVariables, signal?: AbortSignal) => Promise<CreateWebhookResponse>;
23531
23891
  'GET /v1/webhooks': (variables: GetWebhooksVariables, signal?: AbortSignal) => Promise<{
23532
23892
  projectsMetadata: {
23533
23893
  id: string;
23534
23894
  name: string;
23535
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
23895
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
23536
23896
  latestDeployment?: string;
23537
23897
  }[] | null;
23538
23898
  events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
@@ -23553,11 +23913,11 @@ declare const operationsByPath: {
23553
23913
  }[]>;
23554
23914
  'GET /v1/webhooks/{id}': (variables: GetWebhookVariables, signal?: AbortSignal) => Promise<GetWebhookResponse>;
23555
23915
  'DELETE /v1/webhooks/{id}': (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
23916
+ 'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
23917
+ 'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
23556
23918
  'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
23557
23919
  'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
23558
23920
  'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
23559
- 'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
23560
- 'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
23561
23921
  'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
23562
23922
  'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
23563
23923
  'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
@@ -23639,6 +23999,7 @@ declare class VercelApi {
23639
23999
  'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
23640
24000
  'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
23641
24001
  'GET /v3/deployments/{idOrUrl}/events': (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<undefined>;
24002
+ 'PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}': (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
23642
24003
  'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
23643
24004
  aliasAssignedAt?: number | boolean | null;
23644
24005
  alwaysRefuseToBuild?: boolean;
@@ -23654,7 +24015,7 @@ declare class VercelApi {
23654
24015
  projectSettings: {
23655
24016
  buildCommand?: string | null;
23656
24017
  devCommand?: string | null;
23657
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
24018
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
23658
24019
  commandForIgnoringBuildStep?: string | null;
23659
24020
  installCommand?: string | null;
23660
24021
  outputDirectory?: string | null;
@@ -23974,7 +24335,7 @@ declare class VercelApi {
23974
24335
  microfrontends?: {
23975
24336
  isDefaultApp?: boolean;
23976
24337
  defaultRoute?: string;
23977
- groupIds: string[];
24338
+ groupIds: (string | string)[];
23978
24339
  } | {
23979
24340
  applications?: {
23980
24341
  [key: string]: {
@@ -23985,7 +24346,15 @@ declare class VercelApi {
23985
24346
  };
23986
24347
  isDefaultApp: boolean;
23987
24348
  defaultRoute?: string;
23988
- groupIds: string[];
24349
+ groupIds: (string | string)[];
24350
+ };
24351
+ config?: {
24352
+ version?: number;
24353
+ functionType: "fluid" | "standard";
24354
+ functionMemoryType: "standard" | "standard_legacy" | "performance";
24355
+ functionTimeout: number | null;
24356
+ secureComputePrimaryRegion: string | null;
24357
+ secureComputeFallbackRegion: string | null;
23989
24358
  };
23990
24359
  } | {
23991
24360
  alias?: string[];
@@ -24204,6 +24573,10 @@ declare class VercelApi {
24204
24573
  zone?: boolean;
24205
24574
  }>;
24206
24575
  'DELETE /v6/domains/{domain}': (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
24576
+ 'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
24577
+ 'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
24578
+ 'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
24579
+ 'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
24207
24580
  'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
24208
24581
  'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
24209
24582
  'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
@@ -24287,8 +24660,10 @@ declare class VercelApi {
24287
24660
  'POST /v1/installations/{integrationConfigurationId}/billing/invoices': (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
24288
24661
  'GET /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}': (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
24289
24662
  'POST /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}/actions': (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
24663
+ 'POST /v1/installations/{integrationConfigurationId}/billing/balance': (variables: SubmitPrepaymentBalancesVariables, signal?: AbortSignal) => Promise<undefined>;
24290
24664
  'PUT /v1/installations/{integrationConfigurationId}/products/{integrationProductIdOrSlug}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
24291
24665
  'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
24666
+ 'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}': (variables: ImportResourceVariables, signal?: AbortSignal) => Promise<ImportResourceResponse>;
24292
24667
  'GET /v1/integrations/configurations': (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
24293
24668
  completedAt?: number;
24294
24669
  createdAt?: number;
@@ -24308,41 +24683,14 @@ declare class VercelApi {
24308
24683
  deleteRequestedAt?: number | null;
24309
24684
  disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
24310
24685
  installationType?: "marketplace" | "external";
24311
- billingPlan?: {
24312
- id: string;
24313
- type: "prepayment" | "subscription";
24314
- name: string;
24315
- scope?: "installation" | "resource";
24316
- description: string;
24317
- paymentMethodRequired?: boolean;
24318
- preauthorizationAmount?: number;
24319
- cost?: string;
24320
- details?: {
24321
- label: string;
24322
- value?: string;
24323
- }[];
24324
- heightlightedDetails?: {
24325
- label: string;
24326
- value?: string;
24327
- }[];
24328
- quote?: {
24329
- line: string;
24330
- amount: string;
24331
- }[];
24332
- effectiveDate?: string;
24333
- };
24334
- billingTotal?: string;
24335
- periodStart?: string;
24336
- periodEnd?: string;
24337
24686
  }[] | {
24338
24687
  integration: {
24339
24688
  name: string;
24340
24689
  icon: string;
24341
- category: string;
24342
24690
  isLegacy: boolean;
24343
24691
  flags?: string[];
24344
24692
  assignedBetaLabelAt?: number;
24345
- tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experiments" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
24693
+ tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "tag_experimentation" | "tag_logging" | "tag_messaging" | "tag_monitoring" | "tag_observability" | "tag_performance" | "tag_productivity" | "tag_searching" | "tag_security" | "tag_testing" | "tag_video")[];
24346
24694
  };
24347
24695
  completedAt?: number;
24348
24696
  createdAt: number;
@@ -24362,60 +24710,8 @@ declare class VercelApi {
24362
24710
  deleteRequestedAt?: number | null;
24363
24711
  disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
24364
24712
  installationType?: "marketplace" | "external";
24365
- billingPlan?: {
24366
- id: string;
24367
- type: "prepayment" | "subscription";
24368
- name: string;
24369
- scope?: "installation" | "resource";
24370
- description: string;
24371
- paymentMethodRequired?: boolean;
24372
- preauthorizationAmount?: number;
24373
- cost?: string;
24374
- details?: {
24375
- label: string;
24376
- value?: string;
24377
- }[];
24378
- heightlightedDetails?: {
24379
- label: string;
24380
- value?: string;
24381
- }[];
24382
- quote?: {
24383
- line: string;
24384
- amount: string;
24385
- }[];
24386
- effectiveDate?: string;
24387
- };
24388
- billingTotal?: string;
24389
- periodStart?: string;
24390
- periodEnd?: string;
24391
24713
  }[]>;
24392
24714
  'GET /v1/integrations/configuration/{id}': (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
24393
- billingPlan?: {
24394
- id: string;
24395
- type: "prepayment" | "subscription";
24396
- name: string;
24397
- scope?: "installation" | "resource";
24398
- description: string;
24399
- paymentMethodRequired?: boolean;
24400
- preauthorizationAmount?: number;
24401
- cost?: string;
24402
- details?: {
24403
- label: string;
24404
- value?: string;
24405
- }[];
24406
- heightlightedDetails?: {
24407
- label: string;
24408
- value?: string;
24409
- }[];
24410
- quote?: {
24411
- line: string;
24412
- amount: string;
24413
- }[];
24414
- effectiveDate?: string;
24415
- };
24416
- billingTotal?: string;
24417
- periodStart?: string;
24418
- periodEnd?: string;
24419
24715
  completedAt?: number;
24420
24716
  createdAt: number;
24421
24717
  id: string;
@@ -24484,10 +24780,11 @@ declare class VercelApi {
24484
24780
  updatedAt: number;
24485
24781
  }[];
24486
24782
  }>;
24487
- 'GET /v1/log-drains/{id}': (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
24488
- 'DELETE /v1/log-drains/{id}': (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
24489
- 'GET /v1/log-drains': (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
24490
- 'POST /v1/log-drains': (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
24783
+ 'GET /v1/experimentation/items': (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
24784
+ 'POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items': (variables: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables, signal?: AbortSignal) => Promise<undefined>;
24785
+ 'PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
24786
+ 'DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}': (variables: DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables, signal?: AbortSignal) => Promise<undefined>;
24787
+ 'PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/edge-config': (variables: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, signal?: AbortSignal) => Promise<PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse>;
24491
24788
  'GET /v1/projects/{idOrName}/members': (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
24492
24789
  members: {
24493
24790
  avatar?: string;
@@ -24498,7 +24795,7 @@ declare class VercelApi {
24498
24795
  username: string;
24499
24796
  name?: string;
24500
24797
  createdAt: number;
24501
- teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
24798
+ teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
24502
24799
  }[];
24503
24800
  pagination: {
24504
24801
  hasNext: boolean;
@@ -24509,16 +24806,16 @@ declare class VercelApi {
24509
24806
  }>;
24510
24807
  'POST /v1/projects/{idOrName}/members': (variables: AddProjectMemberVariables, signal?: AbortSignal) => Promise<AddProjectMemberResponse>;
24511
24808
  'DELETE /v1/projects/{idOrName}/members/{uid}': (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
24512
- 'GET /v9/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
24809
+ 'GET /v10/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
24513
24810
  'POST /v10/projects': (variables: CreateProjectVariables, signal?: AbortSignal) => Promise<CreateProjectResponse>;
24514
24811
  'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
24515
24812
  'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
24516
24813
  'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
24517
- 'POST /v1/projects/{idOrName}/custom-environments': (variables: PostV1ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24814
+ 'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24518
24815
  'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
24519
- 'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24520
- 'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24521
- 'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24816
+ 'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24817
+ 'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24818
+ 'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
24522
24819
  'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
24523
24820
  'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
24524
24821
  'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
@@ -25371,11 +25668,15 @@ declare class VercelApi {
25371
25668
  uid: string;
25372
25669
  username: string;
25373
25670
  email?: string;
25374
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
25671
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
25672
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
25673
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
25375
25674
  } | {
25376
25675
  uid: string;
25377
25676
  username: string;
25378
- role: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
25677
+ role: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
25678
+ teamRoles?: ("OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR")[];
25679
+ teamPermissions?: ("CreateProject" | "FullProductionDeployment")[];
25379
25680
  }>;
25380
25681
  'POST /v1/teams/{teamId}/request': (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
25381
25682
  'GET /v1/teams/{teamId}/request/{userId}': (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
@@ -25391,18 +25692,18 @@ declare class VercelApi {
25391
25692
  'POST /v2/files': (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
25392
25693
  urls: string[];
25393
25694
  }>;
25394
- 'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
25395
- 'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
25396
25695
  'GET /v5/user/tokens': (variables: ListAuthTokensVariables, signal?: AbortSignal) => Promise<ListAuthTokensResponse>;
25397
25696
  'POST /v3/user/tokens': (variables: CreateAuthTokenVariables, signal?: AbortSignal) => Promise<CreateAuthTokenResponse>;
25398
25697
  'GET /v5/user/tokens/{tokenId}': (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
25399
25698
  'DELETE /v3/user/tokens/{tokenId}': (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
25699
+ 'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
25700
+ 'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
25400
25701
  'POST /v1/webhooks': (variables: CreateWebhookVariables, signal?: AbortSignal) => Promise<CreateWebhookResponse>;
25401
25702
  'GET /v1/webhooks': (variables: GetWebhooksVariables, signal?: AbortSignal) => Promise<{
25402
25703
  projectsMetadata: {
25403
25704
  id: string;
25404
25705
  name: string;
25405
- framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
25706
+ framework?: "blitzjs" | "nextjs" | "gatsby" | "remix" | "react-router" | "astro" | "hexo" | "eleventy" | "docusaurus-2" | "docusaurus" | "preact" | "solidstart-1" | "solidstart" | "dojo" | "ember" | "vue" | "scully" | "ionic-angular" | "angular" | "polymer" | "svelte" | "sveltekit" | "sveltekit-1" | "ionic-react" | "create-react-app" | "gridsome" | "umijs" | "sapper" | "saber" | "stencil" | "nuxtjs" | "redwoodjs" | "hugo" | "jekyll" | "brunch" | "middleman" | "zola" | "hydrogen" | "vite" | "vitepress" | "vuepress" | "parcel" | "fasthtml" | "sanity-v3" | "sanity" | "storybook" | null;
25406
25707
  latestDeployment?: string;
25407
25708
  }[] | null;
25408
25709
  events: ("budget.reached" | "budget.reset" | "domain.created" | "deployment.created" | "deployment.error" | "deployment.canceled" | "deployment.succeeded" | "deployment.ready" | "deployment.check-rerequested" | "deployment.promoted" | "deployment.integration.action.start" | "deployment.integration.action.cancel" | "deployment.integration.action.cleanup" | "edge-config.created" | "edge-config.deleted" | "edge-config.items.updated" | "firewall.attack" | "integration-configuration.permission-upgraded" | "integration-configuration.removed" | "integration-configuration.scope-change-confirmed" | "integration-resource.project-connected" | "integration-resource.project-disconnected" | "project.created" | "project.removed" | "deployment-checks-completed" | "deployment-ready" | "deployment-prepared" | "deployment-error" | "deployment-check-rerequested" | "deployment-canceled" | "project-created" | "project-removed" | "domain-created" | "deployment" | "integration-configuration-permission-updated" | "integration-configuration-removed" | "integration-configuration-scope-change-confirmed" | "marketplace.invoice.created" | "marketplace.invoice.paid" | "marketplace.invoice.notpaid" | "marketplace.invoice.refunded" | "observability.anomaly" | "test-webhook")[];
@@ -25423,11 +25724,11 @@ declare class VercelApi {
25423
25724
  }[]>;
25424
25725
  'GET /v1/webhooks/{id}': (variables: GetWebhookVariables, signal?: AbortSignal) => Promise<GetWebhookResponse>;
25425
25726
  'DELETE /v1/webhooks/{id}': (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
25727
+ 'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
25728
+ 'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
25426
25729
  'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
25427
25730
  'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
25428
25731
  'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
25429
- 'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
25430
- 'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
25431
25732
  'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
25432
25733
  'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
25433
25734
  'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;