vercel-api-js 0.20.1 → 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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +94 -41
- package/dist/index.d.cts +1618 -1380
- package/dist/index.d.mts +1618 -1380
- package/dist/index.d.ts +1618 -1380
- package/dist/index.mjs +94 -41
- package/package.json +1 -1
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
|
-
teamRoles?: ('BILLING' | 'CONTRIBUTOR' | '
|
|
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
|
|
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
|
-
|
|
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,22 +2434,20 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2413
2434
|
passwordProtection?: Record<string, any> | null;
|
|
2414
2435
|
productionDeploymentsFastLane?: boolean;
|
|
2415
2436
|
publicSource?: boolean | null;
|
|
2416
|
-
resourceConfig
|
|
2437
|
+
resourceConfig: {
|
|
2417
2438
|
fluid?: boolean;
|
|
2418
|
-
|
|
2439
|
+
functionDefaultRegions: string[];
|
|
2419
2440
|
functionDefaultTimeout?: number;
|
|
2420
2441
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
2421
2442
|
functionZeroConfigFailover?: boolean;
|
|
2422
|
-
allowServerlessConcurrency?: boolean;
|
|
2423
2443
|
elasticConcurrencyEnabled?: boolean;
|
|
2424
2444
|
};
|
|
2425
|
-
defaultResourceConfig
|
|
2445
|
+
defaultResourceConfig: {
|
|
2426
2446
|
fluid?: boolean;
|
|
2427
|
-
|
|
2447
|
+
functionDefaultRegions: string[];
|
|
2428
2448
|
functionDefaultTimeout?: number;
|
|
2429
2449
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
2430
2450
|
functionZeroConfigFailover?: boolean;
|
|
2431
|
-
allowServerlessConcurrency?: boolean;
|
|
2432
2451
|
elasticConcurrencyEnabled?: boolean;
|
|
2433
2452
|
};
|
|
2434
2453
|
rootDirectory?: string | null;
|
|
@@ -2526,6 +2545,7 @@ type UpdateProjectDataCacheResponse = {
|
|
|
2526
2545
|
permissions?: {
|
|
2527
2546
|
user?: ACLAction[];
|
|
2528
2547
|
userConnection?: ACLAction[];
|
|
2548
|
+
userSudo?: ACLAction[];
|
|
2529
2549
|
webAuthn?: ACLAction[];
|
|
2530
2550
|
oauth2Connection?: ACLAction[];
|
|
2531
2551
|
accessGroup?: ACLAction[];
|
|
@@ -2935,6 +2955,32 @@ type GetDeploymentEventsVariables = {
|
|
|
2935
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.
|
|
2936
2956
|
*/
|
|
2937
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>;
|
|
2938
2984
|
type GetDeploymentPathParams = {
|
|
2939
2985
|
/**
|
|
2940
2986
|
* The unique identifier or hostname of the deployment.
|
|
@@ -2982,7 +3028,7 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
2982
3028
|
projectSettings: {
|
|
2983
3029
|
buildCommand?: string | null;
|
|
2984
3030
|
devCommand?: string | null;
|
|
2985
|
-
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;
|
|
2986
3032
|
commandForIgnoringBuildStep?: string | null;
|
|
2987
3033
|
installCommand?: string | null;
|
|
2988
3034
|
outputDirectory?: string | null;
|
|
@@ -3355,8 +3401,11 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
3355
3401
|
defaultRoute?: string;
|
|
3356
3402
|
/**
|
|
3357
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
|
|
3358
3407
|
*/
|
|
3359
|
-
groupIds: string[];
|
|
3408
|
+
groupIds: (string | string)[];
|
|
3360
3409
|
} | {
|
|
3361
3410
|
/**
|
|
3362
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.
|
|
@@ -3381,8 +3430,22 @@ declare const getDeployment: (variables: GetDeploymentVariables, signal?: AbortS
|
|
|
3381
3430
|
defaultRoute?: string;
|
|
3382
3431
|
/**
|
|
3383
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
|
|
3384
3436
|
*/
|
|
3385
|
-
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;
|
|
3386
3449
|
};
|
|
3387
3450
|
} | {
|
|
3388
3451
|
alias?: string[];
|
|
@@ -3587,7 +3650,7 @@ type CreateDeploymentResponse = {
|
|
|
3587
3650
|
buildCommand?: string | null;
|
|
3588
3651
|
commandForIgnoringBuildStep?: string | null;
|
|
3589
3652
|
devCommand?: string | null;
|
|
3590
|
-
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;
|
|
3591
3654
|
installCommand?: string | null;
|
|
3592
3655
|
outputDirectory?: string | null;
|
|
3593
3656
|
speedInsights?: {
|
|
@@ -3835,8 +3898,11 @@ type CreateDeploymentResponse = {
|
|
|
3835
3898
|
defaultRoute?: string;
|
|
3836
3899
|
/**
|
|
3837
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
|
|
3838
3904
|
*/
|
|
3839
|
-
groupIds: string[];
|
|
3905
|
+
groupIds: (string | string)[];
|
|
3840
3906
|
} | {
|
|
3841
3907
|
/**
|
|
3842
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.
|
|
@@ -3861,10 +3927,24 @@ type CreateDeploymentResponse = {
|
|
|
3861
3927
|
defaultRoute?: string;
|
|
3862
3928
|
/**
|
|
3863
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
|
|
3864
3933
|
*/
|
|
3865
|
-
groupIds: string[];
|
|
3934
|
+
groupIds: (string | string)[];
|
|
3866
3935
|
};
|
|
3867
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
|
+
};
|
|
3868
3948
|
functions?: {
|
|
3869
3949
|
[key: string]: {
|
|
3870
3950
|
memory?: number;
|
|
@@ -4153,7 +4233,7 @@ type CreateDeploymentRequestBody = {
|
|
|
4153
4233
|
/**
|
|
4154
4234
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
4155
4235
|
*/
|
|
4156
|
-
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;
|
|
4157
4237
|
/**
|
|
4158
4238
|
* The install command for this project. When `null` is used this value will be automatically detected
|
|
4159
4239
|
*
|
|
@@ -4194,9 +4274,11 @@ type CreateDeploymentRequestBody = {
|
|
|
4194
4274
|
sourceFilesOutsideRootDirectory?: boolean;
|
|
4195
4275
|
};
|
|
4196
4276
|
/**
|
|
4197
|
-
* Either not defined, `staging`,
|
|
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
|
|
4198
4280
|
*/
|
|
4199
|
-
target?:
|
|
4281
|
+
target?: string;
|
|
4200
4282
|
/**
|
|
4201
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.
|
|
4202
4284
|
*/
|
|
@@ -4244,7 +4326,7 @@ type CancelDeploymentResponse = {
|
|
|
4244
4326
|
projectSettings: {
|
|
4245
4327
|
buildCommand?: string | null;
|
|
4246
4328
|
devCommand?: string | null;
|
|
4247
|
-
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;
|
|
4248
4330
|
commandForIgnoringBuildStep?: string | null;
|
|
4249
4331
|
installCommand?: string | null;
|
|
4250
4332
|
outputDirectory?: string | null;
|
|
@@ -4617,8 +4699,11 @@ type CancelDeploymentResponse = {
|
|
|
4617
4699
|
defaultRoute?: string;
|
|
4618
4700
|
/**
|
|
4619
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
|
|
4620
4705
|
*/
|
|
4621
|
-
groupIds: string[];
|
|
4706
|
+
groupIds: (string | string)[];
|
|
4622
4707
|
} | {
|
|
4623
4708
|
/**
|
|
4624
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.
|
|
@@ -4643,8 +4728,22 @@ type CancelDeploymentResponse = {
|
|
|
4643
4728
|
defaultRoute?: string;
|
|
4644
4729
|
/**
|
|
4645
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
|
|
4646
4734
|
*/
|
|
4647
|
-
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;
|
|
4648
4747
|
};
|
|
4649
4748
|
};
|
|
4650
4749
|
type CancelDeploymentVariables = {
|
|
@@ -6031,11 +6130,6 @@ type DeleteDomainQueryParams = {
|
|
|
6031
6130
|
};
|
|
6032
6131
|
type DeleteDomainError = ErrorWrapper<undefined>;
|
|
6033
6132
|
type DeleteDomainResponse = {
|
|
6034
|
-
/**
|
|
6035
|
-
* The id of the newly created DNS record
|
|
6036
|
-
*
|
|
6037
|
-
* @example rec_V0fra8eEgQwEpFhYG2vTzC3K
|
|
6038
|
-
*/
|
|
6039
6133
|
uid: string;
|
|
6040
6134
|
};
|
|
6041
6135
|
type DeleteDomainVariables = {
|
|
@@ -6046,7 +6140,10 @@ type DeleteDomainVariables = {
|
|
|
6046
6140
|
* Delete a previously registered domain name from Vercel. Deleting a domain will automatically remove any associated aliases.
|
|
6047
6141
|
*/
|
|
6048
6142
|
declare const deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
6049
|
-
type
|
|
6143
|
+
type GetConfigurableLogDrainPathParams = {
|
|
6144
|
+
id: string;
|
|
6145
|
+
};
|
|
6146
|
+
type GetConfigurableLogDrainQueryParams = {
|
|
6050
6147
|
/**
|
|
6051
6148
|
* The Team identifier to perform the request on behalf of.
|
|
6052
6149
|
*/
|
|
@@ -6056,41 +6153,71 @@ type GetEdgeConfigsQueryParams = {
|
|
|
6056
6153
|
*/
|
|
6057
6154
|
slug?: string;
|
|
6058
6155
|
};
|
|
6059
|
-
type
|
|
6060
|
-
type
|
|
6061
|
-
|
|
6062
|
-
|
|
6063
|
-
|
|
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;
|
|
6177
|
+
};
|
|
6178
|
+
projectIds?: string[];
|
|
6179
|
+
name: string;
|
|
6180
|
+
teamId?: string | null;
|
|
6181
|
+
ownerId: string;
|
|
6182
|
+
createdFrom?: 'integration' | 'self-served';
|
|
6183
|
+
secret: string;
|
|
6184
|
+
};
|
|
6185
|
+
type GetConfigurableLogDrainVariables = {
|
|
6186
|
+
pathParams: GetConfigurableLogDrainPathParams;
|
|
6187
|
+
queryParams?: GetConfigurableLogDrainQueryParams;
|
|
6188
|
+
} & FetcherExtraProps;
|
|
6189
|
+
/**
|
|
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.
|
|
6191
|
+
*/
|
|
6192
|
+
declare const getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
6193
|
+
type DeleteConfigurableLogDrainPathParams = {
|
|
6194
|
+
id: string;
|
|
6195
|
+
};
|
|
6196
|
+
type DeleteConfigurableLogDrainQueryParams = {
|
|
6064
6197
|
/**
|
|
6065
|
-
*
|
|
6198
|
+
* The Team identifier to perform the request on behalf of.
|
|
6066
6199
|
*/
|
|
6067
|
-
|
|
6068
|
-
updatedAt?: number;
|
|
6069
|
-
digest?: string;
|
|
6200
|
+
teamId?: string;
|
|
6070
6201
|
/**
|
|
6071
|
-
*
|
|
6202
|
+
* The Team slug to perform the request on behalf of.
|
|
6072
6203
|
*/
|
|
6073
|
-
|
|
6074
|
-
fromAccountId: string;
|
|
6075
|
-
startedAt: number;
|
|
6076
|
-
doneAt: number | null;
|
|
6077
|
-
};
|
|
6078
|
-
schema?: Record<string, any>;
|
|
6079
|
-
purpose?: {
|
|
6080
|
-
type: 'flags';
|
|
6081
|
-
projectId: string;
|
|
6082
|
-
};
|
|
6083
|
-
sizeInBytes: number;
|
|
6084
|
-
itemCount: number;
|
|
6204
|
+
slug?: string;
|
|
6085
6205
|
};
|
|
6086
|
-
type
|
|
6087
|
-
|
|
6206
|
+
type DeleteConfigurableLogDrainError = ErrorWrapper<undefined>;
|
|
6207
|
+
type DeleteConfigurableLogDrainVariables = {
|
|
6208
|
+
pathParams: DeleteConfigurableLogDrainPathParams;
|
|
6209
|
+
queryParams?: DeleteConfigurableLogDrainQueryParams;
|
|
6088
6210
|
} & FetcherExtraProps;
|
|
6089
6211
|
/**
|
|
6090
|
-
*
|
|
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.
|
|
6091
6213
|
*/
|
|
6092
|
-
declare const
|
|
6093
|
-
type
|
|
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;
|
|
6094
6221
|
/**
|
|
6095
6222
|
* The Team identifier to perform the request on behalf of.
|
|
6096
6223
|
*/
|
|
@@ -6100,8 +6227,202 @@ type CreateEdgeConfigQueryParams = {
|
|
|
6100
6227
|
*/
|
|
6101
6228
|
slug?: string;
|
|
6102
6229
|
};
|
|
6103
|
-
type
|
|
6104
|
-
type
|
|
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 = {
|
|
6105
6426
|
createdAt?: number;
|
|
6106
6427
|
updatedAt?: number;
|
|
6107
6428
|
id?: string;
|
|
@@ -6123,6 +6444,9 @@ type CreateEdgeConfigResponse = {
|
|
|
6123
6444
|
purpose?: {
|
|
6124
6445
|
type: 'flags';
|
|
6125
6446
|
projectId: string;
|
|
6447
|
+
} | {
|
|
6448
|
+
type: 'experimentation';
|
|
6449
|
+
resourceId: string;
|
|
6126
6450
|
};
|
|
6127
6451
|
sizeInBytes: number;
|
|
6128
6452
|
itemCount: number;
|
|
@@ -6181,6 +6505,9 @@ type GetEdgeConfigResponse = {
|
|
|
6181
6505
|
purpose?: {
|
|
6182
6506
|
type: 'flags';
|
|
6183
6507
|
projectId: string;
|
|
6508
|
+
} | {
|
|
6509
|
+
type: 'experimentation';
|
|
6510
|
+
resourceId: string;
|
|
6184
6511
|
};
|
|
6185
6512
|
sizeInBytes: number;
|
|
6186
6513
|
itemCount: number;
|
|
@@ -6229,6 +6556,9 @@ type UpdateEdgeConfigResponse = {
|
|
|
6229
6556
|
purpose?: {
|
|
6230
6557
|
type: 'flags';
|
|
6231
6558
|
projectId: string;
|
|
6559
|
+
} | {
|
|
6560
|
+
type: 'experimentation';
|
|
6561
|
+
resourceId: string;
|
|
6232
6562
|
};
|
|
6233
6563
|
sizeInBytes: number;
|
|
6234
6564
|
itemCount: number;
|
|
@@ -6319,13 +6649,13 @@ type PatchEdgeConfigItemsResponse = {
|
|
|
6319
6649
|
};
|
|
6320
6650
|
type PatchEdgeConfigItemsRequestBody = {
|
|
6321
6651
|
items: ({
|
|
6322
|
-
operation:
|
|
6652
|
+
operation: 'create';
|
|
6323
6653
|
} | {
|
|
6324
6654
|
operation: 'update' | 'upsert';
|
|
6325
6655
|
} | {
|
|
6326
6656
|
operation: 'update' | 'upsert';
|
|
6327
6657
|
} | {
|
|
6328
|
-
operation:
|
|
6658
|
+
operation: 'delete';
|
|
6329
6659
|
})[];
|
|
6330
6660
|
definition: void;
|
|
6331
6661
|
};
|
|
@@ -7204,6 +7534,44 @@ type UpdateInvoiceVariables = {
|
|
|
7204
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).
|
|
7205
7535
|
*/
|
|
7206
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>;
|
|
7207
7575
|
type UpdateResourceSecretsPathParams = {
|
|
7208
7576
|
integrationConfigurationId: string;
|
|
7209
7577
|
integrationProductIdOrSlug: string;
|
|
@@ -7245,6 +7613,52 @@ type UpdateResourceSecretsByIdVariables = {
|
|
|
7245
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/>
|
|
7246
7614
|
*/
|
|
7247
7615
|
declare const updateResourceSecretsById: (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
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>;
|
|
7248
7662
|
type GetConfigurationsQueryParams = {
|
|
7249
7663
|
view: 'account' | 'project';
|
|
7250
7664
|
installationType?: 'marketplace' | 'external';
|
|
@@ -7252,7 +7666,6 @@ type GetConfigurationsQueryParams = {
|
|
|
7252
7666
|
* ID of the integration
|
|
7253
7667
|
*/
|
|
7254
7668
|
integrationIdOrSlug?: string;
|
|
7255
|
-
skipBillingData?: string;
|
|
7256
7669
|
/**
|
|
7257
7670
|
* The Team identifier to perform the request on behalf of.
|
|
7258
7671
|
*/
|
|
@@ -7367,41 +7780,14 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
|
|
|
7367
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'
|
|
7368
7781
|
*/
|
|
7369
7782
|
installationType?: "marketplace" | "external";
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
type: "prepayment" | "subscription";
|
|
7373
|
-
name: string;
|
|
7374
|
-
scope?: "installation" | "resource";
|
|
7375
|
-
description: string;
|
|
7376
|
-
paymentMethodRequired?: boolean;
|
|
7377
|
-
preauthorizationAmount?: number;
|
|
7378
|
-
cost?: string;
|
|
7379
|
-
details?: {
|
|
7380
|
-
label: string;
|
|
7381
|
-
value?: string;
|
|
7382
|
-
}[];
|
|
7383
|
-
heightlightedDetails?: {
|
|
7384
|
-
label: string;
|
|
7385
|
-
value?: string;
|
|
7386
|
-
}[];
|
|
7387
|
-
quote?: {
|
|
7388
|
-
line: string;
|
|
7389
|
-
amount: string;
|
|
7390
|
-
}[];
|
|
7391
|
-
effectiveDate?: string;
|
|
7392
|
-
};
|
|
7393
|
-
billingTotal?: string;
|
|
7394
|
-
periodStart?: string;
|
|
7395
|
-
periodEnd?: string;
|
|
7396
|
-
}[] | {
|
|
7397
|
-
integration: {
|
|
7783
|
+
}[] | {
|
|
7784
|
+
integration: {
|
|
7398
7785
|
name: string;
|
|
7399
7786
|
icon: string;
|
|
7400
|
-
category: string;
|
|
7401
7787
|
isLegacy: boolean;
|
|
7402
7788
|
flags?: string[];
|
|
7403
7789
|
assignedBetaLabelAt?: number;
|
|
7404
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "
|
|
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")[];
|
|
7405
7791
|
};
|
|
7406
7792
|
/**
|
|
7407
7793
|
* A timestamp that tells you when the configuration was installed successfully
|
|
@@ -7500,32 +7886,6 @@ declare const getConfigurations: (variables: GetConfigurationsVariables, signal?
|
|
|
7500
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'
|
|
7501
7887
|
*/
|
|
7502
7888
|
installationType?: "marketplace" | "external";
|
|
7503
|
-
billingPlan?: {
|
|
7504
|
-
id: string;
|
|
7505
|
-
type: "prepayment" | "subscription";
|
|
7506
|
-
name: string;
|
|
7507
|
-
scope?: "installation" | "resource";
|
|
7508
|
-
description: string;
|
|
7509
|
-
paymentMethodRequired?: boolean;
|
|
7510
|
-
preauthorizationAmount?: number;
|
|
7511
|
-
cost?: string;
|
|
7512
|
-
details?: {
|
|
7513
|
-
label: string;
|
|
7514
|
-
value?: string;
|
|
7515
|
-
}[];
|
|
7516
|
-
heightlightedDetails?: {
|
|
7517
|
-
label: string;
|
|
7518
|
-
value?: string;
|
|
7519
|
-
}[];
|
|
7520
|
-
quote?: {
|
|
7521
|
-
line: string;
|
|
7522
|
-
amount: string;
|
|
7523
|
-
}[];
|
|
7524
|
-
effectiveDate?: string;
|
|
7525
|
-
};
|
|
7526
|
-
billingTotal?: string;
|
|
7527
|
-
periodStart?: string;
|
|
7528
|
-
periodEnd?: string;
|
|
7529
7889
|
}[]>;
|
|
7530
7890
|
type GetConfigurationPathParams = {
|
|
7531
7891
|
/**
|
|
@@ -7554,32 +7914,6 @@ type GetConfigurationVariables = {
|
|
|
7554
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.
|
|
7555
7915
|
*/
|
|
7556
7916
|
declare const getConfiguration: (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
|
|
7557
|
-
billingPlan?: {
|
|
7558
|
-
id: string;
|
|
7559
|
-
type: "prepayment" | "subscription";
|
|
7560
|
-
name: string;
|
|
7561
|
-
scope?: "installation" | "resource";
|
|
7562
|
-
description: string;
|
|
7563
|
-
paymentMethodRequired?: boolean;
|
|
7564
|
-
preauthorizationAmount?: number;
|
|
7565
|
-
cost?: string;
|
|
7566
|
-
details?: {
|
|
7567
|
-
label: string;
|
|
7568
|
-
value?: string;
|
|
7569
|
-
}[];
|
|
7570
|
-
heightlightedDetails?: {
|
|
7571
|
-
label: string;
|
|
7572
|
-
value?: string;
|
|
7573
|
-
}[];
|
|
7574
|
-
quote?: {
|
|
7575
|
-
line: string;
|
|
7576
|
-
amount: string;
|
|
7577
|
-
}[];
|
|
7578
|
-
effectiveDate?: string;
|
|
7579
|
-
};
|
|
7580
|
-
billingTotal?: string;
|
|
7581
|
-
periodStart?: string;
|
|
7582
|
-
periodEnd?: string;
|
|
7583
7917
|
/**
|
|
7584
7918
|
* A timestamp that tells you when the configuration was installed successfully
|
|
7585
7919
|
*
|
|
@@ -8229,258 +8563,195 @@ declare const searchRepo: (variables: SearchRepoVariables, signal?: AbortSignal)
|
|
|
8229
8563
|
updatedAt: number;
|
|
8230
8564
|
}[];
|
|
8231
8565
|
}>;
|
|
8232
|
-
type
|
|
8233
|
-
|
|
8566
|
+
type GetV1ExperimentationItemsQueryParams = {
|
|
8567
|
+
resourceId?: string;
|
|
8234
8568
|
};
|
|
8235
|
-
type
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
|
|
8252
|
-
|
|
8253
|
-
|
|
8254
|
-
|
|
8255
|
-
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
|
|
8266
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8267
|
-
disabledBy?: string;
|
|
8268
|
-
firstErrorTimestamp?: number;
|
|
8269
|
-
samplingRate?: number;
|
|
8270
|
-
hideIpAddresses?: boolean;
|
|
8271
|
-
secret: string;
|
|
8272
|
-
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
|
+
}[];
|
|
8273
8600
|
};
|
|
8274
|
-
type
|
|
8275
|
-
|
|
8276
|
-
queryParams?: GetConfigurableLogDrainQueryParams;
|
|
8601
|
+
type GetV1ExperimentationItemsVariables = {
|
|
8602
|
+
queryParams?: GetV1ExperimentationItemsQueryParams;
|
|
8277
8603
|
} & FetcherExtraProps;
|
|
8278
8604
|
/**
|
|
8279
|
-
*
|
|
8605
|
+
* Query experimentation items
|
|
8280
8606
|
*/
|
|
8281
|
-
declare const
|
|
8282
|
-
type
|
|
8283
|
-
|
|
8607
|
+
declare const getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
8608
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = {
|
|
8609
|
+
integrationConfigurationId: string;
|
|
8610
|
+
resourceId: string;
|
|
8284
8611
|
};
|
|
8285
|
-
type
|
|
8286
|
-
|
|
8287
|
-
* The Team identifier to perform the request on behalf of.
|
|
8288
|
-
*/
|
|
8289
|
-
teamId?: string;
|
|
8612
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = ErrorWrapper<undefined>;
|
|
8613
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = {
|
|
8290
8614
|
/**
|
|
8291
|
-
*
|
|
8615
|
+
* @maxItems 50
|
|
8292
8616
|
*/
|
|
8293
|
-
|
|
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
|
+
}[];
|
|
8294
8643
|
};
|
|
8295
|
-
type
|
|
8296
|
-
|
|
8297
|
-
pathParams:
|
|
8298
|
-
queryParams?: DeleteConfigurableLogDrainQueryParams;
|
|
8644
|
+
type PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables = {
|
|
8645
|
+
body: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody;
|
|
8646
|
+
pathParams: PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams;
|
|
8299
8647
|
} & FetcherExtraProps;
|
|
8300
8648
|
/**
|
|
8301
|
-
*
|
|
8649
|
+
* Create one or multiple experimentation items
|
|
8302
8650
|
*/
|
|
8303
|
-
declare const
|
|
8304
|
-
type
|
|
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 = {
|
|
8305
8659
|
/**
|
|
8306
|
-
* @
|
|
8660
|
+
* @maxLength 1024
|
|
8307
8661
|
*/
|
|
8308
|
-
|
|
8662
|
+
slug: string;
|
|
8309
8663
|
/**
|
|
8310
|
-
*
|
|
8664
|
+
* @maxLength 2048
|
|
8311
8665
|
*/
|
|
8312
|
-
|
|
8666
|
+
origin: string;
|
|
8313
8667
|
/**
|
|
8314
|
-
*
|
|
8668
|
+
* @maxLength 1024
|
|
8315
8669
|
*/
|
|
8316
|
-
|
|
8670
|
+
name?: string;
|
|
8671
|
+
category?: 'experiment' | 'flag';
|
|
8672
|
+
/**
|
|
8673
|
+
* @maxLength 1024
|
|
8674
|
+
*/
|
|
8675
|
+
description?: string;
|
|
8676
|
+
isArchived?: boolean;
|
|
8677
|
+
createdAt?: number;
|
|
8678
|
+
updatedAt?: number;
|
|
8317
8679
|
};
|
|
8318
|
-
type
|
|
8319
|
-
|
|
8320
|
-
|
|
8321
|
-
|
|
8322
|
-
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
|
|
8326
|
-
|
|
8327
|
-
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
|
|
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
|
+
};
|
|
8331
8710
|
updatedAt: number;
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
|
|
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>)[];
|
|
8335
8716
|
};
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
disabledBy?: string;
|
|
8341
|
-
firstErrorTimestamp?: number;
|
|
8342
|
-
samplingRate?: number;
|
|
8343
|
-
hideIpAddresses?: boolean;
|
|
8344
|
-
secret: string;
|
|
8345
|
-
createdFrom?: 'self-served';
|
|
8346
|
-
}[];
|
|
8347
|
-
type GetAllLogDrainsVariables = {
|
|
8348
|
-
queryParams?: GetAllLogDrainsQueryParams;
|
|
8717
|
+
};
|
|
8718
|
+
type PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables = {
|
|
8719
|
+
body: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigRequestBody;
|
|
8720
|
+
pathParams: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigPathParams;
|
|
8349
8721
|
} & FetcherExtraProps;
|
|
8350
8722
|
/**
|
|
8351
|
-
*
|
|
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.
|
|
8352
8724
|
*/
|
|
8353
|
-
declare const
|
|
8354
|
-
type
|
|
8355
|
-
/**
|
|
8356
|
-
* The Team identifier to perform the request on behalf of.
|
|
8357
|
-
*/
|
|
8358
|
-
teamId?: string;
|
|
8725
|
+
declare const putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: (variables: PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigVariables, signal?: AbortSignal) => Promise<PutV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfigResponse>;
|
|
8726
|
+
type GetProjectMembersPathParams = {
|
|
8359
8727
|
/**
|
|
8360
|
-
* The
|
|
8728
|
+
* The ID or name of the Project.
|
|
8729
|
+
*
|
|
8730
|
+
* @example prj_pavWOn1iLObbXLRiwVvzmPrTWyTf
|
|
8361
8731
|
*/
|
|
8362
|
-
|
|
8732
|
+
idOrName: string;
|
|
8363
8733
|
};
|
|
8364
|
-
type
|
|
8365
|
-
type CreateConfigurableLogDrainResponse = {
|
|
8734
|
+
type GetProjectMembersQueryParams = {
|
|
8366
8735
|
/**
|
|
8367
|
-
*
|
|
8736
|
+
* Limit how many project members should be returned
|
|
8737
|
+
*
|
|
8738
|
+
* @example 20
|
|
8739
|
+
* @minimum 1
|
|
8740
|
+
* @maximum 100
|
|
8368
8741
|
*/
|
|
8369
|
-
|
|
8370
|
-
id: string;
|
|
8371
|
-
deliveryFormat: 'json' | 'ndjson' | 'syslog';
|
|
8372
|
-
url: string;
|
|
8373
|
-
name: string;
|
|
8374
|
-
clientId?: string;
|
|
8375
|
-
configurationId?: string;
|
|
8376
|
-
teamId?: string | null;
|
|
8377
|
-
ownerId: string;
|
|
8378
|
-
projectIds?: string[];
|
|
8379
|
-
createdAt: number;
|
|
8380
|
-
deletedAt: number | null;
|
|
8381
|
-
updatedAt: number;
|
|
8382
|
-
sources?: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8383
|
-
headers?: {
|
|
8384
|
-
[key: string]: string;
|
|
8385
|
-
};
|
|
8386
|
-
environments: ('preview' | 'production')[];
|
|
8387
|
-
status?: 'disabled' | 'enabled' | 'errored';
|
|
8388
|
-
disabledAt?: number;
|
|
8389
|
-
disabledReason?: 'account-plan-downgrade' | 'disabled-by-admin' | 'disabled-by-owner' | 'feature-not-available';
|
|
8390
|
-
disabledBy?: string;
|
|
8391
|
-
firstErrorTimestamp?: number;
|
|
8392
|
-
samplingRate?: number;
|
|
8393
|
-
hideIpAddresses?: boolean;
|
|
8394
|
-
createdFrom?: 'self-served';
|
|
8395
|
-
};
|
|
8396
|
-
type CreateConfigurableLogDrainRequestBody = {
|
|
8742
|
+
limit?: number;
|
|
8397
8743
|
/**
|
|
8398
|
-
*
|
|
8744
|
+
* Timestamp in milliseconds to only include members added since then.
|
|
8399
8745
|
*
|
|
8400
|
-
* @example
|
|
8746
|
+
* @example 1540095775951
|
|
8401
8747
|
*/
|
|
8402
|
-
|
|
8748
|
+
since?: number;
|
|
8403
8749
|
/**
|
|
8404
|
-
*
|
|
8750
|
+
* Timestamp in milliseconds to only include members added until then.
|
|
8405
8751
|
*
|
|
8406
|
-
* @
|
|
8407
|
-
* @pattern ^(http|https)?://
|
|
8752
|
+
* @example 1540095775951
|
|
8408
8753
|
*/
|
|
8409
|
-
|
|
8410
|
-
/**
|
|
8411
|
-
* Headers to be sent together with the request
|
|
8412
|
-
*/
|
|
8413
|
-
headers?: {
|
|
8414
|
-
[key: string]: string;
|
|
8415
|
-
};
|
|
8416
|
-
/**
|
|
8417
|
-
* @minItems 1
|
|
8418
|
-
* @maxItems 50
|
|
8419
|
-
*/
|
|
8420
|
-
projectIds?: string[];
|
|
8421
|
-
/**
|
|
8422
|
-
* @uniqueItems true
|
|
8423
|
-
* @minItems 1
|
|
8424
|
-
*/
|
|
8425
|
-
sources: ('build' | 'edge' | 'external' | 'firewall' | 'lambda' | 'static')[];
|
|
8426
|
-
/**
|
|
8427
|
-
* @uniqueItems true
|
|
8428
|
-
* @minItems 1
|
|
8429
|
-
*/
|
|
8430
|
-
environments?: ('preview' | 'production')[];
|
|
8431
|
-
/**
|
|
8432
|
-
* Custom secret of log drain
|
|
8433
|
-
*/
|
|
8434
|
-
secret?: string;
|
|
8435
|
-
/**
|
|
8436
|
-
* The sampling rate for this log drain. It should be a percentage rate between 0 and 100. With max 2 decimal points
|
|
8437
|
-
*
|
|
8438
|
-
* @minimum 0.01
|
|
8439
|
-
* @maximum 1
|
|
8440
|
-
*/
|
|
8441
|
-
samplingRate?: number;
|
|
8442
|
-
/**
|
|
8443
|
-
* The custom name of this log drain.
|
|
8444
|
-
*/
|
|
8445
|
-
name?: string;
|
|
8446
|
-
};
|
|
8447
|
-
type CreateConfigurableLogDrainVariables = {
|
|
8448
|
-
body: CreateConfigurableLogDrainRequestBody;
|
|
8449
|
-
queryParams?: CreateConfigurableLogDrainQueryParams;
|
|
8450
|
-
} & FetcherExtraProps;
|
|
8451
|
-
/**
|
|
8452
|
-
* Creates a configurable log drain. This endpoint must be called with a team AccessToken (integration OAuth2 clients are not allowed)
|
|
8453
|
-
*/
|
|
8454
|
-
declare const createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
8455
|
-
type GetProjectMembersPathParams = {
|
|
8456
|
-
/**
|
|
8457
|
-
* The ID or name of the Project.
|
|
8458
|
-
*
|
|
8459
|
-
* @example prj_pavWOn1iLObbXLRiwVvzmPrTWyTf
|
|
8460
|
-
*/
|
|
8461
|
-
idOrName: string;
|
|
8462
|
-
};
|
|
8463
|
-
type GetProjectMembersQueryParams = {
|
|
8464
|
-
/**
|
|
8465
|
-
* Limit how many project members should be returned
|
|
8466
|
-
*
|
|
8467
|
-
* @example 20
|
|
8468
|
-
* @minimum 1
|
|
8469
|
-
* @maximum 100
|
|
8470
|
-
*/
|
|
8471
|
-
limit?: number;
|
|
8472
|
-
/**
|
|
8473
|
-
* Timestamp in milliseconds to only include members added since then.
|
|
8474
|
-
*
|
|
8475
|
-
* @example 1540095775951
|
|
8476
|
-
*/
|
|
8477
|
-
since?: number;
|
|
8478
|
-
/**
|
|
8479
|
-
* Timestamp in milliseconds to only include members added until then.
|
|
8480
|
-
*
|
|
8481
|
-
* @example 1540095775951
|
|
8482
|
-
*/
|
|
8483
|
-
until?: number;
|
|
8754
|
+
until?: number;
|
|
8484
8755
|
/**
|
|
8485
8756
|
* Search project members by their name, username, and email.
|
|
8486
8757
|
*/
|
|
@@ -8557,7 +8828,7 @@ declare const getProjectMembers: (variables: GetProjectMembersVariables, signal?
|
|
|
8557
8828
|
*
|
|
8558
8829
|
* @example CONTRIBUTOR
|
|
8559
8830
|
*/
|
|
8560
|
-
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
8831
|
+
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
8561
8832
|
}[];
|
|
8562
8833
|
pagination: {
|
|
8563
8834
|
hasNext: boolean;
|
|
@@ -8953,7 +9224,7 @@ type GetProjectsResponse = {
|
|
|
8953
9224
|
vsmValue?: string;
|
|
8954
9225
|
}[];
|
|
8955
9226
|
customEnvironments?: Record<string, any>[];
|
|
8956
|
-
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;
|
|
8957
9228
|
gitForkProtection?: boolean;
|
|
8958
9229
|
gitLFS?: boolean;
|
|
8959
9230
|
id: string;
|
|
@@ -9103,8 +9374,11 @@ type GetProjectsResponse = {
|
|
|
9103
9374
|
updatedAt: number;
|
|
9104
9375
|
/**
|
|
9105
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
|
|
9106
9380
|
*/
|
|
9107
|
-
groupIds: string[];
|
|
9381
|
+
groupIds: (string | string)[];
|
|
9108
9382
|
/**
|
|
9109
9383
|
* Whether microfrontends are enabled for this project.
|
|
9110
9384
|
*/
|
|
@@ -9118,9 +9392,17 @@ type GetProjectsResponse = {
|
|
|
9118
9392
|
*/
|
|
9119
9393
|
defaultRoute?: string;
|
|
9120
9394
|
/**
|
|
9121
|
-
* Whether observability data should be routed to
|
|
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
|
|
9122
9403
|
*/
|
|
9123
|
-
|
|
9404
|
+
groupIds: (string | string)[];
|
|
9405
|
+
enabled: boolean;
|
|
9124
9406
|
};
|
|
9125
9407
|
name: string;
|
|
9126
9408
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -9134,22 +9416,20 @@ type GetProjectsResponse = {
|
|
|
9134
9416
|
passwordProtection?: Record<string, any> | null;
|
|
9135
9417
|
productionDeploymentsFastLane?: boolean;
|
|
9136
9418
|
publicSource?: boolean | null;
|
|
9137
|
-
resourceConfig
|
|
9419
|
+
resourceConfig: {
|
|
9138
9420
|
fluid?: boolean;
|
|
9139
|
-
|
|
9421
|
+
functionDefaultRegions: string[];
|
|
9140
9422
|
functionDefaultTimeout?: number;
|
|
9141
9423
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9142
9424
|
functionZeroConfigFailover?: boolean;
|
|
9143
|
-
allowServerlessConcurrency?: boolean;
|
|
9144
9425
|
elasticConcurrencyEnabled?: boolean;
|
|
9145
9426
|
};
|
|
9146
|
-
defaultResourceConfig
|
|
9427
|
+
defaultResourceConfig: {
|
|
9147
9428
|
fluid?: boolean;
|
|
9148
|
-
|
|
9429
|
+
functionDefaultRegions: string[];
|
|
9149
9430
|
functionDefaultTimeout?: number;
|
|
9150
9431
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9151
9432
|
functionZeroConfigFailover?: boolean;
|
|
9152
|
-
allowServerlessConcurrency?: boolean;
|
|
9153
9433
|
elasticConcurrencyEnabled?: boolean;
|
|
9154
9434
|
};
|
|
9155
9435
|
rootDirectory?: string | null;
|
|
@@ -9247,6 +9527,7 @@ type GetProjectsResponse = {
|
|
|
9247
9527
|
permissions?: {
|
|
9248
9528
|
user?: ACLAction[];
|
|
9249
9529
|
userConnection?: ACLAction[];
|
|
9530
|
+
userSudo?: ACLAction[];
|
|
9250
9531
|
webAuthn?: ACLAction[];
|
|
9251
9532
|
oauth2Connection?: ACLAction[];
|
|
9252
9533
|
accessGroup?: ACLAction[];
|
|
@@ -9745,7 +10026,7 @@ type CreateProjectResponse = {
|
|
|
9745
10026
|
vsmValue?: string;
|
|
9746
10027
|
}[];
|
|
9747
10028
|
customEnvironments?: Record<string, any>[];
|
|
9748
|
-
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;
|
|
9749
10030
|
gitForkProtection?: boolean;
|
|
9750
10031
|
gitLFS?: boolean;
|
|
9751
10032
|
id: string;
|
|
@@ -9895,8 +10176,11 @@ type CreateProjectResponse = {
|
|
|
9895
10176
|
updatedAt: number;
|
|
9896
10177
|
/**
|
|
9897
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
|
|
9898
10182
|
*/
|
|
9899
|
-
groupIds: string[];
|
|
10183
|
+
groupIds: (string | string)[];
|
|
9900
10184
|
/**
|
|
9901
10185
|
* Whether microfrontends are enabled for this project.
|
|
9902
10186
|
*/
|
|
@@ -9910,9 +10194,17 @@ type CreateProjectResponse = {
|
|
|
9910
10194
|
*/
|
|
9911
10195
|
defaultRoute?: string;
|
|
9912
10196
|
/**
|
|
9913
|
-
* Whether observability data should be routed to
|
|
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
|
|
9914
10205
|
*/
|
|
9915
|
-
|
|
10206
|
+
groupIds: (string | string)[];
|
|
10207
|
+
enabled: boolean;
|
|
9916
10208
|
};
|
|
9917
10209
|
name: string;
|
|
9918
10210
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -9926,22 +10218,20 @@ type CreateProjectResponse = {
|
|
|
9926
10218
|
passwordProtection?: Record<string, any> | null;
|
|
9927
10219
|
productionDeploymentsFastLane?: boolean;
|
|
9928
10220
|
publicSource?: boolean | null;
|
|
9929
|
-
resourceConfig
|
|
10221
|
+
resourceConfig: {
|
|
9930
10222
|
fluid?: boolean;
|
|
9931
|
-
|
|
10223
|
+
functionDefaultRegions: string[];
|
|
9932
10224
|
functionDefaultTimeout?: number;
|
|
9933
10225
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9934
10226
|
functionZeroConfigFailover?: boolean;
|
|
9935
|
-
allowServerlessConcurrency?: boolean;
|
|
9936
10227
|
elasticConcurrencyEnabled?: boolean;
|
|
9937
10228
|
};
|
|
9938
|
-
defaultResourceConfig
|
|
10229
|
+
defaultResourceConfig: {
|
|
9939
10230
|
fluid?: boolean;
|
|
9940
|
-
|
|
10231
|
+
functionDefaultRegions: string[];
|
|
9941
10232
|
functionDefaultTimeout?: number;
|
|
9942
10233
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
9943
10234
|
functionZeroConfigFailover?: boolean;
|
|
9944
|
-
allowServerlessConcurrency?: boolean;
|
|
9945
10235
|
elasticConcurrencyEnabled?: boolean;
|
|
9946
10236
|
};
|
|
9947
10237
|
rootDirectory?: string | null;
|
|
@@ -10039,6 +10329,7 @@ type CreateProjectResponse = {
|
|
|
10039
10329
|
permissions?: {
|
|
10040
10330
|
user?: ACLAction[];
|
|
10041
10331
|
userConnection?: ACLAction[];
|
|
10332
|
+
userSudo?: ACLAction[];
|
|
10042
10333
|
webAuthn?: ACLAction[];
|
|
10043
10334
|
oauth2Connection?: ACLAction[];
|
|
10044
10335
|
accessGroup?: ACLAction[];
|
|
@@ -10400,7 +10691,7 @@ type CreateProjectRequestBody = {
|
|
|
10400
10691
|
/**
|
|
10401
10692
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
10402
10693
|
*/
|
|
10403
|
-
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';
|
|
10404
10695
|
/**
|
|
10405
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
|
|
10406
10697
|
*/
|
|
@@ -10669,7 +10960,7 @@ type GetProjectResponse = {
|
|
|
10669
10960
|
vsmValue?: string;
|
|
10670
10961
|
}[];
|
|
10671
10962
|
customEnvironments?: Record<string, any>[];
|
|
10672
|
-
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;
|
|
10673
10964
|
gitForkProtection?: boolean;
|
|
10674
10965
|
gitLFS?: boolean;
|
|
10675
10966
|
id: string;
|
|
@@ -10819,8 +11110,11 @@ type GetProjectResponse = {
|
|
|
10819
11110
|
updatedAt: number;
|
|
10820
11111
|
/**
|
|
10821
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
|
|
10822
11116
|
*/
|
|
10823
|
-
groupIds: string[];
|
|
11117
|
+
groupIds: (string | string)[];
|
|
10824
11118
|
/**
|
|
10825
11119
|
* Whether microfrontends are enabled for this project.
|
|
10826
11120
|
*/
|
|
@@ -10834,9 +11128,17 @@ type GetProjectResponse = {
|
|
|
10834
11128
|
*/
|
|
10835
11129
|
defaultRoute?: string;
|
|
10836
11130
|
/**
|
|
10837
|
-
* Whether observability data should be routed to
|
|
11131
|
+
* Whether observability data should be routed to this microfrontend project or a root project.
|
|
10838
11132
|
*/
|
|
10839
|
-
|
|
11133
|
+
routeObservabilityToThisProject?: boolean;
|
|
11134
|
+
} | {
|
|
11135
|
+
updatedAt: number;
|
|
11136
|
+
/**
|
|
11137
|
+
* @maxItems 2
|
|
11138
|
+
* @minItems 2
|
|
11139
|
+
*/
|
|
11140
|
+
groupIds: (string | string)[];
|
|
11141
|
+
enabled: boolean;
|
|
10840
11142
|
};
|
|
10841
11143
|
name: string;
|
|
10842
11144
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -10850,22 +11152,20 @@ type GetProjectResponse = {
|
|
|
10850
11152
|
passwordProtection?: Record<string, any> | null;
|
|
10851
11153
|
productionDeploymentsFastLane?: boolean;
|
|
10852
11154
|
publicSource?: boolean | null;
|
|
10853
|
-
resourceConfig
|
|
11155
|
+
resourceConfig: {
|
|
10854
11156
|
fluid?: boolean;
|
|
10855
|
-
|
|
11157
|
+
functionDefaultRegions: string[];
|
|
10856
11158
|
functionDefaultTimeout?: number;
|
|
10857
11159
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
10858
11160
|
functionZeroConfigFailover?: boolean;
|
|
10859
|
-
allowServerlessConcurrency?: boolean;
|
|
10860
11161
|
elasticConcurrencyEnabled?: boolean;
|
|
10861
11162
|
};
|
|
10862
|
-
defaultResourceConfig
|
|
11163
|
+
defaultResourceConfig: {
|
|
10863
11164
|
fluid?: boolean;
|
|
10864
|
-
|
|
11165
|
+
functionDefaultRegions: string[];
|
|
10865
11166
|
functionDefaultTimeout?: number;
|
|
10866
11167
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
10867
11168
|
functionZeroConfigFailover?: boolean;
|
|
10868
|
-
allowServerlessConcurrency?: boolean;
|
|
10869
11169
|
elasticConcurrencyEnabled?: boolean;
|
|
10870
11170
|
};
|
|
10871
11171
|
rootDirectory?: string | null;
|
|
@@ -10963,6 +11263,7 @@ type GetProjectResponse = {
|
|
|
10963
11263
|
permissions?: {
|
|
10964
11264
|
user?: ACLAction[];
|
|
10965
11265
|
userConnection?: ACLAction[];
|
|
11266
|
+
userSudo?: ACLAction[];
|
|
10966
11267
|
webAuthn?: ACLAction[];
|
|
10967
11268
|
oauth2Connection?: ACLAction[];
|
|
10968
11269
|
accessGroup?: ACLAction[];
|
|
@@ -11468,7 +11769,7 @@ type UpdateProjectResponse = {
|
|
|
11468
11769
|
vsmValue?: string;
|
|
11469
11770
|
}[];
|
|
11470
11771
|
customEnvironments?: Record<string, any>[];
|
|
11471
|
-
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;
|
|
11472
11773
|
gitForkProtection?: boolean;
|
|
11473
11774
|
gitLFS?: boolean;
|
|
11474
11775
|
id: string;
|
|
@@ -11618,8 +11919,11 @@ type UpdateProjectResponse = {
|
|
|
11618
11919
|
updatedAt: number;
|
|
11619
11920
|
/**
|
|
11620
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
|
|
11621
11925
|
*/
|
|
11622
|
-
groupIds: string[];
|
|
11926
|
+
groupIds: (string | string)[];
|
|
11623
11927
|
/**
|
|
11624
11928
|
* Whether microfrontends are enabled for this project.
|
|
11625
11929
|
*/
|
|
@@ -11633,9 +11937,17 @@ type UpdateProjectResponse = {
|
|
|
11633
11937
|
*/
|
|
11634
11938
|
defaultRoute?: string;
|
|
11635
11939
|
/**
|
|
11636
|
-
* Whether observability data should be routed to
|
|
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
|
|
11637
11948
|
*/
|
|
11638
|
-
|
|
11949
|
+
groupIds: (string | string)[];
|
|
11950
|
+
enabled: boolean;
|
|
11639
11951
|
};
|
|
11640
11952
|
name: string;
|
|
11641
11953
|
nodeVersion: '10.x' | '12.x' | '14.x' | '16.x' | '18.x' | '20.x' | '22.x' | '8.10.x';
|
|
@@ -11649,22 +11961,20 @@ type UpdateProjectResponse = {
|
|
|
11649
11961
|
passwordProtection?: Record<string, any> | null;
|
|
11650
11962
|
productionDeploymentsFastLane?: boolean;
|
|
11651
11963
|
publicSource?: boolean | null;
|
|
11652
|
-
resourceConfig
|
|
11964
|
+
resourceConfig: {
|
|
11653
11965
|
fluid?: boolean;
|
|
11654
|
-
|
|
11966
|
+
functionDefaultRegions: string[];
|
|
11655
11967
|
functionDefaultTimeout?: number;
|
|
11656
11968
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11657
11969
|
functionZeroConfigFailover?: boolean;
|
|
11658
|
-
allowServerlessConcurrency?: boolean;
|
|
11659
11970
|
elasticConcurrencyEnabled?: boolean;
|
|
11660
11971
|
};
|
|
11661
|
-
defaultResourceConfig
|
|
11972
|
+
defaultResourceConfig: {
|
|
11662
11973
|
fluid?: boolean;
|
|
11663
|
-
|
|
11974
|
+
functionDefaultRegions: string[];
|
|
11664
11975
|
functionDefaultTimeout?: number;
|
|
11665
11976
|
functionDefaultMemoryType?: 'performance' | 'standard' | 'standard_legacy';
|
|
11666
11977
|
functionZeroConfigFailover?: boolean;
|
|
11667
|
-
allowServerlessConcurrency?: boolean;
|
|
11668
11978
|
elasticConcurrencyEnabled?: boolean;
|
|
11669
11979
|
};
|
|
11670
11980
|
rootDirectory?: string | null;
|
|
@@ -11762,6 +12072,7 @@ type UpdateProjectResponse = {
|
|
|
11762
12072
|
permissions?: {
|
|
11763
12073
|
user?: ACLAction[];
|
|
11764
12074
|
userConnection?: ACLAction[];
|
|
12075
|
+
userSudo?: ACLAction[];
|
|
11765
12076
|
webAuthn?: ACLAction[];
|
|
11766
12077
|
oauth2Connection?: ACLAction[];
|
|
11767
12078
|
accessGroup?: ACLAction[];
|
|
@@ -12104,7 +12415,7 @@ type UpdateProjectRequestBody = {
|
|
|
12104
12415
|
/**
|
|
12105
12416
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
12106
12417
|
*/
|
|
12107
|
-
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;
|
|
12108
12419
|
/**
|
|
12109
12420
|
* Specifies whether PRs from Git forks should require a team member's authorization before it can be deployed
|
|
12110
12421
|
*/
|
|
@@ -12315,13 +12626,13 @@ type DeleteProjectVariables = {
|
|
|
12315
12626
|
* Delete a specific project by passing either the project `id` or `name` in the URL.
|
|
12316
12627
|
*/
|
|
12317
12628
|
declare const deleteProject: (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
12318
|
-
type
|
|
12629
|
+
type CreateCustomEnvironmentPathParams = {
|
|
12319
12630
|
/**
|
|
12320
12631
|
* The unique project identifier or the project name
|
|
12321
12632
|
*/
|
|
12322
12633
|
idOrName: string;
|
|
12323
12634
|
};
|
|
12324
|
-
type
|
|
12635
|
+
type CreateCustomEnvironmentQueryParams = {
|
|
12325
12636
|
/**
|
|
12326
12637
|
* The Team identifier to perform the request on behalf of.
|
|
12327
12638
|
*/
|
|
@@ -12331,8 +12642,8 @@ type PostV1ProjectsIdOrNameCustomEnvironmentsQueryParams = {
|
|
|
12331
12642
|
*/
|
|
12332
12643
|
slug?: string;
|
|
12333
12644
|
};
|
|
12334
|
-
type
|
|
12335
|
-
type
|
|
12645
|
+
type CreateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
12646
|
+
type CreateCustomEnvironmentRequestBody = {
|
|
12336
12647
|
/**
|
|
12337
12648
|
* The slug of the custom environment to create.
|
|
12338
12649
|
*
|
|
@@ -12365,15 +12676,15 @@ type PostV1ProjectsIdOrNameCustomEnvironmentsRequestBody = {
|
|
|
12365
12676
|
*/
|
|
12366
12677
|
copyEnvVarsFrom?: string;
|
|
12367
12678
|
};
|
|
12368
|
-
type
|
|
12369
|
-
body?:
|
|
12370
|
-
pathParams:
|
|
12371
|
-
queryParams?:
|
|
12679
|
+
type CreateCustomEnvironmentVariables = {
|
|
12680
|
+
body?: CreateCustomEnvironmentRequestBody;
|
|
12681
|
+
pathParams: CreateCustomEnvironmentPathParams;
|
|
12682
|
+
queryParams?: CreateCustomEnvironmentQueryParams;
|
|
12372
12683
|
} & FetcherExtraProps;
|
|
12373
12684
|
/**
|
|
12374
12685
|
* Creates a custom environment for the current project. Cannot be named 'Production' or 'Preview'.
|
|
12375
12686
|
*/
|
|
12376
|
-
declare const
|
|
12687
|
+
declare const createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
12377
12688
|
type GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = {
|
|
12378
12689
|
/**
|
|
12379
12690
|
* The unique project identifier or the project name
|
|
@@ -12406,7 +12717,7 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsVariables = {
|
|
|
12406
12717
|
* Retrieve custom environments for the project. Must not be named 'Production' or 'Preview'.
|
|
12407
12718
|
*/
|
|
12408
12719
|
declare const getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
12409
|
-
type
|
|
12720
|
+
type GetCustomEnvironmentPathParams = {
|
|
12410
12721
|
/**
|
|
12411
12722
|
* The unique project identifier or the project name
|
|
12412
12723
|
*/
|
|
@@ -12416,7 +12727,7 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
|
|
|
12416
12727
|
*/
|
|
12417
12728
|
environmentSlugOrId: string;
|
|
12418
12729
|
};
|
|
12419
|
-
type
|
|
12730
|
+
type GetCustomEnvironmentQueryParams = {
|
|
12420
12731
|
/**
|
|
12421
12732
|
* The Team identifier to perform the request on behalf of.
|
|
12422
12733
|
*/
|
|
@@ -12426,16 +12737,16 @@ type GetV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
|
|
|
12426
12737
|
*/
|
|
12427
12738
|
slug?: string;
|
|
12428
12739
|
};
|
|
12429
|
-
type
|
|
12430
|
-
type
|
|
12431
|
-
pathParams:
|
|
12432
|
-
queryParams?:
|
|
12740
|
+
type GetCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
12741
|
+
type GetCustomEnvironmentVariables = {
|
|
12742
|
+
pathParams: GetCustomEnvironmentPathParams;
|
|
12743
|
+
queryParams?: GetCustomEnvironmentQueryParams;
|
|
12433
12744
|
} & FetcherExtraProps;
|
|
12434
12745
|
/**
|
|
12435
12746
|
* Retrieve a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
12436
12747
|
*/
|
|
12437
|
-
declare const
|
|
12438
|
-
type
|
|
12748
|
+
declare const getCustomEnvironment: (variables: GetCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
12749
|
+
type UpdateCustomEnvironmentPathParams = {
|
|
12439
12750
|
/**
|
|
12440
12751
|
* The unique project identifier or the project name
|
|
12441
12752
|
*/
|
|
@@ -12445,7 +12756,7 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
|
|
|
12445
12756
|
*/
|
|
12446
12757
|
environmentSlugOrId: string;
|
|
12447
12758
|
};
|
|
12448
|
-
type
|
|
12759
|
+
type UpdateCustomEnvironmentQueryParams = {
|
|
12449
12760
|
/**
|
|
12450
12761
|
* The Team identifier to perform the request on behalf of.
|
|
12451
12762
|
*/
|
|
@@ -12455,8 +12766,8 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams = {
|
|
|
12455
12766
|
*/
|
|
12456
12767
|
slug?: string;
|
|
12457
12768
|
};
|
|
12458
|
-
type
|
|
12459
|
-
type
|
|
12769
|
+
type UpdateCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
12770
|
+
type UpdateCustomEnvironmentRequestBody = {
|
|
12460
12771
|
/**
|
|
12461
12772
|
* The slug of the custom environment.
|
|
12462
12773
|
*
|
|
@@ -12485,16 +12796,16 @@ type PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = {
|
|
|
12485
12796
|
pattern: string;
|
|
12486
12797
|
} | null;
|
|
12487
12798
|
};
|
|
12488
|
-
type
|
|
12489
|
-
body?:
|
|
12490
|
-
pathParams:
|
|
12491
|
-
queryParams?:
|
|
12799
|
+
type UpdateCustomEnvironmentVariables = {
|
|
12800
|
+
body?: UpdateCustomEnvironmentRequestBody;
|
|
12801
|
+
pathParams: UpdateCustomEnvironmentPathParams;
|
|
12802
|
+
queryParams?: UpdateCustomEnvironmentQueryParams;
|
|
12492
12803
|
} & FetcherExtraProps;
|
|
12493
12804
|
/**
|
|
12494
12805
|
* Update a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
12495
12806
|
*/
|
|
12496
|
-
declare const
|
|
12497
|
-
type
|
|
12807
|
+
declare const updateCustomEnvironment: (variables: UpdateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
12808
|
+
type RemoveCustomEnvironmentPathParams = {
|
|
12498
12809
|
/**
|
|
12499
12810
|
* The unique project identifier or the project name
|
|
12500
12811
|
*/
|
|
@@ -12504,7 +12815,7 @@ type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdPathParams = {
|
|
|
12504
12815
|
*/
|
|
12505
12816
|
environmentSlugOrId: string;
|
|
12506
12817
|
};
|
|
12507
|
-
type
|
|
12818
|
+
type RemoveCustomEnvironmentQueryParams = {
|
|
12508
12819
|
/**
|
|
12509
12820
|
* The Team identifier to perform the request on behalf of.
|
|
12510
12821
|
*/
|
|
@@ -12514,22 +12825,22 @@ type DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdQueryParams =
|
|
|
12514
12825
|
*/
|
|
12515
12826
|
slug?: string;
|
|
12516
12827
|
};
|
|
12517
|
-
type
|
|
12518
|
-
type
|
|
12828
|
+
type RemoveCustomEnvironmentError = ErrorWrapper<undefined>;
|
|
12829
|
+
type RemoveCustomEnvironmentRequestBody = {
|
|
12519
12830
|
/**
|
|
12520
12831
|
* Delete Environment Variables that are not assigned to any environments.
|
|
12521
12832
|
*/
|
|
12522
12833
|
deleteUnassignedEnvironmentVariables?: boolean;
|
|
12523
12834
|
};
|
|
12524
|
-
type
|
|
12525
|
-
body:
|
|
12526
|
-
pathParams:
|
|
12527
|
-
queryParams?:
|
|
12835
|
+
type RemoveCustomEnvironmentVariables = {
|
|
12836
|
+
body: RemoveCustomEnvironmentRequestBody;
|
|
12837
|
+
pathParams: RemoveCustomEnvironmentPathParams;
|
|
12838
|
+
queryParams?: RemoveCustomEnvironmentQueryParams;
|
|
12528
12839
|
} & FetcherExtraProps;
|
|
12529
12840
|
/**
|
|
12530
12841
|
* Remove a custom environment for the project. Must not be named 'Production' or 'Preview'.
|
|
12531
12842
|
*/
|
|
12532
|
-
declare const
|
|
12843
|
+
declare const removeCustomEnvironment: (variables: RemoveCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
12533
12844
|
type GetProjectDomainsPathParams = {
|
|
12534
12845
|
/**
|
|
12535
12846
|
* The unique project identifier or the project name
|
|
@@ -14274,6 +14585,9 @@ type EditProjectEnvRequestBody = {
|
|
|
14274
14585
|
* @example bkWIjbnxcvo78
|
|
14275
14586
|
*/
|
|
14276
14587
|
value?: string;
|
|
14588
|
+
/**
|
|
14589
|
+
* The custom environments that the environment variable should be synced to
|
|
14590
|
+
*/
|
|
14277
14591
|
customEnvironmentIds?: string[];
|
|
14278
14592
|
/**
|
|
14279
14593
|
* A comment to add context on what this env var is for
|
|
@@ -15319,9 +15633,16 @@ type AddBypassIpVariables = {
|
|
|
15319
15633
|
* @maxLength 2544
|
|
15320
15634
|
*/
|
|
15321
15635
|
domain: string;
|
|
15636
|
+
/**
|
|
15637
|
+
* If the specified bypass will apply to all domains for a project.
|
|
15638
|
+
*/
|
|
15322
15639
|
projectScope?: boolean;
|
|
15323
15640
|
sourceIp?: string;
|
|
15324
15641
|
allSources?: boolean;
|
|
15642
|
+
/**
|
|
15643
|
+
* Time to live in milliseconds
|
|
15644
|
+
*/
|
|
15645
|
+
ttl?: number;
|
|
15325
15646
|
/**
|
|
15326
15647
|
* @maxLength 500
|
|
15327
15648
|
*/
|
|
@@ -15332,9 +15653,16 @@ type AddBypassIpVariables = {
|
|
|
15332
15653
|
* @maxLength 2544
|
|
15333
15654
|
*/
|
|
15334
15655
|
domain?: string;
|
|
15656
|
+
/**
|
|
15657
|
+
* If the specified bypass will apply to all domains for a project.
|
|
15658
|
+
*/
|
|
15335
15659
|
projectScope: boolean;
|
|
15336
15660
|
sourceIp?: string;
|
|
15337
15661
|
allSources?: boolean;
|
|
15662
|
+
/**
|
|
15663
|
+
* Time to live in milliseconds
|
|
15664
|
+
*/
|
|
15665
|
+
ttl?: number;
|
|
15338
15666
|
/**
|
|
15339
15667
|
* @maxLength 500
|
|
15340
15668
|
*/
|
|
@@ -15507,7 +15835,7 @@ type GetTeamMembersResponse = {
|
|
|
15507
15835
|
*
|
|
15508
15836
|
* @example OWNER
|
|
15509
15837
|
*/
|
|
15510
|
-
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15838
|
+
role: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
|
|
15511
15839
|
/**
|
|
15512
15840
|
* The ID of this user.
|
|
15513
15841
|
*
|
|
@@ -15567,7 +15895,7 @@ type GetTeamMembersResponse = {
|
|
|
15567
15895
|
accessGroups?: string[];
|
|
15568
15896
|
id: string;
|
|
15569
15897
|
email?: string;
|
|
15570
|
-
role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15898
|
+
role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
|
|
15571
15899
|
isDSyncUser: boolean;
|
|
15572
15900
|
createdAt?: number;
|
|
15573
15901
|
expired?: boolean;
|
|
@@ -15623,12 +15951,22 @@ type InviteUserToTeamRequestBody = {
|
|
|
15623
15951
|
/**
|
|
15624
15952
|
* The role of the user to invite
|
|
15625
15953
|
*
|
|
15954
|
+
* @default BILLING
|
|
15955
|
+
* @default CONTRIBUTOR
|
|
15956
|
+
* @default DEVELOPER
|
|
15626
15957
|
* @default MEMBER
|
|
15958
|
+
* @default OWNER
|
|
15959
|
+
* @default SECURITY
|
|
15627
15960
|
* @default VIEWER
|
|
15961
|
+
* @example BILLING
|
|
15962
|
+
* @example CONTRIBUTOR
|
|
15963
|
+
* @example DEVELOPER
|
|
15628
15964
|
* @example MEMBER
|
|
15965
|
+
* @example OWNER
|
|
15966
|
+
* @example SECURITY
|
|
15629
15967
|
* @example VIEWER
|
|
15630
15968
|
*/
|
|
15631
|
-
role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'VIEWER';
|
|
15969
|
+
role?: 'BILLING' | 'CONTRIBUTOR' | 'DEVELOPER' | 'MEMBER' | 'OWNER' | 'SECURITY' | 'VIEWER';
|
|
15632
15970
|
projects?: {
|
|
15633
15971
|
/**
|
|
15634
15972
|
* The ID of the project.
|
|
@@ -15675,11 +16013,25 @@ declare const inviteUserToTeam: (variables: InviteUserToTeamVariables, signal?:
|
|
|
15675
16013
|
*
|
|
15676
16014
|
* @example MEMBER
|
|
15677
16015
|
*/
|
|
15678
|
-
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")[];
|
|
15679
16029
|
} | {
|
|
15680
16030
|
uid: string;
|
|
15681
16031
|
username: string;
|
|
15682
|
-
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")[];
|
|
15683
16035
|
}>;
|
|
15684
16036
|
type RequestAccessToTeamError = ErrorWrapper<undefined>;
|
|
15685
16037
|
type RequestAccessToTeamResponse = {
|
|
@@ -16040,7 +16392,7 @@ type PatchTeamRequestBody = {
|
|
|
16040
16392
|
* Directory groups to role or access group mappings.
|
|
16041
16393
|
*/
|
|
16042
16394
|
roles?: {
|
|
16043
|
-
[key: string]: ('OWNER' | 'MEMBER' | 'DEVELOPER' | 'BILLING' | 'VIEWER' | 'CONTRIBUTOR') | {
|
|
16395
|
+
[key: string]: ('OWNER' | 'MEMBER' | 'DEVELOPER' | 'SECURITY' | 'BILLING' | 'VIEWER' | 'CONTRIBUTOR') | {
|
|
16044
16396
|
/**
|
|
16045
16397
|
* @pattern ^ag_[A-z0-9_ -]+$
|
|
16046
16398
|
*/
|
|
@@ -16339,54 +16691,6 @@ declare const uploadFile: (variables: UploadFileVariables, signal?: AbortSignal)
|
|
|
16339
16691
|
*/
|
|
16340
16692
|
urls: string[];
|
|
16341
16693
|
}>;
|
|
16342
|
-
type GetAuthUserError = ErrorWrapper<undefined>;
|
|
16343
|
-
type GetAuthUserResponse = {
|
|
16344
|
-
user: AuthUser | AuthUserLimited;
|
|
16345
|
-
};
|
|
16346
|
-
type GetAuthUserVariables = FetcherExtraProps;
|
|
16347
|
-
/**
|
|
16348
|
-
* Retrieves information related to the currently authenticated User.
|
|
16349
|
-
*/
|
|
16350
|
-
declare const getAuthUser: (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
|
|
16351
|
-
type RequestDeleteError = ErrorWrapper<undefined>;
|
|
16352
|
-
type RequestDeleteResponse = {
|
|
16353
|
-
/**
|
|
16354
|
-
* Unique identifier of the User who has initiated deletion.
|
|
16355
|
-
*/
|
|
16356
|
-
id: string;
|
|
16357
|
-
/**
|
|
16358
|
-
* Email address of the User who has initiated deletion.
|
|
16359
|
-
*/
|
|
16360
|
-
email: string;
|
|
16361
|
-
/**
|
|
16362
|
-
* User deletion progress status.
|
|
16363
|
-
*
|
|
16364
|
-
* @example Verification email sent
|
|
16365
|
-
*/
|
|
16366
|
-
message: string;
|
|
16367
|
-
};
|
|
16368
|
-
type RequestDeleteRequestBody = {
|
|
16369
|
-
/**
|
|
16370
|
-
* Optional array of objects that describe the reason why the User account is being deleted.
|
|
16371
|
-
*/
|
|
16372
|
-
reasons?: {
|
|
16373
|
-
/**
|
|
16374
|
-
* Idenitifier slug of the reason why the User account is being deleted.
|
|
16375
|
-
*/
|
|
16376
|
-
slug: string;
|
|
16377
|
-
/**
|
|
16378
|
-
* Description of the reason why the User account is being deleted.
|
|
16379
|
-
*/
|
|
16380
|
-
description: string;
|
|
16381
|
-
}[];
|
|
16382
|
-
};
|
|
16383
|
-
type RequestDeleteVariables = {
|
|
16384
|
-
body?: RequestDeleteRequestBody;
|
|
16385
|
-
} & FetcherExtraProps;
|
|
16386
|
-
/**
|
|
16387
|
-
* 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.
|
|
16388
|
-
*/
|
|
16389
|
-
declare const requestDelete: (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
|
|
16390
16694
|
type ListAuthTokensError = ErrorWrapper<undefined>;
|
|
16391
16695
|
type ListAuthTokensResponse = {
|
|
16392
16696
|
tokens: AuthToken[];
|
|
@@ -16473,6 +16777,54 @@ type DeleteAuthTokenVariables = {
|
|
|
16473
16777
|
* Invalidate an authentication token, such that it will no longer be valid for future HTTP requests.
|
|
16474
16778
|
*/
|
|
16475
16779
|
declare const deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
|
|
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>;
|
|
16476
16828
|
type CreateWebhookQueryParams = {
|
|
16477
16829
|
/**
|
|
16478
16830
|
* The Team identifier to perform the request on behalf of.
|
|
@@ -16581,7 +16933,7 @@ declare const getWebhooks: (variables: GetWebhooksVariables, signal?: AbortSigna
|
|
|
16581
16933
|
projectsMetadata: {
|
|
16582
16934
|
id: string;
|
|
16583
16935
|
name: string;
|
|
16584
|
-
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;
|
|
16585
16937
|
latestDeployment?: string;
|
|
16586
16938
|
}[] | null;
|
|
16587
16939
|
/**
|
|
@@ -16758,40 +17110,191 @@ type DeleteWebhookVariables = {
|
|
|
16758
17110
|
* Deletes a webhook
|
|
16759
17111
|
*/
|
|
16760
17112
|
declare const deleteWebhook: (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
16761
|
-
type
|
|
16762
|
-
/**
|
|
16763
|
-
* Get only aliases of the given domain name
|
|
16764
|
-
*
|
|
16765
|
-
* @example my-test-domain.com
|
|
16766
|
-
* @maxItems 20
|
|
16767
|
-
*/
|
|
16768
|
-
domain?: string[] | string;
|
|
17113
|
+
type ListDeploymentAliasesPathParams = {
|
|
16769
17114
|
/**
|
|
16770
|
-
*
|
|
17115
|
+
* The ID of the deployment the aliases should be listed for
|
|
16771
17116
|
*
|
|
16772
|
-
* @
|
|
16773
|
-
* @example 1540095775951
|
|
17117
|
+
* @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
|
|
16774
17118
|
*/
|
|
16775
|
-
|
|
17119
|
+
id: string;
|
|
17120
|
+
};
|
|
17121
|
+
type ListDeploymentAliasesQueryParams = {
|
|
16776
17122
|
/**
|
|
16777
|
-
*
|
|
16778
|
-
*
|
|
16779
|
-
* @example 10
|
|
17123
|
+
* The Team identifier to perform the request on behalf of.
|
|
16780
17124
|
*/
|
|
16781
|
-
|
|
17125
|
+
teamId?: string;
|
|
16782
17126
|
/**
|
|
16783
|
-
*
|
|
16784
|
-
*
|
|
16785
|
-
* @example prj_12HKQaOmR5t5Uy6vdcQsNIiZgHGB
|
|
17127
|
+
* The Team slug to perform the request on behalf of.
|
|
16786
17128
|
*/
|
|
16787
|
-
|
|
17129
|
+
slug?: string;
|
|
17130
|
+
};
|
|
17131
|
+
type ListDeploymentAliasesError = ErrorWrapper<undefined>;
|
|
17132
|
+
type ListDeploymentAliasesResponse = {
|
|
16788
17133
|
/**
|
|
16789
|
-
*
|
|
16790
|
-
*
|
|
16791
|
-
* @example 1540095775941
|
|
17134
|
+
* A list of the aliases assigned to the deployment
|
|
16792
17135
|
*/
|
|
16793
|
-
|
|
16794
|
-
|
|
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>;
|
|
17264
|
+
type ListAliasesQueryParams = {
|
|
17265
|
+
/**
|
|
17266
|
+
* Get only aliases of the given domain name
|
|
17267
|
+
*
|
|
17268
|
+
* @example my-test-domain.com
|
|
17269
|
+
* @maxItems 20
|
|
17270
|
+
*/
|
|
17271
|
+
domain?: string[] | string;
|
|
17272
|
+
/**
|
|
17273
|
+
* Get only aliases created after the provided timestamp
|
|
17274
|
+
*
|
|
17275
|
+
* @deprecated true
|
|
17276
|
+
* @example 1540095775951
|
|
17277
|
+
*/
|
|
17278
|
+
from?: number;
|
|
17279
|
+
/**
|
|
17280
|
+
* Maximum number of aliases to list from a request
|
|
17281
|
+
*
|
|
17282
|
+
* @example 10
|
|
17283
|
+
*/
|
|
17284
|
+
limit?: number;
|
|
17285
|
+
/**
|
|
17286
|
+
* Filter aliases from the given `projectId`
|
|
17287
|
+
*
|
|
17288
|
+
* @example prj_12HKQaOmR5t5Uy6vdcQsNIiZgHGB
|
|
17289
|
+
*/
|
|
17290
|
+
projectId?: string;
|
|
17291
|
+
/**
|
|
17292
|
+
* Get aliases created after this JavaScript timestamp
|
|
17293
|
+
*
|
|
17294
|
+
* @example 1540095775941
|
|
17295
|
+
*/
|
|
17296
|
+
since?: number;
|
|
17297
|
+
/**
|
|
16795
17298
|
* Get aliases created before this JavaScript timestamp
|
|
16796
17299
|
*
|
|
16797
17300
|
* @example 1540095775951
|
|
@@ -17116,202 +17619,51 @@ type GetAliasResponse = {
|
|
|
17116
17619
|
createdBy: string;
|
|
17117
17620
|
scope: 'alias-protection-override';
|
|
17118
17621
|
} | {
|
|
17119
|
-
createdAt: number;
|
|
17120
|
-
lastUpdatedAt: number;
|
|
17121
|
-
lastUpdatedBy: string;
|
|
17122
|
-
scope: 'email_invite';
|
|
17123
|
-
};
|
|
17124
|
-
};
|
|
17125
|
-
};
|
|
17126
|
-
type GetAliasVariables = {
|
|
17127
|
-
pathParams: GetAliasPathParams;
|
|
17128
|
-
queryParams?: GetAliasQueryParams;
|
|
17129
|
-
} & FetcherExtraProps;
|
|
17130
|
-
/**
|
|
17131
|
-
* Retrieves an Alias for the given host name or alias ID.
|
|
17132
|
-
*/
|
|
17133
|
-
declare const getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
17134
|
-
type DeleteAliasPathParams = {
|
|
17135
|
-
/**
|
|
17136
|
-
* The ID or alias that will be removed
|
|
17137
|
-
*
|
|
17138
|
-
* @example 2WjyKQmM8ZnGcJsPWMrHRHrE
|
|
17139
|
-
*/
|
|
17140
|
-
aliasId: string;
|
|
17141
|
-
};
|
|
17142
|
-
type DeleteAliasQueryParams = {
|
|
17143
|
-
/**
|
|
17144
|
-
* The Team identifier to perform the request on behalf of.
|
|
17145
|
-
*/
|
|
17146
|
-
teamId?: string;
|
|
17147
|
-
/**
|
|
17148
|
-
* The Team slug to perform the request on behalf of.
|
|
17149
|
-
*/
|
|
17150
|
-
slug?: string;
|
|
17151
|
-
};
|
|
17152
|
-
type DeleteAliasError = ErrorWrapper<undefined>;
|
|
17153
|
-
type DeleteAliasResponse = {
|
|
17154
|
-
status: 'SUCCESS';
|
|
17155
|
-
};
|
|
17156
|
-
type DeleteAliasVariables = {
|
|
17157
|
-
pathParams: DeleteAliasPathParams;
|
|
17158
|
-
queryParams?: DeleteAliasQueryParams;
|
|
17159
|
-
} & FetcherExtraProps;
|
|
17160
|
-
/**
|
|
17161
|
-
* Delete an Alias with the specified ID.
|
|
17162
|
-
*/
|
|
17163
|
-
declare const deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
17164
|
-
type ListDeploymentAliasesPathParams = {
|
|
17165
|
-
/**
|
|
17166
|
-
* The ID of the deployment the aliases should be listed for
|
|
17167
|
-
*
|
|
17168
|
-
* @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
|
|
17169
|
-
*/
|
|
17170
|
-
id: string;
|
|
17171
|
-
};
|
|
17172
|
-
type ListDeploymentAliasesQueryParams = {
|
|
17173
|
-
/**
|
|
17174
|
-
* The Team identifier to perform the request on behalf of.
|
|
17175
|
-
*/
|
|
17176
|
-
teamId?: string;
|
|
17177
|
-
/**
|
|
17178
|
-
* The Team slug to perform the request on behalf of.
|
|
17179
|
-
*/
|
|
17180
|
-
slug?: string;
|
|
17181
|
-
};
|
|
17182
|
-
type ListDeploymentAliasesError = ErrorWrapper<undefined>;
|
|
17183
|
-
type ListDeploymentAliasesResponse = {
|
|
17184
|
-
/**
|
|
17185
|
-
* A list of the aliases assigned to the deployment
|
|
17186
|
-
*/
|
|
17187
|
-
aliases: {
|
|
17188
|
-
/**
|
|
17189
|
-
* The unique identifier of the alias
|
|
17190
|
-
*
|
|
17191
|
-
* @example 2WjyKQmM8ZnGcJsPWMrHRHrE
|
|
17192
|
-
*/
|
|
17193
|
-
uid: string;
|
|
17194
|
-
/**
|
|
17195
|
-
* The alias name, it could be a `.vercel.app` subdomain or a custom domain
|
|
17196
|
-
*
|
|
17197
|
-
* @example my-alias.vercel.app
|
|
17198
|
-
*/
|
|
17199
|
-
alias: string;
|
|
17200
|
-
/**
|
|
17201
|
-
* The date when the alias was created
|
|
17202
|
-
*
|
|
17203
|
-
* @format date-time
|
|
17204
|
-
* @example 2017-04-26T23:00:34.232Z
|
|
17205
|
-
*/
|
|
17206
|
-
created: string;
|
|
17207
|
-
/**
|
|
17208
|
-
* Target destination domain for redirect when the alias is a redirect
|
|
17209
|
-
*/
|
|
17210
|
-
redirect?: string | null;
|
|
17211
|
-
/**
|
|
17212
|
-
* The protection bypass for the alias
|
|
17213
|
-
*/
|
|
17214
|
-
protectionBypass?: {
|
|
17215
|
-
[key: string]: {
|
|
17216
|
-
createdAt: number;
|
|
17217
|
-
createdBy: string;
|
|
17218
|
-
scope: 'shareable-link';
|
|
17219
|
-
} | {
|
|
17220
|
-
createdAt: number;
|
|
17221
|
-
lastUpdatedAt: number;
|
|
17222
|
-
lastUpdatedBy: string;
|
|
17223
|
-
access: 'requested' | 'granted';
|
|
17224
|
-
scope: 'user';
|
|
17225
|
-
} | {
|
|
17226
|
-
createdAt: number;
|
|
17227
|
-
createdBy: string;
|
|
17228
|
-
scope: 'alias-protection-override';
|
|
17229
|
-
} | {
|
|
17230
|
-
createdAt: number;
|
|
17231
|
-
lastUpdatedAt: number;
|
|
17232
|
-
lastUpdatedBy: string;
|
|
17233
|
-
scope: 'email_invite';
|
|
17234
|
-
};
|
|
17235
|
-
};
|
|
17236
|
-
}[];
|
|
17237
|
-
};
|
|
17238
|
-
type ListDeploymentAliasesVariables = {
|
|
17239
|
-
pathParams: ListDeploymentAliasesPathParams;
|
|
17240
|
-
queryParams?: ListDeploymentAliasesQueryParams;
|
|
17241
|
-
} & FetcherExtraProps;
|
|
17242
|
-
/**
|
|
17243
|
-
* Retrieves all Aliases for the Deployment with the given ID. The authenticated user or team must own the deployment.
|
|
17244
|
-
*/
|
|
17245
|
-
declare const listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
|
|
17246
|
-
type AssignAliasPathParams = {
|
|
17247
|
-
/**
|
|
17248
|
-
* The ID of the deployment the aliases should be listed for
|
|
17249
|
-
*
|
|
17250
|
-
* @example dpl_FjvFJncQHQcZMznrUm9EoB8sFuPa
|
|
17251
|
-
*/
|
|
17252
|
-
id: string;
|
|
17253
|
-
};
|
|
17254
|
-
type AssignAliasQueryParams = {
|
|
17255
|
-
/**
|
|
17256
|
-
* The Team identifier to perform the request on behalf of.
|
|
17257
|
-
*/
|
|
17258
|
-
teamId?: string;
|
|
17259
|
-
/**
|
|
17260
|
-
* The Team slug to perform the request on behalf of.
|
|
17261
|
-
*/
|
|
17262
|
-
slug?: string;
|
|
17263
|
-
};
|
|
17264
|
-
type AssignAliasError = ErrorWrapper<undefined>;
|
|
17265
|
-
type AssignAliasResponse = {
|
|
17266
|
-
/**
|
|
17267
|
-
* The unique identifier of the alias
|
|
17268
|
-
*
|
|
17269
|
-
* @example 2WjyKQmM8ZnGcJsPWMrHRHrE
|
|
17270
|
-
*/
|
|
17271
|
-
uid: string;
|
|
17272
|
-
/**
|
|
17273
|
-
* The assigned alias name
|
|
17274
|
-
*
|
|
17275
|
-
* @example my-alias.vercel.app
|
|
17276
|
-
*/
|
|
17277
|
-
alias: string;
|
|
17278
|
-
/**
|
|
17279
|
-
* The date when the alias was created
|
|
17280
|
-
*
|
|
17281
|
-
* @format date-time
|
|
17282
|
-
* @example 2017-04-26T23:00:34.232Z
|
|
17283
|
-
*/
|
|
17284
|
-
created: string;
|
|
17622
|
+
createdAt: number;
|
|
17623
|
+
lastUpdatedAt: number;
|
|
17624
|
+
lastUpdatedBy: string;
|
|
17625
|
+
scope: 'email_invite';
|
|
17626
|
+
};
|
|
17627
|
+
};
|
|
17628
|
+
};
|
|
17629
|
+
type GetAliasVariables = {
|
|
17630
|
+
pathParams: GetAliasPathParams;
|
|
17631
|
+
queryParams?: GetAliasQueryParams;
|
|
17632
|
+
} & FetcherExtraProps;
|
|
17633
|
+
/**
|
|
17634
|
+
* Retrieves an Alias for the given host name or alias ID.
|
|
17635
|
+
*/
|
|
17636
|
+
declare const getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
17637
|
+
type DeleteAliasPathParams = {
|
|
17285
17638
|
/**
|
|
17286
|
-
* The
|
|
17639
|
+
* The ID or alias that will be removed
|
|
17287
17640
|
*
|
|
17288
|
-
* @example
|
|
17641
|
+
* @example 2WjyKQmM8ZnGcJsPWMrHRHrE
|
|
17289
17642
|
*/
|
|
17290
|
-
|
|
17643
|
+
aliasId: string;
|
|
17291
17644
|
};
|
|
17292
|
-
type
|
|
17645
|
+
type DeleteAliasQueryParams = {
|
|
17293
17646
|
/**
|
|
17294
|
-
* The
|
|
17295
|
-
*
|
|
17296
|
-
* @example my-alias.vercel.app
|
|
17647
|
+
* The Team identifier to perform the request on behalf of.
|
|
17297
17648
|
*/
|
|
17298
|
-
|
|
17649
|
+
teamId?: string;
|
|
17299
17650
|
/**
|
|
17300
|
-
* The
|
|
17301
|
-
*
|
|
17302
|
-
* @example null
|
|
17651
|
+
* The Team slug to perform the request on behalf of.
|
|
17303
17652
|
*/
|
|
17304
|
-
|
|
17653
|
+
slug?: string;
|
|
17305
17654
|
};
|
|
17306
|
-
type
|
|
17307
|
-
|
|
17308
|
-
|
|
17309
|
-
|
|
17655
|
+
type DeleteAliasError = ErrorWrapper<undefined>;
|
|
17656
|
+
type DeleteAliasResponse = {
|
|
17657
|
+
status: 'SUCCESS';
|
|
17658
|
+
};
|
|
17659
|
+
type DeleteAliasVariables = {
|
|
17660
|
+
pathParams: DeleteAliasPathParams;
|
|
17661
|
+
queryParams?: DeleteAliasQueryParams;
|
|
17310
17662
|
} & FetcherExtraProps;
|
|
17311
17663
|
/**
|
|
17312
|
-
*
|
|
17664
|
+
* Delete an Alias with the specified ID.
|
|
17313
17665
|
*/
|
|
17314
|
-
declare const
|
|
17666
|
+
declare const deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
17315
17667
|
type GetCertsError = ErrorWrapper<undefined>;
|
|
17316
17668
|
type GetCertsResponse = {
|
|
17317
17669
|
certs: {
|
|
@@ -17486,7 +17838,7 @@ type ListDeploymentFilesVariables = {
|
|
|
17486
17838
|
queryParams?: ListDeploymentFilesQueryParams;
|
|
17487
17839
|
} & FetcherExtraProps;
|
|
17488
17840
|
/**
|
|
17489
|
-
* 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.
|
|
17490
17842
|
*/
|
|
17491
17843
|
declare const listDeploymentFiles: (variables: ListDeploymentFilesVariables, signal?: AbortSignal) => Promise<ListDeploymentFilesResponse>;
|
|
17492
17844
|
type GetDeploymentFileContentsPathParams = {
|
|
@@ -17773,7 +18125,7 @@ type GetDeploymentsResponse = {
|
|
|
17773
18125
|
* The project settings which was used for this deployment
|
|
17774
18126
|
*/
|
|
17775
18127
|
projectSettings?: {
|
|
17776
|
-
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;
|
|
17777
18129
|
gitForkProtection?: boolean;
|
|
17778
18130
|
customerSupportCodeVisibility?: boolean;
|
|
17779
18131
|
gitLFS?: boolean;
|
|
@@ -19231,6 +19583,7 @@ declare const operationsByTag: {
|
|
|
19231
19583
|
};
|
|
19232
19584
|
deployments: {
|
|
19233
19585
|
getDeploymentEvents: (variables: GetDeploymentEventsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19586
|
+
updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19234
19587
|
getDeployment: (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
19235
19588
|
aliasAssignedAt?: number | boolean | null;
|
|
19236
19589
|
alwaysRefuseToBuild?: boolean;
|
|
@@ -19246,7 +19599,7 @@ declare const operationsByTag: {
|
|
|
19246
19599
|
projectSettings: {
|
|
19247
19600
|
buildCommand?: string | null;
|
|
19248
19601
|
devCommand?: string | null;
|
|
19249
|
-
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;
|
|
19250
19603
|
commandForIgnoringBuildStep?: string | null;
|
|
19251
19604
|
installCommand?: string | null;
|
|
19252
19605
|
outputDirectory?: string | null;
|
|
@@ -19619,8 +19972,11 @@ declare const operationsByTag: {
|
|
|
19619
19972
|
defaultRoute?: string;
|
|
19620
19973
|
/**
|
|
19621
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
|
|
19622
19978
|
*/
|
|
19623
|
-
groupIds: string[];
|
|
19979
|
+
groupIds: (string | string)[];
|
|
19624
19980
|
} | {
|
|
19625
19981
|
/**
|
|
19626
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.
|
|
@@ -19645,8 +20001,22 @@ declare const operationsByTag: {
|
|
|
19645
20001
|
defaultRoute?: string;
|
|
19646
20002
|
/**
|
|
19647
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
|
|
19648
20007
|
*/
|
|
19649
|
-
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;
|
|
19650
20020
|
};
|
|
19651
20021
|
} | {
|
|
19652
20022
|
alias?: string[];
|
|
@@ -19731,275 +20101,108 @@ declare const operationsByTag: {
|
|
|
19731
20101
|
ref?: string | null;
|
|
19732
20102
|
sha?: string;
|
|
19733
20103
|
prId?: number | null;
|
|
19734
|
-
} | {
|
|
19735
|
-
type: "github";
|
|
19736
|
-
org: string;
|
|
19737
|
-
repo: string;
|
|
19738
|
-
ref?: string | null;
|
|
19739
|
-
sha?: string;
|
|
19740
|
-
prId?: number | null;
|
|
19741
|
-
} | {
|
|
19742
|
-
type: "gitlab";
|
|
19743
|
-
projectId: string | number;
|
|
19744
|
-
ref?: string | null;
|
|
19745
|
-
sha?: string;
|
|
19746
|
-
prId?: number | null;
|
|
19747
|
-
} | {
|
|
19748
|
-
type: "bitbucket";
|
|
19749
|
-
workspaceUuid?: string;
|
|
19750
|
-
repoUuid: string;
|
|
19751
|
-
ref?: string | null;
|
|
19752
|
-
sha?: string;
|
|
19753
|
-
prId?: number | null;
|
|
19754
|
-
} | {
|
|
19755
|
-
type: "bitbucket";
|
|
19756
|
-
owner: string;
|
|
19757
|
-
slug: string;
|
|
19758
|
-
ref?: string | null;
|
|
19759
|
-
sha?: string;
|
|
19760
|
-
prId?: number | null;
|
|
19761
|
-
} | {
|
|
19762
|
-
type: "custom";
|
|
19763
|
-
ref: string;
|
|
19764
|
-
sha: string;
|
|
19765
|
-
gitUrl: string;
|
|
19766
|
-
} | {
|
|
19767
|
-
type: "github";
|
|
19768
|
-
ref: string;
|
|
19769
|
-
sha: string;
|
|
19770
|
-
repoId: number;
|
|
19771
|
-
org?: string;
|
|
19772
|
-
repo?: string;
|
|
19773
|
-
} | {
|
|
19774
|
-
type: "gitlab";
|
|
19775
|
-
ref: string;
|
|
19776
|
-
sha: string;
|
|
19777
|
-
projectId: number;
|
|
19778
|
-
} | {
|
|
19779
|
-
type: "bitbucket";
|
|
19780
|
-
ref: string;
|
|
19781
|
-
sha: string;
|
|
19782
|
-
owner?: string;
|
|
19783
|
-
slug?: string;
|
|
19784
|
-
workspaceUuid: string;
|
|
19785
|
-
repoUuid: string;
|
|
19786
|
-
};
|
|
19787
|
-
meta: {
|
|
19788
|
-
[key: string]: string;
|
|
19789
|
-
};
|
|
19790
|
-
originCacheRegion?: string;
|
|
19791
|
-
project?: {
|
|
19792
|
-
id: string;
|
|
19793
|
-
name: string;
|
|
19794
|
-
framework?: string | null;
|
|
19795
|
-
};
|
|
19796
|
-
/**
|
|
19797
|
-
* Since June 2023 Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - PROMOTED: has seen production traffic
|
|
19798
|
-
*/
|
|
19799
|
-
readySubstate?: "STAGED" | "PROMOTED";
|
|
19800
|
-
regions: string[];
|
|
19801
|
-
softDeletedByRetention?: boolean;
|
|
19802
|
-
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
19803
|
-
target?: "staging" | "production" | null;
|
|
19804
|
-
undeletedAt?: number;
|
|
19805
|
-
url: string;
|
|
19806
|
-
version: 2;
|
|
19807
|
-
oidcTokenClaims?: {
|
|
19808
|
-
iss: string;
|
|
19809
|
-
sub: string;
|
|
19810
|
-
scope: string;
|
|
19811
|
-
aud: string;
|
|
19812
|
-
owner: string;
|
|
19813
|
-
owner_id: string;
|
|
19814
|
-
project: string;
|
|
19815
|
-
project_id: string;
|
|
19816
|
-
environment: string;
|
|
19817
|
-
};
|
|
19818
|
-
}>;
|
|
19819
|
-
createDeployment: (variables: CreateDeploymentVariables, signal?: AbortSignal) => Promise<CreateDeploymentResponse>;
|
|
19820
|
-
cancelDeployment: (variables: CancelDeploymentVariables, signal?: AbortSignal) => Promise<CancelDeploymentResponse>;
|
|
19821
|
-
uploadFile: (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
19822
|
-
/**
|
|
19823
|
-
* Array of URLs where the file was updated
|
|
19824
|
-
*
|
|
19825
|
-
* @example example-upload.aws.com
|
|
19826
|
-
*/
|
|
19827
|
-
urls: string[];
|
|
19828
|
-
}>;
|
|
19829
|
-
listDeploymentFiles: (variables: ListDeploymentFilesVariables, signal?: AbortSignal) => Promise<ListDeploymentFilesResponse>;
|
|
19830
|
-
getDeploymentFileContents: (variables: GetDeploymentFileContentsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19831
|
-
getDeployments: (variables: GetDeploymentsVariables, signal?: AbortSignal) => Promise<GetDeploymentsResponse>;
|
|
19832
|
-
deleteDeployment: (variables: DeleteDeploymentVariables, signal?: AbortSignal) => Promise<DeleteDeploymentResponse>;
|
|
19833
|
-
};
|
|
19834
|
-
domains: {
|
|
19835
|
-
buyDomain: (variables: BuyDomainVariables, signal?: AbortSignal) => Promise<BuyDomainResponse>;
|
|
19836
|
-
checkDomainPrice: (variables: CheckDomainPriceVariables, signal?: AbortSignal) => Promise<CheckDomainPriceResponse>;
|
|
19837
|
-
checkDomainStatus: (variables: CheckDomainStatusVariables, signal?: AbortSignal) => Promise<CheckDomainStatusResponse>;
|
|
19838
|
-
getDomainTransfer: (variables: GetDomainTransferVariables, signal?: AbortSignal) => Promise<GetDomainTransferResponse>;
|
|
19839
|
-
getDomainConfig: (variables: GetDomainConfigVariables, signal?: AbortSignal) => Promise<GetDomainConfigResponse>;
|
|
19840
|
-
getDomain: (variables: GetDomainVariables, signal?: AbortSignal) => Promise<GetDomainResponse>;
|
|
19841
|
-
getDomains: (variables: GetDomainsVariables, signal?: AbortSignal) => Promise<GetDomainsResponse>;
|
|
19842
|
-
createOrTransferDomain: (variables: CreateOrTransferDomainVariables, signal?: AbortSignal) => Promise<CreateOrTransferDomainResponse>;
|
|
19843
|
-
patchDomain: (variables: PatchDomainVariables, signal?: AbortSignal) => Promise<{
|
|
19844
|
-
moved: boolean;
|
|
19845
|
-
} | {
|
|
19846
|
-
moved: boolean;
|
|
19847
|
-
token: string;
|
|
19848
|
-
} | {
|
|
19849
|
-
renew?: boolean;
|
|
19850
|
-
customNameservers?: string[];
|
|
19851
|
-
zone?: boolean;
|
|
19852
|
-
}>;
|
|
19853
|
-
deleteDomain: (variables: DeleteDomainVariables, signal?: AbortSignal) => Promise<DeleteDomainResponse>;
|
|
19854
|
-
};
|
|
19855
|
-
dns: {
|
|
19856
|
-
getRecords: (variables: GetRecordsVariables, signal?: AbortSignal) => Promise<string | {
|
|
19857
|
-
records: {
|
|
19858
|
-
id: string;
|
|
19859
|
-
slug: string;
|
|
19860
|
-
name: string;
|
|
19861
|
-
type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
|
|
19862
|
-
value: string;
|
|
19863
|
-
mxPriority?: number;
|
|
19864
|
-
priority?: number;
|
|
19865
|
-
creator: string;
|
|
19866
|
-
created: number | null;
|
|
19867
|
-
updated: number | null;
|
|
19868
|
-
createdAt: number | null;
|
|
19869
|
-
updatedAt: number | null;
|
|
19870
|
-
}[];
|
|
19871
|
-
} | {
|
|
19872
|
-
records: {
|
|
19873
|
-
id: string;
|
|
19874
|
-
slug: string;
|
|
19875
|
-
name: string;
|
|
19876
|
-
type: "A" | "AAAA" | "ALIAS" | "CAA" | "CNAME" | "HTTPS" | "MX" | "SRV" | "TXT" | "NS";
|
|
19877
|
-
value: string;
|
|
19878
|
-
mxPriority?: number;
|
|
19879
|
-
priority?: number;
|
|
19880
|
-
creator: string;
|
|
19881
|
-
created: number | null;
|
|
19882
|
-
updated: number | null;
|
|
19883
|
-
createdAt: number | null;
|
|
19884
|
-
updatedAt: number | null;
|
|
19885
|
-
}[];
|
|
19886
|
-
pagination: Pagination;
|
|
19887
|
-
}>;
|
|
19888
|
-
createRecord: (variables: CreateRecordVariables, signal?: AbortSignal) => Promise<{
|
|
19889
|
-
uid: string;
|
|
19890
|
-
updated: number;
|
|
19891
|
-
} | {
|
|
19892
|
-
/**
|
|
19893
|
-
* The id of the newly created DNS record
|
|
19894
|
-
*
|
|
19895
|
-
* @example rec_V0fra8eEgQwEpFhYG2vTzC3K
|
|
19896
|
-
*/
|
|
19897
|
-
uid: string;
|
|
19898
|
-
}>;
|
|
19899
|
-
updateRecord: (variables: UpdateRecordVariables, signal?: AbortSignal) => Promise<UpdateRecordResponse>;
|
|
19900
|
-
removeRecord: (variables: RemoveRecordVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
19901
|
-
};
|
|
19902
|
-
edgeConfig: {
|
|
19903
|
-
getEdgeConfigs: (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
19904
|
-
createEdgeConfig: (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
19905
|
-
getEdgeConfig: (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
19906
|
-
updateEdgeConfig: (variables: UpdateEdgeConfigVariables, signal?: AbortSignal) => Promise<UpdateEdgeConfigResponse>;
|
|
19907
|
-
deleteEdgeConfig: (variables: DeleteEdgeConfigVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19908
|
-
getEdgeConfigItems: (variables: GetEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
|
|
19909
|
-
patchEdgeConfigItems: (variables: PatchEdgeConfigItemsVariables, signal?: AbortSignal) => Promise<PatchEdgeConfigItemsResponse>;
|
|
19910
|
-
getEdgeConfigSchema: (variables: GetEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
|
|
19911
|
-
patchEdgeConfigSchema: (variables: PatchEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<Record<string, any> | null>;
|
|
19912
|
-
deleteEdgeConfigSchema: (variables: DeleteEdgeConfigSchemaVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19913
|
-
getEdgeConfigItem: (variables: GetEdgeConfigItemVariables, signal?: AbortSignal) => Promise<EdgeConfigItem>;
|
|
19914
|
-
getEdgeConfigTokens: (variables: GetEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
|
|
19915
|
-
deleteEdgeConfigTokens: (variables: DeleteEdgeConfigTokensVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19916
|
-
getEdgeConfigToken: (variables: GetEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<EdgeConfigToken>;
|
|
19917
|
-
createEdgeConfigToken: (variables: CreateEdgeConfigTokenVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigTokenResponse>;
|
|
19918
|
-
getEdgeConfigBackup: (variables: GetEdgeConfigBackupVariables, signal?: AbortSignal) => Promise<{
|
|
19919
|
-
id: string;
|
|
19920
|
-
lastModified: number;
|
|
19921
|
-
backup: {
|
|
19922
|
-
digest: string;
|
|
19923
|
-
items: {
|
|
19924
|
-
[key: string]: {
|
|
19925
|
-
updatedAt: number;
|
|
19926
|
-
value: EdgeConfigItemValue;
|
|
19927
|
-
description?: string;
|
|
19928
|
-
createdAt: number;
|
|
19929
|
-
};
|
|
19930
|
-
};
|
|
19931
|
-
/**
|
|
19932
|
-
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
19933
|
-
*/
|
|
20104
|
+
} | {
|
|
20105
|
+
type: "github";
|
|
20106
|
+
org: string;
|
|
20107
|
+
repo: string;
|
|
20108
|
+
ref?: string | null;
|
|
20109
|
+
sha?: string;
|
|
20110
|
+
prId?: number | null;
|
|
20111
|
+
} | {
|
|
20112
|
+
type: "gitlab";
|
|
20113
|
+
projectId: string | number;
|
|
20114
|
+
ref?: string | null;
|
|
20115
|
+
sha?: string;
|
|
20116
|
+
prId?: number | null;
|
|
20117
|
+
} | {
|
|
20118
|
+
type: "bitbucket";
|
|
20119
|
+
workspaceUuid?: string;
|
|
20120
|
+
repoUuid: string;
|
|
20121
|
+
ref?: string | null;
|
|
20122
|
+
sha?: string;
|
|
20123
|
+
prId?: number | null;
|
|
20124
|
+
} | {
|
|
20125
|
+
type: "bitbucket";
|
|
20126
|
+
owner: string;
|
|
19934
20127
|
slug: string;
|
|
19935
|
-
|
|
19936
|
-
|
|
19937
|
-
|
|
19938
|
-
|
|
19939
|
-
|
|
19940
|
-
|
|
19941
|
-
|
|
20128
|
+
ref?: string | null;
|
|
20129
|
+
sha?: string;
|
|
20130
|
+
prId?: number | null;
|
|
20131
|
+
} | {
|
|
20132
|
+
type: "custom";
|
|
20133
|
+
ref: string;
|
|
20134
|
+
sha: string;
|
|
20135
|
+
gitUrl: string;
|
|
20136
|
+
} | {
|
|
20137
|
+
type: "github";
|
|
20138
|
+
ref: string;
|
|
20139
|
+
sha: string;
|
|
20140
|
+
repoId: number;
|
|
20141
|
+
org?: string;
|
|
20142
|
+
repo?: string;
|
|
20143
|
+
} | {
|
|
20144
|
+
type: "gitlab";
|
|
20145
|
+
ref: string;
|
|
20146
|
+
sha: string;
|
|
20147
|
+
projectId: number;
|
|
20148
|
+
} | {
|
|
20149
|
+
type: "bitbucket";
|
|
20150
|
+
ref: string;
|
|
20151
|
+
sha: string;
|
|
20152
|
+
owner?: string;
|
|
20153
|
+
slug?: string;
|
|
20154
|
+
workspaceUuid: string;
|
|
20155
|
+
repoUuid: string;
|
|
19942
20156
|
};
|
|
19943
|
-
|
|
19944
|
-
|
|
19945
|
-
username: string;
|
|
19946
|
-
email: string;
|
|
19947
|
-
name?: string;
|
|
19948
|
-
avatar?: string;
|
|
20157
|
+
meta: {
|
|
20158
|
+
[key: string]: string;
|
|
19949
20159
|
};
|
|
19950
|
-
|
|
19951
|
-
|
|
20160
|
+
originCacheRegion?: string;
|
|
20161
|
+
project?: {
|
|
19952
20162
|
id: string;
|
|
19953
|
-
|
|
19954
|
-
|
|
19955
|
-
name?: string;
|
|
19956
|
-
avatar?: string;
|
|
19957
|
-
};
|
|
19958
|
-
id: string;
|
|
19959
|
-
lastModified: number;
|
|
19960
|
-
backup: {
|
|
19961
|
-
digest: string;
|
|
19962
|
-
items: {
|
|
19963
|
-
[key: string]: {
|
|
19964
|
-
updatedAt: number;
|
|
19965
|
-
value: EdgeConfigItemValue;
|
|
19966
|
-
description?: string;
|
|
19967
|
-
createdAt: number;
|
|
19968
|
-
};
|
|
19969
|
-
};
|
|
19970
|
-
/**
|
|
19971
|
-
* Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
|
|
19972
|
-
*/
|
|
19973
|
-
slug: string;
|
|
19974
|
-
updatedAt: number;
|
|
20163
|
+
name: string;
|
|
20164
|
+
framework?: string | null;
|
|
19975
20165
|
};
|
|
19976
|
-
|
|
19977
|
-
|
|
19978
|
-
|
|
19979
|
-
|
|
19980
|
-
|
|
20166
|
+
/**
|
|
20167
|
+
* Since June 2023 Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - PROMOTED: has seen production traffic
|
|
20168
|
+
*/
|
|
20169
|
+
readySubstate?: "STAGED" | "PROMOTED";
|
|
20170
|
+
regions: string[];
|
|
20171
|
+
softDeletedByRetention?: boolean;
|
|
20172
|
+
source?: "api-trigger-git-deploy" | "cli" | "clone/repo" | "git" | "import" | "import/repo" | "redeploy" | "v0-web";
|
|
20173
|
+
target?: "staging" | "production" | null;
|
|
20174
|
+
undeletedAt?: number;
|
|
20175
|
+
url: string;
|
|
20176
|
+
version: 2;
|
|
20177
|
+
oidcTokenClaims?: {
|
|
20178
|
+
iss: string;
|
|
20179
|
+
sub: string;
|
|
20180
|
+
scope: string;
|
|
20181
|
+
aud: string;
|
|
20182
|
+
owner: string;
|
|
20183
|
+
owner_id: string;
|
|
20184
|
+
project: string;
|
|
20185
|
+
project_id: string;
|
|
20186
|
+
environment: string;
|
|
19981
20187
|
};
|
|
19982
20188
|
}>;
|
|
19983
|
-
|
|
19984
|
-
|
|
19985
|
-
|
|
19986
|
-
|
|
19987
|
-
|
|
19988
|
-
|
|
19989
|
-
|
|
19990
|
-
|
|
19991
|
-
|
|
19992
|
-
|
|
19993
|
-
|
|
19994
|
-
|
|
19995
|
-
|
|
19996
|
-
|
|
19997
|
-
updateInvoice: (variables: UpdateInvoiceVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19998
|
-
updateResourceSecrets: (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
19999
|
-
updateResourceSecretsById: (variables: UpdateResourceSecretsByIdVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20000
|
-
exchangeSsoToken: (variables: ExchangeSsoTokenVariables, signal?: AbortSignal) => Promise<ExchangeSsoTokenResponse>;
|
|
20189
|
+
createDeployment: (variables: CreateDeploymentVariables, signal?: AbortSignal) => Promise<CreateDeploymentResponse>;
|
|
20190
|
+
cancelDeployment: (variables: CancelDeploymentVariables, signal?: AbortSignal) => Promise<CancelDeploymentResponse>;
|
|
20191
|
+
uploadFile: (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
20192
|
+
/**
|
|
20193
|
+
* Array of URLs where the file was updated
|
|
20194
|
+
*
|
|
20195
|
+
* @example example-upload.aws.com
|
|
20196
|
+
*/
|
|
20197
|
+
urls: string[];
|
|
20198
|
+
}>;
|
|
20199
|
+
listDeploymentFiles: (variables: ListDeploymentFilesVariables, signal?: AbortSignal) => Promise<ListDeploymentFilesResponse>;
|
|
20200
|
+
getDeploymentFileContents: (variables: GetDeploymentFileContentsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20201
|
+
getDeployments: (variables: GetDeploymentsVariables, signal?: AbortSignal) => Promise<GetDeploymentsResponse>;
|
|
20202
|
+
deleteDeployment: (variables: DeleteDeploymentVariables, signal?: AbortSignal) => Promise<DeleteDeploymentResponse>;
|
|
20001
20203
|
};
|
|
20002
20204
|
integrations: {
|
|
20205
|
+
updateIntegrationDeploymentAction: (variables: UpdateIntegrationDeploymentActionVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20003
20206
|
getConfigurations: (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
|
|
20004
20207
|
/**
|
|
20005
20208
|
* A timestamp that tells you when the configuration was installed successfully
|
|
@@ -20098,41 +20301,14 @@ declare const operationsByTag: {
|
|
|
20098
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'
|
|
20099
20302
|
*/
|
|
20100
20303
|
installationType?: "marketplace" | "external";
|
|
20101
|
-
billingPlan?: {
|
|
20102
|
-
id: string;
|
|
20103
|
-
type: "prepayment" | "subscription";
|
|
20104
|
-
name: string;
|
|
20105
|
-
scope?: "installation" | "resource";
|
|
20106
|
-
description: string;
|
|
20107
|
-
paymentMethodRequired?: boolean;
|
|
20108
|
-
preauthorizationAmount?: number;
|
|
20109
|
-
cost?: string;
|
|
20110
|
-
details?: {
|
|
20111
|
-
label: string;
|
|
20112
|
-
value?: string;
|
|
20113
|
-
}[];
|
|
20114
|
-
heightlightedDetails?: {
|
|
20115
|
-
label: string;
|
|
20116
|
-
value?: string;
|
|
20117
|
-
}[];
|
|
20118
|
-
quote?: {
|
|
20119
|
-
line: string;
|
|
20120
|
-
amount: string;
|
|
20121
|
-
}[];
|
|
20122
|
-
effectiveDate?: string;
|
|
20123
|
-
};
|
|
20124
|
-
billingTotal?: string;
|
|
20125
|
-
periodStart?: string;
|
|
20126
|
-
periodEnd?: string;
|
|
20127
20304
|
}[] | {
|
|
20128
20305
|
integration: {
|
|
20129
20306
|
name: string;
|
|
20130
20307
|
icon: string;
|
|
20131
|
-
category: string;
|
|
20132
20308
|
isLegacy: boolean;
|
|
20133
20309
|
flags?: string[];
|
|
20134
20310
|
assignedBetaLabelAt?: number;
|
|
20135
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "
|
|
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")[];
|
|
20136
20312
|
};
|
|
20137
20313
|
/**
|
|
20138
20314
|
* A timestamp that tells you when the configuration was installed successfully
|
|
@@ -20231,60 +20407,8 @@ declare const operationsByTag: {
|
|
|
20231
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'
|
|
20232
20408
|
*/
|
|
20233
20409
|
installationType?: "marketplace" | "external";
|
|
20234
|
-
billingPlan?: {
|
|
20235
|
-
id: string;
|
|
20236
|
-
type: "prepayment" | "subscription";
|
|
20237
|
-
name: string;
|
|
20238
|
-
scope?: "installation" | "resource";
|
|
20239
|
-
description: string;
|
|
20240
|
-
paymentMethodRequired?: boolean;
|
|
20241
|
-
preauthorizationAmount?: number;
|
|
20242
|
-
cost?: string;
|
|
20243
|
-
details?: {
|
|
20244
|
-
label: string;
|
|
20245
|
-
value?: string;
|
|
20246
|
-
}[];
|
|
20247
|
-
heightlightedDetails?: {
|
|
20248
|
-
label: string;
|
|
20249
|
-
value?: string;
|
|
20250
|
-
}[];
|
|
20251
|
-
quote?: {
|
|
20252
|
-
line: string;
|
|
20253
|
-
amount: string;
|
|
20254
|
-
}[];
|
|
20255
|
-
effectiveDate?: string;
|
|
20256
|
-
};
|
|
20257
|
-
billingTotal?: string;
|
|
20258
|
-
periodStart?: string;
|
|
20259
|
-
periodEnd?: string;
|
|
20260
20410
|
}[]>;
|
|
20261
20411
|
getConfiguration: (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
|
|
20262
|
-
billingPlan?: {
|
|
20263
|
-
id: string;
|
|
20264
|
-
type: "prepayment" | "subscription";
|
|
20265
|
-
name: string;
|
|
20266
|
-
scope?: "installation" | "resource";
|
|
20267
|
-
description: string;
|
|
20268
|
-
paymentMethodRequired?: boolean;
|
|
20269
|
-
preauthorizationAmount?: number;
|
|
20270
|
-
cost?: string;
|
|
20271
|
-
details?: {
|
|
20272
|
-
label: string;
|
|
20273
|
-
value?: string;
|
|
20274
|
-
}[];
|
|
20275
|
-
heightlightedDetails?: {
|
|
20276
|
-
label: string;
|
|
20277
|
-
value?: string;
|
|
20278
|
-
}[];
|
|
20279
|
-
quote?: {
|
|
20280
|
-
line: string;
|
|
20281
|
-
amount: string;
|
|
20282
|
-
}[];
|
|
20283
|
-
effectiveDate?: string;
|
|
20284
|
-
};
|
|
20285
|
-
billingTotal?: string;
|
|
20286
|
-
periodStart?: string;
|
|
20287
|
-
periodEnd?: string;
|
|
20288
20412
|
/**
|
|
20289
20413
|
* A timestamp that tells you when the configuration was installed successfully
|
|
20290
20414
|
*
|
|
@@ -20476,42 +20600,225 @@ declare const operationsByTag: {
|
|
|
20476
20600
|
*/
|
|
20477
20601
|
deletedAt?: number | null;
|
|
20478
20602
|
/**
|
|
20479
|
-
* 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
|
|
20480
20700
|
*
|
|
20481
|
-
* @example
|
|
20482
|
-
*/
|
|
20483
|
-
deleteRequestedAt?: number | null;
|
|
20484
|
-
disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
|
|
20485
|
-
/**
|
|
20486
|
-
* 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
|
|
20487
20702
|
*/
|
|
20488
|
-
|
|
20489
|
-
canConfigureOpenTelemetry?: boolean;
|
|
20703
|
+
uid: string;
|
|
20490
20704
|
}>;
|
|
20491
|
-
|
|
20492
|
-
|
|
20493
|
-
|
|
20494
|
-
|
|
20495
|
-
|
|
20496
|
-
|
|
20497
|
-
|
|
20498
|
-
|
|
20499
|
-
|
|
20500
|
-
|
|
20501
|
-
|
|
20502
|
-
|
|
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
|
+
*/
|
|
20503
20749
|
slug: string;
|
|
20504
|
-
|
|
20505
|
-
|
|
20506
|
-
|
|
20507
|
-
|
|
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
|
+
};
|
|
20508
20784
|
};
|
|
20509
|
-
|
|
20510
|
-
|
|
20511
|
-
|
|
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;
|
|
20512
20789
|
updatedAt: number;
|
|
20513
|
-
}
|
|
20790
|
+
};
|
|
20791
|
+
metadata: {
|
|
20792
|
+
updatedAt?: string;
|
|
20793
|
+
updatedBy?: string;
|
|
20794
|
+
itemsCount?: number;
|
|
20795
|
+
itemsBytes?: number;
|
|
20796
|
+
};
|
|
20514
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>;
|
|
20515
20822
|
};
|
|
20516
20823
|
authentication: {
|
|
20517
20824
|
exchangeSsoToken: (variables: ExchangeSsoTokenVariables, signal?: AbortSignal) => Promise<ExchangeSsoTokenResponse>;
|
|
@@ -20520,14 +20827,8 @@ declare const operationsByTag: {
|
|
|
20520
20827
|
getAuthToken: (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
|
|
20521
20828
|
deleteAuthToken: (variables: DeleteAuthTokenVariables, signal?: AbortSignal) => Promise<DeleteAuthTokenResponse>;
|
|
20522
20829
|
};
|
|
20523
|
-
|
|
20524
|
-
|
|
20525
|
-
createLogDrain: (variables: CreateLogDrainVariables, signal?: AbortSignal) => Promise<CreateLogDrainResponse>;
|
|
20526
|
-
deleteIntegrationLogDrain: (variables: DeleteIntegrationLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20527
|
-
getConfigurableLogDrain: (variables: GetConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<GetConfigurableLogDrainResponse>;
|
|
20528
|
-
deleteConfigurableLogDrain: (variables: DeleteConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20529
|
-
getAllLogDrains: (variables: GetAllLogDrainsVariables, signal?: AbortSignal) => Promise<GetAllLogDrainsResponse>;
|
|
20530
|
-
createConfigurableLogDrain: (variables: CreateConfigurableLogDrainVariables, signal?: AbortSignal) => Promise<CreateConfigurableLogDrainResponse>;
|
|
20830
|
+
apiExperimentation: {
|
|
20831
|
+
getV1ExperimentationItems: (variables: GetV1ExperimentationItemsVariables, signal?: AbortSignal) => Promise<GetV1ExperimentationItemsResponse>;
|
|
20531
20832
|
};
|
|
20532
20833
|
projectMembers: {
|
|
20533
20834
|
getProjectMembers: (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
@@ -20585,7 +20886,7 @@ declare const operationsByTag: {
|
|
|
20585
20886
|
*
|
|
20586
20887
|
* @example CONTRIBUTOR
|
|
20587
20888
|
*/
|
|
20588
|
-
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
20889
|
+
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
20589
20890
|
}[];
|
|
20590
20891
|
pagination: {
|
|
20591
20892
|
hasNext: boolean;
|
|
@@ -20613,11 +20914,11 @@ declare const operationsByTag: {
|
|
|
20613
20914
|
removeProjectMember: (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
|
|
20614
20915
|
};
|
|
20615
20916
|
environment: {
|
|
20616
|
-
|
|
20917
|
+
createCustomEnvironment: (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
20617
20918
|
getV9ProjectsIdOrNameCustomEnvironments: (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
20618
|
-
|
|
20619
|
-
|
|
20620
|
-
|
|
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>>;
|
|
20621
20922
|
};
|
|
20622
20923
|
security: {
|
|
20623
20924
|
updateAttackChallengeMode: (variables: UpdateAttackChallengeModeVariables, signal?: AbortSignal) => Promise<UpdateAttackChallengeModeResponse>;
|
|
@@ -20743,11 +21044,25 @@ declare const operationsByTag: {
|
|
|
20743
21044
|
*
|
|
20744
21045
|
* @example MEMBER
|
|
20745
21046
|
*/
|
|
20746
|
-
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")[];
|
|
20747
21060
|
} | {
|
|
20748
21061
|
uid: string;
|
|
20749
21062
|
username: string;
|
|
20750
|
-
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")[];
|
|
20751
21066
|
}>;
|
|
20752
21067
|
requestAccessToTeam: (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
|
|
20753
21068
|
getTeamAccessRequest: (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
|
|
@@ -20767,7 +21082,7 @@ declare const operationsByTag: {
|
|
|
20767
21082
|
projectsMetadata: {
|
|
20768
21083
|
id: string;
|
|
20769
21084
|
name: string;
|
|
20770
|
-
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;
|
|
20771
21086
|
latestDeployment?: string;
|
|
20772
21087
|
}[] | null;
|
|
20773
21088
|
/**
|
|
@@ -20860,11 +21175,11 @@ declare const operationsByTag: {
|
|
|
20860
21175
|
deleteWebhook: (variables: DeleteWebhookVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
20861
21176
|
};
|
|
20862
21177
|
aliases: {
|
|
21178
|
+
listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
|
|
21179
|
+
assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
|
|
20863
21180
|
listAliases: (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
20864
21181
|
getAlias: (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
20865
21182
|
deleteAlias: (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
20866
|
-
listDeploymentAliases: (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
|
|
20867
|
-
assignAlias: (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
|
|
20868
21183
|
};
|
|
20869
21184
|
certs: {
|
|
20870
21185
|
getCertById: (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
@@ -20956,6 +21271,11 @@ type components_CreateConfigurableLogDrainQueryParams = CreateConfigurableLogDra
|
|
|
20956
21271
|
type components_CreateConfigurableLogDrainRequestBody = CreateConfigurableLogDrainRequestBody;
|
|
20957
21272
|
type components_CreateConfigurableLogDrainResponse = CreateConfigurableLogDrainResponse;
|
|
20958
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;
|
|
20959
21279
|
type components_CreateDeploymentError = CreateDeploymentError;
|
|
20960
21280
|
type components_CreateDeploymentQueryParams = CreateDeploymentQueryParams;
|
|
20961
21281
|
type components_CreateDeploymentRequestBody = CreateDeploymentRequestBody;
|
|
@@ -21092,11 +21412,9 @@ type components_DeleteTeamQueryParams = DeleteTeamQueryParams;
|
|
|
21092
21412
|
type components_DeleteTeamRequestBody = DeleteTeamRequestBody;
|
|
21093
21413
|
type components_DeleteTeamResponse = DeleteTeamResponse;
|
|
21094
21414
|
type components_DeleteTeamVariables = DeleteTeamVariables;
|
|
21095
|
-
type
|
|
21096
|
-
type
|
|
21097
|
-
type
|
|
21098
|
-
type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdRequestBody;
|
|
21099
|
-
type components_DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = DeleteV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables;
|
|
21415
|
+
type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
|
|
21416
|
+
type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
|
|
21417
|
+
type components_DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = DeleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables;
|
|
21100
21418
|
type components_DeleteWebhookError = DeleteWebhookError;
|
|
21101
21419
|
type components_DeleteWebhookPathParams = DeleteWebhookPathParams;
|
|
21102
21420
|
type components_DeleteWebhookQueryParams = DeleteWebhookQueryParams;
|
|
@@ -21175,6 +21493,10 @@ type components_GetConfigurationVariables = GetConfigurationVariables;
|
|
|
21175
21493
|
type components_GetConfigurationsError = GetConfigurationsError;
|
|
21176
21494
|
type components_GetConfigurationsQueryParams = GetConfigurationsQueryParams;
|
|
21177
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;
|
|
21178
21500
|
type components_GetDeploymentError = GetDeploymentError;
|
|
21179
21501
|
type components_GetDeploymentEventsError = GetDeploymentEventsError;
|
|
21180
21502
|
type components_GetDeploymentEventsPathParams = GetDeploymentEventsPathParams;
|
|
@@ -21319,10 +21641,10 @@ type components_GetTeamsError = GetTeamsError;
|
|
|
21319
21641
|
type components_GetTeamsQueryParams = GetTeamsQueryParams;
|
|
21320
21642
|
type components_GetTeamsResponse = GetTeamsResponse;
|
|
21321
21643
|
type components_GetTeamsVariables = GetTeamsVariables;
|
|
21322
|
-
type
|
|
21323
|
-
type
|
|
21324
|
-
type
|
|
21325
|
-
type
|
|
21644
|
+
type components_GetV1ExperimentationItemsError = GetV1ExperimentationItemsError;
|
|
21645
|
+
type components_GetV1ExperimentationItemsQueryParams = GetV1ExperimentationItemsQueryParams;
|
|
21646
|
+
type components_GetV1ExperimentationItemsResponse = GetV1ExperimentationItemsResponse;
|
|
21647
|
+
type components_GetV1ExperimentationItemsVariables = GetV1ExperimentationItemsVariables;
|
|
21326
21648
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsError = GetV9ProjectsIdOrNameCustomEnvironmentsError;
|
|
21327
21649
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsPathParams = GetV9ProjectsIdOrNameCustomEnvironmentsPathParams;
|
|
21328
21650
|
type components_GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams = GetV9ProjectsIdOrNameCustomEnvironmentsQueryParams;
|
|
@@ -21340,6 +21662,11 @@ type components_GitNamespacesError = GitNamespacesError;
|
|
|
21340
21662
|
type components_GitNamespacesQueryParams = GitNamespacesQueryParams;
|
|
21341
21663
|
type components_GitNamespacesResponse = GitNamespacesResponse;
|
|
21342
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;
|
|
21343
21670
|
type components_InviteUserToTeamError = InviteUserToTeamError;
|
|
21344
21671
|
type components_InviteUserToTeamRequestBody = InviteUserToTeamRequestBody;
|
|
21345
21672
|
type components_InviteUserToTeamVariables = InviteUserToTeamVariables;
|
|
@@ -21414,25 +21741,28 @@ type components_PatchTeamPathParams = PatchTeamPathParams;
|
|
|
21414
21741
|
type components_PatchTeamQueryParams = PatchTeamQueryParams;
|
|
21415
21742
|
type components_PatchTeamRequestBody = PatchTeamRequestBody;
|
|
21416
21743
|
type components_PatchTeamVariables = PatchTeamVariables;
|
|
21417
|
-
type
|
|
21418
|
-
type
|
|
21419
|
-
type
|
|
21420
|
-
type
|
|
21421
|
-
type components_PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables = PatchV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrIdVariables;
|
|
21744
|
+
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdError;
|
|
21745
|
+
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdPathParams;
|
|
21746
|
+
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdRequestBody;
|
|
21747
|
+
type components_PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables = PatchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemIdVariables;
|
|
21422
21748
|
type components_PauseProjectError = PauseProjectError;
|
|
21423
21749
|
type components_PauseProjectPathParams = PauseProjectPathParams;
|
|
21424
21750
|
type components_PauseProjectQueryParams = PauseProjectQueryParams;
|
|
21425
21751
|
type components_PauseProjectVariables = PauseProjectVariables;
|
|
21426
|
-
type
|
|
21427
|
-
type
|
|
21428
|
-
type
|
|
21429
|
-
type
|
|
21430
|
-
type components_PostV1ProjectsIdOrNameCustomEnvironmentsVariables = PostV1ProjectsIdOrNameCustomEnvironmentsVariables;
|
|
21752
|
+
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsError;
|
|
21753
|
+
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsPathParams;
|
|
21754
|
+
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsRequestBody;
|
|
21755
|
+
type components_PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables = PostV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsVariables;
|
|
21431
21756
|
type components_PutFirewallConfigError = PutFirewallConfigError;
|
|
21432
21757
|
type components_PutFirewallConfigQueryParams = PutFirewallConfigQueryParams;
|
|
21433
21758
|
type components_PutFirewallConfigRequestBody = PutFirewallConfigRequestBody;
|
|
21434
21759
|
type components_PutFirewallConfigResponse = PutFirewallConfigResponse;
|
|
21435
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;
|
|
21436
21766
|
type components_ReadAccessGroupError = ReadAccessGroupError;
|
|
21437
21767
|
type components_ReadAccessGroupPathParams = ReadAccessGroupPathParams;
|
|
21438
21768
|
type components_ReadAccessGroupProjectError = ReadAccessGroupProjectError;
|
|
@@ -21456,6 +21786,11 @@ type components_RemoveCertError = RemoveCertError;
|
|
|
21456
21786
|
type components_RemoveCertPathParams = RemoveCertPathParams;
|
|
21457
21787
|
type components_RemoveCertQueryParams = RemoveCertQueryParams;
|
|
21458
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;
|
|
21459
21794
|
type components_RemoveProjectDomainError = RemoveProjectDomainError;
|
|
21460
21795
|
type components_RemoveProjectDomainPathParams = RemoveProjectDomainPathParams;
|
|
21461
21796
|
type components_RemoveProjectDomainQueryParams = RemoveProjectDomainQueryParams;
|
|
@@ -21516,6 +21851,10 @@ type components_SubmitInvoicePathParams = SubmitInvoicePathParams;
|
|
|
21516
21851
|
type components_SubmitInvoiceRequestBody = SubmitInvoiceRequestBody;
|
|
21517
21852
|
type components_SubmitInvoiceResponse = SubmitInvoiceResponse;
|
|
21518
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;
|
|
21519
21858
|
type components_UnpauseProjectError = UnpauseProjectError;
|
|
21520
21859
|
type components_UnpauseProjectPathParams = UnpauseProjectPathParams;
|
|
21521
21860
|
type components_UnpauseProjectQueryParams = UnpauseProjectQueryParams;
|
|
@@ -21543,6 +21882,11 @@ type components_UpdateCheckQueryParams = UpdateCheckQueryParams;
|
|
|
21543
21882
|
type components_UpdateCheckRequestBody = UpdateCheckRequestBody;
|
|
21544
21883
|
type components_UpdateCheckResponse = UpdateCheckResponse;
|
|
21545
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;
|
|
21546
21890
|
type components_UpdateEdgeConfigError = UpdateEdgeConfigError;
|
|
21547
21891
|
type components_UpdateEdgeConfigPathParams = UpdateEdgeConfigPathParams;
|
|
21548
21892
|
type components_UpdateEdgeConfigQueryParams = UpdateEdgeConfigQueryParams;
|
|
@@ -21552,6 +21896,10 @@ type components_UpdateEdgeConfigVariables = UpdateEdgeConfigVariables;
|
|
|
21552
21896
|
type components_UpdateFirewallConfigError = UpdateFirewallConfigError;
|
|
21553
21897
|
type components_UpdateFirewallConfigQueryParams = UpdateFirewallConfigQueryParams;
|
|
21554
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;
|
|
21555
21903
|
type components_UpdateInvoiceError = UpdateInvoiceError;
|
|
21556
21904
|
type components_UpdateInvoicePathParams = UpdateInvoicePathParams;
|
|
21557
21905
|
type components_UpdateInvoiceRequestBody = UpdateInvoiceRequestBody;
|
|
@@ -21634,6 +21982,7 @@ declare const components_createAccessGroupProject: typeof createAccessGroupProje
|
|
|
21634
21982
|
declare const components_createAuthToken: typeof createAuthToken;
|
|
21635
21983
|
declare const components_createCheck: typeof createCheck;
|
|
21636
21984
|
declare const components_createConfigurableLogDrain: typeof createConfigurableLogDrain;
|
|
21985
|
+
declare const components_createCustomEnvironment: typeof createCustomEnvironment;
|
|
21637
21986
|
declare const components_createDeployment: typeof createDeployment;
|
|
21638
21987
|
declare const components_createEdgeConfig: typeof createEdgeConfig;
|
|
21639
21988
|
declare const components_createEdgeConfigToken: typeof createEdgeConfigToken;
|
|
@@ -21664,7 +22013,7 @@ declare const components_deleteProject: typeof deleteProject;
|
|
|
21664
22013
|
declare const components_deleteSecret: typeof deleteSecret;
|
|
21665
22014
|
declare const components_deleteTeam: typeof deleteTeam;
|
|
21666
22015
|
declare const components_deleteTeamInviteCode: typeof deleteTeamInviteCode;
|
|
21667
|
-
declare const
|
|
22016
|
+
declare const components_deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof deleteV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
|
|
21668
22017
|
declare const components_deleteWebhook: typeof deleteWebhook;
|
|
21669
22018
|
declare const components_downloadArtifact: typeof downloadArtifact;
|
|
21670
22019
|
declare const components_editProjectEnv: typeof editProjectEnv;
|
|
@@ -21684,6 +22033,7 @@ declare const components_getCheck: typeof getCheck;
|
|
|
21684
22033
|
declare const components_getConfigurableLogDrain: typeof getConfigurableLogDrain;
|
|
21685
22034
|
declare const components_getConfiguration: typeof getConfiguration;
|
|
21686
22035
|
declare const components_getConfigurations: typeof getConfigurations;
|
|
22036
|
+
declare const components_getCustomEnvironment: typeof getCustomEnvironment;
|
|
21687
22037
|
declare const components_getDeployment: typeof getDeployment;
|
|
21688
22038
|
declare const components_getDeploymentEvents: typeof getDeploymentEvents;
|
|
21689
22039
|
declare const components_getDeploymentFileContents: typeof getDeploymentFileContents;
|
|
@@ -21718,11 +22068,12 @@ declare const components_getTeam: typeof getTeam;
|
|
|
21718
22068
|
declare const components_getTeamAccessRequest: typeof getTeamAccessRequest;
|
|
21719
22069
|
declare const components_getTeamMembers: typeof getTeamMembers;
|
|
21720
22070
|
declare const components_getTeams: typeof getTeams;
|
|
22071
|
+
declare const components_getV1ExperimentationItems: typeof getV1ExperimentationItems;
|
|
21721
22072
|
declare const components_getV9ProjectsIdOrNameCustomEnvironments: typeof getV9ProjectsIdOrNameCustomEnvironments;
|
|
21722
|
-
declare const components_getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId: typeof getV9ProjectsIdOrNameCustomEnvironmentsEnvironmentSlugOrId;
|
|
21723
22073
|
declare const components_getWebhook: typeof getWebhook;
|
|
21724
22074
|
declare const components_getWebhooks: typeof getWebhooks;
|
|
21725
22075
|
declare const components_gitNamespaces: typeof gitNamespaces;
|
|
22076
|
+
declare const components_importResource: typeof importResource;
|
|
21726
22077
|
declare const components_inviteUserToTeam: typeof inviteUserToTeam;
|
|
21727
22078
|
declare const components_issueCert: typeof issueCert;
|
|
21728
22079
|
declare const components_joinTeam: typeof joinTeam;
|
|
@@ -21741,15 +22092,17 @@ declare const components_patchDomain: typeof patchDomain;
|
|
|
21741
22092
|
declare const components_patchEdgeConfigItems: typeof patchEdgeConfigItems;
|
|
21742
22093
|
declare const components_patchEdgeConfigSchema: typeof patchEdgeConfigSchema;
|
|
21743
22094
|
declare const components_patchTeam: typeof patchTeam;
|
|
21744
|
-
declare const
|
|
22095
|
+
declare const components_patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId: typeof patchV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItemsItemId;
|
|
21745
22096
|
declare const components_pauseProject: typeof pauseProject;
|
|
21746
|
-
declare const
|
|
22097
|
+
declare const components_postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems: typeof postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems;
|
|
21747
22098
|
declare const components_putFirewallConfig: typeof putFirewallConfig;
|
|
22099
|
+
declare const components_putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig: typeof putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig;
|
|
21748
22100
|
declare const components_readAccessGroup: typeof readAccessGroup;
|
|
21749
22101
|
declare const components_readAccessGroupProject: typeof readAccessGroupProject;
|
|
21750
22102
|
declare const components_recordEvents: typeof recordEvents;
|
|
21751
22103
|
declare const components_removeBypassIp: typeof removeBypassIp;
|
|
21752
22104
|
declare const components_removeCert: typeof removeCert;
|
|
22105
|
+
declare const components_removeCustomEnvironment: typeof removeCustomEnvironment;
|
|
21753
22106
|
declare const components_removeProjectDomain: typeof removeProjectDomain;
|
|
21754
22107
|
declare const components_removeProjectEnv: typeof removeProjectEnv;
|
|
21755
22108
|
declare const components_removeProjectMember: typeof removeProjectMember;
|
|
@@ -21764,13 +22117,16 @@ declare const components_searchRepo: typeof searchRepo;
|
|
|
21764
22117
|
declare const components_status: typeof status;
|
|
21765
22118
|
declare const components_submitBillingData: typeof submitBillingData;
|
|
21766
22119
|
declare const components_submitInvoice: typeof submitInvoice;
|
|
22120
|
+
declare const components_submitPrepaymentBalances: typeof submitPrepaymentBalances;
|
|
21767
22121
|
declare const components_unpauseProject: typeof unpauseProject;
|
|
21768
22122
|
declare const components_updateAccessGroup: typeof updateAccessGroup;
|
|
21769
22123
|
declare const components_updateAccessGroupProject: typeof updateAccessGroupProject;
|
|
21770
22124
|
declare const components_updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
21771
22125
|
declare const components_updateCheck: typeof updateCheck;
|
|
22126
|
+
declare const components_updateCustomEnvironment: typeof updateCustomEnvironment;
|
|
21772
22127
|
declare const components_updateEdgeConfig: typeof updateEdgeConfig;
|
|
21773
22128
|
declare const components_updateFirewallConfig: typeof updateFirewallConfig;
|
|
22129
|
+
declare const components_updateIntegrationDeploymentAction: typeof updateIntegrationDeploymentAction;
|
|
21774
22130
|
declare const components_updateInvoice: typeof updateInvoice;
|
|
21775
22131
|
declare const components_updateProject: typeof updateProject;
|
|
21776
22132
|
declare const components_updateProjectDataCache: typeof updateProjectDataCache;
|
|
@@ -21785,7 +22141,7 @@ declare const components_uploadCert: typeof uploadCert;
|
|
|
21785
22141
|
declare const components_uploadFile: typeof uploadFile;
|
|
21786
22142
|
declare const components_verifyProjectDomain: typeof verifyProjectDomain;
|
|
21787
22143
|
declare namespace components {
|
|
21788
|
-
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 };
|
|
21789
22145
|
}
|
|
21790
22146
|
|
|
21791
22147
|
declare const operationsByPath: {
|
|
@@ -21832,6 +22188,7 @@ declare const operationsByPath: {
|
|
|
21832
22188
|
'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
|
|
21833
22189
|
'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
|
|
21834
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>;
|
|
21835
22192
|
'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
21836
22193
|
aliasAssignedAt?: number | boolean | null;
|
|
21837
22194
|
alwaysRefuseToBuild?: boolean;
|
|
@@ -21847,7 +22204,7 @@ declare const operationsByPath: {
|
|
|
21847
22204
|
projectSettings: {
|
|
21848
22205
|
buildCommand?: string | null;
|
|
21849
22206
|
devCommand?: string | null;
|
|
21850
|
-
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;
|
|
21851
22208
|
commandForIgnoringBuildStep?: string | null;
|
|
21852
22209
|
installCommand?: string | null;
|
|
21853
22210
|
outputDirectory?: string | null;
|
|
@@ -22167,7 +22524,7 @@ declare const operationsByPath: {
|
|
|
22167
22524
|
microfrontends?: {
|
|
22168
22525
|
isDefaultApp?: boolean;
|
|
22169
22526
|
defaultRoute?: string;
|
|
22170
|
-
groupIds: string[];
|
|
22527
|
+
groupIds: (string | string)[];
|
|
22171
22528
|
} | {
|
|
22172
22529
|
applications?: {
|
|
22173
22530
|
[key: string]: {
|
|
@@ -22178,7 +22535,15 @@ declare const operationsByPath: {
|
|
|
22178
22535
|
};
|
|
22179
22536
|
isDefaultApp: boolean;
|
|
22180
22537
|
defaultRoute?: string;
|
|
22181
|
-
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;
|
|
22182
22547
|
};
|
|
22183
22548
|
} | {
|
|
22184
22549
|
alias?: string[];
|
|
@@ -22397,6 +22762,10 @@ declare const operationsByPath: {
|
|
|
22397
22762
|
zone?: boolean;
|
|
22398
22763
|
}>;
|
|
22399
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>;
|
|
22400
22769
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
22401
22770
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
22402
22771
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -22480,8 +22849,10 @@ declare const operationsByPath: {
|
|
|
22480
22849
|
'POST /v1/installations/{integrationConfigurationId}/billing/invoices': (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
|
|
22481
22850
|
'GET /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}': (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
|
|
22482
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>;
|
|
22483
22853
|
'PUT /v1/installations/{integrationConfigurationId}/products/{integrationProductIdOrSlug}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
22484
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>;
|
|
22485
22856
|
'GET /v1/integrations/configurations': (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
|
|
22486
22857
|
completedAt?: number;
|
|
22487
22858
|
createdAt?: number;
|
|
@@ -22501,41 +22872,14 @@ declare const operationsByPath: {
|
|
|
22501
22872
|
deleteRequestedAt?: number | null;
|
|
22502
22873
|
disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
|
|
22503
22874
|
installationType?: "marketplace" | "external";
|
|
22504
|
-
billingPlan?: {
|
|
22505
|
-
id: string;
|
|
22506
|
-
type: "prepayment" | "subscription";
|
|
22507
|
-
name: string;
|
|
22508
|
-
scope?: "installation" | "resource";
|
|
22509
|
-
description: string;
|
|
22510
|
-
paymentMethodRequired?: boolean;
|
|
22511
|
-
preauthorizationAmount?: number;
|
|
22512
|
-
cost?: string;
|
|
22513
|
-
details?: {
|
|
22514
|
-
label: string;
|
|
22515
|
-
value?: string;
|
|
22516
|
-
}[];
|
|
22517
|
-
heightlightedDetails?: {
|
|
22518
|
-
label: string;
|
|
22519
|
-
value?: string;
|
|
22520
|
-
}[];
|
|
22521
|
-
quote?: {
|
|
22522
|
-
line: string;
|
|
22523
|
-
amount: string;
|
|
22524
|
-
}[];
|
|
22525
|
-
effectiveDate?: string;
|
|
22526
|
-
};
|
|
22527
|
-
billingTotal?: string;
|
|
22528
|
-
periodStart?: string;
|
|
22529
|
-
periodEnd?: string;
|
|
22530
22875
|
}[] | {
|
|
22531
22876
|
integration: {
|
|
22532
22877
|
name: string;
|
|
22533
22878
|
icon: string;
|
|
22534
|
-
category: string;
|
|
22535
22879
|
isLegacy: boolean;
|
|
22536
22880
|
flags?: string[];
|
|
22537
22881
|
assignedBetaLabelAt?: number;
|
|
22538
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "
|
|
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")[];
|
|
22539
22883
|
};
|
|
22540
22884
|
completedAt?: number;
|
|
22541
22885
|
createdAt: number;
|
|
@@ -22555,60 +22899,8 @@ declare const operationsByPath: {
|
|
|
22555
22899
|
deleteRequestedAt?: number | null;
|
|
22556
22900
|
disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
|
|
22557
22901
|
installationType?: "marketplace" | "external";
|
|
22558
|
-
billingPlan?: {
|
|
22559
|
-
id: string;
|
|
22560
|
-
type: "prepayment" | "subscription";
|
|
22561
|
-
name: string;
|
|
22562
|
-
scope?: "installation" | "resource";
|
|
22563
|
-
description: string;
|
|
22564
|
-
paymentMethodRequired?: boolean;
|
|
22565
|
-
preauthorizationAmount?: number;
|
|
22566
|
-
cost?: string;
|
|
22567
|
-
details?: {
|
|
22568
|
-
label: string;
|
|
22569
|
-
value?: string;
|
|
22570
|
-
}[];
|
|
22571
|
-
heightlightedDetails?: {
|
|
22572
|
-
label: string;
|
|
22573
|
-
value?: string;
|
|
22574
|
-
}[];
|
|
22575
|
-
quote?: {
|
|
22576
|
-
line: string;
|
|
22577
|
-
amount: string;
|
|
22578
|
-
}[];
|
|
22579
|
-
effectiveDate?: string;
|
|
22580
|
-
};
|
|
22581
|
-
billingTotal?: string;
|
|
22582
|
-
periodStart?: string;
|
|
22583
|
-
periodEnd?: string;
|
|
22584
22902
|
}[]>;
|
|
22585
22903
|
'GET /v1/integrations/configuration/{id}': (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
|
|
22586
|
-
billingPlan?: {
|
|
22587
|
-
id: string;
|
|
22588
|
-
type: "prepayment" | "subscription";
|
|
22589
|
-
name: string;
|
|
22590
|
-
scope?: "installation" | "resource";
|
|
22591
|
-
description: string;
|
|
22592
|
-
paymentMethodRequired?: boolean;
|
|
22593
|
-
preauthorizationAmount?: number;
|
|
22594
|
-
cost?: string;
|
|
22595
|
-
details?: {
|
|
22596
|
-
label: string;
|
|
22597
|
-
value?: string;
|
|
22598
|
-
}[];
|
|
22599
|
-
heightlightedDetails?: {
|
|
22600
|
-
label: string;
|
|
22601
|
-
value?: string;
|
|
22602
|
-
}[];
|
|
22603
|
-
quote?: {
|
|
22604
|
-
line: string;
|
|
22605
|
-
amount: string;
|
|
22606
|
-
}[];
|
|
22607
|
-
effectiveDate?: string;
|
|
22608
|
-
};
|
|
22609
|
-
billingTotal?: string;
|
|
22610
|
-
periodStart?: string;
|
|
22611
|
-
periodEnd?: string;
|
|
22612
22904
|
completedAt?: number;
|
|
22613
22905
|
createdAt: number;
|
|
22614
22906
|
id: string;
|
|
@@ -22677,10 +22969,11 @@ declare const operationsByPath: {
|
|
|
22677
22969
|
updatedAt: number;
|
|
22678
22970
|
}[];
|
|
22679
22971
|
}>;
|
|
22680
|
-
'GET /v1/
|
|
22681
|
-
'
|
|
22682
|
-
'
|
|
22683
|
-
'
|
|
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>;
|
|
22684
22977
|
'GET /v1/projects/{idOrName}/members': (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
22685
22978
|
members: {
|
|
22686
22979
|
avatar?: string;
|
|
@@ -22691,7 +22984,7 @@ declare const operationsByPath: {
|
|
|
22691
22984
|
username: string;
|
|
22692
22985
|
name?: string;
|
|
22693
22986
|
createdAt: number;
|
|
22694
|
-
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
22987
|
+
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
22695
22988
|
}[];
|
|
22696
22989
|
pagination: {
|
|
22697
22990
|
hasNext: boolean;
|
|
@@ -22702,16 +22995,16 @@ declare const operationsByPath: {
|
|
|
22702
22995
|
}>;
|
|
22703
22996
|
'POST /v1/projects/{idOrName}/members': (variables: AddProjectMemberVariables, signal?: AbortSignal) => Promise<AddProjectMemberResponse>;
|
|
22704
22997
|
'DELETE /v1/projects/{idOrName}/members/{uid}': (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
|
|
22705
|
-
'GET /
|
|
22998
|
+
'GET /v10/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
|
|
22706
22999
|
'POST /v10/projects': (variables: CreateProjectVariables, signal?: AbortSignal) => Promise<CreateProjectResponse>;
|
|
22707
23000
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
22708
23001
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
22709
23002
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
22710
|
-
'POST /
|
|
23003
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
22711
23004
|
'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
22712
|
-
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
22713
|
-
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
22714
|
-
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
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>>;
|
|
22715
23008
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
|
|
22716
23009
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
22717
23010
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
@@ -23564,11 +23857,15 @@ declare const operationsByPath: {
|
|
|
23564
23857
|
uid: string;
|
|
23565
23858
|
username: string;
|
|
23566
23859
|
email?: string;
|
|
23567
|
-
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")[];
|
|
23568
23863
|
} | {
|
|
23569
23864
|
uid: string;
|
|
23570
23865
|
username: string;
|
|
23571
|
-
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")[];
|
|
23572
23869
|
}>;
|
|
23573
23870
|
'POST /v1/teams/{teamId}/request': (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
|
|
23574
23871
|
'GET /v1/teams/{teamId}/request/{userId}': (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
|
|
@@ -23584,18 +23881,18 @@ declare const operationsByPath: {
|
|
|
23584
23881
|
'POST /v2/files': (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
23585
23882
|
urls: string[];
|
|
23586
23883
|
}>;
|
|
23587
|
-
'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
|
|
23588
|
-
'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
|
|
23589
23884
|
'GET /v5/user/tokens': (variables: ListAuthTokensVariables, signal?: AbortSignal) => Promise<ListAuthTokensResponse>;
|
|
23590
23885
|
'POST /v3/user/tokens': (variables: CreateAuthTokenVariables, signal?: AbortSignal) => Promise<CreateAuthTokenResponse>;
|
|
23591
23886
|
'GET /v5/user/tokens/{tokenId}': (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
|
|
23592
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>;
|
|
23593
23890
|
'POST /v1/webhooks': (variables: CreateWebhookVariables, signal?: AbortSignal) => Promise<CreateWebhookResponse>;
|
|
23594
23891
|
'GET /v1/webhooks': (variables: GetWebhooksVariables, signal?: AbortSignal) => Promise<{
|
|
23595
23892
|
projectsMetadata: {
|
|
23596
23893
|
id: string;
|
|
23597
23894
|
name: string;
|
|
23598
|
-
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;
|
|
23599
23896
|
latestDeployment?: string;
|
|
23600
23897
|
}[] | null;
|
|
23601
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")[];
|
|
@@ -23616,11 +23913,11 @@ declare const operationsByPath: {
|
|
|
23616
23913
|
}[]>;
|
|
23617
23914
|
'GET /v1/webhooks/{id}': (variables: GetWebhookVariables, signal?: AbortSignal) => Promise<GetWebhookResponse>;
|
|
23618
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>;
|
|
23619
23918
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
23620
23919
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
23621
23920
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
23622
|
-
'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
|
|
23623
|
-
'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
|
|
23624
23921
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
23625
23922
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
23626
23923
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
@@ -23702,6 +23999,7 @@ declare class VercelApi {
|
|
|
23702
23999
|
'PATCH /data-cache/billing-settings': (variables: PatchDataCacheBillingSettingsVariables, signal?: AbortSignal) => Promise<PatchDataCacheBillingSettingsResponse>;
|
|
23703
24000
|
'PATCH /v1/data-cache/projects/{projectId}': (variables: UpdateProjectDataCacheVariables, signal?: AbortSignal) => Promise<UpdateProjectDataCacheResponse>;
|
|
23704
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>;
|
|
23705
24003
|
'GET /v13/deployments/{idOrUrl}': (variables: GetDeploymentVariables, signal?: AbortSignal) => Promise<{
|
|
23706
24004
|
aliasAssignedAt?: number | boolean | null;
|
|
23707
24005
|
alwaysRefuseToBuild?: boolean;
|
|
@@ -23717,7 +24015,7 @@ declare class VercelApi {
|
|
|
23717
24015
|
projectSettings: {
|
|
23718
24016
|
buildCommand?: string | null;
|
|
23719
24017
|
devCommand?: string | null;
|
|
23720
|
-
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;
|
|
23721
24019
|
commandForIgnoringBuildStep?: string | null;
|
|
23722
24020
|
installCommand?: string | null;
|
|
23723
24021
|
outputDirectory?: string | null;
|
|
@@ -24037,7 +24335,7 @@ declare class VercelApi {
|
|
|
24037
24335
|
microfrontends?: {
|
|
24038
24336
|
isDefaultApp?: boolean;
|
|
24039
24337
|
defaultRoute?: string;
|
|
24040
|
-
groupIds: string[];
|
|
24338
|
+
groupIds: (string | string)[];
|
|
24041
24339
|
} | {
|
|
24042
24340
|
applications?: {
|
|
24043
24341
|
[key: string]: {
|
|
@@ -24048,7 +24346,15 @@ declare class VercelApi {
|
|
|
24048
24346
|
};
|
|
24049
24347
|
isDefaultApp: boolean;
|
|
24050
24348
|
defaultRoute?: string;
|
|
24051
|
-
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;
|
|
24052
24358
|
};
|
|
24053
24359
|
} | {
|
|
24054
24360
|
alias?: string[];
|
|
@@ -24267,6 +24573,10 @@ declare class VercelApi {
|
|
|
24267
24573
|
zone?: boolean;
|
|
24268
24574
|
}>;
|
|
24269
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>;
|
|
24270
24580
|
'GET /v1/edge-config': (variables: GetEdgeConfigsVariables, signal?: AbortSignal) => Promise<GetEdgeConfigsResponse>;
|
|
24271
24581
|
'POST /v1/edge-config': (variables: CreateEdgeConfigVariables, signal?: AbortSignal) => Promise<CreateEdgeConfigResponse>;
|
|
24272
24582
|
'GET /v1/edge-config/{edgeConfigId}': (variables: GetEdgeConfigVariables, signal?: AbortSignal) => Promise<GetEdgeConfigResponse>;
|
|
@@ -24350,8 +24660,10 @@ declare class VercelApi {
|
|
|
24350
24660
|
'POST /v1/installations/{integrationConfigurationId}/billing/invoices': (variables: SubmitInvoiceVariables, signal?: AbortSignal) => Promise<SubmitInvoiceResponse>;
|
|
24351
24661
|
'GET /v1/installations/{integrationConfigurationId}/billing/invoices/{invoiceId}': (variables: GetInvoiceVariables, signal?: AbortSignal) => Promise<GetInvoiceResponse>;
|
|
24352
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>;
|
|
24353
24664
|
'PUT /v1/installations/{integrationConfigurationId}/products/{integrationProductIdOrSlug}/resources/{resourceId}/secrets': (variables: UpdateResourceSecretsVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
24354
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>;
|
|
24355
24667
|
'GET /v1/integrations/configurations': (variables: GetConfigurationsVariables, signal?: AbortSignal) => Promise<{
|
|
24356
24668
|
completedAt?: number;
|
|
24357
24669
|
createdAt?: number;
|
|
@@ -24371,41 +24683,14 @@ declare class VercelApi {
|
|
|
24371
24683
|
deleteRequestedAt?: number | null;
|
|
24372
24684
|
disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
|
|
24373
24685
|
installationType?: "marketplace" | "external";
|
|
24374
|
-
billingPlan?: {
|
|
24375
|
-
id: string;
|
|
24376
|
-
type: "prepayment" | "subscription";
|
|
24377
|
-
name: string;
|
|
24378
|
-
scope?: "installation" | "resource";
|
|
24379
|
-
description: string;
|
|
24380
|
-
paymentMethodRequired?: boolean;
|
|
24381
|
-
preauthorizationAmount?: number;
|
|
24382
|
-
cost?: string;
|
|
24383
|
-
details?: {
|
|
24384
|
-
label: string;
|
|
24385
|
-
value?: string;
|
|
24386
|
-
}[];
|
|
24387
|
-
heightlightedDetails?: {
|
|
24388
|
-
label: string;
|
|
24389
|
-
value?: string;
|
|
24390
|
-
}[];
|
|
24391
|
-
quote?: {
|
|
24392
|
-
line: string;
|
|
24393
|
-
amount: string;
|
|
24394
|
-
}[];
|
|
24395
|
-
effectiveDate?: string;
|
|
24396
|
-
};
|
|
24397
|
-
billingTotal?: string;
|
|
24398
|
-
periodStart?: string;
|
|
24399
|
-
periodEnd?: string;
|
|
24400
24686
|
}[] | {
|
|
24401
24687
|
integration: {
|
|
24402
24688
|
name: string;
|
|
24403
24689
|
icon: string;
|
|
24404
|
-
category: string;
|
|
24405
24690
|
isLegacy: boolean;
|
|
24406
24691
|
flags?: string[];
|
|
24407
24692
|
assignedBetaLabelAt?: number;
|
|
24408
|
-
tagIds?: ("tag_ai" | "tag_analytics" | "tag_authentication" | "tag_cms" | "tag_code_repository" | "tag_commerce" | "tag_databases" | "tag_dev_tools" | "
|
|
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")[];
|
|
24409
24694
|
};
|
|
24410
24695
|
completedAt?: number;
|
|
24411
24696
|
createdAt: number;
|
|
@@ -24425,60 +24710,8 @@ declare class VercelApi {
|
|
|
24425
24710
|
deleteRequestedAt?: number | null;
|
|
24426
24711
|
disabledReason?: "disabled-by-owner" | "feature-not-available" | "disabled-by-admin" | "original-owner-left-the-team" | "account-plan-downgrade" | "original-owner-role-downgraded";
|
|
24427
24712
|
installationType?: "marketplace" | "external";
|
|
24428
|
-
billingPlan?: {
|
|
24429
|
-
id: string;
|
|
24430
|
-
type: "prepayment" | "subscription";
|
|
24431
|
-
name: string;
|
|
24432
|
-
scope?: "installation" | "resource";
|
|
24433
|
-
description: string;
|
|
24434
|
-
paymentMethodRequired?: boolean;
|
|
24435
|
-
preauthorizationAmount?: number;
|
|
24436
|
-
cost?: string;
|
|
24437
|
-
details?: {
|
|
24438
|
-
label: string;
|
|
24439
|
-
value?: string;
|
|
24440
|
-
}[];
|
|
24441
|
-
heightlightedDetails?: {
|
|
24442
|
-
label: string;
|
|
24443
|
-
value?: string;
|
|
24444
|
-
}[];
|
|
24445
|
-
quote?: {
|
|
24446
|
-
line: string;
|
|
24447
|
-
amount: string;
|
|
24448
|
-
}[];
|
|
24449
|
-
effectiveDate?: string;
|
|
24450
|
-
};
|
|
24451
|
-
billingTotal?: string;
|
|
24452
|
-
periodStart?: string;
|
|
24453
|
-
periodEnd?: string;
|
|
24454
24713
|
}[]>;
|
|
24455
24714
|
'GET /v1/integrations/configuration/{id}': (variables: GetConfigurationVariables, signal?: AbortSignal) => Promise<{
|
|
24456
|
-
billingPlan?: {
|
|
24457
|
-
id: string;
|
|
24458
|
-
type: "prepayment" | "subscription";
|
|
24459
|
-
name: string;
|
|
24460
|
-
scope?: "installation" | "resource";
|
|
24461
|
-
description: string;
|
|
24462
|
-
paymentMethodRequired?: boolean;
|
|
24463
|
-
preauthorizationAmount?: number;
|
|
24464
|
-
cost?: string;
|
|
24465
|
-
details?: {
|
|
24466
|
-
label: string;
|
|
24467
|
-
value?: string;
|
|
24468
|
-
}[];
|
|
24469
|
-
heightlightedDetails?: {
|
|
24470
|
-
label: string;
|
|
24471
|
-
value?: string;
|
|
24472
|
-
}[];
|
|
24473
|
-
quote?: {
|
|
24474
|
-
line: string;
|
|
24475
|
-
amount: string;
|
|
24476
|
-
}[];
|
|
24477
|
-
effectiveDate?: string;
|
|
24478
|
-
};
|
|
24479
|
-
billingTotal?: string;
|
|
24480
|
-
periodStart?: string;
|
|
24481
|
-
periodEnd?: string;
|
|
24482
24715
|
completedAt?: number;
|
|
24483
24716
|
createdAt: number;
|
|
24484
24717
|
id: string;
|
|
@@ -24547,10 +24780,11 @@ declare class VercelApi {
|
|
|
24547
24780
|
updatedAt: number;
|
|
24548
24781
|
}[];
|
|
24549
24782
|
}>;
|
|
24550
|
-
'GET /v1/
|
|
24551
|
-
'
|
|
24552
|
-
'
|
|
24553
|
-
'
|
|
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>;
|
|
24554
24788
|
'GET /v1/projects/{idOrName}/members': (variables: GetProjectMembersVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
24555
24789
|
members: {
|
|
24556
24790
|
avatar?: string;
|
|
@@ -24561,7 +24795,7 @@ declare class VercelApi {
|
|
|
24561
24795
|
username: string;
|
|
24562
24796
|
name?: string;
|
|
24563
24797
|
createdAt: number;
|
|
24564
|
-
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
24798
|
+
teamRole: "OWNER" | "MEMBER" | "DEVELOPER" | "SECURITY" | "BILLING" | "VIEWER" | "CONTRIBUTOR";
|
|
24565
24799
|
}[];
|
|
24566
24800
|
pagination: {
|
|
24567
24801
|
hasNext: boolean;
|
|
@@ -24572,16 +24806,16 @@ declare class VercelApi {
|
|
|
24572
24806
|
}>;
|
|
24573
24807
|
'POST /v1/projects/{idOrName}/members': (variables: AddProjectMemberVariables, signal?: AbortSignal) => Promise<AddProjectMemberResponse>;
|
|
24574
24808
|
'DELETE /v1/projects/{idOrName}/members/{uid}': (variables: RemoveProjectMemberVariables, signal?: AbortSignal) => Promise<RemoveProjectMemberResponse>;
|
|
24575
|
-
'GET /
|
|
24809
|
+
'GET /v10/projects': (variables: GetProjectsVariables, signal?: AbortSignal) => Promise<GetProjectsResponse>;
|
|
24576
24810
|
'POST /v10/projects': (variables: CreateProjectVariables, signal?: AbortSignal) => Promise<CreateProjectResponse>;
|
|
24577
24811
|
'GET /v9/projects/{idOrName}': (variables: GetProjectVariables, signal?: AbortSignal) => Promise<GetProjectResponse>;
|
|
24578
24812
|
'PATCH /v9/projects/{idOrName}': (variables: UpdateProjectVariables, signal?: AbortSignal) => Promise<UpdateProjectResponse>;
|
|
24579
24813
|
'DELETE /v9/projects/{idOrName}': (variables: DeleteProjectVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
24580
|
-
'POST /
|
|
24814
|
+
'POST /v9/projects/{idOrName}/custom-environments': (variables: CreateCustomEnvironmentVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|
|
24581
24815
|
'GET /v9/projects/{idOrName}/custom-environments': (variables: GetV9ProjectsIdOrNameCustomEnvironmentsVariables, signal?: AbortSignal) => Promise<GetV9ProjectsIdOrNameCustomEnvironmentsResponse>;
|
|
24582
|
-
'GET /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
24583
|
-
'PATCH /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
24584
|
-
'DELETE /v9/projects/{idOrName}/custom-environments/{environmentSlugOrId}': (variables:
|
|
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>>;
|
|
24585
24819
|
'GET /v9/projects/{idOrName}/domains': (variables: GetProjectDomainsVariables, signal?: AbortSignal) => Promise<GetProjectDomainsResponse>;
|
|
24586
24820
|
'GET /v9/projects/{idOrName}/domains/{domain}': (variables: GetProjectDomainVariables, signal?: AbortSignal) => Promise<GetProjectDomainResponse>;
|
|
24587
24821
|
'PATCH /v9/projects/{idOrName}/domains/{domain}': (variables: UpdateProjectDomainVariables, signal?: AbortSignal) => Promise<UpdateProjectDomainResponse>;
|
|
@@ -25434,11 +25668,15 @@ declare class VercelApi {
|
|
|
25434
25668
|
uid: string;
|
|
25435
25669
|
username: string;
|
|
25436
25670
|
email?: string;
|
|
25437
|
-
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")[];
|
|
25438
25674
|
} | {
|
|
25439
25675
|
uid: string;
|
|
25440
25676
|
username: string;
|
|
25441
|
-
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")[];
|
|
25442
25680
|
}>;
|
|
25443
25681
|
'POST /v1/teams/{teamId}/request': (variables: RequestAccessToTeamVariables, signal?: AbortSignal) => Promise<RequestAccessToTeamResponse>;
|
|
25444
25682
|
'GET /v1/teams/{teamId}/request/{userId}': (variables: GetTeamAccessRequestVariables, signal?: AbortSignal) => Promise<GetTeamAccessRequestResponse>;
|
|
@@ -25454,18 +25692,18 @@ declare class VercelApi {
|
|
|
25454
25692
|
'POST /v2/files': (variables: UploadFileVariables, signal?: AbortSignal) => Promise<Record<string, any> | {
|
|
25455
25693
|
urls: string[];
|
|
25456
25694
|
}>;
|
|
25457
|
-
'GET /v2/user': (variables: GetAuthUserVariables, signal?: AbortSignal) => Promise<GetAuthUserResponse>;
|
|
25458
|
-
'DELETE /v1/user': (variables: RequestDeleteVariables, signal?: AbortSignal) => Promise<RequestDeleteResponse>;
|
|
25459
25695
|
'GET /v5/user/tokens': (variables: ListAuthTokensVariables, signal?: AbortSignal) => Promise<ListAuthTokensResponse>;
|
|
25460
25696
|
'POST /v3/user/tokens': (variables: CreateAuthTokenVariables, signal?: AbortSignal) => Promise<CreateAuthTokenResponse>;
|
|
25461
25697
|
'GET /v5/user/tokens/{tokenId}': (variables: GetAuthTokenVariables, signal?: AbortSignal) => Promise<GetAuthTokenResponse>;
|
|
25462
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>;
|
|
25463
25701
|
'POST /v1/webhooks': (variables: CreateWebhookVariables, signal?: AbortSignal) => Promise<CreateWebhookResponse>;
|
|
25464
25702
|
'GET /v1/webhooks': (variables: GetWebhooksVariables, signal?: AbortSignal) => Promise<{
|
|
25465
25703
|
projectsMetadata: {
|
|
25466
25704
|
id: string;
|
|
25467
25705
|
name: string;
|
|
25468
|
-
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;
|
|
25469
25707
|
latestDeployment?: string;
|
|
25470
25708
|
}[] | null;
|
|
25471
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")[];
|
|
@@ -25486,11 +25724,11 @@ declare class VercelApi {
|
|
|
25486
25724
|
}[]>;
|
|
25487
25725
|
'GET /v1/webhooks/{id}': (variables: GetWebhookVariables, signal?: AbortSignal) => Promise<GetWebhookResponse>;
|
|
25488
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>;
|
|
25489
25729
|
'GET /v4/aliases': (variables: ListAliasesVariables, signal?: AbortSignal) => Promise<ListAliasesResponse>;
|
|
25490
25730
|
'GET /v4/aliases/{idOrAlias}': (variables: GetAliasVariables, signal?: AbortSignal) => Promise<GetAliasResponse>;
|
|
25491
25731
|
'DELETE /v2/aliases/{aliasId}': (variables: DeleteAliasVariables, signal?: AbortSignal) => Promise<DeleteAliasResponse>;
|
|
25492
|
-
'GET /v2/deployments/{id}/aliases': (variables: ListDeploymentAliasesVariables, signal?: AbortSignal) => Promise<ListDeploymentAliasesResponse>;
|
|
25493
|
-
'POST /v2/deployments/{id}/aliases': (variables: AssignAliasVariables, signal?: AbortSignal) => Promise<AssignAliasResponse>;
|
|
25494
25732
|
'GET /certs': (variables: GetCertsVariables, signal?: AbortSignal) => Promise<GetCertsResponse>;
|
|
25495
25733
|
'GET /v7/certs/{id}': (variables: GetCertByIdVariables, signal?: AbortSignal) => Promise<GetCertByIdResponse>;
|
|
25496
25734
|
'DELETE /v7/certs/{id}': (variables: RemoveCertVariables, signal?: AbortSignal) => Promise<Record<string, any>>;
|