vercel-api-js 1.14.2 → 1.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{components-l5748yis.cjs → components-gzixkjh5.cjs} +450 -12
- package/dist/{components-nvgbng8u.js → components-l47b33g0.js} +432 -12
- package/dist/components.cjs +20 -2
- package/dist/components.d.mts +398 -34
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +39 -3
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +333 -48
- package/dist/index.d.ts +4751 -657
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-gb9msbpl.cjs → schemas-csiv5yep.cjs} +1936 -321
- package/dist/{schemas-m4ld9x7a.js → schemas-lm0wg73i.js} +1627 -281
- package/dist/schemas.cjs +311 -42
- package/dist/schemas.d.mts +1041 -209
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +226 -115
- package/dist/types.d.mts +3295 -415
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +206 -111
- package/package.json +5 -5
|
@@ -158,6 +158,85 @@ const networkSchema = z.object({
|
|
|
158
158
|
teamId: z.string().describe("The unique identifier of the Team that owns the Network."),
|
|
159
159
|
vpcId: z.string().optional().describe("The ID of the VPC which hosts the network.")
|
|
160
160
|
});
|
|
161
|
+
const privateLinkEndpointSchema = z.object({
|
|
162
|
+
endpointId: z.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
|
|
163
|
+
examples: [
|
|
164
|
+
"ple_a1b2c3d4e5f6g7h8"
|
|
165
|
+
]
|
|
166
|
+
}),
|
|
167
|
+
name: z.string().describe("The name of the PrivateLink endpoint, shown in the Vercel dashboard.").meta({
|
|
168
|
+
examples: [
|
|
169
|
+
"payments-db"
|
|
170
|
+
]
|
|
171
|
+
}),
|
|
172
|
+
teamId: z.string().describe("The identifier of the team that owns the PrivateLink endpoint.").meta({
|
|
173
|
+
examples: [
|
|
174
|
+
"team_a1b2c3d4e5f6g7h8"
|
|
175
|
+
]
|
|
176
|
+
}),
|
|
177
|
+
projectId: z.string().describe("The identifier of the project the PrivateLink endpoint belongs to.").meta({
|
|
178
|
+
examples: [
|
|
179
|
+
"prj_a1b2c3d4e5f6g7h8"
|
|
180
|
+
]
|
|
181
|
+
}),
|
|
182
|
+
vercelRegion: z.string().describe("The Vercel region the endpoint is provisioned in.").meta({
|
|
183
|
+
examples: [
|
|
184
|
+
"iad1"
|
|
185
|
+
]
|
|
186
|
+
}),
|
|
187
|
+
awsServiceName: z.string().describe("The AWS VPC endpoint service the endpoint connects to.").meta({
|
|
188
|
+
examples: [
|
|
189
|
+
"com.amazonaws.vpce.us-east-1.vpce-svc-0123456789abcdef0"
|
|
190
|
+
]
|
|
191
|
+
}),
|
|
192
|
+
vpcEndpointId: z.string().optional().describe("The identifier of the underlying AWS VPC endpoint. Absent until AWS has created the endpoint.").meta({
|
|
193
|
+
examples: [
|
|
194
|
+
"vpce-0123456789abcdef0"
|
|
195
|
+
]
|
|
196
|
+
}),
|
|
197
|
+
awsDnsEntries: z.array(z.string()).optional().describe("The regional DNS names assigned to the endpoint by AWS. Use these to reach the service when private DNS is not enabled.").meta({
|
|
198
|
+
examples: [
|
|
199
|
+
[
|
|
200
|
+
"vpce-0123456789abcdef0-a1b2c3d4.vpce-svc-0123456789abcdef0.us-east-1.vpce.amazonaws.com"
|
|
201
|
+
]
|
|
202
|
+
]
|
|
203
|
+
}),
|
|
204
|
+
privateDnsNames: z.array(z.string()).optional().describe("The private DNS names of the endpoint service, populated when private DNS is enabled for the endpoint.").meta({
|
|
205
|
+
examples: [
|
|
206
|
+
[
|
|
207
|
+
"payments.internal.example.com"
|
|
208
|
+
]
|
|
209
|
+
]
|
|
210
|
+
}),
|
|
211
|
+
status: z.enum([
|
|
212
|
+
"available",
|
|
213
|
+
"creating",
|
|
214
|
+
"deleting",
|
|
215
|
+
"failed",
|
|
216
|
+
"pending-acceptance",
|
|
217
|
+
"provisioning",
|
|
218
|
+
"rejected"
|
|
219
|
+
]).describe("The current state of the endpoint. - `creating`: the endpoint is being created. - `pending-acceptance`: waiting for the endpoint service owner to accept the connection. Only occurs for services that require manual acceptance. - `provisioning`: the connection was accepted and AWS is finishing setup. - `available`: the endpoint is fully provisioned and ready to use. - `rejected`: the endpoint service owner rejected the connection. - `failed`: the endpoint could not be provisioned. - `deleting`: the endpoint is being deleted.").meta({
|
|
220
|
+
examples: [
|
|
221
|
+
"available"
|
|
222
|
+
]
|
|
223
|
+
}),
|
|
224
|
+
statusMessage: z.string().optional().describe("A human-readable explanation of why the endpoint could not be provisioned. Only set when `status` is `failed`, and absent for every other status including `rejected`, since AWS does not report a rejection reason.").meta({
|
|
225
|
+
examples: [
|
|
226
|
+
"Endpoint did not become available in time. Try deleting and recreating, or visit https://vercel.com/help if the issue persists."
|
|
227
|
+
]
|
|
228
|
+
}),
|
|
229
|
+
createdAt: z.number().describe("Timestamp in milliseconds since the UNIX epoch for when the endpoint was created.").meta({
|
|
230
|
+
examples: [
|
|
231
|
+
1610963878358
|
|
232
|
+
]
|
|
233
|
+
}),
|
|
234
|
+
updatedAt: z.number().describe("Timestamp in milliseconds since the UNIX epoch for when the endpoint was last updated.").meta({
|
|
235
|
+
examples: [
|
|
236
|
+
1610963878358
|
|
237
|
+
]
|
|
238
|
+
})
|
|
239
|
+
}).describe("A PrivateLink endpoint, which connects a project to an AWS VPC endpoint service in a single region so that traffic reaches the service over AWS PrivateLink rather than the public internet.");
|
|
161
240
|
const connectTriggerConfigurationSchema = z.object({
|
|
162
241
|
enabled: z.union([
|
|
163
242
|
z.literal(false),
|
|
@@ -170,6 +249,156 @@ const connectTriggerDestinationSchema = z.object({
|
|
|
170
249
|
branch: z.string().optional().describe("Git branch used to select a preview deployment."),
|
|
171
250
|
path: z.string().optional().describe("Route path that receives the forwarded trigger request.")
|
|
172
251
|
}).describe("Destinations that incoming triggers should be forwarded to. Limited to 3 entries. Set the initial destination with `triggerDestination` during creation. Replace the complete set with `PATCH /v1/connect/connectors/{connector}/trigger-destinations`.");
|
|
252
|
+
const connectConnectorSchema = z.object({
|
|
253
|
+
id: z.string().describe("Stable `scl_` connector ID. Use this value directly in `{connector}`."),
|
|
254
|
+
uid: z.string().describe("Team-scoped UID. URL-encode this value before using it in `{connector}`."),
|
|
255
|
+
defaultInstallationId: z.string().optional().describe("Installation used when a token request does not specify an installation."),
|
|
256
|
+
createdAt: z.number().describe("Creation time in epoch milliseconds."),
|
|
257
|
+
updatedAt: z.number().describe("Last update time in epoch milliseconds."),
|
|
258
|
+
reinstallAt: z.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
|
|
259
|
+
createdBy: z.discriminatedUnion("type", [
|
|
260
|
+
z.object({
|
|
261
|
+
type: z.enum([
|
|
262
|
+
"user"
|
|
263
|
+
]).describe("Principal kind."),
|
|
264
|
+
id: z.string().describe("Vercel user ID.")
|
|
265
|
+
}).strict(),
|
|
266
|
+
z.object({
|
|
267
|
+
type: z.enum([
|
|
268
|
+
"project"
|
|
269
|
+
]).describe("Principal kind."),
|
|
270
|
+
id: z.string().describe("Vercel project ID."),
|
|
271
|
+
environment: z.string().describe("Deployment environment of the project principal.")
|
|
272
|
+
}).strict()
|
|
273
|
+
]).optional().describe("Principal that created the connector."),
|
|
274
|
+
updatedBy: z.discriminatedUnion("type", [
|
|
275
|
+
z.object({
|
|
276
|
+
type: z.enum([
|
|
277
|
+
"user"
|
|
278
|
+
]).describe("Principal kind."),
|
|
279
|
+
id: z.string().describe("Vercel user ID.")
|
|
280
|
+
}).strict(),
|
|
281
|
+
z.object({
|
|
282
|
+
type: z.enum([
|
|
283
|
+
"project"
|
|
284
|
+
]).describe("Principal kind."),
|
|
285
|
+
id: z.string().describe("Vercel project ID."),
|
|
286
|
+
environment: z.string().describe("Deployment environment of the project principal.")
|
|
287
|
+
}).strict()
|
|
288
|
+
]).optional().describe("Principal that most recently updated the connector."),
|
|
289
|
+
creationMode: z.enum([
|
|
290
|
+
"managed",
|
|
291
|
+
"manual"
|
|
292
|
+
]).optional().describe("How the connector row was originally created. New create paths stamp this explicitly; older rows may omit it."),
|
|
293
|
+
managed: z.object({
|
|
294
|
+
sync: z.union([
|
|
295
|
+
z.literal(false),
|
|
296
|
+
z.literal(true)
|
|
297
|
+
]).optional().describe("Whether Vercel synchronizes provider-side configuration.")
|
|
298
|
+
}).optional().describe("Managed connector metadata exposed without leaking the manager connector or installation identifiers."),
|
|
299
|
+
type: z.enum([
|
|
300
|
+
"api-key",
|
|
301
|
+
"aws-alpha",
|
|
302
|
+
"custom",
|
|
303
|
+
"discord",
|
|
304
|
+
"github",
|
|
305
|
+
"linear",
|
|
306
|
+
"linq",
|
|
307
|
+
"microsoft-entra",
|
|
308
|
+
"microsoft-teams",
|
|
309
|
+
"oauth",
|
|
310
|
+
"photon",
|
|
311
|
+
"salesforce",
|
|
312
|
+
"sendblue",
|
|
313
|
+
"slack",
|
|
314
|
+
"snowflake",
|
|
315
|
+
"snowflake-wif"
|
|
316
|
+
]).describe("Connector implementation type."),
|
|
317
|
+
service: z.string().describe("Best-effort identifier of the third-party service this connector represents, independent of `type`. Examples: `'slack'`, `'mcp.linear.app'`, and `'auth.example.com'`. Always present in API responses."),
|
|
318
|
+
connectionMethod: z.string().optional().describe("The connection method this connector was created from, when the create request named one."),
|
|
319
|
+
target: z.string().optional().describe("Which of the service's products/surfaces this connector points at."),
|
|
320
|
+
name: z.string().describe("Connector name within the owning team."),
|
|
321
|
+
displayName: z.string().describe("Human-readable connector name."),
|
|
322
|
+
clientUrl: z.string().nullish().describe("Provider-side URL for viewing or managing the resource represented by the connector. The destination can be an app, account, phone line, or service instance, depending on the connector type."),
|
|
323
|
+
redirectUri: z.string().optional().describe("Redirect URI registered with the third-party service for this connector, if any. Used by `startAuthorization`/`startInstallation` to replay the exact URI back to the provider's token endpoint. Absent on connectors created before this field was introduced; those callers fall back to the `https://connect.vercel.com/callback` default."),
|
|
324
|
+
typeName: z.string().describe("Human-readable name of the connector type."),
|
|
325
|
+
typeIcon: z.string().optional().describe("Icon identifier supplied by the connector type."),
|
|
326
|
+
website: z.string().optional().describe("Public website for the connected service."),
|
|
327
|
+
devsite: z.string().optional().describe("Developer website for the connected service."),
|
|
328
|
+
docsite: z.string().optional().describe("Developer documentation for the connected service."),
|
|
329
|
+
icon: z.string().optional().describe("Connector branding icon. SHA-1 hash that resolves to the uploaded icon through the Vercel avatar service. Consumers render this with `https://vercel.com/api/www/avatar/{icon}`."),
|
|
330
|
+
backgroundColor: z.string().optional().describe("Hex background color (e.g., `#000000`) for branding."),
|
|
331
|
+
accentColor: z.string().optional().describe("Hex accent color (e.g., `#000000`) for branding."),
|
|
332
|
+
supportedSubjectTypes: z.array(z.string()).describe("Token subject types supported by the connector."),
|
|
333
|
+
appTokens: z.object({
|
|
334
|
+
crossInstallation: z.union([
|
|
335
|
+
z.literal(false),
|
|
336
|
+
z.literal(true)
|
|
337
|
+
]).describe("Whether one app token can be used across installations."),
|
|
338
|
+
supportsRefinement: z.union([
|
|
339
|
+
z.literal(false),
|
|
340
|
+
z.literal(true)
|
|
341
|
+
]).describe("Whether callers can narrow app-token grants per request."),
|
|
342
|
+
supportsResources: z.union([
|
|
343
|
+
z.literal(false),
|
|
344
|
+
z.literal(true)
|
|
345
|
+
]).optional().describe("Whether callers can request resource-specific app tokens."),
|
|
346
|
+
requiresReinstallation: z.union([
|
|
347
|
+
z.literal(false),
|
|
348
|
+
z.literal(true)
|
|
349
|
+
]).optional().describe("True when changing app token grants requires reinstalling the app, so tokens cannot be partitioned independently by requester environment."),
|
|
350
|
+
scopes: z.array(z.string()).optional().describe("Known allowed app-level scopes. For Slack this is the bot scope set configured on the app; for OAuth it is the connector's enabled `clientCredentials.scopes` configuration."),
|
|
351
|
+
supportedAuthorizationDetails: z.array(z.string()).optional().describe("Supported OAuth authorization-detail type names."),
|
|
352
|
+
permissionsUrl: z.string().optional().describe("Link to the page on the service where this connector's app-level permissions are declared and granted, when the service has one and it differs from `clientUrl`.")
|
|
353
|
+
}).optional().describe("App-token capabilities and known grants for the connector."),
|
|
354
|
+
userTokens: z.object({
|
|
355
|
+
crossInstallation: z.union([
|
|
356
|
+
z.literal(false),
|
|
357
|
+
z.literal(true)
|
|
358
|
+
]).describe("Whether one user token can be used across installations."),
|
|
359
|
+
supportsRefinement: z.union([
|
|
360
|
+
z.literal(false),
|
|
361
|
+
z.literal(true)
|
|
362
|
+
]).describe("Whether callers can narrow user-token grants per request."),
|
|
363
|
+
supportsResources: z.union([
|
|
364
|
+
z.literal(false),
|
|
365
|
+
z.literal(true)
|
|
366
|
+
]).optional().describe("Whether callers can request resource-specific user tokens."),
|
|
367
|
+
scopes: z.array(z.string()).optional().describe("Known allowed user-level scopes. For Slack this is the user scope set configured on the app; for OAuth it is the connector's enabled `userAuthorization.scopes` configuration."),
|
|
368
|
+
supportedAuthorizationDetails: z.array(z.string()).optional().describe("Supported OAuth authorization-detail type names."),
|
|
369
|
+
manualCredentialInput: z.union([
|
|
370
|
+
z.literal(false),
|
|
371
|
+
z.literal(true)
|
|
372
|
+
]).optional().describe("User authorization is completed by the Connect consent screen submitting a credential instead of an OAuth redirect.")
|
|
373
|
+
}).optional().describe("User-token capabilities and known grants for the connector."),
|
|
374
|
+
supportsInstallation: z.union([
|
|
375
|
+
z.literal(false),
|
|
376
|
+
z.literal(true)
|
|
377
|
+
]).describe("Whether the connector supports an installation flow."),
|
|
378
|
+
supportsRevocation: z.union([
|
|
379
|
+
z.literal(false),
|
|
380
|
+
z.literal(true)
|
|
381
|
+
]).describe("Whether Connect can revoke tokens for this connector."),
|
|
382
|
+
supportsTriggers: z.union([
|
|
383
|
+
z.literal(false),
|
|
384
|
+
z.literal(true)
|
|
385
|
+
]).describe("Whether this connector type supports trigger webhooks. Derived from the type definition; indicates that `triggers` and `triggerDestinations` may be meaningful for this connector."),
|
|
386
|
+
supportsIcon: z.union([
|
|
387
|
+
z.literal(false),
|
|
388
|
+
z.literal("maybe"),
|
|
389
|
+
z.literal(true)
|
|
390
|
+
]).describe("Whether the connector icon can propagate to the provider."),
|
|
391
|
+
triggers: z.unknown().optional().describe("Incoming trigger configuration for the connector."),
|
|
392
|
+
events: z.array(z.string()).optional().describe("Known events this connector subscribes to (e.g. Slack bot events, GitHub webhook events). Names are type-specific and validated by the managed-create flow when forwarded to the third-party service."),
|
|
393
|
+
triggerDestinations: z.array(z.unknown()).optional().describe("Destinations that incoming triggers should be forwarded to. Limited to 3 entries. Set the initial destination with `triggerDestination` during creation. Replace the complete set with `PATCH /v1/connect/connectors/{connector}/trigger-destinations`.")
|
|
394
|
+
}).describe("A connector that defines how Vercel accesses an external service.");
|
|
395
|
+
const connectPaginationSchema = z.object({
|
|
396
|
+
next: z.string().nullable().describe("Opaque value to pass as `cursor` on the next request.")
|
|
397
|
+
}).describe("Cursor for the next page.");
|
|
398
|
+
const connectConnectorListSchema = z.object({
|
|
399
|
+
connectors: z.array(z.unknown()).describe("Connectors in this page."),
|
|
400
|
+
pagination: z.unknown().describe("Cursor for the next page.")
|
|
401
|
+
}).describe("Page of connectors.");
|
|
173
402
|
const connectConnectorCreateResultSchema = z.object({
|
|
174
403
|
id: z.string().describe("Stable `scl_` connector ID. Use this value directly in `{connector}`."),
|
|
175
404
|
uid: z.string().describe("Team-scoped UID. URL-encode this value before using it in `{connector}`."),
|
|
@@ -177,7 +406,7 @@ const connectConnectorCreateResultSchema = z.object({
|
|
|
177
406
|
createdAt: z.number().describe("Creation time in epoch milliseconds."),
|
|
178
407
|
updatedAt: z.number().describe("Last update time in epoch milliseconds."),
|
|
179
408
|
reinstallAt: z.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
|
|
180
|
-
createdBy: z.
|
|
409
|
+
createdBy: z.discriminatedUnion("type", [
|
|
181
410
|
z.object({
|
|
182
411
|
type: z.enum([
|
|
183
412
|
"user"
|
|
@@ -192,7 +421,7 @@ const connectConnectorCreateResultSchema = z.object({
|
|
|
192
421
|
environment: z.string().describe("Deployment environment of the project principal.")
|
|
193
422
|
}).strict()
|
|
194
423
|
]).optional().describe("Principal that created the connector."),
|
|
195
|
-
updatedBy: z.
|
|
424
|
+
updatedBy: z.discriminatedUnion("type", [
|
|
196
425
|
z.object({
|
|
197
426
|
type: z.enum([
|
|
198
427
|
"user"
|
|
@@ -219,6 +448,7 @@ const connectConnectorCreateResultSchema = z.object({
|
|
|
219
448
|
}).optional().describe("Managed connector metadata exposed without leaking the manager connector or installation identifiers."),
|
|
220
449
|
type: z.enum([
|
|
221
450
|
"api-key",
|
|
451
|
+
"aws-alpha",
|
|
222
452
|
"custom",
|
|
223
453
|
"discord",
|
|
224
454
|
"github",
|
|
@@ -259,6 +489,10 @@ const connectConnectorCreateResultSchema = z.object({
|
|
|
259
489
|
z.literal(false),
|
|
260
490
|
z.literal(true)
|
|
261
491
|
]).describe("Whether callers can narrow app-token grants per request."),
|
|
492
|
+
supportsResources: z.union([
|
|
493
|
+
z.literal(false),
|
|
494
|
+
z.literal(true)
|
|
495
|
+
]).optional().describe("Whether callers can request resource-specific app tokens."),
|
|
262
496
|
requiresReinstallation: z.union([
|
|
263
497
|
z.literal(false),
|
|
264
498
|
z.literal(true)
|
|
@@ -276,6 +510,10 @@ const connectConnectorCreateResultSchema = z.object({
|
|
|
276
510
|
z.literal(false),
|
|
277
511
|
z.literal(true)
|
|
278
512
|
]).describe("Whether callers can narrow user-token grants per request."),
|
|
513
|
+
supportsResources: z.union([
|
|
514
|
+
z.literal(false),
|
|
515
|
+
z.literal(true)
|
|
516
|
+
]).optional().describe("Whether callers can request resource-specific user tokens."),
|
|
279
517
|
scopes: z.array(z.string()).optional().describe("Known allowed user-level scopes. For Slack this is the user scope set configured on the app; for OAuth it is the connector's enabled `userAuthorization.scopes` configuration."),
|
|
280
518
|
supportedAuthorizationDetails: z.array(z.string()).optional().describe("Supported OAuth authorization-detail type names."),
|
|
281
519
|
manualCredentialInput: z.union([
|
|
@@ -405,7 +643,8 @@ const connectConnectorCreateDataSchema = z.union([
|
|
|
405
643
|
scope: z.string().optional().describe("Optional scope associated with the API key value."),
|
|
406
644
|
expiresAt: z.int().gt(0).optional().describe("The timestamp when the API key value expires in milliseconds.")
|
|
407
645
|
}).strict()).optional().describe("Initial API key values stored by the connector."),
|
|
408
|
-
serviceUrls: z.array(z.url()).min(1).max(8).optional().describe("The HTTPS resources the API key authenticates against.")
|
|
646
|
+
serviceUrls: z.array(z.url()).min(1).max(8).optional().describe("The HTTPS resources the API key authenticates against."),
|
|
647
|
+
instructions: z.string().max(4000).optional().describe("Markdown instructions shown to each user on the authorization screen, explaining how to obtain the key they should paste.")
|
|
409
648
|
}).strict(),
|
|
410
649
|
z.object({
|
|
411
650
|
appId: z.int().gt(0).describe("GitHub App numeric ID."),
|
|
@@ -488,6 +727,21 @@ const connectConnectorCreateDataSchema = z.union([
|
|
|
488
727
|
verificationToken: z.string().optional().describe("Legacy Slack webhook verification token."),
|
|
489
728
|
botScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Slack bot tokens."),
|
|
490
729
|
userScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Slack user tokens."),
|
|
730
|
+
slashCommands: z.array(z.object({
|
|
731
|
+
command: z.string().max(32).regex(/^\\[/]/).describe("Slash command including its leading slash."),
|
|
732
|
+
description: z.string().max(2000).describe("Description shown for the slash command in Slack."),
|
|
733
|
+
usageHint: z.string().max(1000).optional().describe("Optional usage hint shown for the slash command."),
|
|
734
|
+
shouldEscape: z.boolean().optional().describe("Whether Slack should escape command arguments.")
|
|
735
|
+
}).strict()).max(50).optional().describe("Slash commands configured for the managed Slack app."),
|
|
736
|
+
shortcuts: z.array(z.object({
|
|
737
|
+
type: z.enum([
|
|
738
|
+
"global",
|
|
739
|
+
"message"
|
|
740
|
+
]).describe("Where Slack exposes the shortcut."),
|
|
741
|
+
name: z.string().describe("Shortcut display name."),
|
|
742
|
+
callbackId: z.string().max(255).describe("Identifier included in the shortcut callback."),
|
|
743
|
+
description: z.string().max(150).describe("Description shown for the shortcut in Slack.")
|
|
744
|
+
}).strict()).max(10).optional().describe("Global and message shortcuts configured for the Slack app."),
|
|
491
745
|
extras: z.object({}).catchall(z.unknown()).optional().describe("Additional provider metadata stored with the connector.")
|
|
492
746
|
}).strict(),
|
|
493
747
|
z.object({
|
|
@@ -544,6 +798,316 @@ const connectCreateConnectorRequestSchema = z.union([
|
|
|
544
798
|
]).optional().describe("Initial trigger destination. Requires triggers to be enabled and a projectId here or at the top level. Connector responses expose the resulting set as triggerDestinations. Replace the complete set with PATCH /v1/connect/connectors/{connector}/trigger-destinations."),
|
|
545
799
|
events: z.array(z.string()).optional().describe("Default trigger events for this connector.")
|
|
546
800
|
})).describe("Create a connector with full provider configuration or with a known service connection method.");
|
|
801
|
+
const connectReconsentSchema = z.object({
|
|
802
|
+
scope: z.enum([
|
|
803
|
+
"user"
|
|
804
|
+
]).describe("The affected authorization scope. user means each affected user must authorize again.")
|
|
805
|
+
}).describe("Existing authorizations no longer cover the connector's configured scopes, so they must be re-authorized.");
|
|
806
|
+
const connectServiceSyncErrorSchema = z.object({
|
|
807
|
+
message: z.string().describe("Human-readable provider synchronization error."),
|
|
808
|
+
fields: z.array(z.string()).optional().describe("Connector fields that caused the synchronization error."),
|
|
809
|
+
vendor: z.object({}).catchall(z.unknown()).optional().describe("Provider-specific error details that are safe to expose.")
|
|
810
|
+
}).describe("Provider synchronization errors, when synchronization is required.");
|
|
811
|
+
const connectServiceSyncSchema = z.object({
|
|
812
|
+
status: z.enum([
|
|
813
|
+
"done",
|
|
814
|
+
"required"
|
|
815
|
+
]).describe("done means the external service was updated. required means the Vercel update was saved, but provider-side configuration still needs attention."),
|
|
816
|
+
errors: z.array(z.unknown()).optional().describe("Provider synchronization errors. Present when serviceSync.status is required.")
|
|
817
|
+
}).describe("Provider-side configuration synchronization result.");
|
|
818
|
+
const connectConnectorUpdateResultSchema = z.object({
|
|
819
|
+
connector: z.unknown().describe("Updated connector."),
|
|
820
|
+
reinstallNeeded: z.union([
|
|
821
|
+
z.literal(false),
|
|
822
|
+
z.literal(true)
|
|
823
|
+
]).optional().describe("When true, prompt a team owner or administrator to reinstall the connector before relying on the change."),
|
|
824
|
+
reconsentNeeded: z.unknown().optional().describe("Present when affected users must authorize the connector's new permissions."),
|
|
825
|
+
serviceSync: z.unknown().optional().describe("Result of synchronizing the change with the external service.")
|
|
826
|
+
}).describe("Updated connector and any required provider follow-up actions.");
|
|
827
|
+
const connectConnectorUpdateDataSchema = z.union([
|
|
828
|
+
z.object({
|
|
829
|
+
serverUrl: z.string().optional().describe("Authorization server base URL used for discovery."),
|
|
830
|
+
serverConfig: z.object({
|
|
831
|
+
issuer: z.string().optional().describe("Authorization server issuer URL."),
|
|
832
|
+
authorizationEndpoint: z.string().optional().describe("OAuth authorization endpoint URL."),
|
|
833
|
+
tokenEndpoint: z.string().optional().describe("OAuth token endpoint URL."),
|
|
834
|
+
userinfoEndpoint: z.string().optional().describe("OpenID Connect UserInfo endpoint URL."),
|
|
835
|
+
jwksUri: z.string().optional().describe("URL of the authorization server JSON Web Key Set."),
|
|
836
|
+
jwks: z.object({
|
|
837
|
+
keys: z.array(z.object({
|
|
838
|
+
kty: z.string().describe("JSON Web Key type."),
|
|
839
|
+
kid: z.string().optional().describe("JSON Web Key identifier."),
|
|
840
|
+
use: z.enum([
|
|
841
|
+
"sig",
|
|
842
|
+
"enc"
|
|
843
|
+
]).optional().describe("Intended key use: signing or encryption."),
|
|
844
|
+
keyOps: z.array(z.string()).optional().describe("Operations permitted for this key."),
|
|
845
|
+
alg: z.string().optional().describe("Algorithm intended for this key.")
|
|
846
|
+
}).catchall(z.unknown())).describe("JSON Web Keys published by the authorization server.")
|
|
847
|
+
}).catchall(z.unknown()).optional().describe("Inline authorization server JSON Web Key Set."),
|
|
848
|
+
revocationEndpoint: z.string().optional().describe("OAuth token revocation endpoint URL."),
|
|
849
|
+
introspectionEndpoint: z.string().optional().describe("OAuth token introspection endpoint URL."),
|
|
850
|
+
endSessionEndpoint: z.string().optional().describe("OpenID Connect session termination endpoint URL."),
|
|
851
|
+
deviceAuthorizationEndpoint: z.string().optional().describe("OAuth device authorization endpoint URL."),
|
|
852
|
+
registrationEndpoint: z.string().optional().describe("OAuth dynamic client registration endpoint URL."),
|
|
853
|
+
responseTypesSupported: z.array(z.string()).optional().describe("OAuth response types supported by the server."),
|
|
854
|
+
tokenEndpointAuthMethodsSupported: z.array(z.string()).optional().describe("Token endpoint client authentication methods supported by the server."),
|
|
855
|
+
tokenEndpointAuthSigningAlgValuesSupported: z.array(z.string()).optional().describe("Signing algorithms supported for token endpoint authentication."),
|
|
856
|
+
scopesSupported: z.array(z.string()).optional().describe("OAuth scopes supported by the server."),
|
|
857
|
+
grantTypesSupported: z.array(z.string()).optional().describe("OAuth grant types supported by the server."),
|
|
858
|
+
responseModesSupported: z.array(z.string()).optional().describe("OAuth response modes supported by the server."),
|
|
859
|
+
subjectTypesSupported: z.array(z.string()).optional().describe("OpenID Connect subject identifier types supported by the server."),
|
|
860
|
+
idTokenSigningAlgValuesSupported: z.array(z.string()).optional().describe("Signing algorithms supported for ID tokens."),
|
|
861
|
+
idTokenEncryptionAlgValuesSupported: z.array(z.string()).optional().describe("Key management algorithms supported for encrypted ID tokens."),
|
|
862
|
+
idTokenEncryptionEncValuesSupported: z.array(z.string()).optional().describe("Content encryption algorithms supported for encrypted ID tokens."),
|
|
863
|
+
claimTypesSupported: z.array(z.string()).optional().describe("OpenID Connect claim value types supported by the server."),
|
|
864
|
+
claimsSupported: z.array(z.string()).optional().describe("Claims that the authorization server can return."),
|
|
865
|
+
codeChallengeMethodsSupported: z.array(z.string()).optional().describe("PKCE code challenge methods supported by the server."),
|
|
866
|
+
promptValuesSupported: z.array(z.string()).optional().describe("Authorization prompt values supported by the server."),
|
|
867
|
+
claimsParameterSupported: z.boolean().optional().describe("Whether authorization requests can use the claims parameter."),
|
|
868
|
+
requestParameterSupported: z.boolean().optional().describe("Whether authorization requests can use signed request objects."),
|
|
869
|
+
requestUriParameterSupported: z.boolean().optional().describe("Whether authorization requests can use request_uri."),
|
|
870
|
+
requireRequestUriRegistration: z.boolean().optional().describe("Whether request_uri values must be registered in advance."),
|
|
871
|
+
serviceDocumentation: z.string().optional().describe("Authorization server documentation URL."),
|
|
872
|
+
opPolicyUri: z.string().optional().describe("Authorization server privacy policy URL."),
|
|
873
|
+
opTosUri: z.string().optional().describe("Authorization server terms of service URL."),
|
|
874
|
+
logoUri: z.string().optional().describe("Authorization server logo URL."),
|
|
875
|
+
clientIdMetadataDocumentSupported: z.boolean().optional().describe("Whether the server supports OAuth client ID metadata documents."),
|
|
876
|
+
authorizationDetailsTypesSupported: z.array(z.string()).optional().describe("OAuth authorization-detail types supported by the server.")
|
|
877
|
+
}).catchall(z.unknown()).optional().default({}).describe("Authorization server metadata. Values override discovered metadata. Empty known string fields remove their stored overrides."),
|
|
878
|
+
clientId: z.string().optional().describe("OAuth client ID."),
|
|
879
|
+
clientName: z.string().optional().describe("OAuth client name."),
|
|
880
|
+
clientSecret: z.string().optional().describe("OAuth client secret."),
|
|
881
|
+
tokenEndpointAuthMethod: z.string().optional().describe("OAuth token endpoint authentication method. Common values are client_secret_post, client_secret_basic, none, and private_key_jwt. If omitted, Vercel selects a supported method from serverConfig and otherwise uses client_secret_post."),
|
|
882
|
+
responseType: z.string().optional().describe("OAuth authorization response type. Defaults to code. Other provider-supported values are accepted. An empty string clears the configured type."),
|
|
883
|
+
pkceRequired: z.boolean().optional().describe("Whether user authorization must use PKCE."),
|
|
884
|
+
codeChallengeMethod: z.string().optional().describe("PKCE code challenge method. Supported values are S256 and plain. Vercel prefers S256 when the provider supports it. An empty string clears the configured method."),
|
|
885
|
+
userAuthorization: z.object({
|
|
886
|
+
enabled: z.boolean().describe("Whether this OAuth grant is enabled."),
|
|
887
|
+
scopes: z.array(z.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].')
|
|
888
|
+
}).strict().optional().describe("User authorization grant settings."),
|
|
889
|
+
refreshTokens: z.object({
|
|
890
|
+
enabled: z.boolean().describe("Whether this OAuth grant is enabled.")
|
|
891
|
+
}).strict().optional().describe("Refresh token settings."),
|
|
892
|
+
clientCredentials: z.object({
|
|
893
|
+
enabled: z.boolean().describe("Whether this OAuth grant is enabled."),
|
|
894
|
+
scopes: z.array(z.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].')
|
|
895
|
+
}).strict().optional().describe("Client credentials grant settings."),
|
|
896
|
+
forwardedClaims: z.object({
|
|
897
|
+
idToken: z.array(z.string()).optional().describe("ID token claim names that Connect can expose.")
|
|
898
|
+
}).strict().optional().describe("Allow-list of extra claims to propagate, keyed by source (idToken). Only claims named here and present in that source are exposed."),
|
|
899
|
+
defaultAudience: z.string().optional().describe("Default audience used when a token request omits one. An empty string clears the default."),
|
|
900
|
+
defaultTokenExpiresIn: z.number().min(60).optional().describe("Default token lifetime in seconds to use when the token response omits expires_in."),
|
|
901
|
+
authorizationUrlParams: z.object({}).catchall(z.string()).optional().describe("Extra query parameters added to authorization URLs."),
|
|
902
|
+
jwtBearer: z.object({
|
|
903
|
+
enabled: z.boolean().optional().describe("Whether JWT bearer grants are enabled."),
|
|
904
|
+
scopes: z.array(z.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].'),
|
|
905
|
+
sub: z.string().optional().describe("Default JWT subject claim."),
|
|
906
|
+
iss: z.string().optional().describe("Default JWT issuer claim."),
|
|
907
|
+
aud: z.string().optional().describe("Default JWT audience claim."),
|
|
908
|
+
additionalClaims: z.object({}).catchall(z.unknown()).optional().describe("Additional claims included in generated JWT assertions."),
|
|
909
|
+
ttl: z.number().gt(0).optional().describe("JWT lifetime in seconds."),
|
|
910
|
+
useClientCredentials: z.boolean().optional().describe("Whether JWT bearer requests also use client credentials.")
|
|
911
|
+
}).strict().optional().describe("JWT bearer grant settings."),
|
|
912
|
+
clientAssertion: z.object({
|
|
913
|
+
type: z.string().optional().describe("OAuth client assertion type. Defaults to urn:ietf:params:oauth:client-assertion-type:jwt-bearer. An empty string clears the configured type."),
|
|
914
|
+
ttl: z.number().gt(0).optional().describe("Client assertion lifetime in seconds."),
|
|
915
|
+
claims: z.object({}).catchall(z.unknown()).optional().describe("Additional claims included in the client assertion.")
|
|
916
|
+
}).strict().optional().describe("`private_key_jwt` client assertion settings.")
|
|
917
|
+
}).strict(),
|
|
918
|
+
z.object({
|
|
919
|
+
toDelete: z.array(z.string()).optional().describe("Stored API key value IDs to delete."),
|
|
920
|
+
toAdd: z.array(z.object({
|
|
921
|
+
value: z.string().describe("API key value."),
|
|
922
|
+
scope: z.string().optional().describe("Optional scope associated with the API key value."),
|
|
923
|
+
expiresAt: z.int().gt(0).optional().describe("The timestamp when the API key value expires in milliseconds.")
|
|
924
|
+
}).strict()).optional().describe("API key values to add."),
|
|
925
|
+
toUpdate: z.array(z.object({
|
|
926
|
+
id: z.string().describe("Stored API key value ID."),
|
|
927
|
+
value: z.union([
|
|
928
|
+
z.string(),
|
|
929
|
+
z.string()
|
|
930
|
+
]).optional().describe("Replacement API key value. Use null to keep the stored value."),
|
|
931
|
+
scope: z.union([
|
|
932
|
+
z.string(),
|
|
933
|
+
z.string()
|
|
934
|
+
]).optional().describe("Replacement scope. Use null to remove the scope."),
|
|
935
|
+
expiresAt: z.union([
|
|
936
|
+
z.int().gt(0),
|
|
937
|
+
z.string()
|
|
938
|
+
]).optional().describe("The timestamp when the API key value expires in milliseconds.")
|
|
939
|
+
}).strict()).optional().describe("Existing API key values to update."),
|
|
940
|
+
instructions: z.union([
|
|
941
|
+
z.string().max(4000),
|
|
942
|
+
z.string()
|
|
943
|
+
]).optional().describe("Markdown instructions shown to each user on the authorization screen, explaining how to obtain the key they should paste.")
|
|
944
|
+
}).strict(),
|
|
945
|
+
z.object({
|
|
946
|
+
appId: z.int().gt(0).optional().describe("GitHub App numeric ID."),
|
|
947
|
+
appSlug: z.string().optional().describe("GitHub App slug."),
|
|
948
|
+
appName: z.string().optional().describe("GitHub App display name."),
|
|
949
|
+
clientId: z.string().optional().describe("GitHub App OAuth client ID."),
|
|
950
|
+
owner: z.object({
|
|
951
|
+
type: z.enum([
|
|
952
|
+
"user",
|
|
953
|
+
"organization",
|
|
954
|
+
"User",
|
|
955
|
+
"Organization"
|
|
956
|
+
]).describe("GitHub App owner type."),
|
|
957
|
+
id: z.int().describe("GitHub App owner numeric ID."),
|
|
958
|
+
slug: z.string().describe("GitHub App owner login."),
|
|
959
|
+
name: z.string().optional().describe("GitHub App owner display name.")
|
|
960
|
+
}).strict().optional().describe("GitHub App owner."),
|
|
961
|
+
clientSecret: z.string().optional().describe("GitHub App OAuth client secret."),
|
|
962
|
+
privateKeyPem: z.string().optional().describe("GitHub App private key in PEM format."),
|
|
963
|
+
webhookSecret: z.string().optional().describe("GitHub App webhook secret."),
|
|
964
|
+
extras: z.object({}).catchall(z.unknown()).optional().describe("Additional provider metadata stored with the connector.")
|
|
965
|
+
}).strict(),
|
|
966
|
+
z.object({
|
|
967
|
+
appId: z.string().optional().describe("Linear application ID."),
|
|
968
|
+
appName: z.string().optional().describe("Linear application name."),
|
|
969
|
+
clientId: z.string().optional().describe("Linear OAuth client ID."),
|
|
970
|
+
clientSecret: z.string().optional().describe("Linear OAuth client secret."),
|
|
971
|
+
webhookSecret: z.string().optional().describe("Linear webhook verification secret."),
|
|
972
|
+
appScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Linear application tokens."),
|
|
973
|
+
userScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Linear user tokens."),
|
|
974
|
+
ownerOrganization: z.object({
|
|
975
|
+
id: z.string().describe("Linear organization ID."),
|
|
976
|
+
slug: z.string().describe("Linear organization slug."),
|
|
977
|
+
name: z.string().describe("Linear organization name."),
|
|
978
|
+
logoUrl: z.string().nullish().describe("Linear organization logo URL.")
|
|
979
|
+
}).strict().optional().describe("Linear organization that owns the OAuth application."),
|
|
980
|
+
application: z.object({
|
|
981
|
+
id: z.string().describe("Linear OAuth application ID."),
|
|
982
|
+
clientId: z.string().describe("Linear OAuth client ID."),
|
|
983
|
+
name: z.string().describe("Linear OAuth application name."),
|
|
984
|
+
description: z.string().nullish().describe("Linear OAuth application description."),
|
|
985
|
+
developer: z.string().nullish().describe("Linear OAuth application developer name."),
|
|
986
|
+
developerUrl: z.string().nullish().describe("Linear OAuth application developer URL."),
|
|
987
|
+
imageUrl: z.string().nullish().describe("Linear OAuth application image URL."),
|
|
988
|
+
redirectUris: z.array(z.string()).optional().describe("Registered redirect URIs for the Linear OAuth application."),
|
|
989
|
+
distribution: z.string().nullish().describe("Linear OAuth application distribution mode."),
|
|
990
|
+
webhookResourceTypes: z.array(z.string()).optional().describe("Linear resource types delivered to the webhook."),
|
|
991
|
+
webhookUrl: z.string().nullish().describe("Linear webhook URL."),
|
|
992
|
+
webhookEnabled: z.boolean().optional().describe("Whether the Linear webhook is enabled."),
|
|
993
|
+
createdAt: z.string().optional().describe("Linear OAuth application creation timestamp."),
|
|
994
|
+
updatedAt: z.string().optional().describe("Linear OAuth application update timestamp.")
|
|
995
|
+
}).strict().optional().describe("Linear OAuth application metadata."),
|
|
996
|
+
extras: z.object({}).catchall(z.unknown()).optional().describe("Additional provider metadata stored with the connector.")
|
|
997
|
+
}).strict(),
|
|
998
|
+
z.object({
|
|
999
|
+
consumerKey: z.string().optional().describe("Salesforce connected app consumer key."),
|
|
1000
|
+
consumerSecret: z.string().optional().describe("Salesforce connected app consumer secret."),
|
|
1001
|
+
loginHost: z.string().optional().describe("Salesforce login host, such as login.salesforce.com.")
|
|
1002
|
+
}).strict(),
|
|
1003
|
+
z.object({
|
|
1004
|
+
appId: z.string().optional().describe("Slack app ID."),
|
|
1005
|
+
appName: z.string().optional().describe("Slack app display name."),
|
|
1006
|
+
clientId: z.string().optional().describe("Slack app OAuth client ID."),
|
|
1007
|
+
clientSecret: z.string().optional().describe("Slack app OAuth client secret."),
|
|
1008
|
+
slackTeam: z.object({
|
|
1009
|
+
id: z.string().describe("Slack workspace ID."),
|
|
1010
|
+
name: z.string().optional().describe("Slack workspace name."),
|
|
1011
|
+
domain: z.string().optional().describe("Slack workspace domain.")
|
|
1012
|
+
}).strict().optional().describe("Slack workspace metadata."),
|
|
1013
|
+
signingSecret: z.string().optional().describe("Slack request signing secret."),
|
|
1014
|
+
verificationToken: z.string().optional().describe("Legacy Slack webhook verification token."),
|
|
1015
|
+
botScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Slack bot tokens."),
|
|
1016
|
+
userScopes: z.array(z.string()).optional().describe("OAuth scopes requested for Slack user tokens."),
|
|
1017
|
+
slashCommands: z.array(z.object({
|
|
1018
|
+
command: z.string().max(32).regex(/^\\[/]/).describe("Slash command including its leading slash."),
|
|
1019
|
+
description: z.string().max(2000).describe("Description shown for the slash command in Slack."),
|
|
1020
|
+
usageHint: z.string().max(1000).optional().describe("Optional usage hint shown for the slash command."),
|
|
1021
|
+
shouldEscape: z.boolean().optional().describe("Whether Slack should escape command arguments.")
|
|
1022
|
+
}).strict()).max(50).optional().describe("Slash commands configured for the managed Slack app."),
|
|
1023
|
+
shortcuts: z.array(z.object({
|
|
1024
|
+
type: z.enum([
|
|
1025
|
+
"global",
|
|
1026
|
+
"message"
|
|
1027
|
+
]).describe("Where Slack exposes the shortcut."),
|
|
1028
|
+
name: z.string().describe("Shortcut display name."),
|
|
1029
|
+
callbackId: z.string().max(255).describe("Identifier included in the shortcut callback."),
|
|
1030
|
+
description: z.string().max(150).describe("Description shown for the shortcut in Slack.")
|
|
1031
|
+
}).strict()).max(10).optional().describe("Global and message shortcuts configured for the Slack app."),
|
|
1032
|
+
extras: z.object({}).catchall(z.unknown()).optional().describe("Additional provider metadata stored with the connector.")
|
|
1033
|
+
}).strict(),
|
|
1034
|
+
z.object({
|
|
1035
|
+
accountIdentifier: z.string().optional().describe("Snowflake account identifier."),
|
|
1036
|
+
defaultSessionRole: z.string().optional().describe("Default Snowflake role for created sessions.")
|
|
1037
|
+
}).strict(),
|
|
1038
|
+
z.object({
|
|
1039
|
+
accountIdentifier: z.string().optional().describe("Snowflake account identifier.")
|
|
1040
|
+
}).strict(),
|
|
1041
|
+
z.object({
|
|
1042
|
+
apiToken: z.string().optional().describe("Linq partner API token for the shared line."),
|
|
1043
|
+
phoneNumbers: z.array(z.string().regex(/^\\+[1-9]\\d{1,14}$/)).optional()
|
|
1044
|
+
}).strict(),
|
|
1045
|
+
z.object({
|
|
1046
|
+
apiKeyId: z.string().optional().describe("Sendblue API key id (`sb-api-key-id`)."),
|
|
1047
|
+
apiSecretKey: z.string().optional().describe("Sendblue API secret key (`sb-api-secret-key`)."),
|
|
1048
|
+
phoneNumbers: z.array(z.string().regex(/^\\+[1-9]\\d{1,14}$/)).optional().describe("E.164 Sendblue lines this connector sends and receives on. Used as the connector's display name, and the only lines its webhooks are registered for; an empty array clears them, which also removes the webhook subscription.")
|
|
1049
|
+
}).strict(),
|
|
1050
|
+
z.object({
|
|
1051
|
+
projectSecret: z.string().optional().describe("Photon project secret."),
|
|
1052
|
+
webhookSecret: z.string().optional().describe("Photon webhook verification secret."),
|
|
1053
|
+
repairWebhook: z.boolean().optional().describe("Whether Connect should recreate the Photon webhook.")
|
|
1054
|
+
}).strict(),
|
|
1055
|
+
z.object({}).catchall(z.unknown())
|
|
1056
|
+
]).describe("Provider configuration fields for the connector type.");
|
|
1057
|
+
const connectUpdateConnectorRequestSchema = z.object({
|
|
1058
|
+
triggers: z.boolean().optional().describe("Whether the triggers are enabled for this connector."),
|
|
1059
|
+
events: z.array(z.string()).optional().describe("Default trigger events for this connector."),
|
|
1060
|
+
data: z.unknown().optional().describe("Provider configuration fields to update."),
|
|
1061
|
+
icon: z.string().regex(/^[0-9a-fA-F]{40}$/).optional().describe("SHA-1 digest of a PNG or JPEG icon that is at least 640 by 640 pixels. This field does not accept a URL or image bytes.\n\nFirst compute the digest and upload the raw image with [POST /v2/files](https://vercel.com/docs/rest-api/deployments/upload-deployment-files). Send `Content-Length` and the same 40-character digest in `x-vercel-digest`. Then set `icon` to that digest.\n\n```js\nimport { createHash } from 'node:crypto';\nimport { readFile } from 'node:fs/promises';\n\nconst VERCEL_TOKEN = process.env.VERCEL_TOKEN;\nconst connectorId = 'scl_...';\nconst bytes = await readFile('icon.png');\nconst digest = createHash('sha1').update(bytes).digest('hex');\n\nawait fetch('https://api.vercel.com/v2/files', {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${VERCEL_TOKEN}`,\n 'Content-Type': 'application/octet-stream',\n 'Content-Length': String(bytes.length),\n 'x-vercel-digest': digest,\n },\n body: bytes,\n});\n\nawait fetch(`https://api.vercel.com/v2/connect/connectors/${connectorId}`, {\n method: 'PATCH',\n headers: {\n Authorization: `Bearer ${VERCEL_TOKEN}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({ icon: digest }),\n});\n```\n"),
|
|
1062
|
+
backgroundColor: z.string().optional(),
|
|
1063
|
+
accentColor: z.string().optional(),
|
|
1064
|
+
uid: z.string().optional().describe("Full team-scoped UID, such as `slack/my-bot`. It cannot contain whitespace, `%`, `#`, control characters, or Vercel-owned namespaces. Changing it breaks callers that use the old UID. The stable connector ID does not change."),
|
|
1065
|
+
name: z.string().optional().describe("Display name for the connector. It is trimmed and cannot be empty or contain control characters.")
|
|
1066
|
+
}).strict().describe("Connector fields to update.");
|
|
1067
|
+
const connectTriggerDestinationInputSchema = z.union([
|
|
1068
|
+
z.object({
|
|
1069
|
+
projectId: z.string().min(1).describe("Project that receives matching trigger requests."),
|
|
1070
|
+
path: z.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
|
|
1071
|
+
}).strict(),
|
|
1072
|
+
z.object({
|
|
1073
|
+
projectId: z.string().min(1).describe("Project that receives matching trigger requests."),
|
|
1074
|
+
branch: z.string().min(1).max(250).describe("Git branch used to select a preview deployment."),
|
|
1075
|
+
path: z.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
|
|
1076
|
+
}).strict(),
|
|
1077
|
+
z.object({
|
|
1078
|
+
projectId: z.string().min(1).describe("Project that receives matching trigger requests."),
|
|
1079
|
+
customEnvironmentId: z.string().regex(/^env_/).describe("Stable custom environment ID that belongs to the destination project."),
|
|
1080
|
+
path: z.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
|
|
1081
|
+
}).strict()
|
|
1082
|
+
]).describe("A destination in the complete replacement set. Each destination targets the default deployment, a branch, or a custom environment.");
|
|
1083
|
+
const connectReplaceTriggerDestinationsRequestSchema = z.object({
|
|
1084
|
+
destinations: z.array(z.unknown()).max(3).describe("Complete replacement set of trigger destinations. An empty array removes all destinations. Connector get and list responses expose the saved set as triggerDestinations.")
|
|
1085
|
+
}).strict().describe("Complete replacement set of trigger destinations.");
|
|
1086
|
+
const connectProjectConnectionSchema = z.object({
|
|
1087
|
+
connectorId: z.string().describe("Stable `scl_` connector ID, even when the request used a UID."),
|
|
1088
|
+
project: z.object({
|
|
1089
|
+
id: z.string().describe("Same Vercel project ID as the connection's top-level `projectId`."),
|
|
1090
|
+
name: z.string().describe("Current Vercel project name."),
|
|
1091
|
+
customEnvironments: z.array(z.object({
|
|
1092
|
+
id: z.string().describe("Stable custom environment ID."),
|
|
1093
|
+
slug: z.string().describe("Current human-readable custom environment slug.")
|
|
1094
|
+
})).optional().describe("Custom environments available on the project. This list can include environments where the connector is not enabled.")
|
|
1095
|
+
}).describe("Vercel project connected to the connector."),
|
|
1096
|
+
enabledEnvironments: z.array(z.string()).describe("Environments where the connector is enabled for the project."),
|
|
1097
|
+
createdAt: z.number().describe("Time when the project connection was created, in epoch milliseconds."),
|
|
1098
|
+
updatedAt: z.number().describe("Time when the project connection was last updated, in epoch milliseconds.")
|
|
1099
|
+
}).describe("A connection between a connector and a Vercel project, including the environments where the connector is enabled.");
|
|
1100
|
+
const connectConnectorProjectConnectionListSchema = z.object({
|
|
1101
|
+
projects: z.array(z.unknown()).describe("Project connections in this page."),
|
|
1102
|
+
pagination: z.unknown().describe("Cursor for the next page.")
|
|
1103
|
+
}).describe("Page of projects connected to a connector.");
|
|
1104
|
+
const connectUpsertProjectConnectionRequestSchema = z.object({
|
|
1105
|
+
environments: z.array(z.string().regex(/^env_/)).min(1).describe("One or more built-in environment names or stable custom environment IDs that belong to the project. Duplicate values are accepted and removed.")
|
|
1106
|
+
}).describe("Environments enabled for a connector project connection.");
|
|
1107
|
+
const connectProjectConnectorConnectionListSchema = z.object({
|
|
1108
|
+
connectors: z.array(z.unknown()).describe("Connector connections in this page."),
|
|
1109
|
+
pagination: z.unknown().describe("Cursor for the next page.")
|
|
1110
|
+
}).describe("Page of connectors connected to a project.");
|
|
547
1111
|
const connectErrorSchema = z.object({
|
|
548
1112
|
error: z.object({
|
|
549
1113
|
code: z.string().describe("Stable machine-readable error code."),
|
|
@@ -798,7 +1362,7 @@ const boughtTooRecentlySchema = z.object({
|
|
|
798
1362
|
]),
|
|
799
1363
|
message: z.string()
|
|
800
1364
|
}).strict().describe("The domain was bought too recently to determine verification status.");
|
|
801
|
-
const registrantFieldSchema = z.
|
|
1365
|
+
const registrantFieldSchema = z.discriminatedUnion("type", [
|
|
802
1366
|
z.object({
|
|
803
1367
|
description: z.string(),
|
|
804
1368
|
required: z.boolean(),
|
|
@@ -984,8 +1548,10 @@ const userEventSchema = z.object({
|
|
|
984
1548
|
"ai-gateway-byok-credential-created",
|
|
985
1549
|
"ai-gateway-byok-credential-deleted",
|
|
986
1550
|
"ai-gateway-byok-credential-updated",
|
|
1551
|
+
"ai-gateway-byok-model-mappings-updated",
|
|
987
1552
|
"ai-gateway-credits-purchased",
|
|
988
1553
|
"ai-gateway-guardrails-updated",
|
|
1554
|
+
"ai-gateway-hipaa-compliance-toggled",
|
|
989
1555
|
"ai-gateway-inference-regions-updated",
|
|
990
1556
|
"ai-gateway-model-allowlist-models-updated",
|
|
991
1557
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -995,6 +1561,7 @@ const userEventSchema = z.object({
|
|
|
995
1561
|
"ai-gateway-private-provider-created",
|
|
996
1562
|
"ai-gateway-private-provider-deleted",
|
|
997
1563
|
"ai-gateway-private-provider-updated",
|
|
1564
|
+
"ai-gateway-prompt-training-opt-out-toggled",
|
|
998
1565
|
"ai-gateway-provider-allowlist-providers-updated",
|
|
999
1566
|
"ai-gateway-provider-allowlist-toggled",
|
|
1000
1567
|
"ai-gateway-rule-created",
|
|
@@ -1008,8 +1575,10 @@ const userEventSchema = z.object({
|
|
|
1008
1575
|
"ai-gateway-transcripts-retention-updated",
|
|
1009
1576
|
"ai-gateway-virtual-model-config-archived",
|
|
1010
1577
|
"ai-gateway-virtual-model-config-created",
|
|
1578
|
+
"ai-gateway-virtual-model-config-deleted",
|
|
1011
1579
|
"ai-gateway-virtual-model-config-restored",
|
|
1012
1580
|
"ai-gateway-virtual-model-config-updated",
|
|
1581
|
+
"ai-gateway-zero-data-retention-toggled",
|
|
1013
1582
|
"ai-omniagent",
|
|
1014
1583
|
"alert-investigation-project-allowlist-updated",
|
|
1015
1584
|
"alert-rule-created",
|
|
@@ -1038,6 +1607,7 @@ const userEventSchema = z.object({
|
|
|
1038
1607
|
"authorize-git-deployment",
|
|
1039
1608
|
"auto-expose-system-envs",
|
|
1040
1609
|
"avatar",
|
|
1610
|
+
"billing-settings-updated",
|
|
1041
1611
|
"bulk-redirects-settings-updated",
|
|
1042
1612
|
"bulk-redirects-version-promoted",
|
|
1043
1613
|
"bulk-redirects-version-restored",
|
|
@@ -1198,6 +1768,7 @@ const userEventSchema = z.object({
|
|
|
1198
1768
|
"flags-segment",
|
|
1199
1769
|
"flags-settings",
|
|
1200
1770
|
"flags-transferred",
|
|
1771
|
+
"flat-rate-cdn-auto-upgrade-consent",
|
|
1201
1772
|
"git-integration-repo-push",
|
|
1202
1773
|
"git_account_integration_link_added",
|
|
1203
1774
|
"global-config-backup-restored",
|
|
@@ -1282,6 +1853,7 @@ const userEventSchema = z.object({
|
|
|
1282
1853
|
"organization-team-add",
|
|
1283
1854
|
"organization-team-create",
|
|
1284
1855
|
"organization-team-delete",
|
|
1856
|
+
"organization-team-sso-update",
|
|
1285
1857
|
"owner-blocked",
|
|
1286
1858
|
"owner-soft-blocked",
|
|
1287
1859
|
"owner-soft-unblocked",
|
|
@@ -1361,6 +1933,12 @@ const userEventSchema = z.object({
|
|
|
1361
1933
|
"project-git-commit-comments-toggled",
|
|
1362
1934
|
"project-git-commit-status-toggled",
|
|
1363
1935
|
"project-git-create-deployments-toggled",
|
|
1936
|
+
"project-git-credential-bound-created",
|
|
1937
|
+
"project-git-credential-bound-deleted",
|
|
1938
|
+
"project-git-credential-bound-updated",
|
|
1939
|
+
"project-git-credential-grant-created",
|
|
1940
|
+
"project-git-credential-grant-deleted",
|
|
1941
|
+
"project-git-credential-grant-updated",
|
|
1364
1942
|
"project-git-fork-protection-updated",
|
|
1365
1943
|
"project-git-lfs-toggled",
|
|
1366
1944
|
"project-git-pr-comments-toggled",
|
|
@@ -1453,6 +2031,8 @@ const userEventSchema = z.object({
|
|
|
1453
2031
|
"shared-env-variable-create",
|
|
1454
2032
|
"shared-env-variable-delete",
|
|
1455
2033
|
"shared-env-variable-read",
|
|
2034
|
+
"shared-env-variable-repo-link",
|
|
2035
|
+
"shared-env-variable-repo-unlink",
|
|
1456
2036
|
"shared-env-variable-update",
|
|
1457
2037
|
"show-ip-addresses",
|
|
1458
2038
|
"signup",
|
|
@@ -1483,6 +2063,7 @@ const userEventSchema = z.object({
|
|
|
1483
2063
|
"storage-update-project-connection",
|
|
1484
2064
|
"storage-upgrade-project-connection-to-oidc",
|
|
1485
2065
|
"storage-view-secret",
|
|
2066
|
+
"strict-connectors",
|
|
1486
2067
|
"strict-deployment-protection-settings",
|
|
1487
2068
|
"strict-password-protection-settings",
|
|
1488
2069
|
"strict-shareable-links",
|
|
@@ -1641,7 +2222,9 @@ const userEventSchema = z.object({
|
|
|
1641
2222
|
"workflow"
|
|
1642
2223
|
])).optional().describe('The categories that group this event with related event types. An event can belong to multiple categories (e.g. a firewall event is both Firewall and Security). The first entry is the "primary" category. Use the `/events/types` endpoint to discover the full list of categories.').meta({
|
|
1643
2224
|
examples: [
|
|
1644
|
-
|
|
2225
|
+
[
|
|
2226
|
+
"deployment"
|
|
2227
|
+
]
|
|
1645
2228
|
]
|
|
1646
2229
|
}),
|
|
1647
2230
|
createdAt: z.number().describe("Timestamp (in milliseconds) of when the event was generated.").meta({
|
|
@@ -1656,7 +2239,7 @@ const userEventSchema = z.object({
|
|
|
1656
2239
|
username: z.string(),
|
|
1657
2240
|
uid: z.string()
|
|
1658
2241
|
}).optional().describe("Metadata for {@link userId}."),
|
|
1659
|
-
principal: z.
|
|
2242
|
+
principal: z.discriminatedUnion("type", [
|
|
1660
2243
|
z.object({
|
|
1661
2244
|
type: z.enum([
|
|
1662
2245
|
"user"
|
|
@@ -1689,7 +2272,7 @@ const userEventSchema = z.object({
|
|
|
1689
2272
|
])
|
|
1690
2273
|
}).strict()
|
|
1691
2274
|
]).optional(),
|
|
1692
|
-
via: z.array(z.
|
|
2275
|
+
via: z.array(z.discriminatedUnion("type", [
|
|
1693
2276
|
z.object({
|
|
1694
2277
|
type: z.enum([
|
|
1695
2278
|
"user"
|
|
@@ -1729,6 +2312,9 @@ const userEventSchema = z.object({
|
|
|
1729
2312
|
}),
|
|
1730
2313
|
principalId: z.string().describe("The ID of the principal who generated the event. The principal is typically a user, but it could also be an app, an integration, etc. The principal may have delegated its authority to an acting party, and so {@link viaIds} should be checked as well."),
|
|
1731
2314
|
viaIds: z.array(z.string()).optional().describe('If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".'),
|
|
2315
|
+
tokenId: z.string().optional().describe("The public ID of the token that the principal authenticated with, when the request behind this event carried one."),
|
|
2316
|
+
sessionId: z.string().optional().describe("The ID of the session that the principal's token belongs to, when it belongs to one."),
|
|
2317
|
+
requestId: z.string().optional(),
|
|
1732
2318
|
payload: z.union([
|
|
1733
2319
|
z.object({}).strict(),
|
|
1734
2320
|
z.object({
|
|
@@ -1777,6 +2363,11 @@ const userEventSchema = z.object({
|
|
|
1777
2363
|
projectId: z.string().optional(),
|
|
1778
2364
|
environment: z.array(z.string())
|
|
1779
2365
|
}).strict(),
|
|
2366
|
+
z.object({
|
|
2367
|
+
projectId: z.string(),
|
|
2368
|
+
projectName: z.string(),
|
|
2369
|
+
policyId: z.string()
|
|
2370
|
+
}).strict(),
|
|
1780
2371
|
z.object({
|
|
1781
2372
|
provider: z.enum([
|
|
1782
2373
|
"chatgpt",
|
|
@@ -1876,7 +2467,8 @@ const userEventSchema = z.object({
|
|
|
1876
2467
|
"monthly",
|
|
1877
2468
|
"none",
|
|
1878
2469
|
"weekly"
|
|
1879
|
-
])
|
|
2470
|
+
]),
|
|
2471
|
+
alertThresholds: z.array(z.number()).optional()
|
|
1880
2472
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1881
2473
|
zdrExemption: z.union([
|
|
1882
2474
|
z.literal(false),
|
|
@@ -1905,7 +2497,8 @@ const userEventSchema = z.object({
|
|
|
1905
2497
|
"monthly",
|
|
1906
2498
|
"none",
|
|
1907
2499
|
"weekly"
|
|
1908
|
-
])
|
|
2500
|
+
]),
|
|
2501
|
+
alertThresholds: z.array(z.number()).optional()
|
|
1909
2502
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1910
2503
|
change: z.enum([
|
|
1911
2504
|
"disable",
|
|
@@ -1951,7 +2544,8 @@ const userEventSchema = z.object({
|
|
|
1951
2544
|
"monthly",
|
|
1952
2545
|
"none",
|
|
1953
2546
|
"weekly"
|
|
1954
|
-
])
|
|
2547
|
+
]),
|
|
2548
|
+
alertThresholds: z.array(z.number()).optional()
|
|
1955
2549
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1956
2550
|
change: z.enum([
|
|
1957
2551
|
"disable",
|
|
@@ -1977,7 +2571,8 @@ const userEventSchema = z.object({
|
|
|
1977
2571
|
"monthly",
|
|
1978
2572
|
"none",
|
|
1979
2573
|
"weekly"
|
|
1980
|
-
])
|
|
2574
|
+
]),
|
|
2575
|
+
alertThresholds: z.array(z.number()).optional()
|
|
1981
2576
|
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1982
2577
|
change: z.enum([
|
|
1983
2578
|
"disable",
|
|
@@ -1994,8 +2589,14 @@ const userEventSchema = z.object({
|
|
|
1994
2589
|
})
|
|
1995
2590
|
}).strict(),
|
|
1996
2591
|
z.object({
|
|
1997
|
-
|
|
1998
|
-
|
|
2592
|
+
credential: z.object({
|
|
2593
|
+
id: z.string(),
|
|
2594
|
+
name: z.string(),
|
|
2595
|
+
providerSlug: z.string()
|
|
2596
|
+
}),
|
|
2597
|
+
added: z.array(z.string()),
|
|
2598
|
+
removed: z.array(z.string()),
|
|
2599
|
+
changed: z.array(z.string())
|
|
1999
2600
|
}).strict(),
|
|
2000
2601
|
z.object({
|
|
2001
2602
|
enabled: z.union([
|
|
@@ -2003,6 +2604,10 @@ const userEventSchema = z.object({
|
|
|
2003
2604
|
z.literal(true)
|
|
2004
2605
|
])
|
|
2005
2606
|
}).strict(),
|
|
2607
|
+
z.object({
|
|
2608
|
+
amount: z.string(),
|
|
2609
|
+
purchaseIntentId: z.string()
|
|
2610
|
+
}).strict(),
|
|
2006
2611
|
z.object({
|
|
2007
2612
|
added: z.array(z.string()),
|
|
2008
2613
|
removed: z.array(z.string())
|
|
@@ -2280,6 +2885,7 @@ const userEventSchema = z.object({
|
|
|
2280
2885
|
"read-write:ai-gateway-rules",
|
|
2281
2886
|
"read-write:ai-gateway-virtual-model-configs",
|
|
2282
2887
|
"read-write:alerts",
|
|
2888
|
+
"read-write:automations",
|
|
2283
2889
|
"read-write:billing",
|
|
2284
2890
|
"read-write:blob",
|
|
2285
2891
|
"read-write:connect",
|
|
@@ -2310,7 +2916,9 @@ const userEventSchema = z.object({
|
|
|
2310
2916
|
"read:ai-gateway-rules",
|
|
2311
2917
|
"read:ai-gateway-virtual-model-configs",
|
|
2312
2918
|
"read:alerts",
|
|
2919
|
+
"read:automations",
|
|
2313
2920
|
"read:billing",
|
|
2921
|
+
"read:connect",
|
|
2314
2922
|
"read:deployment",
|
|
2315
2923
|
"read:domain",
|
|
2316
2924
|
"read:event",
|
|
@@ -2330,6 +2938,7 @@ const userEventSchema = z.object({
|
|
|
2330
2938
|
"read:user",
|
|
2331
2939
|
"read:vcr",
|
|
2332
2940
|
"read:web-analytics",
|
|
2941
|
+
"read:webhooks",
|
|
2333
2942
|
"use:ai-gateway"
|
|
2334
2943
|
])).optional()
|
|
2335
2944
|
}).strict(),
|
|
@@ -2355,6 +2964,7 @@ const userEventSchema = z.object({
|
|
|
2355
2964
|
"read-write:ai-gateway-rules",
|
|
2356
2965
|
"read-write:ai-gateway-virtual-model-configs",
|
|
2357
2966
|
"read-write:alerts",
|
|
2967
|
+
"read-write:automations",
|
|
2358
2968
|
"read-write:billing",
|
|
2359
2969
|
"read-write:blob",
|
|
2360
2970
|
"read-write:connect",
|
|
@@ -2385,7 +2995,9 @@ const userEventSchema = z.object({
|
|
|
2385
2995
|
"read:ai-gateway-rules",
|
|
2386
2996
|
"read:ai-gateway-virtual-model-configs",
|
|
2387
2997
|
"read:alerts",
|
|
2998
|
+
"read:automations",
|
|
2388
2999
|
"read:billing",
|
|
3000
|
+
"read:connect",
|
|
2389
3001
|
"read:deployment",
|
|
2390
3002
|
"read:domain",
|
|
2391
3003
|
"read:event",
|
|
@@ -2405,6 +3017,7 @@ const userEventSchema = z.object({
|
|
|
2405
3017
|
"read:user",
|
|
2406
3018
|
"read:vcr",
|
|
2407
3019
|
"read:web-analytics",
|
|
3020
|
+
"read:webhooks",
|
|
2408
3021
|
"use:ai-gateway"
|
|
2409
3022
|
])).optional()
|
|
2410
3023
|
}).strict(),
|
|
@@ -2435,6 +3048,7 @@ const userEventSchema = z.object({
|
|
|
2435
3048
|
"read-write:ai-gateway-rules",
|
|
2436
3049
|
"read-write:ai-gateway-virtual-model-configs",
|
|
2437
3050
|
"read-write:alerts",
|
|
3051
|
+
"read-write:automations",
|
|
2438
3052
|
"read-write:billing",
|
|
2439
3053
|
"read-write:blob",
|
|
2440
3054
|
"read-write:connect",
|
|
@@ -2465,7 +3079,9 @@ const userEventSchema = z.object({
|
|
|
2465
3079
|
"read:ai-gateway-rules",
|
|
2466
3080
|
"read:ai-gateway-virtual-model-configs",
|
|
2467
3081
|
"read:alerts",
|
|
3082
|
+
"read:automations",
|
|
2468
3083
|
"read:billing",
|
|
3084
|
+
"read:connect",
|
|
2469
3085
|
"read:deployment",
|
|
2470
3086
|
"read:domain",
|
|
2471
3087
|
"read:event",
|
|
@@ -2484,6 +3100,7 @@ const userEventSchema = z.object({
|
|
|
2484
3100
|
"read:team",
|
|
2485
3101
|
"read:vcr",
|
|
2486
3102
|
"read:web-analytics",
|
|
3103
|
+
"read:webhooks",
|
|
2487
3104
|
"use:ai-gateway"
|
|
2488
3105
|
])).optional()
|
|
2489
3106
|
}).optional(),
|
|
@@ -2510,6 +3127,7 @@ const userEventSchema = z.object({
|
|
|
2510
3127
|
"read-write:ai-gateway-rules",
|
|
2511
3128
|
"read-write:ai-gateway-virtual-model-configs",
|
|
2512
3129
|
"read-write:alerts",
|
|
3130
|
+
"read-write:automations",
|
|
2513
3131
|
"read-write:billing",
|
|
2514
3132
|
"read-write:blob",
|
|
2515
3133
|
"read-write:connect",
|
|
@@ -2540,7 +3158,9 @@ const userEventSchema = z.object({
|
|
|
2540
3158
|
"read:ai-gateway-rules",
|
|
2541
3159
|
"read:ai-gateway-virtual-model-configs",
|
|
2542
3160
|
"read:alerts",
|
|
3161
|
+
"read:automations",
|
|
2543
3162
|
"read:billing",
|
|
3163
|
+
"read:connect",
|
|
2544
3164
|
"read:deployment",
|
|
2545
3165
|
"read:domain",
|
|
2546
3166
|
"read:event",
|
|
@@ -2559,6 +3179,7 @@ const userEventSchema = z.object({
|
|
|
2559
3179
|
"read:team",
|
|
2560
3180
|
"read:vcr",
|
|
2561
3181
|
"read:web-analytics",
|
|
3182
|
+
"read:webhooks",
|
|
2562
3183
|
"use:ai-gateway"
|
|
2563
3184
|
])).optional()
|
|
2564
3185
|
}).optional()
|
|
@@ -2588,6 +3209,7 @@ const userEventSchema = z.object({
|
|
|
2588
3209
|
"read-write:ai-gateway-rules",
|
|
2589
3210
|
"read-write:ai-gateway-virtual-model-configs",
|
|
2590
3211
|
"read-write:alerts",
|
|
3212
|
+
"read-write:automations",
|
|
2591
3213
|
"read-write:billing",
|
|
2592
3214
|
"read-write:blob",
|
|
2593
3215
|
"read-write:connect",
|
|
@@ -2618,7 +3240,9 @@ const userEventSchema = z.object({
|
|
|
2618
3240
|
"read:ai-gateway-rules",
|
|
2619
3241
|
"read:ai-gateway-virtual-model-configs",
|
|
2620
3242
|
"read:alerts",
|
|
3243
|
+
"read:automations",
|
|
2621
3244
|
"read:billing",
|
|
3245
|
+
"read:connect",
|
|
2622
3246
|
"read:deployment",
|
|
2623
3247
|
"read:domain",
|
|
2624
3248
|
"read:event",
|
|
@@ -2637,6 +3261,7 @@ const userEventSchema = z.object({
|
|
|
2637
3261
|
"read:team",
|
|
2638
3262
|
"read:vcr",
|
|
2639
3263
|
"read:web-analytics",
|
|
3264
|
+
"read:webhooks",
|
|
2640
3265
|
"use:ai-gateway"
|
|
2641
3266
|
])).optional()
|
|
2642
3267
|
}).strict(),
|
|
@@ -2700,6 +3325,16 @@ const userEventSchema = z.object({
|
|
|
2700
3325
|
brand: z.string().optional(),
|
|
2701
3326
|
last4: z.string().optional()
|
|
2702
3327
|
}).strict(),
|
|
3328
|
+
z.object({
|
|
3329
|
+
changedFields: z.array(z.enum([
|
|
3330
|
+
"address",
|
|
3331
|
+
"email",
|
|
3332
|
+
"language",
|
|
3333
|
+
"name",
|
|
3334
|
+
"purchaseOrder",
|
|
3335
|
+
"tax"
|
|
3336
|
+
]))
|
|
3337
|
+
}).strict(),
|
|
2703
3338
|
z.object({
|
|
2704
3339
|
subscriptionId: z.string().optional(),
|
|
2705
3340
|
planSlug: z.string()
|
|
@@ -2947,6 +3582,7 @@ const userEventSchema = z.object({
|
|
|
2947
3582
|
clientUid: z.string().optional(),
|
|
2948
3583
|
clientName: z.string().optional(),
|
|
2949
3584
|
projectId: z.string().optional(),
|
|
3585
|
+
projectName: z.string().optional(),
|
|
2950
3586
|
installationId: z.string().optional(),
|
|
2951
3587
|
subjectType: z.enum([
|
|
2952
3588
|
"app",
|
|
@@ -3042,7 +3678,7 @@ const userEventSchema = z.object({
|
|
|
3042
3678
|
type: z.string().optional()
|
|
3043
3679
|
}).strict(),
|
|
3044
3680
|
z.object({
|
|
3045
|
-
job: z.
|
|
3681
|
+
job: z.discriminatedUnion("type", [
|
|
3046
3682
|
z.object({
|
|
3047
3683
|
type: z.enum([
|
|
3048
3684
|
"bitbucket-push"
|
|
@@ -4225,7 +4861,10 @@ const userEventSchema = z.object({
|
|
|
4225
4861
|
value: z.string().optional().describe("The value of the Shared Env Var."),
|
|
4226
4862
|
projectId: z.array(z.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4227
4863
|
examples: [
|
|
4228
|
-
|
|
4864
|
+
[
|
|
4865
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4866
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4867
|
+
]
|
|
4229
4868
|
]
|
|
4230
4869
|
}),
|
|
4231
4870
|
type: z.enum([
|
|
@@ -4261,6 +4900,18 @@ const userEventSchema = z.object({
|
|
|
4261
4900
|
projectNames: z.array(z.string()).optional(),
|
|
4262
4901
|
ipAddress: z.string().optional()
|
|
4263
4902
|
}).strict(),
|
|
4903
|
+
z.object({
|
|
4904
|
+
envId: z.string(),
|
|
4905
|
+
envKey: z.string(),
|
|
4906
|
+
provider: z.string(),
|
|
4907
|
+
organizationId: z.string(),
|
|
4908
|
+
repository: z.string(),
|
|
4909
|
+
target: z.array(z.enum([
|
|
4910
|
+
"development",
|
|
4911
|
+
"preview",
|
|
4912
|
+
"production"
|
|
4913
|
+
]))
|
|
4914
|
+
}).strict(),
|
|
4264
4915
|
z.object({
|
|
4265
4916
|
oldEnvVar: z.object({
|
|
4266
4917
|
created: z.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
|
|
@@ -4316,7 +4967,10 @@ const userEventSchema = z.object({
|
|
|
4316
4967
|
value: z.string().optional().describe("The value of the Shared Env Var."),
|
|
4317
4968
|
projectId: z.array(z.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4318
4969
|
examples: [
|
|
4319
|
-
|
|
4970
|
+
[
|
|
4971
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
4972
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
4973
|
+
]
|
|
4320
4974
|
]
|
|
4321
4975
|
}),
|
|
4322
4976
|
type: z.enum([
|
|
@@ -4404,7 +5058,10 @@ const userEventSchema = z.object({
|
|
|
4404
5058
|
value: z.string().optional().describe("The value of the Shared Env Var."),
|
|
4405
5059
|
projectId: z.array(z.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
|
|
4406
5060
|
examples: [
|
|
4407
|
-
|
|
5061
|
+
[
|
|
5062
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
5063
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
5064
|
+
]
|
|
4408
5065
|
]
|
|
4409
5066
|
}),
|
|
4410
5067
|
type: z.enum([
|
|
@@ -4544,6 +5201,7 @@ const userEventSchema = z.object({
|
|
|
4544
5201
|
}).strict(),
|
|
4545
5202
|
z.object({
|
|
4546
5203
|
projectId: z.string(),
|
|
5204
|
+
projectName: z.string().optional(),
|
|
4547
5205
|
previousOwnerId: z.string(),
|
|
4548
5206
|
newOwnerId: z.string()
|
|
4549
5207
|
}).strict(),
|
|
@@ -4553,6 +5211,13 @@ const userEventSchema = z.object({
|
|
|
4553
5211
|
"enable"
|
|
4554
5212
|
])
|
|
4555
5213
|
}).strict(),
|
|
5214
|
+
z.object({
|
|
5215
|
+
source: z.enum([
|
|
5216
|
+
"create",
|
|
5217
|
+
"enable",
|
|
5218
|
+
"upgrade"
|
|
5219
|
+
])
|
|
5220
|
+
}).strict(),
|
|
4556
5221
|
z.object({
|
|
4557
5222
|
provider: z.enum([
|
|
4558
5223
|
"bitbucket",
|
|
@@ -4766,10 +5431,14 @@ const userEventSchema = z.object({
|
|
|
4766
5431
|
"observability-edge-requests",
|
|
4767
5432
|
"observability-error-rate",
|
|
4768
5433
|
"observability-function-invocations",
|
|
5434
|
+
"shortcut",
|
|
4769
5435
|
"speed-insights-cls",
|
|
4770
5436
|
"speed-insights-lcp",
|
|
4771
5437
|
"speed-insights-res"
|
|
4772
|
-
])
|
|
5438
|
+
]),
|
|
5439
|
+
config: z.object({
|
|
5440
|
+
url: z.string()
|
|
5441
|
+
}).optional()
|
|
4773
5442
|
})).optional(),
|
|
4774
5443
|
remoteCaching: z.object({
|
|
4775
5444
|
enabled: z.union([
|
|
@@ -4830,10 +5499,10 @@ const userEventSchema = z.object({
|
|
|
4830
5499
|
]).optional(),
|
|
4831
5500
|
customEnvironmentsPerProject: z.number().optional(),
|
|
4832
5501
|
security: z.object({
|
|
5502
|
+
rateLimit: z.number().optional(),
|
|
4833
5503
|
customRules: z.number().optional(),
|
|
4834
5504
|
ipBlocks: z.number().optional(),
|
|
4835
|
-
ipBypass: z.number().optional()
|
|
4836
|
-
rateLimit: z.number().optional()
|
|
5505
|
+
ipBypass: z.number().optional()
|
|
4837
5506
|
}).optional(),
|
|
4838
5507
|
bulkRedirectsFreeLimitOverride: z.number().optional(),
|
|
4839
5508
|
buildMachine: z.object({
|
|
@@ -4908,7 +5577,6 @@ const userEventSchema = z.object({
|
|
|
4908
5577
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
4909
5578
|
"EXPOSURE_CAP_EXCEEDED",
|
|
4910
5579
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
4911
|
-
"HOBBY_ALLOCATION_PAUSED",
|
|
4912
5580
|
"SUBSCRIPTION_CANCELED",
|
|
4913
5581
|
"SUBSCRIPTION_EXPIRED",
|
|
4914
5582
|
"UNPAID_INVOICE"
|
|
@@ -4954,55 +5622,7 @@ const userEventSchema = z.object({
|
|
|
4954
5622
|
"wafRateLimitRequest",
|
|
4955
5623
|
"webAnalyticsEvent"
|
|
4956
5624
|
]).optional(),
|
|
4957
|
-
|
|
4958
|
-
pausedUntil: z.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
|
|
4959
|
-
pausedAt: z.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
4960
|
-
triggers: z.array(z.object({
|
|
4961
|
-
allocation: z.enum([
|
|
4962
|
-
"analyticsUsage",
|
|
4963
|
-
"artifacts",
|
|
4964
|
-
"bandwidth",
|
|
4965
|
-
"blobDataTransfer",
|
|
4966
|
-
"blobTotalAdvancedRequests",
|
|
4967
|
-
"blobTotalAvgSizeInBytes",
|
|
4968
|
-
"blobTotalGetResponseObjectSizeInBytes",
|
|
4969
|
-
"blobTotalSimpleRequests",
|
|
4970
|
-
"connectDataTransfer",
|
|
4971
|
-
"dataCacheRead",
|
|
4972
|
-
"dataCacheWrite",
|
|
4973
|
-
"edgeConfigRead",
|
|
4974
|
-
"edgeConfigWrite",
|
|
4975
|
-
"edgeFunctionExecutionUnits",
|
|
4976
|
-
"edgeMiddlewareInvocations",
|
|
4977
|
-
"edgeRequest",
|
|
4978
|
-
"edgeRequestAdditionalCpuDuration",
|
|
4979
|
-
"elasticConcurrencyBuildSlots",
|
|
4980
|
-
"fastDataTransfer",
|
|
4981
|
-
"fastOriginTransfer",
|
|
4982
|
-
"fluidCpuDuration",
|
|
4983
|
-
"fluidDuration",
|
|
4984
|
-
"functionDuration",
|
|
4985
|
-
"functionInvocation",
|
|
4986
|
-
"imageOptimizationCacheRead",
|
|
4987
|
-
"imageOptimizationCacheWrite",
|
|
4988
|
-
"imageOptimizationTransformation",
|
|
4989
|
-
"logDrainsVolume",
|
|
4990
|
-
"monitoringMetric",
|
|
4991
|
-
"observabilityEvent",
|
|
4992
|
-
"onDemandConcurrencyMinutes",
|
|
4993
|
-
"runtimeCacheRead",
|
|
4994
|
-
"runtimeCacheWrite",
|
|
4995
|
-
"serverlessFunctionExecution",
|
|
4996
|
-
"sourceImages",
|
|
4997
|
-
"wafOwaspExcessBytes",
|
|
4998
|
-
"wafOwaspRequests",
|
|
4999
|
-
"wafRateLimitRequest",
|
|
5000
|
-
"webAnalyticsEvent"
|
|
5001
|
-
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
5002
|
-
usage: z.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
5003
|
-
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
5004
|
-
cohort: z.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
|
|
5005
|
-
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
5625
|
+
unpauseAt: z.number().optional().describe("Since September 2026. Set only by `billing-usage-alerts` for usage plans with a `blockDurationMs`; its presence marks a pause that expires on its own.")
|
|
5006
5626
|
}).nullish(),
|
|
5007
5627
|
stagingPrefix: z.string(),
|
|
5008
5628
|
sysToken: z.string(),
|
|
@@ -5105,197 +5725,236 @@ const userEventSchema = z.object({
|
|
|
5105
5725
|
analyticsUsage: z.object({
|
|
5106
5726
|
currentThreshold: z.number(),
|
|
5107
5727
|
warningAt: z.number().nullish(),
|
|
5108
|
-
blockedAt: z.number().nullish()
|
|
5728
|
+
blockedAt: z.number().nullish(),
|
|
5729
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5109
5730
|
}).optional(),
|
|
5110
5731
|
artifacts: z.object({
|
|
5111
5732
|
currentThreshold: z.number(),
|
|
5112
5733
|
warningAt: z.number().nullish(),
|
|
5113
|
-
blockedAt: z.number().nullish()
|
|
5734
|
+
blockedAt: z.number().nullish(),
|
|
5735
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5114
5736
|
}).optional(),
|
|
5115
5737
|
bandwidth: z.object({
|
|
5116
5738
|
currentThreshold: z.number(),
|
|
5117
5739
|
warningAt: z.number().nullish(),
|
|
5118
|
-
blockedAt: z.number().nullish()
|
|
5740
|
+
blockedAt: z.number().nullish(),
|
|
5741
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5119
5742
|
}).optional(),
|
|
5120
5743
|
blobTotalAdvancedRequests: z.object({
|
|
5121
5744
|
currentThreshold: z.number(),
|
|
5122
5745
|
warningAt: z.number().nullish(),
|
|
5123
|
-
blockedAt: z.number().nullish()
|
|
5746
|
+
blockedAt: z.number().nullish(),
|
|
5747
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5124
5748
|
}).optional(),
|
|
5125
5749
|
blobTotalAvgSizeInBytes: z.object({
|
|
5126
5750
|
currentThreshold: z.number(),
|
|
5127
5751
|
warningAt: z.number().nullish(),
|
|
5128
|
-
blockedAt: z.number().nullish()
|
|
5752
|
+
blockedAt: z.number().nullish(),
|
|
5753
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5129
5754
|
}).optional(),
|
|
5130
5755
|
blobTotalGetResponseObjectSizeInBytes: z.object({
|
|
5131
5756
|
currentThreshold: z.number(),
|
|
5132
5757
|
warningAt: z.number().nullish(),
|
|
5133
|
-
blockedAt: z.number().nullish()
|
|
5758
|
+
blockedAt: z.number().nullish(),
|
|
5759
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5134
5760
|
}).optional(),
|
|
5135
5761
|
blobTotalSimpleRequests: z.object({
|
|
5136
5762
|
currentThreshold: z.number(),
|
|
5137
5763
|
warningAt: z.number().nullish(),
|
|
5138
|
-
blockedAt: z.number().nullish()
|
|
5764
|
+
blockedAt: z.number().nullish(),
|
|
5765
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5139
5766
|
}).optional(),
|
|
5140
5767
|
connectDataTransfer: z.object({
|
|
5141
5768
|
currentThreshold: z.number(),
|
|
5142
5769
|
warningAt: z.number().nullish(),
|
|
5143
|
-
blockedAt: z.number().nullish()
|
|
5770
|
+
blockedAt: z.number().nullish(),
|
|
5771
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5144
5772
|
}).optional(),
|
|
5145
5773
|
dataCacheRead: z.object({
|
|
5146
5774
|
currentThreshold: z.number(),
|
|
5147
5775
|
warningAt: z.number().nullish(),
|
|
5148
|
-
blockedAt: z.number().nullish()
|
|
5776
|
+
blockedAt: z.number().nullish(),
|
|
5777
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5149
5778
|
}).optional(),
|
|
5150
5779
|
dataCacheWrite: z.object({
|
|
5151
5780
|
currentThreshold: z.number(),
|
|
5152
5781
|
warningAt: z.number().nullish(),
|
|
5153
|
-
blockedAt: z.number().nullish()
|
|
5782
|
+
blockedAt: z.number().nullish(),
|
|
5783
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5154
5784
|
}).optional(),
|
|
5155
5785
|
edgeConfigRead: z.object({
|
|
5156
5786
|
currentThreshold: z.number(),
|
|
5157
5787
|
warningAt: z.number().nullish(),
|
|
5158
|
-
blockedAt: z.number().nullish()
|
|
5788
|
+
blockedAt: z.number().nullish(),
|
|
5789
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5159
5790
|
}).optional(),
|
|
5160
5791
|
edgeConfigWrite: z.object({
|
|
5161
5792
|
currentThreshold: z.number(),
|
|
5162
5793
|
warningAt: z.number().nullish(),
|
|
5163
|
-
blockedAt: z.number().nullish()
|
|
5794
|
+
blockedAt: z.number().nullish(),
|
|
5795
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5164
5796
|
}).optional(),
|
|
5165
5797
|
edgeFunctionExecutionUnits: z.object({
|
|
5166
5798
|
currentThreshold: z.number(),
|
|
5167
5799
|
warningAt: z.number().nullish(),
|
|
5168
|
-
blockedAt: z.number().nullish()
|
|
5800
|
+
blockedAt: z.number().nullish(),
|
|
5801
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5169
5802
|
}).optional(),
|
|
5170
5803
|
edgeMiddlewareInvocations: z.object({
|
|
5171
5804
|
currentThreshold: z.number(),
|
|
5172
5805
|
warningAt: z.number().nullish(),
|
|
5173
|
-
blockedAt: z.number().nullish()
|
|
5806
|
+
blockedAt: z.number().nullish(),
|
|
5807
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5174
5808
|
}).optional(),
|
|
5175
5809
|
edgeRequestAdditionalCpuDuration: z.object({
|
|
5176
5810
|
currentThreshold: z.number(),
|
|
5177
5811
|
warningAt: z.number().nullish(),
|
|
5178
|
-
blockedAt: z.number().nullish()
|
|
5812
|
+
blockedAt: z.number().nullish(),
|
|
5813
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5179
5814
|
}).optional(),
|
|
5180
5815
|
edgeRequest: z.object({
|
|
5181
5816
|
currentThreshold: z.number(),
|
|
5182
5817
|
warningAt: z.number().nullish(),
|
|
5183
|
-
blockedAt: z.number().nullish()
|
|
5818
|
+
blockedAt: z.number().nullish(),
|
|
5819
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5184
5820
|
}).optional(),
|
|
5185
5821
|
elasticConcurrencyBuildSlots: z.object({
|
|
5186
5822
|
currentThreshold: z.number(),
|
|
5187
5823
|
warningAt: z.number().nullish(),
|
|
5188
|
-
blockedAt: z.number().nullish()
|
|
5824
|
+
blockedAt: z.number().nullish(),
|
|
5825
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5189
5826
|
}).optional(),
|
|
5190
5827
|
fastDataTransfer: z.object({
|
|
5191
5828
|
currentThreshold: z.number(),
|
|
5192
5829
|
warningAt: z.number().nullish(),
|
|
5193
|
-
blockedAt: z.number().nullish()
|
|
5830
|
+
blockedAt: z.number().nullish(),
|
|
5831
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5194
5832
|
}).optional(),
|
|
5195
5833
|
fastOriginTransfer: z.object({
|
|
5196
5834
|
currentThreshold: z.number(),
|
|
5197
5835
|
warningAt: z.number().nullish(),
|
|
5198
|
-
blockedAt: z.number().nullish()
|
|
5836
|
+
blockedAt: z.number().nullish(),
|
|
5837
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5199
5838
|
}).optional(),
|
|
5200
5839
|
fluidCpuDuration: z.object({
|
|
5201
5840
|
currentThreshold: z.number(),
|
|
5202
5841
|
warningAt: z.number().nullish(),
|
|
5203
|
-
blockedAt: z.number().nullish()
|
|
5842
|
+
blockedAt: z.number().nullish(),
|
|
5843
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5204
5844
|
}).optional(),
|
|
5205
5845
|
fluidDuration: z.object({
|
|
5206
5846
|
currentThreshold: z.number(),
|
|
5207
5847
|
warningAt: z.number().nullish(),
|
|
5208
|
-
blockedAt: z.number().nullish()
|
|
5848
|
+
blockedAt: z.number().nullish(),
|
|
5849
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5209
5850
|
}).optional(),
|
|
5210
5851
|
functionDuration: z.object({
|
|
5211
5852
|
currentThreshold: z.number(),
|
|
5212
5853
|
warningAt: z.number().nullish(),
|
|
5213
|
-
blockedAt: z.number().nullish()
|
|
5854
|
+
blockedAt: z.number().nullish(),
|
|
5855
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5214
5856
|
}).optional(),
|
|
5215
5857
|
functionInvocation: z.object({
|
|
5216
5858
|
currentThreshold: z.number(),
|
|
5217
5859
|
warningAt: z.number().nullish(),
|
|
5218
|
-
blockedAt: z.number().nullish()
|
|
5860
|
+
blockedAt: z.number().nullish(),
|
|
5861
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5219
5862
|
}).optional(),
|
|
5220
5863
|
imageOptimizationCacheRead: z.object({
|
|
5221
5864
|
currentThreshold: z.number(),
|
|
5222
5865
|
warningAt: z.number().nullish(),
|
|
5223
|
-
blockedAt: z.number().nullish()
|
|
5866
|
+
blockedAt: z.number().nullish(),
|
|
5867
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5224
5868
|
}).optional(),
|
|
5225
5869
|
imageOptimizationCacheWrite: z.object({
|
|
5226
5870
|
currentThreshold: z.number(),
|
|
5227
5871
|
warningAt: z.number().nullish(),
|
|
5228
|
-
blockedAt: z.number().nullish()
|
|
5872
|
+
blockedAt: z.number().nullish(),
|
|
5873
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5229
5874
|
}).optional(),
|
|
5230
5875
|
imageOptimizationTransformation: z.object({
|
|
5231
5876
|
currentThreshold: z.number(),
|
|
5232
5877
|
warningAt: z.number().nullish(),
|
|
5233
|
-
blockedAt: z.number().nullish()
|
|
5878
|
+
blockedAt: z.number().nullish(),
|
|
5879
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5234
5880
|
}).optional(),
|
|
5235
5881
|
logDrainsVolume: z.object({
|
|
5236
5882
|
currentThreshold: z.number(),
|
|
5237
5883
|
warningAt: z.number().nullish(),
|
|
5238
|
-
blockedAt: z.number().nullish()
|
|
5884
|
+
blockedAt: z.number().nullish(),
|
|
5885
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5239
5886
|
}).optional(),
|
|
5240
5887
|
monitoringMetric: z.object({
|
|
5241
5888
|
currentThreshold: z.number(),
|
|
5242
5889
|
warningAt: z.number().nullish(),
|
|
5243
|
-
blockedAt: z.number().nullish()
|
|
5890
|
+
blockedAt: z.number().nullish(),
|
|
5891
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5244
5892
|
}).optional(),
|
|
5245
5893
|
blobDataTransfer: z.object({
|
|
5246
5894
|
currentThreshold: z.number(),
|
|
5247
5895
|
warningAt: z.number().nullish(),
|
|
5248
|
-
blockedAt: z.number().nullish()
|
|
5896
|
+
blockedAt: z.number().nullish(),
|
|
5897
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5249
5898
|
}).optional(),
|
|
5250
5899
|
observabilityEvent: z.object({
|
|
5251
5900
|
currentThreshold: z.number(),
|
|
5252
5901
|
warningAt: z.number().nullish(),
|
|
5253
|
-
blockedAt: z.number().nullish()
|
|
5902
|
+
blockedAt: z.number().nullish(),
|
|
5903
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5254
5904
|
}).optional(),
|
|
5255
5905
|
onDemandConcurrencyMinutes: z.object({
|
|
5256
5906
|
currentThreshold: z.number(),
|
|
5257
5907
|
warningAt: z.number().nullish(),
|
|
5258
|
-
blockedAt: z.number().nullish()
|
|
5908
|
+
blockedAt: z.number().nullish(),
|
|
5909
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5259
5910
|
}).optional(),
|
|
5260
5911
|
runtimeCacheRead: z.object({
|
|
5261
5912
|
currentThreshold: z.number(),
|
|
5262
5913
|
warningAt: z.number().nullish(),
|
|
5263
|
-
blockedAt: z.number().nullish()
|
|
5914
|
+
blockedAt: z.number().nullish(),
|
|
5915
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5264
5916
|
}).optional(),
|
|
5265
5917
|
runtimeCacheWrite: z.object({
|
|
5266
5918
|
currentThreshold: z.number(),
|
|
5267
5919
|
warningAt: z.number().nullish(),
|
|
5268
|
-
blockedAt: z.number().nullish()
|
|
5920
|
+
blockedAt: z.number().nullish(),
|
|
5921
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5269
5922
|
}).optional(),
|
|
5270
5923
|
serverlessFunctionExecution: z.object({
|
|
5271
5924
|
currentThreshold: z.number(),
|
|
5272
5925
|
warningAt: z.number().nullish(),
|
|
5273
|
-
blockedAt: z.number().nullish()
|
|
5926
|
+
blockedAt: z.number().nullish(),
|
|
5927
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5274
5928
|
}).optional(),
|
|
5275
5929
|
sourceImages: z.object({
|
|
5276
5930
|
currentThreshold: z.number(),
|
|
5277
5931
|
warningAt: z.number().nullish(),
|
|
5278
|
-
blockedAt: z.number().nullish()
|
|
5932
|
+
blockedAt: z.number().nullish(),
|
|
5933
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5279
5934
|
}).optional(),
|
|
5280
5935
|
wafOwaspExcessBytes: z.object({
|
|
5281
5936
|
currentThreshold: z.number(),
|
|
5282
5937
|
warningAt: z.number().nullish(),
|
|
5283
|
-
blockedAt: z.number().nullish()
|
|
5938
|
+
blockedAt: z.number().nullish(),
|
|
5939
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5284
5940
|
}).optional(),
|
|
5285
5941
|
wafOwaspRequests: z.object({
|
|
5286
5942
|
currentThreshold: z.number(),
|
|
5287
5943
|
warningAt: z.number().nullish(),
|
|
5288
|
-
blockedAt: z.number().nullish()
|
|
5944
|
+
blockedAt: z.number().nullish(),
|
|
5945
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5289
5946
|
}).optional(),
|
|
5290
5947
|
wafRateLimitRequest: z.object({
|
|
5291
5948
|
currentThreshold: z.number(),
|
|
5292
5949
|
warningAt: z.number().nullish(),
|
|
5293
|
-
blockedAt: z.number().nullish()
|
|
5950
|
+
blockedAt: z.number().nullish(),
|
|
5951
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5294
5952
|
}).optional(),
|
|
5295
5953
|
webAnalyticsEvent: z.object({
|
|
5296
5954
|
currentThreshold: z.number(),
|
|
5297
5955
|
warningAt: z.number().nullish(),
|
|
5298
|
-
blockedAt: z.number().nullish()
|
|
5956
|
+
blockedAt: z.number().nullish(),
|
|
5957
|
+
blockGracePeriodStartedAt: z.number().nullish()
|
|
5299
5958
|
}).optional()
|
|
5300
5959
|
}).optional(),
|
|
5301
5960
|
overageMetadata: z.object({
|
|
@@ -5304,12 +5963,7 @@ const userEventSchema = z.object({
|
|
|
5304
5963
|
weeklyOverageSummaryEmailSentAt: z.number().optional().describe("Tracks the last time we sent a weekly summary email."),
|
|
5305
5964
|
overageSummaryExpiresAt: z.number().optional().describe("Tracks when the overage summary email will stop auto-sending. We currently lock the user into email for a month after the last on-demand usage."),
|
|
5306
5965
|
increasedOnDemandEmailSentAt: z.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
|
|
5307
|
-
increasedOnDemandEmailAttemptedAt: z.number().optional().describe("Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day.")
|
|
5308
|
-
hobbyPolicyNoticeSlackSentAt: z.number().optional().describe("Tracks when the new-Hobby-policy notice was reported for this owner. Reported at most once per owner, ever."),
|
|
5309
|
-
hobbyWarningV2SlackSentAt: z.number().optional().describe("Tracks the last time a `warningThresholdsV2` crossing was reported for this owner. Hobby has no billing period, so this re-arms on the same rolling window the service already uses for Hobby alerts."),
|
|
5310
|
-
hobbyWarningV2At100SlackSentAt: z.number().optional().describe("Tracks the last time the 100% `warningThresholdsV2` crossing was reported for this owner. This is separate so a recent lower warning does not suppress the full-allocation warning. It also starts the team-wide 24-hour grace period before a soft pause."),
|
|
5311
|
-
hobbyPauseNoticeSlackSentAt: z.number().optional().describe("Tracks the last time a `blockThresholdV2` breach was reported for this owner. Re-arms on the same rolling window as `hobbyWarningV2SlackSentAt`."),
|
|
5312
|
-
hobbyPolicySlackThreadTs: z.string().optional().describe("Slack `ts` of the thread root holding this owner's new-Hobby-policy alerts. Every later alert for the owner is posted as a reply to it, so the channel carries one entry per owner rather than one per alert. Replaced if Slack reports the root as gone.")
|
|
5966
|
+
increasedOnDemandEmailAttemptedAt: z.number().optional().describe("Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day.")
|
|
5313
5967
|
}).optional().describe("Contains the timestamps for usage summary emails."),
|
|
5314
5968
|
speedInsightsFreeUsageAlert: z.object({
|
|
5315
5969
|
currentThreshold: z.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
|
|
@@ -5645,6 +6299,16 @@ const userEventSchema = z.object({
|
|
|
5645
6299
|
"limits_exceeded"
|
|
5646
6300
|
])
|
|
5647
6301
|
}).optional(),
|
|
6302
|
+
sandboxStorage: z.object({
|
|
6303
|
+
updatedAt: z.number(),
|
|
6304
|
+
blockedFrom: z.number().optional(),
|
|
6305
|
+
blockedUntil: z.number().optional(),
|
|
6306
|
+
blockReason: z.enum([
|
|
6307
|
+
"admin_override",
|
|
6308
|
+
"hard_blocked",
|
|
6309
|
+
"limits_exceeded"
|
|
6310
|
+
])
|
|
6311
|
+
}).optional(),
|
|
5648
6312
|
vcr: z.object({
|
|
5649
6313
|
updatedAt: z.number(),
|
|
5650
6314
|
blockedFrom: z.number().optional(),
|
|
@@ -5823,7 +6487,7 @@ const userEventSchema = z.object({
|
|
|
5823
6487
|
integrationSlug: z.string(),
|
|
5824
6488
|
integrationProductSlug: z.string(),
|
|
5825
6489
|
configurationId: z.string(),
|
|
5826
|
-
|
|
6490
|
+
errorCode: z.string().optional(),
|
|
5827
6491
|
requestKind: z.enum([
|
|
5828
6492
|
"raw_commands"
|
|
5829
6493
|
]),
|
|
@@ -5831,8 +6495,11 @@ const userEventSchema = z.object({
|
|
|
5831
6495
|
z.literal(false),
|
|
5832
6496
|
z.literal(true)
|
|
5833
6497
|
]),
|
|
5834
|
-
commands: z.array(z.
|
|
5835
|
-
|
|
6498
|
+
commands: z.array(z.object({
|
|
6499
|
+
command: z.string(),
|
|
6500
|
+
errorCode: z.string().optional()
|
|
6501
|
+
})),
|
|
6502
|
+
errorIndex: z.number().optional()
|
|
5836
6503
|
}).strict(),
|
|
5837
6504
|
z.object({
|
|
5838
6505
|
resourceId: z.string(),
|
|
@@ -5840,7 +6507,7 @@ const userEventSchema = z.object({
|
|
|
5840
6507
|
integrationSlug: z.string(),
|
|
5841
6508
|
integrationProductSlug: z.string(),
|
|
5842
6509
|
configurationId: z.string(),
|
|
5843
|
-
|
|
6510
|
+
errorCode: z.string().optional(),
|
|
5844
6511
|
requestKind: z.enum([
|
|
5845
6512
|
"list_keys"
|
|
5846
6513
|
]),
|
|
@@ -5853,7 +6520,7 @@ const userEventSchema = z.object({
|
|
|
5853
6520
|
integrationSlug: z.string(),
|
|
5854
6521
|
integrationProductSlug: z.string(),
|
|
5855
6522
|
configurationId: z.string(),
|
|
5856
|
-
|
|
6523
|
+
errorCode: z.string().optional(),
|
|
5857
6524
|
requestKind: z.enum([
|
|
5858
6525
|
"get_keys_metadata"
|
|
5859
6526
|
]),
|
|
@@ -5865,7 +6532,7 @@ const userEventSchema = z.object({
|
|
|
5865
6532
|
integrationSlug: z.string(),
|
|
5866
6533
|
integrationProductSlug: z.string(),
|
|
5867
6534
|
configurationId: z.string(),
|
|
5868
|
-
|
|
6535
|
+
errorCode: z.string().optional(),
|
|
5869
6536
|
requestKind: z.enum([
|
|
5870
6537
|
"get_key_data"
|
|
5871
6538
|
]),
|
|
@@ -6279,6 +6946,19 @@ const userEventSchema = z.object({
|
|
|
6279
6946
|
"platform"
|
|
6280
6947
|
])
|
|
6281
6948
|
}).strict(),
|
|
6949
|
+
z.object({
|
|
6950
|
+
organizationId: z.string(),
|
|
6951
|
+
teamId: z.string(),
|
|
6952
|
+
teamName: z.string(),
|
|
6953
|
+
previousMode: z.enum([
|
|
6954
|
+
"organization",
|
|
6955
|
+
"team"
|
|
6956
|
+
]),
|
|
6957
|
+
mode: z.enum([
|
|
6958
|
+
"organization",
|
|
6959
|
+
"team"
|
|
6960
|
+
])
|
|
6961
|
+
}).strict(),
|
|
6282
6962
|
z.object({
|
|
6283
6963
|
ownerId: z.string(),
|
|
6284
6964
|
source: z.string(),
|
|
@@ -6695,6 +7375,7 @@ const userEventSchema = z.object({
|
|
|
6695
7375
|
previousPreviewDeploymentSuffix: z.string().nullish()
|
|
6696
7376
|
}).strict(),
|
|
6697
7377
|
z.object({
|
|
7378
|
+
projectName: z.string().optional(),
|
|
6698
7379
|
endpoint: z.object({
|
|
6699
7380
|
id: z.string(),
|
|
6700
7381
|
name: z.string(),
|
|
@@ -6705,6 +7386,7 @@ const userEventSchema = z.object({
|
|
|
6705
7386
|
})
|
|
6706
7387
|
}).strict(),
|
|
6707
7388
|
z.object({
|
|
7389
|
+
projectName: z.string().optional(),
|
|
6708
7390
|
privateLinkEndpoint: z.object({
|
|
6709
7391
|
id: z.string(),
|
|
6710
7392
|
name: z.string()
|
|
@@ -6712,6 +7394,7 @@ const userEventSchema = z.object({
|
|
|
6712
7394
|
projectId: z.string()
|
|
6713
7395
|
}).strict(),
|
|
6714
7396
|
z.object({
|
|
7397
|
+
projectName: z.string().optional(),
|
|
6715
7398
|
prev: z.object({
|
|
6716
7399
|
id: z.string(),
|
|
6717
7400
|
name: z.string(),
|
|
@@ -6730,6 +7413,7 @@ const userEventSchema = z.object({
|
|
|
6730
7413
|
})
|
|
6731
7414
|
}).strict(),
|
|
6732
7415
|
z.object({
|
|
7416
|
+
projectName: z.string().optional(),
|
|
6733
7417
|
privateLinkEndpoint: z.object({
|
|
6734
7418
|
id: z.string(),
|
|
6735
7419
|
name: z.string(),
|
|
@@ -6872,6 +7556,7 @@ const userEventSchema = z.object({
|
|
|
6872
7556
|
"observability-function-invocations",
|
|
6873
7557
|
"online",
|
|
6874
7558
|
"res",
|
|
7559
|
+
"shortcut",
|
|
6875
7560
|
"speed-insights-cls",
|
|
6876
7561
|
"speed-insights-lcp",
|
|
6877
7562
|
"speed-insights-res"
|
|
@@ -7099,6 +7784,7 @@ const userEventSchema = z.object({
|
|
|
7099
7784
|
"github-custom-host",
|
|
7100
7785
|
"github-limited",
|
|
7101
7786
|
"gitlab",
|
|
7787
|
+
"v0",
|
|
7102
7788
|
"vercel"
|
|
7103
7789
|
]),
|
|
7104
7790
|
gitRepoId: z.string(),
|
|
@@ -7112,6 +7798,7 @@ const userEventSchema = z.object({
|
|
|
7112
7798
|
"github-custom-host",
|
|
7113
7799
|
"github-limited",
|
|
7114
7800
|
"gitlab",
|
|
7801
|
+
"v0",
|
|
7115
7802
|
"vercel"
|
|
7116
7803
|
]),
|
|
7117
7804
|
gitRepoId: z.string(),
|
|
@@ -7128,6 +7815,7 @@ const userEventSchema = z.object({
|
|
|
7128
7815
|
"github-custom-host",
|
|
7129
7816
|
"github-limited",
|
|
7130
7817
|
"gitlab",
|
|
7818
|
+
"v0",
|
|
7131
7819
|
"vercel"
|
|
7132
7820
|
]),
|
|
7133
7821
|
gitRepoId: z.string(),
|
|
@@ -7494,8 +8182,14 @@ const userEventSchema = z.object({
|
|
|
7494
8182
|
z.object({
|
|
7495
8183
|
projectId: z.string(),
|
|
7496
8184
|
projectName: z.string(),
|
|
7497
|
-
previous: z.object({
|
|
7498
|
-
|
|
8185
|
+
previous: z.object({
|
|
8186
|
+
gitSources: z.array(z.string()).nullish(),
|
|
8187
|
+
deploymentSources: z.array(z.string()).nullish()
|
|
8188
|
+
}).nullable(),
|
|
8189
|
+
next: z.object({
|
|
8190
|
+
gitSources: z.array(z.string()).nullish(),
|
|
8191
|
+
deploymentSources: z.array(z.string()).nullish()
|
|
8192
|
+
}).nullable()
|
|
7499
8193
|
}).strict(),
|
|
7500
8194
|
z.object({
|
|
7501
8195
|
projectId: z.string(),
|
|
@@ -7726,6 +8420,10 @@ const userEventSchema = z.object({
|
|
|
7726
8420
|
z.object({
|
|
7727
8421
|
projectId: z.string(),
|
|
7728
8422
|
projectName: z.string(),
|
|
8423
|
+
enableVercelCiSameRepository: z.union([
|
|
8424
|
+
z.literal(false),
|
|
8425
|
+
z.literal(true)
|
|
8426
|
+
]).optional(),
|
|
7729
8427
|
addedProjects: z.array(z.object({
|
|
7730
8428
|
id: z.string(),
|
|
7731
8429
|
name: z.string()
|
|
@@ -7993,6 +8691,12 @@ const userEventSchema = z.object({
|
|
|
7993
8691
|
"plus",
|
|
7994
8692
|
"unbundled"
|
|
7995
8693
|
]).optional().describe("The acive pricing plan the team is billed with"),
|
|
8694
|
+
scope: z.enum([
|
|
8695
|
+
"organization",
|
|
8696
|
+
"project",
|
|
8697
|
+
"team"
|
|
8698
|
+
]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
|
|
8699
|
+
scopeId: z.string().optional().describe("Project id when `scope` is `project`."),
|
|
7996
8700
|
teamId: z.string().describe("Partition key"),
|
|
7997
8701
|
id: z.string().describe("Sort key that needs to be unique per teamId")
|
|
7998
8702
|
}).describe("Represents a budget for tracking and notifying teams on their spending.")
|
|
@@ -8028,6 +8732,12 @@ const userEventSchema = z.object({
|
|
|
8028
8732
|
"plus",
|
|
8029
8733
|
"unbundled"
|
|
8030
8734
|
]).optional().describe("The acive pricing plan the team is billed with"),
|
|
8735
|
+
scope: z.enum([
|
|
8736
|
+
"organization",
|
|
8737
|
+
"project",
|
|
8738
|
+
"team"
|
|
8739
|
+
]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
|
|
8740
|
+
scopeId: z.string().optional().describe("Project id when `scope` is `project`."),
|
|
8031
8741
|
teamId: z.string().describe("Partition key"),
|
|
8032
8742
|
id: z.string().describe("Sort key that needs to be unique per teamId")
|
|
8033
8743
|
}).describe("Represents a budget for tracking and notifying teams on their spending.")
|
|
@@ -8062,6 +8772,12 @@ const userEventSchema = z.object({
|
|
|
8062
8772
|
"plus",
|
|
8063
8773
|
"unbundled"
|
|
8064
8774
|
]).optional().describe("The acive pricing plan the team is billed with"),
|
|
8775
|
+
scope: z.enum([
|
|
8776
|
+
"organization",
|
|
8777
|
+
"project",
|
|
8778
|
+
"team"
|
|
8779
|
+
]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
|
|
8780
|
+
scopeId: z.string().optional().describe("Project id when `scope` is `project`."),
|
|
8065
8781
|
teamId: z.string().describe("Partition key"),
|
|
8066
8782
|
id: z.string().describe("Sort key that needs to be unique per teamId")
|
|
8067
8783
|
}).describe("Represents a budget for tracking and notifying teams on their spending."),
|
|
@@ -8097,6 +8813,12 @@ const userEventSchema = z.object({
|
|
|
8097
8813
|
"plus",
|
|
8098
8814
|
"unbundled"
|
|
8099
8815
|
]).optional().describe("The acive pricing plan the team is billed with"),
|
|
8816
|
+
scope: z.enum([
|
|
8817
|
+
"organization",
|
|
8818
|
+
"project",
|
|
8819
|
+
"team"
|
|
8820
|
+
]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
|
|
8821
|
+
scopeId: z.string().optional().describe("Project id when `scope` is `project`."),
|
|
8100
8822
|
teamId: z.string().describe("Partition key"),
|
|
8101
8823
|
id: z.string().describe("Sort key that needs to be unique per teamId")
|
|
8102
8824
|
}).describe("Represents a budget for tracking and notifying teams on their spending."),
|
|
@@ -8129,6 +8851,12 @@ const userEventSchema = z.object({
|
|
|
8129
8851
|
"plus",
|
|
8130
8852
|
"unbundled"
|
|
8131
8853
|
]).optional().describe("The acive pricing plan the team is billed with"),
|
|
8854
|
+
scope: z.enum([
|
|
8855
|
+
"organization",
|
|
8856
|
+
"project",
|
|
8857
|
+
"team"
|
|
8858
|
+
]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
|
|
8859
|
+
scopeId: z.string().optional().describe("Project id when `scope` is `project`."),
|
|
8132
8860
|
teamId: z.string().describe("Partition key"),
|
|
8133
8861
|
id: z.string().describe("Sort key that needs to be unique per teamId")
|
|
8134
8862
|
}).optional().describe("Represents a budget for tracking and notifying teams on their spending."),
|
|
@@ -8357,6 +9085,7 @@ const userEventSchema = z.object({
|
|
|
8357
9085
|
"long-build-duration",
|
|
8358
9086
|
"oom-failure",
|
|
8359
9087
|
"plan-change",
|
|
9088
|
+
"project-transfer",
|
|
8360
9089
|
"short-build-duration",
|
|
8361
9090
|
"sustained-high-cpu"
|
|
8362
9091
|
]).optional()
|
|
@@ -8391,8 +9120,14 @@ const userEventSchema = z.object({
|
|
|
8391
9120
|
timestamp: z.number().optional()
|
|
8392
9121
|
}).strict(),
|
|
8393
9122
|
z.object({
|
|
8394
|
-
previous: z.object({
|
|
8395
|
-
|
|
9123
|
+
previous: z.object({
|
|
9124
|
+
gitSources: z.array(z.string()).nullish(),
|
|
9125
|
+
deploymentSources: z.array(z.string()).nullish()
|
|
9126
|
+
}).nullable(),
|
|
9127
|
+
next: z.object({
|
|
9128
|
+
gitSources: z.array(z.string()).nullish(),
|
|
9129
|
+
deploymentSources: z.array(z.string()).nullish()
|
|
9130
|
+
}).nullable()
|
|
8396
9131
|
}).strict(),
|
|
8397
9132
|
z.object({
|
|
8398
9133
|
enabled: z.union([
|
|
@@ -9227,6 +9962,7 @@ const userEventSchema = z.object({
|
|
|
9227
9962
|
z.object({
|
|
9228
9963
|
deploymentId: z.string(),
|
|
9229
9964
|
projectId: z.string(),
|
|
9965
|
+
projectName: z.string().optional(),
|
|
9230
9966
|
runId: z.string()
|
|
9231
9967
|
}).strict(),
|
|
9232
9968
|
z.object({
|
|
@@ -9421,6 +10157,7 @@ const userEventSchema = z.object({
|
|
|
9421
10157
|
teamId: z.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
|
|
9422
10158
|
teamSlug: z.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
|
|
9423
10159
|
projectId: z.string().optional().describe("Present when `scope` is `'project'`."),
|
|
10160
|
+
projectName: z.string().optional().describe("Present when `scope` is `'project'`."),
|
|
9424
10161
|
projectScope: z.enum([
|
|
9425
10162
|
"account",
|
|
9426
10163
|
"project-only"
|
|
@@ -9575,8 +10312,10 @@ const listEventTypeSchema = z.object({
|
|
|
9575
10312
|
"ai-gateway-byok-credential-created",
|
|
9576
10313
|
"ai-gateway-byok-credential-deleted",
|
|
9577
10314
|
"ai-gateway-byok-credential-updated",
|
|
10315
|
+
"ai-gateway-byok-model-mappings-updated",
|
|
9578
10316
|
"ai-gateway-credits-purchased",
|
|
9579
10317
|
"ai-gateway-guardrails-updated",
|
|
10318
|
+
"ai-gateway-hipaa-compliance-toggled",
|
|
9580
10319
|
"ai-gateway-inference-regions-updated",
|
|
9581
10320
|
"ai-gateway-model-allowlist-models-updated",
|
|
9582
10321
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -9586,6 +10325,7 @@ const listEventTypeSchema = z.object({
|
|
|
9586
10325
|
"ai-gateway-private-provider-created",
|
|
9587
10326
|
"ai-gateway-private-provider-deleted",
|
|
9588
10327
|
"ai-gateway-private-provider-updated",
|
|
10328
|
+
"ai-gateway-prompt-training-opt-out-toggled",
|
|
9589
10329
|
"ai-gateway-provider-allowlist-providers-updated",
|
|
9590
10330
|
"ai-gateway-provider-allowlist-toggled",
|
|
9591
10331
|
"ai-gateway-rule-created",
|
|
@@ -9599,8 +10339,10 @@ const listEventTypeSchema = z.object({
|
|
|
9599
10339
|
"ai-gateway-transcripts-retention-updated",
|
|
9600
10340
|
"ai-gateway-virtual-model-config-archived",
|
|
9601
10341
|
"ai-gateway-virtual-model-config-created",
|
|
10342
|
+
"ai-gateway-virtual-model-config-deleted",
|
|
9602
10343
|
"ai-gateway-virtual-model-config-restored",
|
|
9603
10344
|
"ai-gateway-virtual-model-config-updated",
|
|
10345
|
+
"ai-gateway-zero-data-retention-toggled",
|
|
9604
10346
|
"ai-omniagent",
|
|
9605
10347
|
"alert-investigation-project-allowlist-updated",
|
|
9606
10348
|
"alert-rule-created",
|
|
@@ -9629,6 +10371,7 @@ const listEventTypeSchema = z.object({
|
|
|
9629
10371
|
"authorize-git-deployment",
|
|
9630
10372
|
"auto-expose-system-envs",
|
|
9631
10373
|
"avatar",
|
|
10374
|
+
"billing-settings-updated",
|
|
9632
10375
|
"bulk-redirects-settings-updated",
|
|
9633
10376
|
"bulk-redirects-version-promoted",
|
|
9634
10377
|
"bulk-redirects-version-restored",
|
|
@@ -9789,6 +10532,7 @@ const listEventTypeSchema = z.object({
|
|
|
9789
10532
|
"flags-segment",
|
|
9790
10533
|
"flags-settings",
|
|
9791
10534
|
"flags-transferred",
|
|
10535
|
+
"flat-rate-cdn-auto-upgrade-consent",
|
|
9792
10536
|
"git-integration-repo-push",
|
|
9793
10537
|
"git_account_integration_link_added",
|
|
9794
10538
|
"global-config-backup-restored",
|
|
@@ -9873,6 +10617,7 @@ const listEventTypeSchema = z.object({
|
|
|
9873
10617
|
"organization-team-add",
|
|
9874
10618
|
"organization-team-create",
|
|
9875
10619
|
"organization-team-delete",
|
|
10620
|
+
"organization-team-sso-update",
|
|
9876
10621
|
"owner-blocked",
|
|
9877
10622
|
"owner-soft-blocked",
|
|
9878
10623
|
"owner-soft-unblocked",
|
|
@@ -9952,6 +10697,12 @@ const listEventTypeSchema = z.object({
|
|
|
9952
10697
|
"project-git-commit-comments-toggled",
|
|
9953
10698
|
"project-git-commit-status-toggled",
|
|
9954
10699
|
"project-git-create-deployments-toggled",
|
|
10700
|
+
"project-git-credential-bound-created",
|
|
10701
|
+
"project-git-credential-bound-deleted",
|
|
10702
|
+
"project-git-credential-bound-updated",
|
|
10703
|
+
"project-git-credential-grant-created",
|
|
10704
|
+
"project-git-credential-grant-deleted",
|
|
10705
|
+
"project-git-credential-grant-updated",
|
|
9955
10706
|
"project-git-fork-protection-updated",
|
|
9956
10707
|
"project-git-lfs-toggled",
|
|
9957
10708
|
"project-git-pr-comments-toggled",
|
|
@@ -10044,6 +10795,8 @@ const listEventTypeSchema = z.object({
|
|
|
10044
10795
|
"shared-env-variable-create",
|
|
10045
10796
|
"shared-env-variable-delete",
|
|
10046
10797
|
"shared-env-variable-read",
|
|
10798
|
+
"shared-env-variable-repo-link",
|
|
10799
|
+
"shared-env-variable-repo-unlink",
|
|
10047
10800
|
"shared-env-variable-update",
|
|
10048
10801
|
"show-ip-addresses",
|
|
10049
10802
|
"signup",
|
|
@@ -10074,6 +10827,7 @@ const listEventTypeSchema = z.object({
|
|
|
10074
10827
|
"storage-update-project-connection",
|
|
10075
10828
|
"storage-upgrade-project-connection-to-oidc",
|
|
10076
10829
|
"storage-view-secret",
|
|
10830
|
+
"strict-connectors",
|
|
10077
10831
|
"strict-deployment-protection-settings",
|
|
10078
10832
|
"strict-password-protection-settings",
|
|
10079
10833
|
"strict-shareable-links",
|
|
@@ -10233,7 +10987,9 @@ const listEventTypeSchema = z.object({
|
|
|
10233
10987
|
"workflow"
|
|
10234
10988
|
])).describe("Categories that group this event type with related event types.").meta({
|
|
10235
10989
|
examples: [
|
|
10236
|
-
|
|
10990
|
+
[
|
|
10991
|
+
"deployment"
|
|
10992
|
+
]
|
|
10237
10993
|
]
|
|
10238
10994
|
}),
|
|
10239
10995
|
deprecated: z.union([
|
|
@@ -10273,8 +11029,10 @@ const listEventTypeSchema = z.object({
|
|
|
10273
11029
|
"ai-gateway-byok-credential-created",
|
|
10274
11030
|
"ai-gateway-byok-credential-deleted",
|
|
10275
11031
|
"ai-gateway-byok-credential-updated",
|
|
11032
|
+
"ai-gateway-byok-model-mappings-updated",
|
|
10276
11033
|
"ai-gateway-credits-purchased",
|
|
10277
11034
|
"ai-gateway-guardrails-updated",
|
|
11035
|
+
"ai-gateway-hipaa-compliance-toggled",
|
|
10278
11036
|
"ai-gateway-inference-regions-updated",
|
|
10279
11037
|
"ai-gateway-model-allowlist-models-updated",
|
|
10280
11038
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -10284,6 +11042,7 @@ const listEventTypeSchema = z.object({
|
|
|
10284
11042
|
"ai-gateway-private-provider-created",
|
|
10285
11043
|
"ai-gateway-private-provider-deleted",
|
|
10286
11044
|
"ai-gateway-private-provider-updated",
|
|
11045
|
+
"ai-gateway-prompt-training-opt-out-toggled",
|
|
10287
11046
|
"ai-gateway-provider-allowlist-providers-updated",
|
|
10288
11047
|
"ai-gateway-provider-allowlist-toggled",
|
|
10289
11048
|
"ai-gateway-rule-created",
|
|
@@ -10297,8 +11056,10 @@ const listEventTypeSchema = z.object({
|
|
|
10297
11056
|
"ai-gateway-transcripts-retention-updated",
|
|
10298
11057
|
"ai-gateway-virtual-model-config-archived",
|
|
10299
11058
|
"ai-gateway-virtual-model-config-created",
|
|
11059
|
+
"ai-gateway-virtual-model-config-deleted",
|
|
10300
11060
|
"ai-gateway-virtual-model-config-restored",
|
|
10301
11061
|
"ai-gateway-virtual-model-config-updated",
|
|
11062
|
+
"ai-gateway-zero-data-retention-toggled",
|
|
10302
11063
|
"ai-omniagent",
|
|
10303
11064
|
"alert-investigation-project-allowlist-updated",
|
|
10304
11065
|
"alert-rule-created",
|
|
@@ -10327,6 +11088,7 @@ const listEventTypeSchema = z.object({
|
|
|
10327
11088
|
"authorize-git-deployment",
|
|
10328
11089
|
"auto-expose-system-envs",
|
|
10329
11090
|
"avatar",
|
|
11091
|
+
"billing-settings-updated",
|
|
10330
11092
|
"bulk-redirects-settings-updated",
|
|
10331
11093
|
"bulk-redirects-version-promoted",
|
|
10332
11094
|
"bulk-redirects-version-restored",
|
|
@@ -10487,6 +11249,7 @@ const listEventTypeSchema = z.object({
|
|
|
10487
11249
|
"flags-segment",
|
|
10488
11250
|
"flags-settings",
|
|
10489
11251
|
"flags-transferred",
|
|
11252
|
+
"flat-rate-cdn-auto-upgrade-consent",
|
|
10490
11253
|
"git-integration-repo-push",
|
|
10491
11254
|
"git_account_integration_link_added",
|
|
10492
11255
|
"global-config-backup-restored",
|
|
@@ -10571,6 +11334,7 @@ const listEventTypeSchema = z.object({
|
|
|
10571
11334
|
"organization-team-add",
|
|
10572
11335
|
"organization-team-create",
|
|
10573
11336
|
"organization-team-delete",
|
|
11337
|
+
"organization-team-sso-update",
|
|
10574
11338
|
"owner-blocked",
|
|
10575
11339
|
"owner-soft-blocked",
|
|
10576
11340
|
"owner-soft-unblocked",
|
|
@@ -10650,6 +11414,12 @@ const listEventTypeSchema = z.object({
|
|
|
10650
11414
|
"project-git-commit-comments-toggled",
|
|
10651
11415
|
"project-git-commit-status-toggled",
|
|
10652
11416
|
"project-git-create-deployments-toggled",
|
|
11417
|
+
"project-git-credential-bound-created",
|
|
11418
|
+
"project-git-credential-bound-deleted",
|
|
11419
|
+
"project-git-credential-bound-updated",
|
|
11420
|
+
"project-git-credential-grant-created",
|
|
11421
|
+
"project-git-credential-grant-deleted",
|
|
11422
|
+
"project-git-credential-grant-updated",
|
|
10653
11423
|
"project-git-fork-protection-updated",
|
|
10654
11424
|
"project-git-lfs-toggled",
|
|
10655
11425
|
"project-git-pr-comments-toggled",
|
|
@@ -10742,6 +11512,8 @@ const listEventTypeSchema = z.object({
|
|
|
10742
11512
|
"shared-env-variable-create",
|
|
10743
11513
|
"shared-env-variable-delete",
|
|
10744
11514
|
"shared-env-variable-read",
|
|
11515
|
+
"shared-env-variable-repo-link",
|
|
11516
|
+
"shared-env-variable-repo-unlink",
|
|
10745
11517
|
"shared-env-variable-update",
|
|
10746
11518
|
"show-ip-addresses",
|
|
10747
11519
|
"signup",
|
|
@@ -10772,6 +11544,7 @@ const listEventTypeSchema = z.object({
|
|
|
10772
11544
|
"storage-update-project-connection",
|
|
10773
11545
|
"storage-upgrade-project-connection-to-oidc",
|
|
10774
11546
|
"storage-view-secret",
|
|
11547
|
+
"strict-connectors",
|
|
10775
11548
|
"strict-deployment-protection-settings",
|
|
10776
11549
|
"strict-password-protection-settings",
|
|
10777
11550
|
"strict-shareable-links",
|
|
@@ -10934,7 +11707,21 @@ const listEventTypesResponseSchema = z.object({
|
|
|
10934
11707
|
}).describe("Response returned by the List Event Types endpoint.");
|
|
10935
11708
|
const flagSchema = z.object({
|
|
10936
11709
|
description: z.string().optional(),
|
|
10937
|
-
variants: z.array(z.object({
|
|
11710
|
+
variants: z.array(z.object({
|
|
11711
|
+
description: z.string().optional(),
|
|
11712
|
+
label: z.string().optional(),
|
|
11713
|
+
value: z.union([
|
|
11714
|
+
z.string(),
|
|
11715
|
+
z.number(),
|
|
11716
|
+
z.object({}).catchall(z.unknown()),
|
|
11717
|
+
z.array(z.string()),
|
|
11718
|
+
z.union([
|
|
11719
|
+
z.literal(false),
|
|
11720
|
+
z.literal(true)
|
|
11721
|
+
])
|
|
11722
|
+
]).nullable(),
|
|
11723
|
+
id: z.string()
|
|
11724
|
+
})),
|
|
10938
11725
|
id: z.string(),
|
|
10939
11726
|
environments: z.object({}).catchall(z.object({
|
|
10940
11727
|
reuse: z.object({
|
|
@@ -10955,7 +11742,7 @@ const flagSchema = z.object({
|
|
|
10955
11742
|
]),
|
|
10956
11743
|
variantId: z.string()
|
|
10957
11744
|
}),
|
|
10958
|
-
fallthrough: z.
|
|
11745
|
+
fallthrough: z.discriminatedUnion("type", [
|
|
10959
11746
|
z.object({
|
|
10960
11747
|
type: z.enum([
|
|
10961
11748
|
"variant"
|
|
@@ -11008,7 +11795,7 @@ const flagSchema = z.object({
|
|
|
11008
11795
|
]),
|
|
11009
11796
|
rules: z.array(z.object({
|
|
11010
11797
|
id: z.string(),
|
|
11011
|
-
outcome: z.
|
|
11798
|
+
outcome: z.discriminatedUnion("type", [
|
|
11012
11799
|
z.object({
|
|
11013
11800
|
type: z.enum([
|
|
11014
11801
|
"variant"
|
|
@@ -11095,7 +11882,7 @@ const flagSchema = z.object({
|
|
|
11095
11882
|
z.literal(true)
|
|
11096
11883
|
]).optional()
|
|
11097
11884
|
}).optional(),
|
|
11098
|
-
lhs: z.
|
|
11885
|
+
lhs: z.discriminatedUnion("type", [
|
|
11099
11886
|
z.object({
|
|
11100
11887
|
type: z.enum([
|
|
11101
11888
|
"segment"
|
|
@@ -11198,7 +11985,7 @@ const segmentSchema = z.object({
|
|
|
11198
11985
|
data: z.object({
|
|
11199
11986
|
rules: z.array(z.object({
|
|
11200
11987
|
id: z.string(),
|
|
11201
|
-
outcome: z.
|
|
11988
|
+
outcome: z.discriminatedUnion("type", [
|
|
11202
11989
|
z.object({
|
|
11203
11990
|
type: z.enum([
|
|
11204
11991
|
"all"
|
|
@@ -11258,7 +12045,7 @@ const segmentSchema = z.object({
|
|
|
11258
12045
|
z.literal(true)
|
|
11259
12046
|
]).optional()
|
|
11260
12047
|
}).optional(),
|
|
11261
|
-
lhs: z.
|
|
12048
|
+
lhs: z.discriminatedUnion("type", [
|
|
11262
12049
|
z.object({
|
|
11263
12050
|
type: z.enum([
|
|
11264
12051
|
"segment"
|
|
@@ -11479,7 +12266,10 @@ const namedSandboxSchema = z.object({
|
|
|
11479
12266
|
"yul1"
|
|
11480
12267
|
])).optional().describe("The regions the sandbox fails over to. Empty when it does not fail over.").meta({
|
|
11481
12268
|
examples: [
|
|
11482
|
-
|
|
12269
|
+
[
|
|
12270
|
+
"cle1",
|
|
12271
|
+
"sfo1"
|
|
12272
|
+
]
|
|
11483
12273
|
]
|
|
11484
12274
|
}),
|
|
11485
12275
|
vcpus: z.number().optional().describe("Number of virtual CPUs allocated.").meta({
|
|
@@ -11545,6 +12335,7 @@ const namedSandboxSchema = z.object({
|
|
|
11545
12335
|
deniedCIDRs: z.array(z.string()).optional(),
|
|
11546
12336
|
s3Key: z.string().optional()
|
|
11547
12337
|
}).optional().describe("Network policy configuration."),
|
|
12338
|
+
networkId: z.string().optional().describe("The Connect network id for the target Secure Compute private network."),
|
|
11548
12339
|
totalEgressBytes: z.number().optional().describe("Cumulative egress bytes across all sandbox runs.").meta({
|
|
11549
12340
|
examples: [
|
|
11550
12341
|
4096
|
|
@@ -11579,7 +12370,8 @@ const namedSandboxSchema = z.object({
|
|
|
11579
12370
|
drive: z.string(),
|
|
11580
12371
|
mode: z.enum([
|
|
11581
12372
|
"read-only",
|
|
11582
|
-
"read-write"
|
|
12373
|
+
"read-write",
|
|
12374
|
+
"snapshot"
|
|
11583
12375
|
]).optional()
|
|
11584
12376
|
})).optional().describe("Key-value pairs of mount path and drive."),
|
|
11585
12377
|
createdAt: z.number().describe("The time when the named sandbox was created, in milliseconds since the epoch.").meta({
|
|
@@ -11606,7 +12398,10 @@ const sandboxInjectionRuleSchema = z.object({
|
|
|
11606
12398
|
}),
|
|
11607
12399
|
headerNames: z.array(z.string()).optional().describe("The names of HTTP headers that have value that will be injected for requests to this domain.").meta({
|
|
11608
12400
|
examples: [
|
|
11609
|
-
|
|
12401
|
+
[
|
|
12402
|
+
"Authorization",
|
|
12403
|
+
"X-API-Key"
|
|
12404
|
+
]
|
|
11610
12405
|
]
|
|
11611
12406
|
})
|
|
11612
12407
|
}).describe("HTTP header injection rules for outgoing requests matching specific domains.");
|
|
@@ -11622,17 +12417,24 @@ const sandboxNetworkPolicySchema = z.object({
|
|
|
11622
12417
|
}),
|
|
11623
12418
|
allowedDomains: z.array(z.string()).optional().describe('List of domain names the sandbox is allowed to connect to. Supports wildcard patterns (e.g., "*.vercel.com" matches all subdomains).').meta({
|
|
11624
12419
|
examples: [
|
|
11625
|
-
|
|
12420
|
+
[
|
|
12421
|
+
"*.example.com",
|
|
12422
|
+
"api.vercel.com"
|
|
12423
|
+
]
|
|
11626
12424
|
]
|
|
11627
12425
|
}),
|
|
11628
12426
|
allowedCIDRs: z.array(z.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is allowed to connect to.").meta({
|
|
11629
12427
|
examples: [
|
|
11630
|
-
|
|
12428
|
+
[
|
|
12429
|
+
"10.0.0.0/8"
|
|
12430
|
+
]
|
|
11631
12431
|
]
|
|
11632
12432
|
}),
|
|
11633
12433
|
deniedCIDRs: z.array(z.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is blocked from connecting to. These rules take precedence over all allowed rules.").meta({
|
|
11634
12434
|
examples: [
|
|
11635
|
-
|
|
12435
|
+
[
|
|
12436
|
+
"10.0.0.0/8"
|
|
12437
|
+
]
|
|
11636
12438
|
]
|
|
11637
12439
|
}),
|
|
11638
12440
|
injectionRules: z.array(z.unknown()).optional().describe("HTTP header injection rules for outgoing requests matching specific domains.")
|
|
@@ -11768,6 +12570,11 @@ const sandboxPublicRouteSchema = z.object({
|
|
|
11768
12570
|
system: z.literal(true).optional().describe("Whether the route is reserved by the system (e.g. for internal use).")
|
|
11769
12571
|
}).describe("This object represents a public route in a Vercel Sandbox.");
|
|
11770
12572
|
const driveSchema = z.object({
|
|
12573
|
+
id: z.string().describe("The unique drive ID.").meta({
|
|
12574
|
+
examples: [
|
|
12575
|
+
"drive_abc123"
|
|
12576
|
+
]
|
|
12577
|
+
}),
|
|
11771
12578
|
name: z.string().describe("The unique drive name within the project.").meta({
|
|
11772
12579
|
examples: [
|
|
11773
12580
|
"workspace"
|
|
@@ -11780,7 +12587,7 @@ const driveSchema = z.object({
|
|
|
11780
12587
|
}),
|
|
11781
12588
|
maxSizeBytes: z.number().describe("The maximum drive size in bytes.").meta({
|
|
11782
12589
|
examples: [
|
|
11783
|
-
|
|
12590
|
+
1099511627776
|
|
11784
12591
|
]
|
|
11785
12592
|
}),
|
|
11786
12593
|
region: z.string().describe("The region where the drive is stored.").meta({
|
|
@@ -11827,7 +12634,10 @@ const snapshotSchema = z.object({
|
|
|
11827
12634
|
}),
|
|
11828
12635
|
regions: z.array(z.string()).optional().describe("The regions where the snapshot is available.").meta({
|
|
11829
12636
|
examples: [
|
|
11830
|
-
|
|
12637
|
+
[
|
|
12638
|
+
"iad1",
|
|
12639
|
+
"sfo1"
|
|
12640
|
+
]
|
|
11831
12641
|
]
|
|
11832
12642
|
}),
|
|
11833
12643
|
status: z.enum([
|
|
@@ -11891,7 +12701,10 @@ const sessionCommandSchema = z.object({
|
|
|
11891
12701
|
}),
|
|
11892
12702
|
args: z.array(z.string()).describe("The arguments of the command.").meta({
|
|
11893
12703
|
examples: [
|
|
11894
|
-
|
|
12704
|
+
[
|
|
12705
|
+
"build",
|
|
12706
|
+
"run"
|
|
12707
|
+
]
|
|
11895
12708
|
]
|
|
11896
12709
|
}),
|
|
11897
12710
|
cwd: z.string().describe("The current working directory of the command.").meta({
|
|
@@ -11961,7 +12774,9 @@ const invitedTeamMemberSchema = z.object({
|
|
|
11961
12774
|
"VIEWER_FOR_PLUS"
|
|
11962
12775
|
])).optional().describe("The team roles of the user").meta({
|
|
11963
12776
|
examples: [
|
|
11964
|
-
|
|
12777
|
+
[
|
|
12778
|
+
"MEMBER"
|
|
12779
|
+
]
|
|
11965
12780
|
]
|
|
11966
12781
|
}),
|
|
11967
12782
|
teamPermissions: z.array(z.enum([
|
|
@@ -11986,7 +12801,9 @@ const invitedTeamMemberSchema = z.object({
|
|
|
11986
12801
|
"WorkflowDecryptor"
|
|
11987
12802
|
])).optional().describe("The team permissions of the user").meta({
|
|
11988
12803
|
examples: [
|
|
11989
|
-
|
|
12804
|
+
[
|
|
12805
|
+
"CreateProject"
|
|
12806
|
+
]
|
|
11990
12807
|
]
|
|
11991
12808
|
})
|
|
11992
12809
|
}).describe("The member was successfully added to the team.");
|
|
@@ -12318,6 +13135,13 @@ const teamSchema = z.object({
|
|
|
12318
13135
|
]),
|
|
12319
13136
|
updatedAt: z.number()
|
|
12320
13137
|
}).optional().describe("When enabled, adding, changing, or removing project password protection requires Owner role."),
|
|
13138
|
+
strictConnectors: z.object({
|
|
13139
|
+
enabled: z.union([
|
|
13140
|
+
z.literal(false),
|
|
13141
|
+
z.literal(true)
|
|
13142
|
+
]),
|
|
13143
|
+
updatedAt: z.number()
|
|
13144
|
+
}).optional().describe("When enabled, creating and managing connectors requires Owner role or the ConnectorManager permission."),
|
|
12321
13145
|
nsnbConfig: z.object({
|
|
12322
13146
|
preference: z.enum([
|
|
12323
13147
|
"auto-approval",
|
|
@@ -12348,7 +13172,7 @@ const teamSchema = z.object({
|
|
|
12348
13172
|
z.literal(false),
|
|
12349
13173
|
z.literal(true)
|
|
12350
13174
|
]),
|
|
12351
|
-
environments: z.array(z.
|
|
13175
|
+
environments: z.array(z.discriminatedUnion("type", [
|
|
12352
13176
|
z.object({
|
|
12353
13177
|
type: z.enum([
|
|
12354
13178
|
"system"
|
|
@@ -12379,7 +13203,7 @@ const teamSchema = z.object({
|
|
|
12379
13203
|
z.literal(false),
|
|
12380
13204
|
z.literal(true)
|
|
12381
13205
|
]),
|
|
12382
|
-
environments: z.array(z.
|
|
13206
|
+
environments: z.array(z.discriminatedUnion("type", [
|
|
12383
13207
|
z.object({
|
|
12384
13208
|
type: z.enum([
|
|
12385
13209
|
"system"
|
|
@@ -12753,7 +13577,7 @@ const authTokenSchema = z.object({
|
|
|
12753
13577
|
"github"
|
|
12754
13578
|
]
|
|
12755
13579
|
}),
|
|
12756
|
-
scopes: z.array(z.
|
|
13580
|
+
scopes: z.array(z.discriminatedUnion("type", [
|
|
12757
13581
|
z.object({
|
|
12758
13582
|
type: z.enum([
|
|
12759
13583
|
"user"
|
|
@@ -12861,7 +13685,6 @@ const authUserSchema = z.object({
|
|
|
12861
13685
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
12862
13686
|
"EXPOSURE_CAP_EXCEEDED",
|
|
12863
13687
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
12864
|
-
"HOBBY_ALLOCATION_PAUSED",
|
|
12865
13688
|
"SUBSCRIPTION_CANCELED",
|
|
12866
13689
|
"SUBSCRIPTION_EXPIRED",
|
|
12867
13690
|
"UNPAID_INVOICE"
|
|
@@ -12907,55 +13730,7 @@ const authUserSchema = z.object({
|
|
|
12907
13730
|
"wafRateLimitRequest",
|
|
12908
13731
|
"webAnalyticsEvent"
|
|
12909
13732
|
]).optional(),
|
|
12910
|
-
|
|
12911
|
-
pausedUntil: z.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
|
|
12912
|
-
pausedAt: z.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
12913
|
-
triggers: z.array(z.object({
|
|
12914
|
-
allocation: z.enum([
|
|
12915
|
-
"analyticsUsage",
|
|
12916
|
-
"artifacts",
|
|
12917
|
-
"bandwidth",
|
|
12918
|
-
"blobDataTransfer",
|
|
12919
|
-
"blobTotalAdvancedRequests",
|
|
12920
|
-
"blobTotalAvgSizeInBytes",
|
|
12921
|
-
"blobTotalGetResponseObjectSizeInBytes",
|
|
12922
|
-
"blobTotalSimpleRequests",
|
|
12923
|
-
"connectDataTransfer",
|
|
12924
|
-
"dataCacheRead",
|
|
12925
|
-
"dataCacheWrite",
|
|
12926
|
-
"edgeConfigRead",
|
|
12927
|
-
"edgeConfigWrite",
|
|
12928
|
-
"edgeFunctionExecutionUnits",
|
|
12929
|
-
"edgeMiddlewareInvocations",
|
|
12930
|
-
"edgeRequest",
|
|
12931
|
-
"edgeRequestAdditionalCpuDuration",
|
|
12932
|
-
"elasticConcurrencyBuildSlots",
|
|
12933
|
-
"fastDataTransfer",
|
|
12934
|
-
"fastOriginTransfer",
|
|
12935
|
-
"fluidCpuDuration",
|
|
12936
|
-
"fluidDuration",
|
|
12937
|
-
"functionDuration",
|
|
12938
|
-
"functionInvocation",
|
|
12939
|
-
"imageOptimizationCacheRead",
|
|
12940
|
-
"imageOptimizationCacheWrite",
|
|
12941
|
-
"imageOptimizationTransformation",
|
|
12942
|
-
"logDrainsVolume",
|
|
12943
|
-
"monitoringMetric",
|
|
12944
|
-
"observabilityEvent",
|
|
12945
|
-
"onDemandConcurrencyMinutes",
|
|
12946
|
-
"runtimeCacheRead",
|
|
12947
|
-
"runtimeCacheWrite",
|
|
12948
|
-
"serverlessFunctionExecution",
|
|
12949
|
-
"sourceImages",
|
|
12950
|
-
"wafOwaspExcessBytes",
|
|
12951
|
-
"wafOwaspRequests",
|
|
12952
|
-
"wafRateLimitRequest",
|
|
12953
|
-
"webAnalyticsEvent"
|
|
12954
|
-
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
12955
|
-
usage: z.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
12956
|
-
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
12957
|
-
cohort: z.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
|
|
12958
|
-
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
13733
|
+
unpauseAt: z.number().optional().describe("Since September 2026. Set only by `billing-usage-alerts` for usage plans with a `blockDurationMs`; its presence marks a pause that expires on its own.")
|
|
12959
13734
|
}).nullable().describe('When the User account has been "soft blocked", this property will contain the date when the restriction was enacted, and the identifier for why.'),
|
|
12960
13735
|
billing: z.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
|
|
12961
13736
|
resourceConfig: z.object({
|
|
@@ -13001,10 +13776,10 @@ const authUserSchema = z.object({
|
|
|
13001
13776
|
]).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13002
13777
|
customEnvironmentsPerProject: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13003
13778
|
security: z.object({
|
|
13779
|
+
rateLimit: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13004
13780
|
customRules: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13005
13781
|
ipBlocks: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13006
|
-
ipBypass: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
|
|
13007
|
-
rateLimit: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
|
|
13782
|
+
ipBypass: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
|
|
13008
13783
|
}).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
13009
13784
|
bulkRedirectsFreeLimitOverride: z.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
|
|
13010
13785
|
}).describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
|
|
@@ -13930,7 +14705,9 @@ const createAiGatewayVirtualModelConfigErrorSchema = z.union([
|
|
|
13930
14705
|
createAiGatewayVirtualModelConfigStatus500Schema
|
|
13931
14706
|
]);
|
|
13932
14707
|
const getAiGatewayVirtualModelConfigQueryOwnerIdSchema = z.string().optional();
|
|
13933
|
-
const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z.string();
|
|
14708
|
+
const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z.string().optional();
|
|
14709
|
+
const getAiGatewayVirtualModelConfigQueryLimitSchema = z.int().min(1).optional();
|
|
14710
|
+
const getAiGatewayVirtualModelConfigQueryCursorSchema = z.string().optional();
|
|
13934
14711
|
const getAiGatewayVirtualModelConfigQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
13935
14712
|
examples: [
|
|
13936
14713
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -13985,6 +14762,9 @@ const updateAiGatewayVirtualModelConfigErrorSchema = z.union([
|
|
|
13985
14762
|
]);
|
|
13986
14763
|
const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = z.string().optional();
|
|
13987
14764
|
const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z.string();
|
|
14765
|
+
const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = z.string().optional();
|
|
14766
|
+
const deleteAiGatewayVirtualModelConfigQueryActingIpSchema = z.string().optional();
|
|
14767
|
+
const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = z.string().optional();
|
|
13988
14768
|
const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
13989
14769
|
examples: [
|
|
13990
14770
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -14038,6 +14818,92 @@ const listAiGatewayVirtualModelConfigsErrorSchema = z.union([
|
|
|
14038
14818
|
listAiGatewayVirtualModelConfigsStatus410Schema,
|
|
14039
14819
|
listAiGatewayVirtualModelConfigsStatus500Schema
|
|
14040
14820
|
]);
|
|
14821
|
+
const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z.string().optional();
|
|
14822
|
+
const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z.string();
|
|
14823
|
+
const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
14824
|
+
examples: [
|
|
14825
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
14826
|
+
]
|
|
14827
|
+
});
|
|
14828
|
+
const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
14829
|
+
examples: [
|
|
14830
|
+
"my-team-url-slug"
|
|
14831
|
+
]
|
|
14832
|
+
});
|
|
14833
|
+
const getAiGatewayVirtualModelConfigBySlugStatus200Schema = z.unknown();
|
|
14834
|
+
const getAiGatewayVirtualModelConfigBySlugStatus400Schema = z.unknown();
|
|
14835
|
+
const getAiGatewayVirtualModelConfigBySlugStatus401Schema = z.unknown();
|
|
14836
|
+
const getAiGatewayVirtualModelConfigBySlugStatus403Schema = z.unknown();
|
|
14837
|
+
const getAiGatewayVirtualModelConfigBySlugStatus404Schema = z.unknown();
|
|
14838
|
+
const getAiGatewayVirtualModelConfigBySlugStatus410Schema = z.unknown();
|
|
14839
|
+
const getAiGatewayVirtualModelConfigBySlugStatus500Schema = z.unknown();
|
|
14840
|
+
const getAiGatewayVirtualModelConfigBySlugResponseSchema = getAiGatewayVirtualModelConfigBySlugStatus200Schema;
|
|
14841
|
+
const getAiGatewayVirtualModelConfigBySlugErrorSchema = z.union([
|
|
14842
|
+
getAiGatewayVirtualModelConfigBySlugStatus400Schema,
|
|
14843
|
+
getAiGatewayVirtualModelConfigBySlugStatus401Schema,
|
|
14844
|
+
getAiGatewayVirtualModelConfigBySlugStatus403Schema,
|
|
14845
|
+
getAiGatewayVirtualModelConfigBySlugStatus404Schema,
|
|
14846
|
+
getAiGatewayVirtualModelConfigBySlugStatus410Schema,
|
|
14847
|
+
getAiGatewayVirtualModelConfigBySlugStatus500Schema
|
|
14848
|
+
]);
|
|
14849
|
+
const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z.string();
|
|
14850
|
+
const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
14851
|
+
examples: [
|
|
14852
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
14853
|
+
]
|
|
14854
|
+
});
|
|
14855
|
+
const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
14856
|
+
examples: [
|
|
14857
|
+
"my-team-url-slug"
|
|
14858
|
+
]
|
|
14859
|
+
});
|
|
14860
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus200Schema = z.unknown();
|
|
14861
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus400Schema = z.unknown();
|
|
14862
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus401Schema = z.unknown();
|
|
14863
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus403Schema = z.unknown();
|
|
14864
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus404Schema = z.unknown();
|
|
14865
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus410Schema = z.unknown();
|
|
14866
|
+
const updateAiGatewayVirtualModelConfigBySlugStatus500Schema = z.unknown();
|
|
14867
|
+
const updateAiGatewayVirtualModelConfigBySlugResponseSchema = updateAiGatewayVirtualModelConfigBySlugStatus200Schema;
|
|
14868
|
+
const updateAiGatewayVirtualModelConfigBySlugErrorSchema = z.union([
|
|
14869
|
+
updateAiGatewayVirtualModelConfigBySlugStatus400Schema,
|
|
14870
|
+
updateAiGatewayVirtualModelConfigBySlugStatus401Schema,
|
|
14871
|
+
updateAiGatewayVirtualModelConfigBySlugStatus403Schema,
|
|
14872
|
+
updateAiGatewayVirtualModelConfigBySlugStatus404Schema,
|
|
14873
|
+
updateAiGatewayVirtualModelConfigBySlugStatus410Schema,
|
|
14874
|
+
updateAiGatewayVirtualModelConfigBySlugStatus500Schema
|
|
14875
|
+
]);
|
|
14876
|
+
const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z.string().optional();
|
|
14877
|
+
const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z.string();
|
|
14878
|
+
const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema = z.string().optional();
|
|
14879
|
+
const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema = z.string().optional();
|
|
14880
|
+
const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema = z.string().optional();
|
|
14881
|
+
const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
14882
|
+
examples: [
|
|
14883
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
14884
|
+
]
|
|
14885
|
+
});
|
|
14886
|
+
const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
14887
|
+
examples: [
|
|
14888
|
+
"my-team-url-slug"
|
|
14889
|
+
]
|
|
14890
|
+
});
|
|
14891
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema = z.unknown();
|
|
14892
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema = z.unknown();
|
|
14893
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema = z.unknown();
|
|
14894
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema = z.unknown();
|
|
14895
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema = z.unknown();
|
|
14896
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema = z.unknown();
|
|
14897
|
+
const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema = z.unknown();
|
|
14898
|
+
const deleteAiGatewayVirtualModelConfigBySlugResponseSchema = deleteAiGatewayVirtualModelConfigBySlugStatus204Schema;
|
|
14899
|
+
const deleteAiGatewayVirtualModelConfigBySlugErrorSchema = z.union([
|
|
14900
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus400Schema,
|
|
14901
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus401Schema,
|
|
14902
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus403Schema,
|
|
14903
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus404Schema,
|
|
14904
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus410Schema,
|
|
14905
|
+
deleteAiGatewayVirtualModelConfigBySlugStatus500Schema
|
|
14906
|
+
]);
|
|
14041
14907
|
const createAiGatewayRuleQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
14042
14908
|
examples: [
|
|
14043
14909
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -14145,12 +15011,12 @@ const deleteAiGatewayRuleErrorSchema = z.union([
|
|
|
14145
15011
|
deleteAiGatewayRuleStatus410Schema,
|
|
14146
15012
|
deleteAiGatewayRuleStatus500Schema
|
|
14147
15013
|
]);
|
|
14148
|
-
const
|
|
15014
|
+
const recordEventsHeaderXArtifactClientCiSchema = z.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14149
15015
|
examples: [
|
|
14150
15016
|
"VERCEL"
|
|
14151
15017
|
]
|
|
14152
15018
|
});
|
|
14153
|
-
const
|
|
15019
|
+
const recordEventsHeaderXArtifactClientInteractiveSchema = z.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14154
15020
|
examples: [
|
|
14155
15021
|
0
|
|
14156
15022
|
]
|
|
@@ -14203,29 +15069,29 @@ const statusErrorSchema = z.union([
|
|
|
14203
15069
|
statusStatus403Schema,
|
|
14204
15070
|
statusStatus410Schema
|
|
14205
15071
|
]);
|
|
14206
|
-
const
|
|
14207
|
-
const
|
|
15072
|
+
const uploadArtifactHeaderContentLengthSchema = z.number().describe("The artifact size in bytes");
|
|
15073
|
+
const uploadArtifactHeaderXArtifactDurationSchema = z.number().optional().describe("The time taken to generate the uploaded artifact in milliseconds.").meta({
|
|
14208
15074
|
examples: [
|
|
14209
15075
|
400
|
|
14210
15076
|
]
|
|
14211
15077
|
});
|
|
14212
|
-
const
|
|
15078
|
+
const uploadArtifactHeaderXArtifactClientCiSchema = z.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact was generated.").meta({
|
|
14213
15079
|
examples: [
|
|
14214
15080
|
"VERCEL"
|
|
14215
15081
|
]
|
|
14216
15082
|
});
|
|
14217
|
-
const
|
|
15083
|
+
const uploadArtifactHeaderXArtifactClientInteractiveSchema = z.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14218
15084
|
examples: [
|
|
14219
15085
|
0
|
|
14220
15086
|
]
|
|
14221
15087
|
});
|
|
14222
|
-
const
|
|
15088
|
+
const uploadArtifactHeaderXArtifactTagSchema = z.string().max(600).optional().describe("The base64 encoded tag for this artifact. The value is sent back to clients when the artifact is downloaded as the header `x-artifact-tag`").meta({
|
|
14223
15089
|
examples: [
|
|
14224
15090
|
"Tc0BmHvJYMIYJ62/zx87YqO0Flxk+5Ovip25NY825CQ="
|
|
14225
15091
|
]
|
|
14226
15092
|
});
|
|
14227
|
-
const
|
|
14228
|
-
const
|
|
15093
|
+
const uploadArtifactHeaderXArtifactShaSchema = z.string().max(200).optional().describe("The SHA of the source control revision that generated this artifact.");
|
|
15094
|
+
const uploadArtifactHeaderXArtifactDirtyHashSchema = z.string().max(200).optional().describe("A hash representing uncommitted changes in the working directory when this artifact was generated.");
|
|
14229
15095
|
const uploadArtifactPathHashSchema = z.string().describe("The artifact hash").meta({
|
|
14230
15096
|
examples: [
|
|
14231
15097
|
"12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
|
|
@@ -14255,12 +15121,12 @@ const uploadArtifactErrorSchema = z.union([
|
|
|
14255
15121
|
uploadArtifactStatus403Schema,
|
|
14256
15122
|
uploadArtifactStatus410Schema
|
|
14257
15123
|
]);
|
|
14258
|
-
const
|
|
15124
|
+
const downloadArtifactHeaderXArtifactClientCiSchema = z.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
|
|
14259
15125
|
examples: [
|
|
14260
15126
|
"VERCEL"
|
|
14261
15127
|
]
|
|
14262
15128
|
});
|
|
14263
|
-
const
|
|
15129
|
+
const downloadArtifactHeaderXArtifactClientInteractiveSchema = z.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
|
|
14264
15130
|
examples: [
|
|
14265
15131
|
0
|
|
14266
15132
|
]
|
|
@@ -15221,6 +16087,260 @@ const readNetworkErrorSchema = z.union([
|
|
|
15221
16087
|
readNetworkStatus403Schema,
|
|
15222
16088
|
readNetworkStatus410Schema
|
|
15223
16089
|
]);
|
|
16090
|
+
const createPrivateLinkEndpointQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
16091
|
+
examples: [
|
|
16092
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16093
|
+
]
|
|
16094
|
+
});
|
|
16095
|
+
const createPrivateLinkEndpointQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
16096
|
+
examples: [
|
|
16097
|
+
"my-team-url-slug"
|
|
16098
|
+
]
|
|
16099
|
+
});
|
|
16100
|
+
const createPrivateLinkEndpointStatus201Schema = z.unknown();
|
|
16101
|
+
const createPrivateLinkEndpointStatus400Schema = z.unknown();
|
|
16102
|
+
const createPrivateLinkEndpointStatus401Schema = z.unknown();
|
|
16103
|
+
const createPrivateLinkEndpointStatus403Schema = z.unknown();
|
|
16104
|
+
const createPrivateLinkEndpointStatus404Schema = z.unknown();
|
|
16105
|
+
const createPrivateLinkEndpointStatus409Schema = z.unknown();
|
|
16106
|
+
const createPrivateLinkEndpointStatus410Schema = z.unknown();
|
|
16107
|
+
const createPrivateLinkEndpointResponseSchema = createPrivateLinkEndpointStatus201Schema;
|
|
16108
|
+
const createPrivateLinkEndpointErrorSchema = z.union([
|
|
16109
|
+
createPrivateLinkEndpointStatus400Schema,
|
|
16110
|
+
createPrivateLinkEndpointStatus401Schema,
|
|
16111
|
+
createPrivateLinkEndpointStatus403Schema,
|
|
16112
|
+
createPrivateLinkEndpointStatus404Schema,
|
|
16113
|
+
createPrivateLinkEndpointStatus409Schema,
|
|
16114
|
+
createPrivateLinkEndpointStatus410Schema
|
|
16115
|
+
]);
|
|
16116
|
+
const listPrivateLinkEndpointsQueryProjectIdSchema = z.string().describe("The project ID to list PrivateLink endpoints for.").meta({
|
|
16117
|
+
examples: [
|
|
16118
|
+
"prj_a1b2c3d4e5f6g7h8"
|
|
16119
|
+
]
|
|
16120
|
+
});
|
|
16121
|
+
const listPrivateLinkEndpointsQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
16122
|
+
examples: [
|
|
16123
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16124
|
+
]
|
|
16125
|
+
});
|
|
16126
|
+
const listPrivateLinkEndpointsQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
16127
|
+
examples: [
|
|
16128
|
+
"my-team-url-slug"
|
|
16129
|
+
]
|
|
16130
|
+
});
|
|
16131
|
+
const listPrivateLinkEndpointsStatus200Schema = z.unknown();
|
|
16132
|
+
const listPrivateLinkEndpointsStatus400Schema = z.unknown();
|
|
16133
|
+
const listPrivateLinkEndpointsStatus401Schema = z.unknown();
|
|
16134
|
+
const listPrivateLinkEndpointsStatus403Schema = z.unknown();
|
|
16135
|
+
const listPrivateLinkEndpointsStatus404Schema = z.unknown();
|
|
16136
|
+
const listPrivateLinkEndpointsStatus410Schema = z.unknown();
|
|
16137
|
+
const listPrivateLinkEndpointsResponseSchema = listPrivateLinkEndpointsStatus200Schema;
|
|
16138
|
+
const listPrivateLinkEndpointsErrorSchema = z.union([
|
|
16139
|
+
listPrivateLinkEndpointsStatus400Schema,
|
|
16140
|
+
listPrivateLinkEndpointsStatus401Schema,
|
|
16141
|
+
listPrivateLinkEndpointsStatus403Schema,
|
|
16142
|
+
listPrivateLinkEndpointsStatus404Schema,
|
|
16143
|
+
listPrivateLinkEndpointsStatus410Schema
|
|
16144
|
+
]);
|
|
16145
|
+
const readPrivateLinkEndpointQueryProjectIdSchema = z.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
|
|
16146
|
+
examples: [
|
|
16147
|
+
"prj_a1b2c3d4e5f6g7h8"
|
|
16148
|
+
]
|
|
16149
|
+
});
|
|
16150
|
+
const readPrivateLinkEndpointPathEndpointIdSchema = z.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
|
|
16151
|
+
examples: [
|
|
16152
|
+
"ple_a1b2c3d4e5f6g7h8"
|
|
16153
|
+
]
|
|
16154
|
+
});
|
|
16155
|
+
const readPrivateLinkEndpointQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
16156
|
+
examples: [
|
|
16157
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16158
|
+
]
|
|
16159
|
+
});
|
|
16160
|
+
const readPrivateLinkEndpointQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
16161
|
+
examples: [
|
|
16162
|
+
"my-team-url-slug"
|
|
16163
|
+
]
|
|
16164
|
+
});
|
|
16165
|
+
const readPrivateLinkEndpointStatus200Schema = z.unknown();
|
|
16166
|
+
const readPrivateLinkEndpointStatus400Schema = z.unknown();
|
|
16167
|
+
const readPrivateLinkEndpointStatus401Schema = z.unknown();
|
|
16168
|
+
const readPrivateLinkEndpointStatus403Schema = z.unknown();
|
|
16169
|
+
const readPrivateLinkEndpointStatus404Schema = z.unknown();
|
|
16170
|
+
const readPrivateLinkEndpointStatus410Schema = z.unknown();
|
|
16171
|
+
const readPrivateLinkEndpointResponseSchema = readPrivateLinkEndpointStatus200Schema;
|
|
16172
|
+
const readPrivateLinkEndpointErrorSchema = z.union([
|
|
16173
|
+
readPrivateLinkEndpointStatus400Schema,
|
|
16174
|
+
readPrivateLinkEndpointStatus401Schema,
|
|
16175
|
+
readPrivateLinkEndpointStatus403Schema,
|
|
16176
|
+
readPrivateLinkEndpointStatus404Schema,
|
|
16177
|
+
readPrivateLinkEndpointStatus410Schema
|
|
16178
|
+
]);
|
|
16179
|
+
const deletePrivateLinkEndpointQueryProjectIdSchema = z.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
|
|
16180
|
+
examples: [
|
|
16181
|
+
"prj_a1b2c3d4e5f6g7h8"
|
|
16182
|
+
]
|
|
16183
|
+
});
|
|
16184
|
+
const deletePrivateLinkEndpointPathEndpointIdSchema = z.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
|
|
16185
|
+
examples: [
|
|
16186
|
+
"ple_a1b2c3d4e5f6g7h8"
|
|
16187
|
+
]
|
|
16188
|
+
});
|
|
16189
|
+
const deletePrivateLinkEndpointQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
16190
|
+
examples: [
|
|
16191
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16192
|
+
]
|
|
16193
|
+
});
|
|
16194
|
+
const deletePrivateLinkEndpointQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
16195
|
+
examples: [
|
|
16196
|
+
"my-team-url-slug"
|
|
16197
|
+
]
|
|
16198
|
+
});
|
|
16199
|
+
const deletePrivateLinkEndpointStatus204Schema = z.unknown();
|
|
16200
|
+
const deletePrivateLinkEndpointStatus400Schema = z.unknown();
|
|
16201
|
+
const deletePrivateLinkEndpointStatus401Schema = z.unknown();
|
|
16202
|
+
const deletePrivateLinkEndpointStatus403Schema = z.unknown();
|
|
16203
|
+
const deletePrivateLinkEndpointStatus404Schema = z.unknown();
|
|
16204
|
+
const deletePrivateLinkEndpointStatus409Schema = z.unknown();
|
|
16205
|
+
const deletePrivateLinkEndpointStatus410Schema = z.unknown();
|
|
16206
|
+
const deletePrivateLinkEndpointResponseSchema = deletePrivateLinkEndpointStatus204Schema;
|
|
16207
|
+
const deletePrivateLinkEndpointErrorSchema = z.union([
|
|
16208
|
+
deletePrivateLinkEndpointStatus400Schema,
|
|
16209
|
+
deletePrivateLinkEndpointStatus401Schema,
|
|
16210
|
+
deletePrivateLinkEndpointStatus403Schema,
|
|
16211
|
+
deletePrivateLinkEndpointStatus404Schema,
|
|
16212
|
+
deletePrivateLinkEndpointStatus409Schema,
|
|
16213
|
+
deletePrivateLinkEndpointStatus410Schema
|
|
16214
|
+
]);
|
|
16215
|
+
const updatePrivateLinkEndpointQueryProjectIdSchema = z.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
|
|
16216
|
+
examples: [
|
|
16217
|
+
"prj_a1b2c3d4e5f6g7h8"
|
|
16218
|
+
]
|
|
16219
|
+
});
|
|
16220
|
+
const updatePrivateLinkEndpointPathEndpointIdSchema = z.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
|
|
16221
|
+
examples: [
|
|
16222
|
+
"ple_a1b2c3d4e5f6g7h8"
|
|
16223
|
+
]
|
|
16224
|
+
});
|
|
16225
|
+
const updatePrivateLinkEndpointQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
16226
|
+
examples: [
|
|
16227
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16228
|
+
]
|
|
16229
|
+
});
|
|
16230
|
+
const updatePrivateLinkEndpointQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
16231
|
+
examples: [
|
|
16232
|
+
"my-team-url-slug"
|
|
16233
|
+
]
|
|
16234
|
+
});
|
|
16235
|
+
const updatePrivateLinkEndpointStatus200Schema = z.unknown();
|
|
16236
|
+
const updatePrivateLinkEndpointStatus400Schema = z.unknown();
|
|
16237
|
+
const updatePrivateLinkEndpointStatus401Schema = z.unknown();
|
|
16238
|
+
const updatePrivateLinkEndpointStatus403Schema = z.unknown();
|
|
16239
|
+
const updatePrivateLinkEndpointStatus404Schema = z.unknown();
|
|
16240
|
+
const updatePrivateLinkEndpointStatus409Schema = z.unknown();
|
|
16241
|
+
const updatePrivateLinkEndpointStatus410Schema = z.unknown();
|
|
16242
|
+
const updatePrivateLinkEndpointResponseSchema = updatePrivateLinkEndpointStatus200Schema;
|
|
16243
|
+
const updatePrivateLinkEndpointErrorSchema = z.union([
|
|
16244
|
+
updatePrivateLinkEndpointStatus400Schema,
|
|
16245
|
+
updatePrivateLinkEndpointStatus401Schema,
|
|
16246
|
+
updatePrivateLinkEndpointStatus403Schema,
|
|
16247
|
+
updatePrivateLinkEndpointStatus404Schema,
|
|
16248
|
+
updatePrivateLinkEndpointStatus409Schema,
|
|
16249
|
+
updatePrivateLinkEndpointStatus410Schema
|
|
16250
|
+
]);
|
|
16251
|
+
const listConnectorsQueryLimitSchema = z.int().min(1).max(100).optional().describe("Maximum number of connectors to return. Defaults to 20.");
|
|
16252
|
+
const listConnectorsQueryCursorSchema = z.string().optional().describe("Cursor from `pagination.next` on the previous response.");
|
|
16253
|
+
const listConnectorsQueryProjectIdSchema = z.string().optional().describe("Return only connectors connected to this project.");
|
|
16254
|
+
const listConnectorsQuerySearchSchema = z.string().max(100).optional().describe("Search connector names, UIDs, and services.");
|
|
16255
|
+
const listConnectorsQueryTypeSchema = z.string().optional().describe("Comma-separated connector types: `slack`, `discord`, `github`, `linear`, `linq`, `salesforce`, `sendblue`, `snowflake`, `snowflake-wif`, `microsoft-entra`, `api-key`, `photon`, `oauth`, or `custom`.");
|
|
16256
|
+
const listConnectorsQueryServiceSchema = z.string().optional().describe("Comma-separated provider or service identifiers.");
|
|
16257
|
+
const listConnectorsQuerySortSchema = z.enum([
|
|
16258
|
+
"name",
|
|
16259
|
+
"createdAt",
|
|
16260
|
+
"updatedAt"
|
|
16261
|
+
]).optional().describe("Sort by name in ascending order, or by creation or update time in descending order.");
|
|
16262
|
+
const listConnectorsQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16263
|
+
examples: [
|
|
16264
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16265
|
+
]
|
|
16266
|
+
});
|
|
16267
|
+
const listConnectorsQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16268
|
+
examples: [
|
|
16269
|
+
"my-team-url-slug"
|
|
16270
|
+
]
|
|
16271
|
+
});
|
|
16272
|
+
const listConnectorsStatus200Schema = z.unknown();
|
|
16273
|
+
const listConnectorsStatus400Schema = z.unknown();
|
|
16274
|
+
const listConnectorsStatus401Schema = z.unknown();
|
|
16275
|
+
const listConnectorsStatus403Schema = z.unknown();
|
|
16276
|
+
const listConnectorsStatus410Schema = z.unknown();
|
|
16277
|
+
const listConnectorsStatus422Schema = z.unknown();
|
|
16278
|
+
const listConnectorsResponseSchema = listConnectorsStatus200Schema;
|
|
16279
|
+
const listConnectorsErrorSchema = z.union([
|
|
16280
|
+
listConnectorsStatus400Schema,
|
|
16281
|
+
listConnectorsStatus401Schema,
|
|
16282
|
+
listConnectorsStatus403Schema,
|
|
16283
|
+
listConnectorsStatus410Schema,
|
|
16284
|
+
listConnectorsStatus422Schema
|
|
16285
|
+
]);
|
|
16286
|
+
const getConnectorPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16287
|
+
const getConnectorQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16288
|
+
examples: [
|
|
16289
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16290
|
+
]
|
|
16291
|
+
});
|
|
16292
|
+
const getConnectorQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16293
|
+
examples: [
|
|
16294
|
+
"my-team-url-slug"
|
|
16295
|
+
]
|
|
16296
|
+
});
|
|
16297
|
+
const getConnectorStatus200Schema = z.unknown();
|
|
16298
|
+
const getConnectorStatus400Schema = z.unknown();
|
|
16299
|
+
const getConnectorStatus401Schema = z.unknown();
|
|
16300
|
+
const getConnectorStatus403Schema = z.unknown();
|
|
16301
|
+
const getConnectorStatus404Schema = z.unknown();
|
|
16302
|
+
const getConnectorStatus410Schema = z.unknown();
|
|
16303
|
+
const getConnectorStatus422Schema = z.unknown();
|
|
16304
|
+
const getConnectorResponseSchema = getConnectorStatus200Schema;
|
|
16305
|
+
const getConnectorErrorSchema = z.union([
|
|
16306
|
+
getConnectorStatus400Schema,
|
|
16307
|
+
getConnectorStatus401Schema,
|
|
16308
|
+
getConnectorStatus403Schema,
|
|
16309
|
+
getConnectorStatus404Schema,
|
|
16310
|
+
getConnectorStatus410Schema,
|
|
16311
|
+
getConnectorStatus422Schema
|
|
16312
|
+
]);
|
|
16313
|
+
const deleteConnectorPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16314
|
+
const deleteConnectorQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16315
|
+
examples: [
|
|
16316
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16317
|
+
]
|
|
16318
|
+
});
|
|
16319
|
+
const deleteConnectorQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16320
|
+
examples: [
|
|
16321
|
+
"my-team-url-slug"
|
|
16322
|
+
]
|
|
16323
|
+
});
|
|
16324
|
+
const deleteConnectorStatus204Schema = z.unknown();
|
|
16325
|
+
const deleteConnectorStatus400Schema = z.unknown();
|
|
16326
|
+
const deleteConnectorStatus401Schema = z.unknown();
|
|
16327
|
+
const deleteConnectorStatus403Schema = z.unknown();
|
|
16328
|
+
const deleteConnectorStatus404Schema = z.unknown();
|
|
16329
|
+
const deleteConnectorStatus409Schema = z.unknown();
|
|
16330
|
+
const deleteConnectorStatus410Schema = z.unknown();
|
|
16331
|
+
const deleteConnectorStatus422Schema = z.unknown();
|
|
16332
|
+
const deleteConnectorStatus502Schema = z.unknown();
|
|
16333
|
+
const deleteConnectorResponseSchema = deleteConnectorStatus204Schema;
|
|
16334
|
+
const deleteConnectorErrorSchema = z.union([
|
|
16335
|
+
deleteConnectorStatus400Schema,
|
|
16336
|
+
deleteConnectorStatus401Schema,
|
|
16337
|
+
deleteConnectorStatus403Schema,
|
|
16338
|
+
deleteConnectorStatus404Schema,
|
|
16339
|
+
deleteConnectorStatus409Schema,
|
|
16340
|
+
deleteConnectorStatus410Schema,
|
|
16341
|
+
deleteConnectorStatus422Schema,
|
|
16342
|
+
deleteConnectorStatus502Schema
|
|
16343
|
+
]);
|
|
15224
16344
|
const createConnectorQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
15225
16345
|
examples: [
|
|
15226
16346
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -15253,6 +16373,198 @@ const createConnectorErrorSchema = z.union([
|
|
|
15253
16373
|
createConnectorStatus500Schema,
|
|
15254
16374
|
createConnectorStatus502Schema
|
|
15255
16375
|
]);
|
|
16376
|
+
const updateConnectorPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16377
|
+
const updateConnectorQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16378
|
+
examples: [
|
|
16379
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16380
|
+
]
|
|
16381
|
+
});
|
|
16382
|
+
const updateConnectorQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16383
|
+
examples: [
|
|
16384
|
+
"my-team-url-slug"
|
|
16385
|
+
]
|
|
16386
|
+
});
|
|
16387
|
+
const updateConnectorStatus200Schema = z.unknown();
|
|
16388
|
+
const updateConnectorStatus400Schema = z.unknown();
|
|
16389
|
+
const updateConnectorStatus401Schema = z.unknown();
|
|
16390
|
+
const updateConnectorStatus403Schema = z.unknown();
|
|
16391
|
+
const updateConnectorStatus404Schema = z.unknown();
|
|
16392
|
+
const updateConnectorStatus409Schema = z.unknown();
|
|
16393
|
+
const updateConnectorStatus410Schema = z.unknown();
|
|
16394
|
+
const updateConnectorStatus422Schema = z.unknown();
|
|
16395
|
+
const updateConnectorStatus502Schema = z.unknown();
|
|
16396
|
+
const updateConnectorResponseSchema = updateConnectorStatus200Schema;
|
|
16397
|
+
const updateConnectorErrorSchema = z.union([
|
|
16398
|
+
updateConnectorStatus400Schema,
|
|
16399
|
+
updateConnectorStatus401Schema,
|
|
16400
|
+
updateConnectorStatus403Schema,
|
|
16401
|
+
updateConnectorStatus404Schema,
|
|
16402
|
+
updateConnectorStatus409Schema,
|
|
16403
|
+
updateConnectorStatus410Schema,
|
|
16404
|
+
updateConnectorStatus422Schema,
|
|
16405
|
+
updateConnectorStatus502Schema
|
|
16406
|
+
]);
|
|
16407
|
+
const replaceConnectorTriggerDestinationsPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16408
|
+
const replaceConnectorTriggerDestinationsQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16409
|
+
examples: [
|
|
16410
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16411
|
+
]
|
|
16412
|
+
});
|
|
16413
|
+
const replaceConnectorTriggerDestinationsQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16414
|
+
examples: [
|
|
16415
|
+
"my-team-url-slug"
|
|
16416
|
+
]
|
|
16417
|
+
});
|
|
16418
|
+
const replaceConnectorTriggerDestinationsStatus200Schema = z.unknown();
|
|
16419
|
+
const replaceConnectorTriggerDestinationsStatus400Schema = z.unknown();
|
|
16420
|
+
const replaceConnectorTriggerDestinationsStatus401Schema = z.unknown();
|
|
16421
|
+
const replaceConnectorTriggerDestinationsStatus403Schema = z.unknown();
|
|
16422
|
+
const replaceConnectorTriggerDestinationsStatus404Schema = z.unknown();
|
|
16423
|
+
const replaceConnectorTriggerDestinationsStatus410Schema = z.unknown();
|
|
16424
|
+
const replaceConnectorTriggerDestinationsStatus422Schema = z.unknown();
|
|
16425
|
+
const replaceConnectorTriggerDestinationsResponseSchema = replaceConnectorTriggerDestinationsStatus200Schema;
|
|
16426
|
+
const replaceConnectorTriggerDestinationsErrorSchema = z.union([
|
|
16427
|
+
replaceConnectorTriggerDestinationsStatus400Schema,
|
|
16428
|
+
replaceConnectorTriggerDestinationsStatus401Schema,
|
|
16429
|
+
replaceConnectorTriggerDestinationsStatus403Schema,
|
|
16430
|
+
replaceConnectorTriggerDestinationsStatus404Schema,
|
|
16431
|
+
replaceConnectorTriggerDestinationsStatus410Schema,
|
|
16432
|
+
replaceConnectorTriggerDestinationsStatus422Schema
|
|
16433
|
+
]);
|
|
16434
|
+
const listConnectorProjectConnectionsPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16435
|
+
const listConnectorProjectConnectionsQueryLimitSchema = z.int().min(1).max(100).optional().describe("Maximum number of project connections to return. Defaults to 50.");
|
|
16436
|
+
const listConnectorProjectConnectionsQueryCursorSchema = z.string().optional().describe("Cursor from `pagination.next` on the previous response.");
|
|
16437
|
+
const listConnectorProjectConnectionsQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16438
|
+
examples: [
|
|
16439
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16440
|
+
]
|
|
16441
|
+
});
|
|
16442
|
+
const listConnectorProjectConnectionsQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16443
|
+
examples: [
|
|
16444
|
+
"my-team-url-slug"
|
|
16445
|
+
]
|
|
16446
|
+
});
|
|
16447
|
+
const listConnectorProjectConnectionsStatus200Schema = z.unknown();
|
|
16448
|
+
const listConnectorProjectConnectionsStatus400Schema = z.unknown();
|
|
16449
|
+
const listConnectorProjectConnectionsStatus401Schema = z.unknown();
|
|
16450
|
+
const listConnectorProjectConnectionsStatus403Schema = z.unknown();
|
|
16451
|
+
const listConnectorProjectConnectionsStatus404Schema = z.unknown();
|
|
16452
|
+
const listConnectorProjectConnectionsStatus410Schema = z.unknown();
|
|
16453
|
+
const listConnectorProjectConnectionsStatus422Schema = z.unknown();
|
|
16454
|
+
const listConnectorProjectConnectionsResponseSchema = listConnectorProjectConnectionsStatus200Schema;
|
|
16455
|
+
const listConnectorProjectConnectionsErrorSchema = z.union([
|
|
16456
|
+
listConnectorProjectConnectionsStatus400Schema,
|
|
16457
|
+
listConnectorProjectConnectionsStatus401Schema,
|
|
16458
|
+
listConnectorProjectConnectionsStatus403Schema,
|
|
16459
|
+
listConnectorProjectConnectionsStatus404Schema,
|
|
16460
|
+
listConnectorProjectConnectionsStatus410Schema,
|
|
16461
|
+
listConnectorProjectConnectionsStatus422Schema
|
|
16462
|
+
]);
|
|
16463
|
+
const getConnectorProjectConnectionPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16464
|
+
const getConnectorProjectConnectionPathProjectIdSchema = z.string().describe("Vercel project ID.");
|
|
16465
|
+
const getConnectorProjectConnectionQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16466
|
+
examples: [
|
|
16467
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16468
|
+
]
|
|
16469
|
+
});
|
|
16470
|
+
const getConnectorProjectConnectionQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16471
|
+
examples: [
|
|
16472
|
+
"my-team-url-slug"
|
|
16473
|
+
]
|
|
16474
|
+
});
|
|
16475
|
+
const getConnectorProjectConnectionStatus200Schema = z.unknown();
|
|
16476
|
+
const getConnectorProjectConnectionStatus400Schema = z.unknown();
|
|
16477
|
+
const getConnectorProjectConnectionStatus401Schema = z.unknown();
|
|
16478
|
+
const getConnectorProjectConnectionStatus403Schema = z.unknown();
|
|
16479
|
+
const getConnectorProjectConnectionStatus404Schema = z.unknown();
|
|
16480
|
+
const getConnectorProjectConnectionStatus410Schema = z.unknown();
|
|
16481
|
+
const getConnectorProjectConnectionResponseSchema = getConnectorProjectConnectionStatus200Schema;
|
|
16482
|
+
const getConnectorProjectConnectionErrorSchema = z.union([
|
|
16483
|
+
getConnectorProjectConnectionStatus400Schema,
|
|
16484
|
+
getConnectorProjectConnectionStatus401Schema,
|
|
16485
|
+
getConnectorProjectConnectionStatus403Schema,
|
|
16486
|
+
getConnectorProjectConnectionStatus404Schema,
|
|
16487
|
+
getConnectorProjectConnectionStatus410Schema
|
|
16488
|
+
]);
|
|
16489
|
+
const upsertConnectorProjectConnectionPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16490
|
+
const upsertConnectorProjectConnectionPathProjectIdSchema = z.string().describe("Vercel project ID.");
|
|
16491
|
+
const upsertConnectorProjectConnectionQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16492
|
+
examples: [
|
|
16493
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16494
|
+
]
|
|
16495
|
+
});
|
|
16496
|
+
const upsertConnectorProjectConnectionQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16497
|
+
examples: [
|
|
16498
|
+
"my-team-url-slug"
|
|
16499
|
+
]
|
|
16500
|
+
});
|
|
16501
|
+
const upsertConnectorProjectConnectionStatus200Schema = z.unknown();
|
|
16502
|
+
const upsertConnectorProjectConnectionStatus400Schema = z.unknown();
|
|
16503
|
+
const upsertConnectorProjectConnectionStatus401Schema = z.unknown();
|
|
16504
|
+
const upsertConnectorProjectConnectionStatus403Schema = z.unknown();
|
|
16505
|
+
const upsertConnectorProjectConnectionStatus404Schema = z.unknown();
|
|
16506
|
+
const upsertConnectorProjectConnectionStatus410Schema = z.unknown();
|
|
16507
|
+
const upsertConnectorProjectConnectionResponseSchema = upsertConnectorProjectConnectionStatus200Schema;
|
|
16508
|
+
const upsertConnectorProjectConnectionErrorSchema = z.union([
|
|
16509
|
+
upsertConnectorProjectConnectionStatus400Schema,
|
|
16510
|
+
upsertConnectorProjectConnectionStatus401Schema,
|
|
16511
|
+
upsertConnectorProjectConnectionStatus403Schema,
|
|
16512
|
+
upsertConnectorProjectConnectionStatus404Schema,
|
|
16513
|
+
upsertConnectorProjectConnectionStatus410Schema
|
|
16514
|
+
]);
|
|
16515
|
+
const deleteConnectorProjectConnectionPathConnectorSchema = z.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
|
|
16516
|
+
const deleteConnectorProjectConnectionPathProjectIdSchema = z.string().describe("Vercel project ID.");
|
|
16517
|
+
const deleteConnectorProjectConnectionQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16518
|
+
examples: [
|
|
16519
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16520
|
+
]
|
|
16521
|
+
});
|
|
16522
|
+
const deleteConnectorProjectConnectionQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16523
|
+
examples: [
|
|
16524
|
+
"my-team-url-slug"
|
|
16525
|
+
]
|
|
16526
|
+
});
|
|
16527
|
+
const deleteConnectorProjectConnectionStatus204Schema = z.unknown();
|
|
16528
|
+
const deleteConnectorProjectConnectionStatus400Schema = z.unknown();
|
|
16529
|
+
const deleteConnectorProjectConnectionStatus401Schema = z.unknown();
|
|
16530
|
+
const deleteConnectorProjectConnectionStatus403Schema = z.unknown();
|
|
16531
|
+
const deleteConnectorProjectConnectionStatus404Schema = z.unknown();
|
|
16532
|
+
const deleteConnectorProjectConnectionStatus410Schema = z.unknown();
|
|
16533
|
+
const deleteConnectorProjectConnectionResponseSchema = deleteConnectorProjectConnectionStatus204Schema;
|
|
16534
|
+
const deleteConnectorProjectConnectionErrorSchema = z.union([
|
|
16535
|
+
deleteConnectorProjectConnectionStatus400Schema,
|
|
16536
|
+
deleteConnectorProjectConnectionStatus401Schema,
|
|
16537
|
+
deleteConnectorProjectConnectionStatus403Schema,
|
|
16538
|
+
deleteConnectorProjectConnectionStatus404Schema,
|
|
16539
|
+
deleteConnectorProjectConnectionStatus410Schema
|
|
16540
|
+
]);
|
|
16541
|
+
const listProjectConnectorConnectionsPathProjectIdSchema = z.string().describe("Vercel project ID.");
|
|
16542
|
+
const listProjectConnectorConnectionsQueryLimitSchema = z.int().min(1).max(100).optional().describe("Maximum number of connector connections to return. Defaults to 50.");
|
|
16543
|
+
const listProjectConnectorConnectionsQueryCursorSchema = z.string().optional().describe("Cursor from `pagination.next` on the previous response.");
|
|
16544
|
+
const listProjectConnectorConnectionsQueryTeamIdSchema = z.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16545
|
+
examples: [
|
|
16546
|
+
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
16547
|
+
]
|
|
16548
|
+
});
|
|
16549
|
+
const listProjectConnectorConnectionsQuerySlugSchema = z.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
|
|
16550
|
+
examples: [
|
|
16551
|
+
"my-team-url-slug"
|
|
16552
|
+
]
|
|
16553
|
+
});
|
|
16554
|
+
const listProjectConnectorConnectionsStatus200Schema = z.unknown();
|
|
16555
|
+
const listProjectConnectorConnectionsStatus400Schema = z.unknown();
|
|
16556
|
+
const listProjectConnectorConnectionsStatus401Schema = z.unknown();
|
|
16557
|
+
const listProjectConnectorConnectionsStatus403Schema = z.unknown();
|
|
16558
|
+
const listProjectConnectorConnectionsStatus404Schema = z.unknown();
|
|
16559
|
+
const listProjectConnectorConnectionsStatus410Schema = z.unknown();
|
|
16560
|
+
const listProjectConnectorConnectionsResponseSchema = listProjectConnectorConnectionsStatus200Schema;
|
|
16561
|
+
const listProjectConnectorConnectionsErrorSchema = z.union([
|
|
16562
|
+
listProjectConnectorConnectionsStatus400Schema,
|
|
16563
|
+
listProjectConnectorConnectionsStatus401Schema,
|
|
16564
|
+
listProjectConnectorConnectionsStatus403Schema,
|
|
16565
|
+
listProjectConnectorConnectionsStatus404Schema,
|
|
16566
|
+
listProjectConnectorConnectionsStatus410Schema
|
|
16567
|
+
]);
|
|
15256
16568
|
const getConnectorTokenPathConnectorSchema = z.string();
|
|
15257
16569
|
const getConnectorTokenStatus200Schema = z.unknown();
|
|
15258
16570
|
const getConnectorTokenStatus400Schema = z.unknown();
|
|
@@ -17204,21 +18516,11 @@ const listSharedEnvVariableQueryExcludeIdsSchema = z.string().optional().describ
|
|
|
17204
18516
|
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17205
18517
|
]
|
|
17206
18518
|
});
|
|
17207
|
-
const listSharedEnvVariableQueryexcludeIdsSchema = z.string().optional().describe("Filter SharedEnvVariables based on comma separated ids").meta({
|
|
17208
|
-
examples: [
|
|
17209
|
-
"env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
17210
|
-
]
|
|
17211
|
-
});
|
|
17212
18519
|
const listSharedEnvVariableQueryExcludeProjectIdSchema = z.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17213
18520
|
examples: [
|
|
17214
18521
|
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17215
18522
|
]
|
|
17216
18523
|
});
|
|
17217
|
-
const listSharedEnvVariableQueryexcludeProjectIdSchema = z.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
|
|
17218
|
-
examples: [
|
|
17219
|
-
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
17220
|
-
]
|
|
17221
|
-
});
|
|
17222
18524
|
const listSharedEnvVariableQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
17223
18525
|
examples: [
|
|
17224
18526
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -18177,7 +19479,8 @@ const getBillingPlansQuerySourceSchema = z.enum([
|
|
|
18177
19479
|
"cli",
|
|
18178
19480
|
"oauth",
|
|
18179
19481
|
"backoffice",
|
|
18180
|
-
"import-recommended-integrations"
|
|
19482
|
+
"import-recommended-integrations",
|
|
19483
|
+
"organization"
|
|
18181
19484
|
]).optional();
|
|
18182
19485
|
const getBillingPlansQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
18183
19486
|
examples: [
|
|
@@ -18381,7 +19684,6 @@ const importResourceStatus404Schema = z.unknown();
|
|
|
18381
19684
|
const importResourceStatus409Schema = z.unknown();
|
|
18382
19685
|
const importResourceStatus410Schema = z.unknown();
|
|
18383
19686
|
const importResourceStatus422Schema = z.unknown();
|
|
18384
|
-
const importResourceStatus429Schema = z.unknown();
|
|
18385
19687
|
const importResourceResponseSchema = importResourceStatus200Schema;
|
|
18386
19688
|
const importResourceErrorSchema = z.union([
|
|
18387
19689
|
importResourceStatus400Schema,
|
|
@@ -18390,8 +19692,7 @@ const importResourceErrorSchema = z.union([
|
|
|
18390
19692
|
importResourceStatus404Schema,
|
|
18391
19693
|
importResourceStatus409Schema,
|
|
18392
19694
|
importResourceStatus410Schema,
|
|
18393
|
-
importResourceStatus422Schema
|
|
18394
|
-
importResourceStatus429Schema
|
|
19695
|
+
importResourceStatus422Schema
|
|
18395
19696
|
]);
|
|
18396
19697
|
const updateResourcePathIntegrationConfigurationIdSchema = z.string();
|
|
18397
19698
|
const updateResourcePathResourceIdSchema = z.string();
|
|
@@ -19381,6 +20682,10 @@ const createObservabilityQueryStatus402Schema = z.unknown();
|
|
|
19381
20682
|
const createObservabilityQueryStatus403Schema = z.unknown();
|
|
19382
20683
|
const createObservabilityQueryStatus408Schema = z.unknown();
|
|
19383
20684
|
const createObservabilityQueryStatus410Schema = z.unknown();
|
|
20685
|
+
const createObservabilityQueryStatus413Schema = z.unknown();
|
|
20686
|
+
const createObservabilityQueryStatus422Schema = z.unknown();
|
|
20687
|
+
const createObservabilityQueryStatus500Schema = z.unknown();
|
|
20688
|
+
const createObservabilityQueryStatus503Schema = z.unknown();
|
|
19384
20689
|
const createObservabilityQueryResponseSchema = createObservabilityQueryStatus200Schema;
|
|
19385
20690
|
const createObservabilityQueryErrorSchema = z.union([
|
|
19386
20691
|
createObservabilityQueryStatus400Schema,
|
|
@@ -19388,7 +20693,11 @@ const createObservabilityQueryErrorSchema = z.union([
|
|
|
19388
20693
|
createObservabilityQueryStatus402Schema,
|
|
19389
20694
|
createObservabilityQueryStatus403Schema,
|
|
19390
20695
|
createObservabilityQueryStatus408Schema,
|
|
19391
|
-
createObservabilityQueryStatus410Schema
|
|
20696
|
+
createObservabilityQueryStatus410Schema,
|
|
20697
|
+
createObservabilityQueryStatus413Schema,
|
|
20698
|
+
createObservabilityQueryStatus422Schema,
|
|
20699
|
+
createObservabilityQueryStatus500Schema,
|
|
20700
|
+
createObservabilityQueryStatus503Schema
|
|
19392
20701
|
]);
|
|
19393
20702
|
const getObservabilitySchemaStatus200Schema = z.unknown();
|
|
19394
20703
|
const getObservabilitySchemaStatus400Schema = z.unknown();
|
|
@@ -19986,6 +21295,7 @@ const updateProjectStatus404Schema = z.unknown();
|
|
|
19986
21295
|
const updateProjectStatus409Schema = z.unknown();
|
|
19987
21296
|
const updateProjectStatus410Schema = z.unknown();
|
|
19988
21297
|
const updateProjectStatus428Schema = z.unknown();
|
|
21298
|
+
const updateProjectStatus429Schema = z.unknown();
|
|
19989
21299
|
const updateProjectResponseSchema = updateProjectStatus200Schema;
|
|
19990
21300
|
const updateProjectErrorSchema = z.union([
|
|
19991
21301
|
updateProjectStatus400Schema,
|
|
@@ -19995,7 +21305,8 @@ const updateProjectErrorSchema = z.union([
|
|
|
19995
21305
|
updateProjectStatus404Schema,
|
|
19996
21306
|
updateProjectStatus409Schema,
|
|
19997
21307
|
updateProjectStatus410Schema,
|
|
19998
|
-
updateProjectStatus428Schema
|
|
21308
|
+
updateProjectStatus428Schema,
|
|
21309
|
+
updateProjectStatus429Schema
|
|
19999
21310
|
]);
|
|
20000
21311
|
const deleteProjectPathIdOrNameSchema = z.string().describe("The unique project identifier or the project name").meta({
|
|
20001
21312
|
examples: [
|
|
@@ -20924,12 +22235,14 @@ const createProjectTransferRequestStatus200Schema = z.unknown();
|
|
|
20924
22235
|
const createProjectTransferRequestStatus400Schema = z.unknown();
|
|
20925
22236
|
const createProjectTransferRequestStatus401Schema = z.unknown();
|
|
20926
22237
|
const createProjectTransferRequestStatus403Schema = z.unknown();
|
|
22238
|
+
const createProjectTransferRequestStatus409Schema = z.unknown();
|
|
20927
22239
|
const createProjectTransferRequestStatus410Schema = z.unknown();
|
|
20928
22240
|
const createProjectTransferRequestResponseSchema = createProjectTransferRequestStatus200Schema;
|
|
20929
22241
|
const createProjectTransferRequestErrorSchema = z.union([
|
|
20930
22242
|
createProjectTransferRequestStatus400Schema,
|
|
20931
22243
|
createProjectTransferRequestStatus401Schema,
|
|
20932
22244
|
createProjectTransferRequestStatus403Schema,
|
|
22245
|
+
createProjectTransferRequestStatus409Schema,
|
|
20933
22246
|
createProjectTransferRequestStatus410Schema
|
|
20934
22247
|
]);
|
|
20935
22248
|
const acceptProjectTransferRequestPathCodeSchema = z.string().describe("The code of the project transfer request.");
|
|
@@ -21189,62 +22502,62 @@ const unpauseProjectErrorSchema = z.union([
|
|
|
21189
22502
|
unpauseProjectStatus410Schema,
|
|
21190
22503
|
unpauseProjectStatus500Schema
|
|
21191
22504
|
]);
|
|
21192
|
-
const
|
|
22505
|
+
const listNamedSandboxesQueryProjectSchema = z.string().optional().describe("The unique identifier or name of the project to list named sandboxes for.").meta({
|
|
21193
22506
|
examples: [
|
|
21194
22507
|
"prj_abc123"
|
|
21195
22508
|
]
|
|
21196
22509
|
});
|
|
21197
|
-
const
|
|
22510
|
+
const listNamedSandboxesQueryLimitSchema = z.number().min(1).max(50).optional().default(20).describe("Maximum number of named sandboxes to return in the response. Used for pagination.").meta({
|
|
21198
22511
|
examples: [
|
|
21199
22512
|
20
|
|
21200
22513
|
]
|
|
21201
22514
|
});
|
|
21202
|
-
const
|
|
22515
|
+
const listNamedSandboxesQuerySortBySchema = z.enum([
|
|
21203
22516
|
"createdAt",
|
|
21204
22517
|
"name",
|
|
21205
22518
|
"statusUpdatedAt",
|
|
21206
22519
|
"currentSnapshotId"
|
|
21207
22520
|
]).optional().default("createdAt").describe("Field to sort by.");
|
|
21208
|
-
const
|
|
21209
|
-
const
|
|
21210
|
-
const
|
|
22521
|
+
const listNamedSandboxesQueryNamePrefixSchema = z.string().optional().describe("Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.");
|
|
22522
|
+
const listNamedSandboxesQueryCursorSchema = z.string().optional().describe("Opaque pagination cursor from a previous response.");
|
|
22523
|
+
const listNamedSandboxesQuerySortOrderSchema = z.enum([
|
|
21211
22524
|
"asc",
|
|
21212
22525
|
"desc"
|
|
21213
22526
|
]).optional().default("desc").describe("Sort direction. Defaults to desc.");
|
|
21214
|
-
const
|
|
22527
|
+
const listNamedSandboxesQueryStatusSchema = z.enum([
|
|
21215
22528
|
"running",
|
|
21216
22529
|
"stopping",
|
|
21217
22530
|
"stopped"
|
|
21218
22531
|
]).optional().describe("Filter named sandboxes by status. Only valid when sortBy is createdAt.");
|
|
21219
|
-
const
|
|
22532
|
+
const listNamedSandboxesQueryTagsSchema = z.union([
|
|
21220
22533
|
z.string(),
|
|
21221
22534
|
z.array(z.string())
|
|
21222
22535
|
]).optional().describe('Filter sandboxes by tag. Format: \\"key:value\\". Only one tag filter is supported at a time.');
|
|
21223
|
-
const
|
|
22536
|
+
const listNamedSandboxesQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
21224
22537
|
examples: [
|
|
21225
22538
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
21226
22539
|
]
|
|
21227
22540
|
});
|
|
21228
|
-
const
|
|
22541
|
+
const listNamedSandboxesQuerySlugSchema = z.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
|
|
21229
22542
|
examples: [
|
|
21230
22543
|
"my-team-url-slug"
|
|
21231
22544
|
]
|
|
21232
22545
|
});
|
|
21233
|
-
const
|
|
21234
|
-
const
|
|
21235
|
-
const
|
|
21236
|
-
const
|
|
21237
|
-
const
|
|
21238
|
-
const
|
|
21239
|
-
const
|
|
21240
|
-
const
|
|
21241
|
-
const
|
|
21242
|
-
|
|
21243
|
-
|
|
21244
|
-
|
|
21245
|
-
|
|
21246
|
-
|
|
21247
|
-
|
|
22546
|
+
const listNamedSandboxesStatus200Schema = z.unknown();
|
|
22547
|
+
const listNamedSandboxesStatus400Schema = z.unknown();
|
|
22548
|
+
const listNamedSandboxesStatus401Schema = z.unknown();
|
|
22549
|
+
const listNamedSandboxesStatus403Schema = z.unknown();
|
|
22550
|
+
const listNamedSandboxesStatus404Schema = z.unknown();
|
|
22551
|
+
const listNamedSandboxesStatus410Schema = z.unknown();
|
|
22552
|
+
const listNamedSandboxesStatus429Schema = z.unknown();
|
|
22553
|
+
const listNamedSandboxesResponseSchema = listNamedSandboxesStatus200Schema;
|
|
22554
|
+
const listNamedSandboxesErrorSchema = z.union([
|
|
22555
|
+
listNamedSandboxesStatus400Schema,
|
|
22556
|
+
listNamedSandboxesStatus401Schema,
|
|
22557
|
+
listNamedSandboxesStatus403Schema,
|
|
22558
|
+
listNamedSandboxesStatus404Schema,
|
|
22559
|
+
listNamedSandboxesStatus410Schema,
|
|
22560
|
+
listNamedSandboxesStatus429Schema
|
|
21248
22561
|
]);
|
|
21249
22562
|
const createSandboxesV2QueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
21250
22563
|
examples: [
|
|
@@ -22080,7 +23393,7 @@ const createSessionDirectoryErrorSchema = z.union([
|
|
|
22080
23393
|
createSessionDirectoryStatus429Schema,
|
|
22081
23394
|
createSessionDirectoryStatus500Schema
|
|
22082
23395
|
]);
|
|
22083
|
-
const
|
|
23396
|
+
const writeSessionFilesHeaderXCwdSchema = z.string().optional().describe("The target directory where the tarball contents will be extracted. If not specified, files are extracted to the sandbox home directory.").meta({
|
|
22084
23397
|
examples: [
|
|
22085
23398
|
"/home/vercel-sandbox"
|
|
22086
23399
|
]
|
|
@@ -22541,6 +23854,7 @@ const getBypassIpQuerySlugSchema = z.string().optional().describe("The Team slug
|
|
|
22541
23854
|
const getBypassIpStatus200Schema = z.unknown();
|
|
22542
23855
|
const getBypassIpStatus400Schema = z.unknown();
|
|
22543
23856
|
const getBypassIpStatus401Schema = z.unknown();
|
|
23857
|
+
const getBypassIpStatus402Schema = z.unknown();
|
|
22544
23858
|
const getBypassIpStatus403Schema = z.unknown();
|
|
22545
23859
|
const getBypassIpStatus404Schema = z.unknown();
|
|
22546
23860
|
const getBypassIpStatus410Schema = z.unknown();
|
|
@@ -22549,6 +23863,7 @@ const getBypassIpResponseSchema = getBypassIpStatus200Schema;
|
|
|
22549
23863
|
const getBypassIpErrorSchema = z.union([
|
|
22550
23864
|
getBypassIpStatus400Schema,
|
|
22551
23865
|
getBypassIpStatus401Schema,
|
|
23866
|
+
getBypassIpStatus402Schema,
|
|
22552
23867
|
getBypassIpStatus403Schema,
|
|
22553
23868
|
getBypassIpStatus404Schema,
|
|
22554
23869
|
getBypassIpStatus410Schema,
|
|
@@ -22568,6 +23883,7 @@ const addBypassIpQuerySlugSchema = z.string().optional().describe("The Team slug
|
|
|
22568
23883
|
const addBypassIpStatus200Schema = z.unknown();
|
|
22569
23884
|
const addBypassIpStatus400Schema = z.unknown();
|
|
22570
23885
|
const addBypassIpStatus401Schema = z.unknown();
|
|
23886
|
+
const addBypassIpStatus402Schema = z.unknown();
|
|
22571
23887
|
const addBypassIpStatus403Schema = z.unknown();
|
|
22572
23888
|
const addBypassIpStatus404Schema = z.unknown();
|
|
22573
23889
|
const addBypassIpStatus410Schema = z.unknown();
|
|
@@ -22576,6 +23892,7 @@ const addBypassIpResponseSchema = addBypassIpStatus200Schema;
|
|
|
22576
23892
|
const addBypassIpErrorSchema = z.union([
|
|
22577
23893
|
addBypassIpStatus400Schema,
|
|
22578
23894
|
addBypassIpStatus401Schema,
|
|
23895
|
+
addBypassIpStatus402Schema,
|
|
22579
23896
|
addBypassIpStatus403Schema,
|
|
22580
23897
|
addBypassIpStatus404Schema,
|
|
22581
23898
|
addBypassIpStatus410Schema,
|
|
@@ -22595,6 +23912,7 @@ const removeBypassIpQuerySlugSchema = z.string().optional().describe("The Team s
|
|
|
22595
23912
|
const removeBypassIpStatus200Schema = z.unknown();
|
|
22596
23913
|
const removeBypassIpStatus400Schema = z.unknown();
|
|
22597
23914
|
const removeBypassIpStatus401Schema = z.unknown();
|
|
23915
|
+
const removeBypassIpStatus402Schema = z.unknown();
|
|
22598
23916
|
const removeBypassIpStatus403Schema = z.unknown();
|
|
22599
23917
|
const removeBypassIpStatus404Schema = z.unknown();
|
|
22600
23918
|
const removeBypassIpStatus410Schema = z.unknown();
|
|
@@ -22603,6 +23921,7 @@ const removeBypassIpResponseSchema = removeBypassIpStatus200Schema;
|
|
|
22603
23921
|
const removeBypassIpErrorSchema = z.union([
|
|
22604
23922
|
removeBypassIpStatus400Schema,
|
|
22605
23923
|
removeBypassIpStatus401Schema,
|
|
23924
|
+
removeBypassIpStatus402Schema,
|
|
22606
23925
|
removeBypassIpStatus403Schema,
|
|
22607
23926
|
removeBypassIpStatus404Schema,
|
|
22608
23927
|
removeBypassIpStatus410Schema,
|
|
@@ -22627,6 +23946,7 @@ const getSecurityFirewallEventsStatus400Schema = z.unknown();
|
|
|
22627
23946
|
const getSecurityFirewallEventsStatus401Schema = z.unknown();
|
|
22628
23947
|
const getSecurityFirewallEventsStatus403Schema = z.unknown();
|
|
22629
23948
|
const getSecurityFirewallEventsStatus404Schema = z.unknown();
|
|
23949
|
+
const getSecurityFirewallEventsStatus408Schema = z.unknown();
|
|
22630
23950
|
const getSecurityFirewallEventsStatus410Schema = z.unknown();
|
|
22631
23951
|
const getSecurityFirewallEventsStatus500Schema = z.unknown();
|
|
22632
23952
|
const getSecurityFirewallEventsResponseSchema = getSecurityFirewallEventsStatus200Schema;
|
|
@@ -22635,6 +23955,7 @@ const getSecurityFirewallEventsErrorSchema = z.union([
|
|
|
22635
23955
|
getSecurityFirewallEventsStatus401Schema,
|
|
22636
23956
|
getSecurityFirewallEventsStatus403Schema,
|
|
22637
23957
|
getSecurityFirewallEventsStatus404Schema,
|
|
23958
|
+
getSecurityFirewallEventsStatus408Schema,
|
|
22638
23959
|
getSecurityFirewallEventsStatus410Schema,
|
|
22639
23960
|
getSecurityFirewallEventsStatus500Schema
|
|
22640
23961
|
]);
|
|
@@ -22683,8 +24004,8 @@ const createSpeedInsightsToggleErrorSchema = z.union([
|
|
|
22683
24004
|
createSpeedInsightsToggleStatus410Schema
|
|
22684
24005
|
]);
|
|
22685
24006
|
const getStorageStoresByIdPathIdSchema = z.string();
|
|
22686
|
-
const
|
|
22687
|
-
const
|
|
24007
|
+
const getStorageStoresByIdQuerySkipMetadataSchema = z.boolean().optional();
|
|
24008
|
+
const getStorageStoresByIdQueryIncludeGuidesSchema = z.boolean().optional();
|
|
22688
24009
|
const getStorageStoresByIdStatus200Schema = z.unknown();
|
|
22689
24010
|
const getStorageStoresByIdStatus400Schema = z.unknown();
|
|
22690
24011
|
const getStorageStoresByIdStatus401Schema = z.unknown();
|
|
@@ -22754,7 +24075,6 @@ const createIntegrationStoreDirectStatus403Schema = z.unknown();
|
|
|
22754
24075
|
const createIntegrationStoreDirectStatus404Schema = z.unknown();
|
|
22755
24076
|
const createIntegrationStoreDirectStatus409Schema = z.unknown();
|
|
22756
24077
|
const createIntegrationStoreDirectStatus410Schema = z.unknown();
|
|
22757
|
-
const createIntegrationStoreDirectStatus429Schema = z.unknown();
|
|
22758
24078
|
const createIntegrationStoreDirectStatus500Schema = z.unknown();
|
|
22759
24079
|
const createIntegrationStoreDirectResponseSchema = createIntegrationStoreDirectStatus200Schema;
|
|
22760
24080
|
const createIntegrationStoreDirectErrorSchema = z.union([
|
|
@@ -22765,7 +24085,6 @@ const createIntegrationStoreDirectErrorSchema = z.union([
|
|
|
22765
24085
|
createIntegrationStoreDirectStatus404Schema,
|
|
22766
24086
|
createIntegrationStoreDirectStatus409Schema,
|
|
22767
24087
|
createIntegrationStoreDirectStatus410Schema,
|
|
22768
|
-
createIntegrationStoreDirectStatus429Schema,
|
|
22769
24088
|
createIntegrationStoreDirectStatus500Schema
|
|
22770
24089
|
]);
|
|
22771
24090
|
const getTeamMembersQueryLimitSchema = z.number().min(1).optional().describe("Limit how many teams should be returned").meta({
|
|
@@ -23114,6 +24433,7 @@ const deleteTeamStatus402Schema = z.unknown();
|
|
|
23114
24433
|
const deleteTeamStatus403Schema = z.unknown();
|
|
23115
24434
|
const deleteTeamStatus409Schema = z.unknown();
|
|
23116
24435
|
const deleteTeamStatus410Schema = z.unknown();
|
|
24436
|
+
const deleteTeamStatus503Schema = z.unknown();
|
|
23117
24437
|
const deleteTeamResponseSchema = deleteTeamStatus200Schema;
|
|
23118
24438
|
const deleteTeamErrorSchema = z.union([
|
|
23119
24439
|
deleteTeamStatus400Schema,
|
|
@@ -23121,7 +24441,8 @@ const deleteTeamErrorSchema = z.union([
|
|
|
23121
24441
|
deleteTeamStatus402Schema,
|
|
23122
24442
|
deleteTeamStatus403Schema,
|
|
23123
24443
|
deleteTeamStatus409Schema,
|
|
23124
|
-
deleteTeamStatus410Schema
|
|
24444
|
+
deleteTeamStatus410Schema,
|
|
24445
|
+
deleteTeamStatus503Schema
|
|
23125
24446
|
]);
|
|
23126
24447
|
const deleteTeamInviteCodePathInviteIdSchema = z.string().describe("The Team invite code ID.").meta({
|
|
23127
24448
|
examples: [
|
|
@@ -23203,10 +24524,10 @@ const deleteMicrofrontendsGroupErrorSchema = z.union([
|
|
|
23203
24524
|
deleteMicrofrontendsGroupStatus410Schema,
|
|
23204
24525
|
deleteMicrofrontendsGroupStatus500Schema
|
|
23205
24526
|
]);
|
|
23206
|
-
const
|
|
23207
|
-
const
|
|
23208
|
-
const
|
|
23209
|
-
const
|
|
24527
|
+
const uploadFileHeaderContentLengthSchema = z.number().optional().describe("The file size in bytes");
|
|
24528
|
+
const uploadFileHeaderXVercelDigestSchema = z.string().max(40).optional().describe("The file SHA1 used to check the integrity");
|
|
24529
|
+
const uploadFileHeaderXNowDigestSchema = z.string().max(40).optional().describe("The file SHA1 used to check the integrity");
|
|
24530
|
+
const uploadFileHeaderXNowSizeSchema = z.number().optional().describe("The file size as an alternative to `Content-Length`");
|
|
23210
24531
|
const uploadFileQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23211
24532
|
examples: [
|
|
23212
24533
|
"team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
@@ -23363,7 +24684,7 @@ const createRepositoryErrorSchema = z.union([
|
|
|
23363
24684
|
createRepositoryStatus409Schema,
|
|
23364
24685
|
createRepositoryStatus410Schema
|
|
23365
24686
|
]);
|
|
23366
|
-
const listRepositoriesQueryProjectIdSchema = z.string();
|
|
24687
|
+
const listRepositoriesQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23367
24688
|
const listRepositoriesQueryLimitSchema = z.int().min(1).max(1000).optional();
|
|
23368
24689
|
const listRepositoriesQueryCursorSchema = z.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
|
|
23369
24690
|
const listRepositoriesQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
@@ -23390,7 +24711,7 @@ const listRepositoriesErrorSchema = z.union([
|
|
|
23390
24711
|
listRepositoriesStatus404Schema,
|
|
23391
24712
|
listRepositoriesStatus410Schema
|
|
23392
24713
|
]);
|
|
23393
|
-
const getRepositoryQueryProjectIdSchema = z.string();
|
|
24714
|
+
const getRepositoryQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23394
24715
|
const getRepositoryPathIdOrNameSchema = z.string().max(255);
|
|
23395
24716
|
const getRepositoryQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23396
24717
|
examples: [
|
|
@@ -23416,7 +24737,7 @@ const getRepositoryErrorSchema = z.union([
|
|
|
23416
24737
|
getRepositoryStatus404Schema,
|
|
23417
24738
|
getRepositoryStatus410Schema
|
|
23418
24739
|
]);
|
|
23419
|
-
const deleteRepositoryQueryProjectIdSchema = z.string();
|
|
24740
|
+
const deleteRepositoryQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23420
24741
|
const deleteRepositoryPathIdOrNameSchema = z.string().max(255);
|
|
23421
24742
|
const deleteRepositoryQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23422
24743
|
examples: [
|
|
@@ -23442,7 +24763,7 @@ const deleteRepositoryErrorSchema = z.union([
|
|
|
23442
24763
|
deleteRepositoryStatus404Schema,
|
|
23443
24764
|
deleteRepositoryStatus410Schema
|
|
23444
24765
|
]);
|
|
23445
|
-
const listRepositoryImagesQueryProjectIdSchema = z.string();
|
|
24766
|
+
const listRepositoryImagesQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23446
24767
|
const listRepositoryImagesPathIdOrNameSchema = z.string().max(255);
|
|
23447
24768
|
const listRepositoryImagesQueryLimitSchema = z.int().min(1).max(100).optional();
|
|
23448
24769
|
const listRepositoryImagesQueryCursorSchema = z.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
|
|
@@ -23471,7 +24792,7 @@ const listRepositoryImagesErrorSchema = z.union([
|
|
|
23471
24792
|
listRepositoryImagesStatus404Schema,
|
|
23472
24793
|
listRepositoryImagesStatus410Schema
|
|
23473
24794
|
]);
|
|
23474
|
-
const addRepositoryPermissionQueryProjectIdSchema = z.string();
|
|
24795
|
+
const addRepositoryPermissionQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23475
24796
|
const addRepositoryPermissionPathIdOrNameSchema = z.string().max(255);
|
|
23476
24797
|
const addRepositoryPermissionQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23477
24798
|
examples: [
|
|
@@ -23497,7 +24818,7 @@ const addRepositoryPermissionErrorSchema = z.union([
|
|
|
23497
24818
|
addRepositoryPermissionStatus404Schema,
|
|
23498
24819
|
addRepositoryPermissionStatus410Schema
|
|
23499
24820
|
]);
|
|
23500
|
-
const removeRepositoryPermissionQueryProjectIdSchema = z.string();
|
|
24821
|
+
const removeRepositoryPermissionQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23501
24822
|
const removeRepositoryPermissionPathIdOrNameSchema = z.string().max(255);
|
|
23502
24823
|
const removeRepositoryPermissionQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23503
24824
|
examples: [
|
|
@@ -23523,7 +24844,7 @@ const removeRepositoryPermissionErrorSchema = z.union([
|
|
|
23523
24844
|
removeRepositoryPermissionStatus404Schema,
|
|
23524
24845
|
removeRepositoryPermissionStatus410Schema
|
|
23525
24846
|
]);
|
|
23526
|
-
const listRepositoryPermissionsQueryProjectIdSchema = z.string();
|
|
24847
|
+
const listRepositoryPermissionsQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23527
24848
|
const listRepositoryPermissionsPathIdOrNameSchema = z.string().max(255);
|
|
23528
24849
|
const listRepositoryPermissionsQueryLimitSchema = z.int().min(1).max(100).optional();
|
|
23529
24850
|
const listRepositoryPermissionsQueryCursorSchema = z.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
|
|
@@ -23551,7 +24872,7 @@ const listRepositoryPermissionsErrorSchema = z.union([
|
|
|
23551
24872
|
listRepositoryPermissionsStatus404Schema,
|
|
23552
24873
|
listRepositoryPermissionsStatus410Schema
|
|
23553
24874
|
]);
|
|
23554
|
-
const clearRepositoryPermissionsQueryProjectIdSchema = z.string();
|
|
24875
|
+
const clearRepositoryPermissionsQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23555
24876
|
const clearRepositoryPermissionsPathIdOrNameSchema = z.string().max(255);
|
|
23556
24877
|
const clearRepositoryPermissionsQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
23557
24878
|
examples: [
|
|
@@ -23577,7 +24898,7 @@ const clearRepositoryPermissionsErrorSchema = z.union([
|
|
|
23577
24898
|
clearRepositoryPermissionsStatus404Schema,
|
|
23578
24899
|
clearRepositoryPermissionsStatus410Schema
|
|
23579
24900
|
]);
|
|
23580
|
-
const listRepositoryTagsQueryProjectIdSchema = z.string();
|
|
24901
|
+
const listRepositoryTagsQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23581
24902
|
const listRepositoryTagsPathIdOrNameSchema = z.string().max(255);
|
|
23582
24903
|
const listRepositoryTagsQueryLimitSchema = z.int().min(1).max(100).optional();
|
|
23583
24904
|
const listRepositoryTagsQueryCursorSchema = z.string().optional();
|
|
@@ -23613,7 +24934,7 @@ const listRepositoryTagsErrorSchema = z.union([
|
|
|
23613
24934
|
listRepositoryTagsStatus404Schema,
|
|
23614
24935
|
listRepositoryTagsStatus410Schema
|
|
23615
24936
|
]);
|
|
23616
|
-
const getRepositoryTagQueryProjectIdSchema = z.string();
|
|
24937
|
+
const getRepositoryTagQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23617
24938
|
const getRepositoryTagPathIdOrNameSchema = z.string().max(255);
|
|
23618
24939
|
const getRepositoryTagPathTagSchema = z.string().max(255);
|
|
23619
24940
|
const getRepositoryTagQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
@@ -23640,7 +24961,7 @@ const getRepositoryTagErrorSchema = z.union([
|
|
|
23640
24961
|
getRepositoryTagStatus404Schema,
|
|
23641
24962
|
getRepositoryTagStatus410Schema
|
|
23642
24963
|
]);
|
|
23643
|
-
const getRepositoryImageQueryProjectIdSchema = z.string();
|
|
24964
|
+
const getRepositoryImageQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23644
24965
|
const getRepositoryImagePathIdOrNameSchema = z.string().max(255);
|
|
23645
24966
|
const getRepositoryImagePathImageIdOrDigestSchema = z.string().max(255).describe("The internal image id (`image_...`) or the image manifest digest (`sha256:...`).");
|
|
23646
24967
|
const getRepositoryImageQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
@@ -23667,7 +24988,7 @@ const getRepositoryImageErrorSchema = z.union([
|
|
|
23667
24988
|
getRepositoryImageStatus404Schema,
|
|
23668
24989
|
getRepositoryImageStatus410Schema
|
|
23669
24990
|
]);
|
|
23670
|
-
const deleteRepositoryImageQueryProjectIdSchema = z.string();
|
|
24991
|
+
const deleteRepositoryImageQueryProjectIdSchema = z.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
|
|
23671
24992
|
const deleteRepositoryImagePathIdOrNameSchema = z.string().max(255);
|
|
23672
24993
|
const deleteRepositoryImagePathImageIdSchema = z.string().max(255);
|
|
23673
24994
|
const deleteRepositoryImageQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
@@ -24134,7 +25455,10 @@ const aggregatePageviewsQueryBySchema = z.array(z.string().regex(/^(flags)(\/([0
|
|
|
24134
25455
|
message: "Array entries must be unique"
|
|
24135
25456
|
}).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm.\n\nJSON dimensions: flags. Used bare, it breaks down results by key, for example flags returns one group per flag name. With a key, it breaks down results by that key's value, for example flags/beta_banner. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
|
|
24136
25457
|
examples: [
|
|
24137
|
-
|
|
25458
|
+
[
|
|
25459
|
+
"day",
|
|
25460
|
+
"country"
|
|
25461
|
+
]
|
|
24138
25462
|
]
|
|
24139
25463
|
});
|
|
24140
25464
|
const aggregatePageviewsQuerySinceSchema = z.union([
|
|
@@ -24178,14 +25502,18 @@ const aggregatePageviewsStatus400Schema = z.unknown();
|
|
|
24178
25502
|
const aggregatePageviewsStatus401Schema = z.unknown();
|
|
24179
25503
|
const aggregatePageviewsStatus402Schema = z.unknown();
|
|
24180
25504
|
const aggregatePageviewsStatus403Schema = z.unknown();
|
|
25505
|
+
const aggregatePageviewsStatus404Schema = z.unknown();
|
|
24181
25506
|
const aggregatePageviewsStatus410Schema = z.unknown();
|
|
25507
|
+
const aggregatePageviewsStatus503Schema = z.unknown();
|
|
24182
25508
|
const aggregatePageviewsResponseSchema = aggregatePageviewsStatus200Schema;
|
|
24183
25509
|
const aggregatePageviewsErrorSchema = z.union([
|
|
24184
25510
|
aggregatePageviewsStatus400Schema,
|
|
24185
25511
|
aggregatePageviewsStatus401Schema,
|
|
24186
25512
|
aggregatePageviewsStatus402Schema,
|
|
24187
25513
|
aggregatePageviewsStatus403Schema,
|
|
24188
|
-
|
|
25514
|
+
aggregatePageviewsStatus404Schema,
|
|
25515
|
+
aggregatePageviewsStatus410Schema,
|
|
25516
|
+
aggregatePageviewsStatus503Schema
|
|
24189
25517
|
]);
|
|
24190
25518
|
const aggregateEventsQueryProjectIdSchema = z.string().describe("The project identifier or the project name").meta({
|
|
24191
25519
|
examples: [
|
|
@@ -24196,7 +25524,10 @@ const aggregateEventsQueryBySchema = z.array(z.string().regex(/^(flags|eventData
|
|
|
24196
25524
|
message: "Array entries must be unique"
|
|
24197
25525
|
}).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm, eventName.\n\nJSON dimensions: flags, eventData. Used bare, they break down results by key, for example flags returns one group per flag name. With a key, they break down results by that key's value, for example eventData/plan. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
|
|
24198
25526
|
examples: [
|
|
24199
|
-
|
|
25527
|
+
[
|
|
25528
|
+
"day",
|
|
25529
|
+
"eventName"
|
|
25530
|
+
]
|
|
24200
25531
|
]
|
|
24201
25532
|
});
|
|
24202
25533
|
const aggregateEventsQuerySinceSchema = z.union([
|
|
@@ -24240,14 +25571,18 @@ const aggregateEventsStatus400Schema = z.unknown();
|
|
|
24240
25571
|
const aggregateEventsStatus401Schema = z.unknown();
|
|
24241
25572
|
const aggregateEventsStatus402Schema = z.unknown();
|
|
24242
25573
|
const aggregateEventsStatus403Schema = z.unknown();
|
|
25574
|
+
const aggregateEventsStatus404Schema = z.unknown();
|
|
24243
25575
|
const aggregateEventsStatus410Schema = z.unknown();
|
|
25576
|
+
const aggregateEventsStatus503Schema = z.unknown();
|
|
24244
25577
|
const aggregateEventsResponseSchema = aggregateEventsStatus200Schema;
|
|
24245
25578
|
const aggregateEventsErrorSchema = z.union([
|
|
24246
25579
|
aggregateEventsStatus400Schema,
|
|
24247
25580
|
aggregateEventsStatus401Schema,
|
|
24248
25581
|
aggregateEventsStatus402Schema,
|
|
24249
25582
|
aggregateEventsStatus403Schema,
|
|
24250
|
-
|
|
25583
|
+
aggregateEventsStatus404Schema,
|
|
25584
|
+
aggregateEventsStatus410Schema,
|
|
25585
|
+
aggregateEventsStatus503Schema
|
|
24251
25586
|
]);
|
|
24252
25587
|
const countPageviewsQueryProjectIdSchema = z.string().describe("The project identifier or the project name").meta({
|
|
24253
25588
|
examples: [
|
|
@@ -24290,14 +25625,18 @@ const countPageviewsStatus400Schema = z.unknown();
|
|
|
24290
25625
|
const countPageviewsStatus401Schema = z.unknown();
|
|
24291
25626
|
const countPageviewsStatus402Schema = z.unknown();
|
|
24292
25627
|
const countPageviewsStatus403Schema = z.unknown();
|
|
25628
|
+
const countPageviewsStatus404Schema = z.unknown();
|
|
24293
25629
|
const countPageviewsStatus410Schema = z.unknown();
|
|
25630
|
+
const countPageviewsStatus503Schema = z.unknown();
|
|
24294
25631
|
const countPageviewsResponseSchema = countPageviewsStatus200Schema;
|
|
24295
25632
|
const countPageviewsErrorSchema = z.union([
|
|
24296
25633
|
countPageviewsStatus400Schema,
|
|
24297
25634
|
countPageviewsStatus401Schema,
|
|
24298
25635
|
countPageviewsStatus402Schema,
|
|
24299
25636
|
countPageviewsStatus403Schema,
|
|
24300
|
-
|
|
25637
|
+
countPageviewsStatus404Schema,
|
|
25638
|
+
countPageviewsStatus410Schema,
|
|
25639
|
+
countPageviewsStatus503Schema
|
|
24301
25640
|
]);
|
|
24302
25641
|
const countEventsQueryProjectIdSchema = z.string().describe("The project identifier or the project name").meta({
|
|
24303
25642
|
examples: [
|
|
@@ -24340,14 +25679,18 @@ const countEventsStatus400Schema = z.unknown();
|
|
|
24340
25679
|
const countEventsStatus401Schema = z.unknown();
|
|
24341
25680
|
const countEventsStatus402Schema = z.unknown();
|
|
24342
25681
|
const countEventsStatus403Schema = z.unknown();
|
|
25682
|
+
const countEventsStatus404Schema = z.unknown();
|
|
24343
25683
|
const countEventsStatus410Schema = z.unknown();
|
|
25684
|
+
const countEventsStatus503Schema = z.unknown();
|
|
24344
25685
|
const countEventsResponseSchema = countEventsStatus200Schema;
|
|
24345
25686
|
const countEventsErrorSchema = z.union([
|
|
24346
25687
|
countEventsStatus400Schema,
|
|
24347
25688
|
countEventsStatus401Schema,
|
|
24348
25689
|
countEventsStatus402Schema,
|
|
24349
25690
|
countEventsStatus403Schema,
|
|
24350
|
-
|
|
25691
|
+
countEventsStatus404Schema,
|
|
25692
|
+
countEventsStatus410Schema,
|
|
25693
|
+
countEventsStatus503Schema
|
|
24351
25694
|
]);
|
|
24352
25695
|
const createWebhookQueryTeamIdSchema = z.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
|
|
24353
25696
|
examples: [
|
|
@@ -24870,7 +26213,10 @@ const getDeploymentsQueryProjectIdSchema = z.string().optional().describe("Filte
|
|
|
24870
26213
|
});
|
|
24871
26214
|
const getDeploymentsQueryProjectIdsSchema = z.array(z.string()).min(1).max(20).optional().describe("Filter deployments from the given project IDs. Cannot be used when projectId is specified.").meta({
|
|
24872
26215
|
examples: [
|
|
24873
|
-
|
|
26216
|
+
[
|
|
26217
|
+
"prj_123",
|
|
26218
|
+
"prj_456"
|
|
26219
|
+
]
|
|
24874
26220
|
]
|
|
24875
26221
|
});
|
|
24876
26222
|
const getDeploymentsQueryTargetSchema = z.string().optional().describe("Filter deployments based on the environment.").meta({
|
|
@@ -24967,4 +26313,4 @@ const deleteDeploymentErrorSchema = z.union([
|
|
|
24967
26313
|
deleteDeploymentStatus410Schema
|
|
24968
26314
|
]);
|
|
24969
26315
|
|
|
24970
|
-
export { addProjectMemberPathIdOrNameSchema as $, listSessionCommandsStatus429Schema as $$, listRepositoryImagesStatus403Schema as $0, listRepositoryImagesStatus404Schema as $1, listRepositoryImagesStatus410Schema as $2, listRepositoryPermissionsErrorSchema as $3, listRepositoryPermissionsPathIdOrNameSchema as $4, listRepositoryPermissionsQueryCursorSchema as $5, listRepositoryPermissionsQueryLimitSchema as $6, listRepositoryPermissionsQueryProjectIdSchema as $7, listRepositoryPermissionsQuerySlugSchema as $8, listRepositoryPermissionsQueryTeamIdSchema as $9, listSandboxesQueryNamePrefixSchema as $A, listSandboxesQueryProjectSchema as $B, listSandboxesQuerySlugSchema as $C, listSandboxesQuerySortBySchema as $D, listSandboxesQuerySortOrderSchema as $E, listSandboxesQueryStatusSchema as $F, listSandboxesQueryTagsSchema as $G, listSandboxesQueryTeamIdSchema as $H, listSandboxesResponseSchema as $I, listSandboxesStatus200Schema as $J, listSandboxesStatus400Schema as $K, listSandboxesStatus401Schema as $L, listSandboxesStatus403Schema as $M, listSandboxesStatus404Schema as $N, listSandboxesStatus410Schema as $O, listSandboxesStatus429Schema as $P, listSessionCommandsErrorSchema as $Q, listSessionCommandsPathSessionIdSchema as $R, listSessionCommandsQuerySlugSchema as $S, listSessionCommandsQueryTeamIdSchema as $T, listSessionCommandsResponseSchema as $U, listSessionCommandsStatus200Schema as $V, listSessionCommandsStatus400Schema as $W, listSessionCommandsStatus401Schema as $X, listSessionCommandsStatus403Schema as $Y, listSessionCommandsStatus404Schema as $Z, listSessionCommandsStatus410Schema as $_, listRepositoryPermissionsResponseSchema as $a, listRepositoryPermissionsStatus200Schema as $b, listRepositoryPermissionsStatus400Schema as $c, listRepositoryPermissionsStatus401Schema as $d, listRepositoryPermissionsStatus403Schema as $e, listRepositoryPermissionsStatus404Schema as $f, listRepositoryPermissionsStatus410Schema as $g, listRepositoryTagsErrorSchema as $h, listRepositoryTagsPathIdOrNameSchema as $i, listRepositoryTagsQueryCursorSchema as $j, listRepositoryTagsQueryLimitSchema as $k, listRepositoryTagsQueryProjectIdSchema as $l, listRepositoryTagsQuerySlugSchema as $m, listRepositoryTagsQuerySortBySchema as $n, listRepositoryTagsQuerySortOrderSchema as $o, listRepositoryTagsQueryTeamIdSchema as $p, listRepositoryTagsResponseSchema as $q, listRepositoryTagsStatus200Schema as $r, listRepositoryTagsStatus400Schema as $s, listRepositoryTagsStatus401Schema as $t, listRepositoryTagsStatus403Schema as $u, listRepositoryTagsStatus404Schema as $v, listRepositoryTagsStatus410Schema as $w, listSandboxesErrorSchema as $x, listSandboxesQueryCursorSchema as $y, listSandboxesQueryLimitSchema as $z, activateKmsSigningKeyStatus409Schema as A, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema as A$, getBillingPlansPathIntegrationIdOrSlugSchema as A0, getBillingPlansPathProductIdOrSlugSchema as A1, getBillingPlansQueryIntegrationConfigurationIdSchema as A2, getBillingPlansQueryMetadataSchema as A3, getBillingPlansQuerySlugSchema as A4, getBillingPlansQuerySourceSchema as A5, getBillingPlansQueryTeamIdSchema as A6, getBillingPlansResponseSchema as A7, getBillingPlansStatus200Schema as A8, getBillingPlansStatus400Schema as A9, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as AA, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as AB, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as AC, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as AD, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as AE, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as AF, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema as AG, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as AH, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as AI, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as AJ, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as AK, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as AL, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as AM, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as AN, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as AO, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as AP, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as AQ, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as AR, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as AS, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as AT, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as AU, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as AV, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as AW, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as AX, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as AY, getByTeamSlugByProjectSlugByRepositoryNameTagsListErrorSchema as AZ, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema as A_, getBillingPlansStatus401Schema as Aa, getBillingPlansStatus403Schema as Ab, getBillingPlansStatus404Schema as Ac, getBillingPlansStatus410Schema as Ad, getBulkAvailabilityErrorSchema as Ae, getBulkAvailabilityQueryTeamIdSchema as Af, getBulkAvailabilityResponseSchema as Ag, getBulkAvailabilityStatus200Schema as Ah, getBulkAvailabilityStatus400Schema as Ai, getBulkAvailabilityStatus401Schema as Aj, getBulkAvailabilityStatus403Schema as Ak, getBulkAvailabilityStatus429Schema as Al, getBulkAvailabilityStatus500Schema as Am, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema as An, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema as Ao, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema as Ap, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema as Aq, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema as Ar, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema as As, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema as At, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema as Au, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema as Av, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema as Aw, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema as Ax, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema as Ay, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema as Az, activateKmsSigningKeyStatus410Schema as B, getConfigurableLogDrainQueryTeamIdSchema as B$, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema as B0, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema as B1, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema as B2, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema as B3, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema as B4, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema as B5, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema as B6, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema as B7, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema as B8, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema as B9, getCertByIdStatus403Schema as BA, getCertByIdStatus404Schema as BB, getCertByIdStatus410Schema as BC, getCertsErrorSchema as BD, getCertsQuerySlugSchema as BE, getCertsQueryTeamIdSchema as BF, getCertsResponseSchema as BG, getCertsStatus200Schema as BH, getCertsStatus400Schema as BI, getCertsStatus401Schema as BJ, getCertsStatus403Schema as BK, getCertsStatus410Schema as BL, getCheckErrorSchema as BM, getCheckPathCheckIdSchema as BN, getCheckPathDeploymentIdSchema as BO, getCheckQuerySlugSchema as BP, getCheckQueryTeamIdSchema as BQ, getCheckResponseSchema as BR, getCheckStatus200Schema as BS, getCheckStatus400Schema as BT, getCheckStatus401Schema as BU, getCheckStatus403Schema as BV, getCheckStatus404Schema as BW, getCheckStatus410Schema as BX, getConfigurableLogDrainErrorSchema as BY, getConfigurableLogDrainPathIdSchema as BZ, getConfigurableLogDrainQuerySlugSchema as B_, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema as Ba, getBypassIpErrorSchema as Bb, getBypassIpQueryDomainSchema as Bc, getBypassIpQueryLimitSchema as Bd, getBypassIpQueryOffsetSchema as Be, getBypassIpQueryProjectIdSchema as Bf, getBypassIpQueryProjectScopeSchema as Bg, getBypassIpQuerySlugSchema as Bh, getBypassIpQuerySourceIpSchema as Bi, getBypassIpQueryTeamIdSchema as Bj, getBypassIpResponseSchema as Bk, getBypassIpStatus200Schema as Bl, getBypassIpStatus400Schema as Bm, getBypassIpStatus401Schema as Bn, getBypassIpStatus403Schema as Bo, getBypassIpStatus404Schema as Bp, getBypassIpStatus410Schema as Bq, getBypassIpStatus500Schema as Br, getCertByIdErrorSchema as Bs, getCertByIdPathIdSchema as Bt, getCertByIdQuerySlugSchema as Bu, getCertByIdQueryTeamIdSchema as Bv, getCertByIdResponseSchema as Bw, getCertByIdStatus200Schema as Bx, getCertByIdStatus400Schema as By, getCertByIdStatus401Schema as Bz, addBypassIpErrorSchema as C, getCustomEnvironmentErrorSchema as C$, getConfigurableLogDrainResponseSchema as C0, getConfigurableLogDrainStatus200Schema as C1, getConfigurableLogDrainStatus400Schema as C2, getConfigurableLogDrainStatus401Schema as C3, getConfigurableLogDrainStatus403Schema as C4, getConfigurableLogDrainStatus404Schema as C5, getConfigurableLogDrainStatus410Schema as C6, getConfigurationErrorSchema as C7, getConfigurationPathIdSchema as C8, getConfigurationProductsErrorSchema as C9, getConfigurationsResponseSchema as CA, getConfigurationsStatus200Schema as CB, getConfigurationsStatus400Schema as CC, getConfigurationsStatus401Schema as CD, getConfigurationsStatus403Schema as CE, getConfigurationsStatus410Schema as CF, getConnectorTokenErrorSchema as CG, getConnectorTokenPathConnectorSchema as CH, getConnectorTokenResponseSchema as CI, getConnectorTokenStatus200Schema as CJ, getConnectorTokenStatus400Schema as CK, getConnectorTokenStatus401Schema as CL, getConnectorTokenStatus403Schema as CM, getConnectorTokenStatus404Schema as CN, getConnectorTokenStatus410Schema as CO, getConnectorTokenStatus422Schema as CP, getConnectorTokenStatus429Schema as CQ, getContactInfoSchemaErrorSchema as CR, getContactInfoSchemaPathDomainSchema as CS, getContactInfoSchemaQueryTeamIdSchema as CT, getContactInfoSchemaResponseSchema as CU, getContactInfoSchemaStatus200Schema as CV, getContactInfoSchemaStatus400Schema as CW, getContactInfoSchemaStatus401Schema as CX, getContactInfoSchemaStatus403Schema as CY, getContactInfoSchemaStatus429Schema as CZ, getContactInfoSchemaStatus500Schema as C_, getConfigurationProductsPathIdSchema as Ca, getConfigurationProductsQuerySlugSchema as Cb, getConfigurationProductsQueryTeamIdSchema as Cc, getConfigurationProductsResponseSchema as Cd, getConfigurationProductsStatus200Schema as Ce, getConfigurationProductsStatus400Schema as Cf, getConfigurationProductsStatus401Schema as Cg, getConfigurationProductsStatus403Schema as Ch, getConfigurationProductsStatus404Schema as Ci, getConfigurationProductsStatus410Schema as Cj, getConfigurationProductsStatus500Schema as Ck, getConfigurationQuerySlugSchema as Cl, getConfigurationQueryTeamIdSchema as Cm, getConfigurationResponseSchema as Cn, getConfigurationStatus200Schema as Co, getConfigurationStatus400Schema as Cp, getConfigurationStatus401Schema as Cq, getConfigurationStatus403Schema as Cr, getConfigurationStatus404Schema as Cs, getConfigurationStatus410Schema as Ct, getConfigurationsErrorSchema as Cu, getConfigurationsQueryInstallationTypeSchema as Cv, getConfigurationsQueryIntegrationIdOrSlugSchema as Cw, getConfigurationsQuerySlugSchema as Cx, getConfigurationsQueryTeamIdSchema as Cy, getConfigurationsQueryViewSchema as Cz, addBypassIpQueryProjectIdSchema as D, getDeploymentFileContentsStatus400Schema as D$, getCustomEnvironmentPathEnvironmentSlugOrIdSchema as D0, getCustomEnvironmentPathIdOrNameSchema as D1, getCustomEnvironmentQuerySlugSchema as D2, getCustomEnvironmentQueryTeamIdSchema as D3, getCustomEnvironmentResponseSchema as D4, getCustomEnvironmentStatus200Schema as D5, getCustomEnvironmentStatus400Schema as D6, getCustomEnvironmentStatus401Schema as D7, getCustomEnvironmentStatus403Schema as D8, getCustomEnvironmentStatus404Schema as D9, getDeploymentEventsQueryTeamIdSchema as DA, getDeploymentEventsQueryUntilSchema as DB, getDeploymentEventsResponseSchema as DC, getDeploymentEventsStatus200Schema as DD, getDeploymentEventsStatus400Schema as DE, getDeploymentEventsStatus401Schema as DF, getDeploymentEventsStatus403Schema as DG, getDeploymentEventsStatus410Schema as DH, getDeploymentEventsStatus500Schema as DI, getDeploymentFeatureFlagsErrorSchema as DJ, getDeploymentFeatureFlagsPathDeploymentIdSchema as DK, getDeploymentFeatureFlagsQuerySlugSchema as DL, getDeploymentFeatureFlagsQueryTeamIdSchema as DM, getDeploymentFeatureFlagsResponseSchema as DN, getDeploymentFeatureFlagsStatus200Schema as DO, getDeploymentFeatureFlagsStatus400Schema as DP, getDeploymentFeatureFlagsStatus401Schema as DQ, getDeploymentFeatureFlagsStatus403Schema as DR, getDeploymentFeatureFlagsStatus404Schema as DS, getDeploymentFeatureFlagsStatus410Schema as DT, getDeploymentFileContentsErrorSchema as DU, getDeploymentFileContentsPathFileIdSchema as DV, getDeploymentFileContentsPathIdSchema as DW, getDeploymentFileContentsQueryPathSchema as DX, getDeploymentFileContentsQuerySlugSchema as DY, getDeploymentFileContentsQueryTeamIdSchema as DZ, getDeploymentFileContentsResponseSchema as D_, getCustomEnvironmentStatus410Schema as Da, getDeploymentCheckRunErrorSchema as Db, getDeploymentCheckRunPathCheckRunIdSchema as Dc, getDeploymentCheckRunPathDeploymentIdSchema as Dd, getDeploymentCheckRunQuerySlugSchema as De, getDeploymentCheckRunQueryTeamIdSchema as Df, getDeploymentCheckRunResponseSchema as Dg, getDeploymentCheckRunStatus200Schema as Dh, getDeploymentCheckRunStatus400Schema as Di, getDeploymentCheckRunStatus401Schema as Dj, getDeploymentCheckRunStatus403Schema as Dk, getDeploymentCheckRunStatus404Schema as Dl, getDeploymentCheckRunStatus410Schema as Dm, getDeploymentCheckRunStatus500Schema as Dn, getDeploymentErrorSchema as Do, getDeploymentEventsErrorSchema as Dp, getDeploymentEventsPathIdOrUrlSchema as Dq, getDeploymentEventsQueryBuildsSchema as Dr, getDeploymentEventsQueryDelimiterSchema as Ds, getDeploymentEventsQueryDirectionSchema as Dt, getDeploymentEventsQueryFollowSchema as Du, getDeploymentEventsQueryLimitSchema as Dv, getDeploymentEventsQueryNameSchema as Dw, getDeploymentEventsQuerySinceSchema as Dx, getDeploymentEventsQuerySlugSchema as Dy, getDeploymentEventsQueryStatusCodeSchema as Dz, addBypassIpQuerySlugSchema as E, getDomainConfigErrorSchema as E$, getDeploymentFileContentsStatus401Schema as E0, getDeploymentFileContentsStatus403Schema as E1, getDeploymentFileContentsStatus404Schema as E2, getDeploymentFileContentsStatus410Schema as E3, getDeploymentPathIdOrUrlSchema as E4, getDeploymentQuerySlugSchema as E5, getDeploymentQueryTeamIdSchema as E6, getDeploymentQueryWithGitRepoInfoSchema as E7, getDeploymentResponseSchema as E8, getDeploymentStatus200Schema as E9, getDeploymentsStatus403Schema as EA, getDeploymentsStatus404Schema as EB, getDeploymentsStatus410Schema as EC, getDeploymentsStatus422Schema as ED, getDomainAuthCodeErrorSchema as EE, getDomainAuthCodePathDomainSchema as EF, getDomainAuthCodeQueryTeamIdSchema as EG, getDomainAuthCodeResponseSchema as EH, getDomainAuthCodeStatus200Schema as EI, getDomainAuthCodeStatus400Schema as EJ, getDomainAuthCodeStatus401Schema as EK, getDomainAuthCodeStatus403Schema as EL, getDomainAuthCodeStatus404Schema as EM, getDomainAuthCodeStatus409Schema as EN, getDomainAuthCodeStatus429Schema as EO, getDomainAuthCodeStatus500Schema as EP, getDomainAvailabilityErrorSchema as EQ, getDomainAvailabilityPathDomainSchema as ER, getDomainAvailabilityQueryTeamIdSchema as ES, getDomainAvailabilityResponseSchema as ET, getDomainAvailabilityStatus200Schema as EU, getDomainAvailabilityStatus400Schema as EV, getDomainAvailabilityStatus401Schema as EW, getDomainAvailabilityStatus403Schema as EX, getDomainAvailabilityStatus404Schema as EY, getDomainAvailabilityStatus429Schema as EZ, getDomainAvailabilityStatus500Schema as E_, getDeploymentStatus400Schema as Ea, getDeploymentStatus403Schema as Eb, getDeploymentStatus404Schema as Ec, getDeploymentStatus410Schema as Ed, getDeploymentStatus429Schema as Ee, getDeploymentsErrorSchema as Ef, getDeploymentsQueryAppSchema as Eg, getDeploymentsQueryBranchSchema as Eh, getDeploymentsQueryFromSchema as Ei, getDeploymentsQueryLimitSchema as Ej, getDeploymentsQueryProjectIdSchema as Ek, getDeploymentsQueryProjectIdsSchema as El, getDeploymentsQueryRollbackCandidateSchema as Em, getDeploymentsQueryShaSchema as En, getDeploymentsQuerySinceSchema as Eo, getDeploymentsQuerySlugSchema as Ep, getDeploymentsQueryStateSchema as Eq, getDeploymentsQueryTargetSchema as Er, getDeploymentsQueryTeamIdSchema as Es, getDeploymentsQueryToSchema as Et, getDeploymentsQueryUntilSchema as Eu, getDeploymentsQueryUsersSchema as Ev, getDeploymentsResponseSchema as Ew, getDeploymentsStatus200Schema as Ex, getDeploymentsStatus400Schema as Ey, getDeploymentsStatus401Schema as Ez, addBypassIpQueryTeamIdSchema as F, getDomainTransferInStatus400Schema as F$, getDomainConfigPathDomainSchema as F0, getDomainConfigQueryProjectIdOrNameSchema as F1, getDomainConfigQuerySlugSchema as F2, getDomainConfigQueryStrictSchema as F3, getDomainConfigQueryTeamIdSchema as F4, getDomainConfigResponseSchema as F5, getDomainConfigStatus200Schema as F6, getDomainConfigStatus400Schema as F7, getDomainConfigStatus401Schema as F8, getDomainConfigStatus403Schema as F9, getDomainProjectDomainsPathDomainSchema as FA, getDomainProjectDomainsQueryLimitSchema as FB, getDomainProjectDomainsQuerySinceSchema as FC, getDomainProjectDomainsQuerySlugSchema as FD, getDomainProjectDomainsQueryTeamIdSchema as FE, getDomainProjectDomainsQueryUntilSchema as FF, getDomainProjectDomainsResponseSchema as FG, getDomainProjectDomainsStatus200Schema as FH, getDomainProjectDomainsStatus400Schema as FI, getDomainProjectDomainsStatus401Schema as FJ, getDomainProjectDomainsStatus403Schema as FK, getDomainProjectDomainsStatus404Schema as FL, getDomainProjectDomainsStatus410Schema as FM, getDomainQuerySlugSchema as FN, getDomainQueryTeamIdSchema as FO, getDomainResponseSchema as FP, getDomainStatus200Schema as FQ, getDomainStatus400Schema as FR, getDomainStatus401Schema as FS, getDomainStatus403Schema as FT, getDomainStatus404Schema as FU, getDomainStatus410Schema as FV, getDomainTransferInErrorSchema as FW, getDomainTransferInPathDomainSchema as FX, getDomainTransferInQueryTeamIdSchema as FY, getDomainTransferInResponseSchema as FZ, getDomainTransferInStatus200Schema as F_, getDomainConfigStatus410Schema as Fa, getDomainContactVerificationErrorSchema as Fb, getDomainContactVerificationPathDomainSchema as Fc, getDomainContactVerificationQueryTeamIdSchema as Fd, getDomainContactVerificationResponseSchema as Fe, getDomainContactVerificationStatus200Schema as Ff, getDomainContactVerificationStatus400Schema as Fg, getDomainContactVerificationStatus401Schema as Fh, getDomainContactVerificationStatus403Schema as Fi, getDomainContactVerificationStatus404Schema as Fj, getDomainContactVerificationStatus429Schema as Fk, getDomainContactVerificationStatus500Schema as Fl, getDomainErrorSchema as Fm, getDomainPathDomainSchema as Fn, getDomainPriceErrorSchema as Fo, getDomainPricePathDomainSchema as Fp, getDomainPriceQueryTeamIdSchema as Fq, getDomainPriceQueryYearsSchema as Fr, getDomainPriceResponseSchema as Fs, getDomainPriceStatus200Schema as Ft, getDomainPriceStatus400Schema as Fu, getDomainPriceStatus401Schema as Fv, getDomainPriceStatus403Schema as Fw, getDomainPriceStatus429Schema as Fx, getDomainPriceStatus500Schema as Fy, getDomainProjectDomainsErrorSchema as Fz, addBypassIpResponseSchema as G, getEdgeConfigBackupPathEdgeConfigIdSchema as G$, getDomainTransferInStatus401Schema as G0, getDomainTransferInStatus403Schema as G1, getDomainTransferInStatus404Schema as G2, getDomainTransferInStatus429Schema as G3, getDomainTransferInStatus500Schema as G4, getDomainVerificationRecordErrorSchema as G5, getDomainVerificationRecordPathDomainSchema as G6, getDomainVerificationRecordQuerySlugSchema as G7, getDomainVerificationRecordQueryTeamIdSchema as G8, getDomainVerificationRecordResponseSchema as G9, getDomainsStatus409Schema as GA, getDomainsStatus410Schema as GB, getDrainErrorSchema as GC, getDrainPathIdSchema as GD, getDrainQuerySlugSchema as GE, getDrainQueryTeamIdSchema as GF, getDrainResponseSchema as GG, getDrainStatus200Schema as GH, getDrainStatus400Schema as GI, getDrainStatus401Schema as GJ, getDrainStatus403Schema as GK, getDrainStatus404Schema as GL, getDrainStatus410Schema as GM, getDrainsErrorSchema as GN, getDrainsQueryIncludeMetadataSchema as GO, getDrainsQueryProjectIdSchema as GP, getDrainsQuerySlugSchema as GQ, getDrainsQueryTeamIdSchema as GR, getDrainsResponseSchema as GS, getDrainsStatus200Schema as GT, getDrainsStatus400Schema as GU, getDrainsStatus401Schema as GV, getDrainsStatus403Schema as GW, getDrainsStatus404Schema as GX, getDrainsStatus410Schema as GY, getEdgeConfigBackupErrorSchema as GZ, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema as G_, getDomainVerificationRecordStatus200Schema as Ga, getDomainVerificationRecordStatus400Schema as Gb, getDomainVerificationRecordStatus401Schema as Gc, getDomainVerificationRecordStatus403Schema as Gd, getDomainVerificationRecordStatus404Schema as Ge, getDomainVerificationRecordStatus410Schema as Gf, getDomainsErrorSchema as Gg, getDomainsQueryLimitSchema as Gh, getDomainsQuerySinceSchema as Gi, getDomainsQuerySlugSchema as Gj, getDomainsQueryTeamIdSchema as Gk, getDomainsQueryUntilSchema as Gl, getDomainsRecordsByRecordIdErrorSchema as Gm, getDomainsRecordsByRecordIdPathRecordIdSchema as Gn, getDomainsRecordsByRecordIdResponseSchema as Go, getDomainsRecordsByRecordIdStatus200Schema as Gp, getDomainsRecordsByRecordIdStatus400Schema as Gq, getDomainsRecordsByRecordIdStatus401Schema as Gr, getDomainsRecordsByRecordIdStatus403Schema as Gs, getDomainsRecordsByRecordIdStatus404Schema as Gt, getDomainsRecordsByRecordIdStatus410Schema as Gu, getDomainsResponseSchema as Gv, getDomainsStatus200Schema as Gw, getDomainsStatus400Schema as Gx, getDomainsStatus401Schema as Gy, getDomainsStatus403Schema as Gz, addBypassIpStatus200Schema as H, getEdgeConfigStatus400Schema as H$, getEdgeConfigBackupQuerySlugSchema as H0, getEdgeConfigBackupQueryTeamIdSchema as H1, getEdgeConfigBackupResponseSchema as H2, getEdgeConfigBackupStatus200Schema as H3, getEdgeConfigBackupStatus400Schema as H4, getEdgeConfigBackupStatus401Schema as H5, getEdgeConfigBackupStatus403Schema as H6, getEdgeConfigBackupStatus404Schema as H7, getEdgeConfigBackupStatus410Schema as H8, getEdgeConfigBackupsErrorSchema as H9, getEdgeConfigItemsErrorSchema as HA, getEdgeConfigItemsPathEdgeConfigIdSchema as HB, getEdgeConfigItemsQuerySlugSchema as HC, getEdgeConfigItemsQueryTeamIdSchema as HD, getEdgeConfigItemsResponseSchema as HE, getEdgeConfigItemsStatus200Schema as HF, getEdgeConfigItemsStatus400Schema as HG, getEdgeConfigItemsStatus401Schema as HH, getEdgeConfigItemsStatus403Schema as HI, getEdgeConfigItemsStatus404Schema as HJ, getEdgeConfigItemsStatus410Schema as HK, getEdgeConfigPathEdgeConfigIdSchema as HL, getEdgeConfigQuerySlugSchema as HM, getEdgeConfigQueryTeamIdSchema as HN, getEdgeConfigResponseSchema as HO, getEdgeConfigSchemaErrorSchema as HP, getEdgeConfigSchemaPathEdgeConfigIdSchema as HQ, getEdgeConfigSchemaQuerySlugSchema as HR, getEdgeConfigSchemaQueryTeamIdSchema as HS, getEdgeConfigSchemaResponseSchema as HT, getEdgeConfigSchemaStatus200Schema as HU, getEdgeConfigSchemaStatus400Schema as HV, getEdgeConfigSchemaStatus401Schema as HW, getEdgeConfigSchemaStatus403Schema as HX, getEdgeConfigSchemaStatus404Schema as HY, getEdgeConfigSchemaStatus410Schema as HZ, getEdgeConfigStatus200Schema as H_, getEdgeConfigBackupsPathEdgeConfigIdSchema as Ha, getEdgeConfigBackupsQueryLimitSchema as Hb, getEdgeConfigBackupsQueryMetadataSchema as Hc, getEdgeConfigBackupsQueryNextSchema as Hd, getEdgeConfigBackupsQuerySlugSchema as He, getEdgeConfigBackupsQueryTeamIdSchema as Hf, getEdgeConfigBackupsResponseSchema as Hg, getEdgeConfigBackupsStatus200Schema as Hh, getEdgeConfigBackupsStatus400Schema as Hi, getEdgeConfigBackupsStatus401Schema as Hj, getEdgeConfigBackupsStatus403Schema as Hk, getEdgeConfigBackupsStatus404Schema as Hl, getEdgeConfigBackupsStatus410Schema as Hm, getEdgeConfigErrorSchema as Hn, getEdgeConfigItemErrorSchema as Ho, getEdgeConfigItemPathEdgeConfigIdSchema as Hp, getEdgeConfigItemPathEdgeConfigItemKeySchema as Hq, getEdgeConfigItemQuerySlugSchema as Hr, getEdgeConfigItemQueryTeamIdSchema as Hs, getEdgeConfigItemResponseSchema as Ht, getEdgeConfigItemStatus200Schema as Hu, getEdgeConfigItemStatus400Schema as Hv, getEdgeConfigItemStatus401Schema as Hw, getEdgeConfigItemStatus403Schema as Hx, getEdgeConfigItemStatus404Schema as Hy, getEdgeConfigItemStatus410Schema as Hz, addBypassIpStatus400Schema as I, getFlagSegmentStatus200Schema as I$, getEdgeConfigStatus401Schema as I0, getEdgeConfigStatus403Schema as I1, getEdgeConfigStatus404Schema as I2, getEdgeConfigStatus410Schema as I3, getEdgeConfigTokenErrorSchema as I4, getEdgeConfigTokenPathEdgeConfigIdSchema as I5, getEdgeConfigTokenPathTokenSchema as I6, getEdgeConfigTokenQuerySlugSchema as I7, getEdgeConfigTokenQueryTeamIdSchema as I8, getEdgeConfigTokenResponseSchema as I9, getFirewallConfigErrorSchema as IA, getFirewallConfigPathConfigVersionSchema as IB, getFirewallConfigQueryProjectIdSchema as IC, getFirewallConfigQuerySlugSchema as ID, getFirewallConfigQueryTeamIdSchema as IE, getFirewallConfigResponseSchema as IF, getFirewallConfigStatus200Schema as IG, getFirewallConfigStatus400Schema as IH, getFirewallConfigStatus401Schema as II, getFirewallConfigStatus403Schema as IJ, getFirewallConfigStatus404Schema as IK, getFirewallConfigStatus410Schema as IL, getFlagErrorSchema as IM, getFlagPathFlagIdOrSlugSchema as IN, getFlagPathProjectIdOrNameSchema as IO, getFlagQueryIfMatchSchema as IP, getFlagQuerySlugSchema as IQ, getFlagQueryTeamIdSchema as IR, getFlagQueryWithMetadataSchema as IS, getFlagResponseSchema as IT, getFlagSegmentErrorSchema as IU, getFlagSegmentPathProjectIdOrNameSchema as IV, getFlagSegmentPathSegmentIdOrSlugSchema as IW, getFlagSegmentQuerySlugSchema as IX, getFlagSegmentQueryTeamIdSchema as IY, getFlagSegmentQueryWithMetadataSchema as IZ, getFlagSegmentResponseSchema as I_, getEdgeConfigTokenStatus200Schema as Ia, getEdgeConfigTokenStatus400Schema as Ib, getEdgeConfigTokenStatus401Schema as Ic, getEdgeConfigTokenStatus403Schema as Id, getEdgeConfigTokenStatus404Schema as Ie, getEdgeConfigTokenStatus410Schema as If, getEdgeConfigTokensErrorSchema as Ig, getEdgeConfigTokensPathEdgeConfigIdSchema as Ih, getEdgeConfigTokensQuerySlugSchema as Ii, getEdgeConfigTokensQueryTeamIdSchema as Ij, getEdgeConfigTokensResponseSchema as Ik, getEdgeConfigTokensStatus200Schema as Il, getEdgeConfigTokensStatus400Schema as Im, getEdgeConfigTokensStatus401Schema as In, getEdgeConfigTokensStatus403Schema as Io, getEdgeConfigTokensStatus404Schema as Ip, getEdgeConfigTokensStatus410Schema as Iq, getEdgeConfigsErrorSchema as Ir, getEdgeConfigsQuerySlugSchema as Is, getEdgeConfigsQueryTeamIdSchema as It, getEdgeConfigsResponseSchema as Iu, getEdgeConfigsStatus200Schema as Iv, getEdgeConfigsStatus400Schema as Iw, getEdgeConfigsStatus401Schema as Ix, getEdgeConfigsStatus403Schema as Iy, getEdgeConfigsStatus410Schema as Iz, addBypassIpStatus401Schema as J, getIntegrationResourcesStatus404Schema as J$, getFlagSegmentStatus400Schema as J0, getFlagSegmentStatus401Schema as J1, getFlagSegmentStatus402Schema as J2, getFlagSegmentStatus403Schema as J3, getFlagSegmentStatus404Schema as J4, getFlagSegmentStatus410Schema as J5, getFlagSettingsErrorSchema as J6, getFlagSettingsPathProjectIdOrNameSchema as J7, getFlagSettingsQuerySlugSchema as J8, getFlagSettingsQueryTeamIdSchema as J9, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema as JA, getIntegrationLogDrainsErrorSchema as JB, getIntegrationLogDrainsQuerySlugSchema as JC, getIntegrationLogDrainsQueryTeamIdSchema as JD, getIntegrationLogDrainsResponseSchema as JE, getIntegrationLogDrainsStatus200Schema as JF, getIntegrationLogDrainsStatus400Schema as JG, getIntegrationLogDrainsStatus401Schema as JH, getIntegrationLogDrainsStatus403Schema as JI, getIntegrationLogDrainsStatus410Schema as JJ, getIntegrationResourceErrorSchema as JK, getIntegrationResourcePathIntegrationConfigurationIdSchema as JL, getIntegrationResourcePathResourceIdSchema as JM, getIntegrationResourceResponseSchema as JN, getIntegrationResourceStatus200Schema as JO, getIntegrationResourceStatus400Schema as JP, getIntegrationResourceStatus401Schema as JQ, getIntegrationResourceStatus403Schema as JR, getIntegrationResourceStatus404Schema as JS, getIntegrationResourceStatus410Schema as JT, getIntegrationResourcesErrorSchema as JU, getIntegrationResourcesPathIntegrationConfigurationIdSchema as JV, getIntegrationResourcesResponseSchema as JW, getIntegrationResourcesStatus200Schema as JX, getIntegrationResourcesStatus400Schema as JY, getIntegrationResourcesStatus401Schema as JZ, getIntegrationResourcesStatus403Schema as J_, getFlagSettingsResponseSchema as Ja, getFlagSettingsStatus200Schema as Jb, getFlagSettingsStatus400Schema as Jc, getFlagSettingsStatus401Schema as Jd, getFlagSettingsStatus402Schema as Je, getFlagSettingsStatus403Schema as Jf, getFlagSettingsStatus404Schema as Jg, getFlagSettingsStatus410Schema as Jh, getFlagStatus200Schema as Ji, getFlagStatus304Schema as Jj, getFlagStatus400Schema as Jk, getFlagStatus401Schema as Jl, getFlagStatus402Schema as Jm, getFlagStatus403Schema as Jn, getFlagStatus404Schema as Jo, getFlagStatus410Schema as Jp, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema as Jq, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema as Jr, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema as Js, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema as Jt, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema as Ju, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema as Jv, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema as Jw, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema as Jx, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema as Jy, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema as Jz, addBypassIpStatus403Schema as K, getMicrofrontendsGroupsStatus401Schema as K$, getIntegrationResourcesStatus410Schema as K0, getInvoiceErrorSchema as K1, getInvoicePathIntegrationConfigurationIdSchema as K2, getInvoicePathInvoiceIdSchema as K3, getInvoiceResponseSchema as K4, getInvoiceStatus200Schema as K5, getInvoiceStatus400Schema as K6, getInvoiceStatus401Schema as K7, getInvoiceStatus403Schema as K8, getInvoiceStatus404Schema as K9, getMicrofrontendsConfigForProjectQuerySlugSchema as KA, getMicrofrontendsConfigForProjectQueryTeamIdSchema as KB, getMicrofrontendsConfigForProjectResponseSchema as KC, getMicrofrontendsConfigForProjectStatus200Schema as KD, getMicrofrontendsConfigForProjectStatus400Schema as KE, getMicrofrontendsConfigForProjectStatus401Schema as KF, getMicrofrontendsConfigForProjectStatus403Schema as KG, getMicrofrontendsConfigForProjectStatus404Schema as KH, getMicrofrontendsConfigForProjectStatus410Schema as KI, getMicrofrontendsConfigForProjectStatus500Schema as KJ, getMicrofrontendsConfigPathDeploymentIdSchema as KK, getMicrofrontendsConfigQuerySlugSchema as KL, getMicrofrontendsConfigQueryTeamIdSchema as KM, getMicrofrontendsConfigResponseSchema as KN, getMicrofrontendsConfigStatus200Schema as KO, getMicrofrontendsConfigStatus400Schema as KP, getMicrofrontendsConfigStatus401Schema as KQ, getMicrofrontendsConfigStatus403Schema as KR, getMicrofrontendsConfigStatus404Schema as KS, getMicrofrontendsConfigStatus410Schema as KT, getMicrofrontendsConfigStatus500Schema as KU, getMicrofrontendsGroupsErrorSchema as KV, getMicrofrontendsGroupsQuerySlugSchema as KW, getMicrofrontendsGroupsQueryTeamIdSchema as KX, getMicrofrontendsGroupsResponseSchema as KY, getMicrofrontendsGroupsStatus200Schema as KZ, getMicrofrontendsGroupsStatus400Schema as K_, getInvoiceStatus410Schema as Ka, getInvoiceStatus429Schema as Kb, getKmsIssuerErrorSchema as Kc, getKmsIssuerPathIssuerIdSchema as Kd, getKmsIssuerQuerySlugSchema as Ke, getKmsIssuerQueryTeamIdSchema as Kf, getKmsIssuerResponseSchema as Kg, getKmsIssuerStatus200Schema as Kh, getKmsIssuerStatus400Schema as Ki, getKmsIssuerStatus401Schema as Kj, getKmsIssuerStatus403Schema as Kk, getKmsIssuerStatus404Schema as Kl, getKmsIssuerStatus410Schema as Km, getMemberErrorSchema as Kn, getMemberPathIntegrationConfigurationIdSchema as Ko, getMemberPathMemberIdSchema as Kp, getMemberResponseSchema as Kq, getMemberStatus200Schema as Kr, getMemberStatus400Schema as Ks, getMemberStatus401Schema as Kt, getMemberStatus403Schema as Ku, getMemberStatus404Schema as Kv, getMemberStatus410Schema as Kw, getMicrofrontendsConfigErrorSchema as Kx, getMicrofrontendsConfigForProjectErrorSchema as Ky, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema as Kz, addBypassIpStatus404Schema as L, getOrCreateDriveStatus401Schema as L$, getMicrofrontendsGroupsStatus403Schema as L0, getMicrofrontendsGroupsStatus410Schema as L1, getMicrofrontendsGroupsStatus500Schema as L2, getMicrofrontendsInGroupErrorSchema as L3, getMicrofrontendsInGroupPathGroupIdSchema as L4, getMicrofrontendsInGroupQuerySlugSchema as L5, getMicrofrontendsInGroupQueryTeamIdSchema as L6, getMicrofrontendsInGroupResponseSchema as L7, getMicrofrontendsInGroupStatus200Schema as L8, getMicrofrontendsInGroupStatus400Schema as L9, getObservabilityConfigurationProjectsStatus401Schema as LA, getObservabilityConfigurationProjectsStatus403Schema as LB, getObservabilityConfigurationProjectsStatus404Schema as LC, getObservabilityConfigurationProjectsStatus410Schema as LD, getObservabilitySchemaByMetricIdErrorSchema as LE, getObservabilitySchemaByMetricIdPathMetricIdSchema as LF, getObservabilitySchemaByMetricIdResponseSchema as LG, getObservabilitySchemaByMetricIdStatus200Schema as LH, getObservabilitySchemaByMetricIdStatus400Schema as LI, getObservabilitySchemaByMetricIdStatus401Schema as LJ, getObservabilitySchemaByMetricIdStatus403Schema as LK, getObservabilitySchemaByMetricIdStatus410Schema as LL, getObservabilitySchemaErrorSchema as LM, getObservabilitySchemaResponseSchema as LN, getObservabilitySchemaStatus200Schema as LO, getObservabilitySchemaStatus400Schema as LP, getObservabilitySchemaStatus401Schema as LQ, getObservabilitySchemaStatus403Schema as LR, getObservabilitySchemaStatus410Schema as LS, getOrCreateDriveErrorSchema as LT, getOrCreateDrivePathNameSchema as LU, getOrCreateDriveQuerySlugSchema as LV, getOrCreateDriveQueryTeamIdSchema as LW, getOrCreateDriveResponseSchema as LX, getOrCreateDriveStatus200Schema as LY, getOrCreateDriveStatus201Schema as LZ, getOrCreateDriveStatus400Schema as L_, getMicrofrontendsInGroupStatus401Schema as La, getMicrofrontendsInGroupStatus403Schema as Lb, getMicrofrontendsInGroupStatus410Schema as Lc, getNamedSandboxErrorSchema as Ld, getNamedSandboxPathNameSchema as Le, getNamedSandboxQueryProjectIdSchema as Lf, getNamedSandboxQueryResumeSchema as Lg, getNamedSandboxQuerySlugSchema as Lh, getNamedSandboxQueryTeamIdSchema as Li, getNamedSandboxResponseSchema as Lj, getNamedSandboxStatus200Schema as Lk, getNamedSandboxStatus400Schema as Ll, getNamedSandboxStatus401Schema as Lm, getNamedSandboxStatus402Schema as Ln, getNamedSandboxStatus403Schema as Lo, getNamedSandboxStatus404Schema as Lp, getNamedSandboxStatus409Schema as Lq, getNamedSandboxStatus410Schema as Lr, getNamedSandboxStatus429Schema as Ls, getNamedSandboxStatus500Schema as Lt, getObservabilityConfigurationProjectsErrorSchema as Lu, getObservabilityConfigurationProjectsQuerySlugSchema as Lv, getObservabilityConfigurationProjectsQueryTeamIdSchema as Lw, getObservabilityConfigurationProjectsResponseSchema as Lx, getObservabilityConfigurationProjectsStatus200Schema as Ly, getObservabilityConfigurationProjectsStatus400Schema as Lz, addBypassIpStatus410Schema as M, getProjectEnvPathIdSchema as M$, getOrCreateDriveStatus402Schema as M0, getOrCreateDriveStatus403Schema as M1, getOrCreateDriveStatus404Schema as M2, getOrCreateDriveStatus409Schema as M3, getOrCreateDriveStatus410Schema as M4, getOrCreateDriveStatus429Schema as M5, getOrderErrorSchema as M6, getOrderPathOrderIdSchema as M7, getOrderQueryTeamIdSchema as M8, getOrderResponseSchema as M9, getProjectDomainStatus400Schema as MA, getProjectDomainStatus401Schema as MB, getProjectDomainStatus403Schema as MC, getProjectDomainStatus410Schema as MD, getProjectDomainsErrorSchema as ME, getProjectDomainsPathIdOrNameSchema as MF, getProjectDomainsQueryCustomEnvironmentIdSchema as MG, getProjectDomainsQueryGitBranchSchema as MH, getProjectDomainsQueryLimitSchema as MI, getProjectDomainsQueryOrderSchema as MJ, getProjectDomainsQueryProductionSchema as MK, getProjectDomainsQueryRedirectSchema as ML, getProjectDomainsQueryRedirectsSchema as MM, getProjectDomainsQuerySinceSchema as MN, getProjectDomainsQuerySlugSchema as MO, getProjectDomainsQueryTargetSchema as MP, getProjectDomainsQueryTeamIdSchema as MQ, getProjectDomainsQueryUntilSchema as MR, getProjectDomainsQueryVerifiedSchema as MS, getProjectDomainsResponseSchema as MT, getProjectDomainsStatus200Schema as MU, getProjectDomainsStatus400Schema as MV, getProjectDomainsStatus401Schema as MW, getProjectDomainsStatus403Schema as MX, getProjectDomainsStatus410Schema as MY, getProjectEnvErrorSchema as MZ, getProjectEnvPathIdOrNameSchema as M_, getOrderStatus200Schema as Ma, getOrderStatus400Schema as Mb, getOrderStatus401Schema as Mc, getOrderStatus403Schema as Md, getOrderStatus404Schema as Me, getOrderStatus429Schema as Mf, getOrderStatus500Schema as Mg, getProjectCheckErrorSchema as Mh, getProjectCheckPathCheckIdSchema as Mi, getProjectCheckPathProjectIdOrNameSchema as Mj, getProjectCheckQuerySlugSchema as Mk, getProjectCheckQueryTeamIdSchema as Ml, getProjectCheckResponseSchema as Mm, getProjectCheckStatus200Schema as Mn, getProjectCheckStatus400Schema as Mo, getProjectCheckStatus401Schema as Mp, getProjectCheckStatus403Schema as Mq, getProjectCheckStatus410Schema as Mr, getProjectCheckStatus500Schema as Ms, getProjectDomainErrorSchema as Mt, getProjectDomainPathDomainSchema as Mu, getProjectDomainPathIdOrNameSchema as Mv, getProjectDomainQuerySlugSchema as Mw, getProjectDomainQueryTeamIdSchema as Mx, getProjectDomainResponseSchema as My, getProjectDomainStatus200Schema as Mz, addBypassIpStatus500Schema as N, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema as N$, getProjectEnvQuerySlugSchema as N0, getProjectEnvQueryTeamIdSchema as N1, getProjectEnvResponseSchema as N2, getProjectEnvStatus200Schema as N3, getProjectEnvStatus400Schema as N4, getProjectEnvStatus401Schema as N5, getProjectEnvStatus403Schema as N6, getProjectEnvStatus410Schema as N7, getProjectErrorSchema as N8, getProjectMembersErrorSchema as N9, getProjectTokenResponseSchema as NA, getProjectTokenStatus200Schema as NB, getProjectTokenStatus400Schema as NC, getProjectTokenStatus401Schema as ND, getProjectTokenStatus403Schema as NE, getProjectTokenStatus404Schema as NF, getProjectTokenStatus410Schema as NG, getProjectTraceErrorSchema as NH, getProjectTraceQueryProjectIdSchema as NI, getProjectTraceQueryRequestIdSchema as NJ, getProjectTraceQuerySlugSchema as NK, getProjectTraceQueryTeamIdSchema as NL, getProjectTraceResponseSchema as NM, getProjectTraceStatus200Schema as NN, getProjectTraceStatus400Schema as NO, getProjectTraceStatus401Schema as NP, getProjectTraceStatus403Schema as NQ, getProjectTraceStatus404Schema as NR, getProjectTraceStatus410Schema as NS, getProjectsByIdOrNameCustomEnvironmentsErrorSchema as NT, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema as NU, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema as NV, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema as NW, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema as NX, getProjectsByIdOrNameCustomEnvironmentsResponseSchema as NY, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema as NZ, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema as N_, getProjectMembersPathIdOrNameSchema as Na, getProjectMembersQueryLimitSchema as Nb, getProjectMembersQuerySearchSchema as Nc, getProjectMembersQuerySinceSchema as Nd, getProjectMembersQuerySlugSchema as Ne, getProjectMembersQueryTeamIdSchema as Nf, getProjectMembersQueryUntilSchema as Ng, getProjectMembersResponseSchema as Nh, getProjectMembersStatus200Schema as Ni, getProjectMembersStatus400Schema as Nj, getProjectMembersStatus401Schema as Nk, getProjectMembersStatus403Schema as Nl, getProjectMembersStatus410Schema as Nm, getProjectPathIdOrNameSchema as Nn, getProjectQuerySlugSchema as No, getProjectQueryTeamIdSchema as Np, getProjectResponseSchema as Nq, getProjectStatus200Schema as Nr, getProjectStatus400Schema as Ns, getProjectStatus401Schema as Nt, getProjectStatus403Schema as Nu, getProjectStatus410Schema as Nv, getProjectTokenErrorSchema as Nw, getProjectTokenPathIdOrNameSchema as Nx, getProjectTokenQuerySlugSchema as Ny, getProjectTokenQueryTeamIdSchema as Nz, addProjectDomainErrorSchema as O, getRepositoryImageQuerySlugSchema as O$, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema as O0, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema as O1, getProjectsErrorSchema as O2, getProjectsQueryBuildMachineTypesSchema as O3, getProjectsQueryBuildQueueConfigurationSchema as O4, getProjectsQueryDeprecatedSchema as O5, getProjectsQueryEdgeConfigIdSchema as O6, getProjectsQueryEdgeConfigTokenIdSchema as O7, getProjectsQueryElasticConcurrencyEnabledSchema as O8, getProjectsQueryExcludeReposSchema as O9, getRecordsStatus401Schema as OA, getRecordsStatus403Schema as OB, getRecordsStatus404Schema as OC, getRecordsStatus410Schema as OD, getRedirectsErrorSchema as OE, getRedirectsQueryDiffSchema as OF, getRedirectsQueryPageSchema as OG, getRedirectsQueryPerPageSchema as OH, getRedirectsQueryProjectIdSchema as OI, getRedirectsQueryQSchema as OJ, getRedirectsQuerySlugSchema as OK, getRedirectsQuerySortBySchema as OL, getRedirectsQuerySortOrderSchema as OM, getRedirectsQueryTeamIdSchema as ON, getRedirectsQueryVersionIdSchema as OO, getRedirectsResponseSchema as OP, getRedirectsStatus200Schema as OQ, getRedirectsStatus400Schema as OR, getRedirectsStatus401Schema as OS, getRedirectsStatus403Schema as OT, getRedirectsStatus404Schema as OU, getRedirectsStatus410Schema as OV, getRepositoryErrorSchema as OW, getRepositoryImageErrorSchema as OX, getRepositoryImagePathIdOrNameSchema as OY, getRepositoryImagePathImageIdOrDigestSchema as OZ, getRepositoryImageQueryProjectIdSchema as O_, getProjectsQueryFromSchema as Oa, getProjectsQueryGitForkProtectionSchema as Ob, getProjectsQueryLimitSchema as Oc, getProjectsQueryRepoIdSchema as Od, getProjectsQueryRepoSchema as Oe, getProjectsQueryRepoUrlSchema as Of, getProjectsQuerySearchSchema as Og, getProjectsQuerySlugSchema as Oh, getProjectsQueryStaticIpsEnabledSchema as Oi, getProjectsQueryTeamIdSchema as Oj, getProjectsResponseSchema as Ok, getProjectsStatus200Schema as Ol, getProjectsStatus400Schema as Om, getProjectsStatus401Schema as On, getProjectsStatus403Schema as Oo, getProjectsStatus410Schema as Op, getRecordsErrorSchema as Oq, getRecordsPathDomainSchema as Or, getRecordsQueryLimitSchema as Os, getRecordsQuerySinceSchema as Ot, getRecordsQuerySlugSchema as Ou, getRecordsQueryTeamIdSchema as Ov, getRecordsQueryUntilSchema as Ow, getRecordsResponseSchema as Ox, getRecordsStatus200Schema as Oy, getRecordsStatus400Schema as Oz, addProjectDomainPathIdOrNameSchema as P, getRollingReleaseStatus403Schema as P$, getRepositoryImageQueryTeamIdSchema as P0, getRepositoryImageResponseSchema as P1, getRepositoryImageStatus200Schema as P2, getRepositoryImageStatus400Schema as P3, getRepositoryImageStatus401Schema as P4, getRepositoryImageStatus403Schema as P5, getRepositoryImageStatus404Schema as P6, getRepositoryImageStatus410Schema as P7, getRepositoryPathIdOrNameSchema as P8, getRepositoryQueryProjectIdSchema as P9, getRollingReleaseBillingStatusResponseSchema as PA, getRollingReleaseBillingStatusStatus200Schema as PB, getRollingReleaseBillingStatusStatus400Schema as PC, getRollingReleaseBillingStatusStatus401Schema as PD, getRollingReleaseBillingStatusStatus403Schema as PE, getRollingReleaseBillingStatusStatus404Schema as PF, getRollingReleaseBillingStatusStatus410Schema as PG, getRollingReleaseConfigErrorSchema as PH, getRollingReleaseConfigPathIdOrNameSchema as PI, getRollingReleaseConfigQuerySlugSchema as PJ, getRollingReleaseConfigQueryTeamIdSchema as PK, getRollingReleaseConfigResponseSchema as PL, getRollingReleaseConfigStatus200Schema as PM, getRollingReleaseConfigStatus400Schema as PN, getRollingReleaseConfigStatus401Schema as PO, getRollingReleaseConfigStatus403Schema as PP, getRollingReleaseConfigStatus404Schema as PQ, getRollingReleaseConfigStatus410Schema as PR, getRollingReleaseErrorSchema as PS, getRollingReleasePathIdOrNameSchema as PT, getRollingReleaseQuerySlugSchema as PU, getRollingReleaseQueryStateSchema as PV, getRollingReleaseQueryTeamIdSchema as PW, getRollingReleaseResponseSchema as PX, getRollingReleaseStatus200Schema as PY, getRollingReleaseStatus400Schema as PZ, getRollingReleaseStatus401Schema as P_, getRepositoryQuerySlugSchema as Pa, getRepositoryQueryTeamIdSchema as Pb, getRepositoryResponseSchema as Pc, getRepositoryStatus200Schema as Pd, getRepositoryStatus400Schema as Pe, getRepositoryStatus401Schema as Pf, getRepositoryStatus403Schema as Pg, getRepositoryStatus404Schema as Ph, getRepositoryStatus410Schema as Pi, getRepositoryTagErrorSchema as Pj, getRepositoryTagPathIdOrNameSchema as Pk, getRepositoryTagPathTagSchema as Pl, getRepositoryTagQueryProjectIdSchema as Pm, getRepositoryTagQuerySlugSchema as Pn, getRepositoryTagQueryTeamIdSchema as Po, getRepositoryTagResponseSchema as Pp, getRepositoryTagStatus200Schema as Pq, getRepositoryTagStatus400Schema as Pr, getRepositoryTagStatus401Schema as Ps, getRepositoryTagStatus403Schema as Pt, getRepositoryTagStatus404Schema as Pu, getRepositoryTagStatus410Schema as Pv, getRollingReleaseBillingStatusErrorSchema as Pw, getRollingReleaseBillingStatusPathIdOrNameSchema as Px, getRollingReleaseBillingStatusQuerySlugSchema as Py, getRollingReleaseBillingStatusQueryTeamIdSchema as Pz, addProjectDomainQuerySlugSchema as Q, getSecurityFirewallConfigStatus401Schema as Q$, getRollingReleaseStatus404Schema as Q0, getRollingReleaseStatus410Schema as Q1, getRootErrorSchema as Q2, getRootResponseSchema as Q3, getRootStatus200Schema as Q4, getRootStatus400Schema as Q5, getRootStatus401Schema as Q6, getRootStatus402Schema as Q7, getRootStatus403Schema as Q8, getRootStatus404Schema as Q9, getRuntimeLogsErrorSchema as QA, getRuntimeLogsPathDeploymentIdSchema as QB, getRuntimeLogsPathProjectIdSchema as QC, getRuntimeLogsQuerySlugSchema as QD, getRuntimeLogsQueryTeamIdSchema as QE, getRuntimeLogsResponseSchema as QF, getRuntimeLogsStatus200Schema as QG, getRuntimeLogsStatus400Schema as QH, getRuntimeLogsStatus401Schema as QI, getRuntimeLogsStatus403Schema as QJ, getRuntimeLogsStatus410Schema as QK, getSdkKeysErrorSchema as QL, getSdkKeysPathProjectIdOrNameSchema as QM, getSdkKeysQuerySlugSchema as QN, getSdkKeysQueryTeamIdSchema as QO, getSdkKeysResponseSchema as QP, getSdkKeysStatus200Schema as QQ, getSdkKeysStatus400Schema as QR, getSdkKeysStatus401Schema as QS, getSdkKeysStatus402Schema as QT, getSdkKeysStatus403Schema as QU, getSdkKeysStatus404Schema as QV, getSdkKeysStatus410Schema as QW, getSecurityFirewallConfigErrorSchema as QX, getSecurityFirewallConfigResponseSchema as QY, getSecurityFirewallConfigStatus200Schema as QZ, getSecurityFirewallConfigStatus400Schema as Q_, getRootStatus410Schema as Qa, getRouteVersionsErrorSchema as Qb, getRouteVersionsPathProjectIdSchema as Qc, getRouteVersionsQuerySlugSchema as Qd, getRouteVersionsQueryTeamIdSchema as Qe, getRouteVersionsResponseSchema as Qf, getRouteVersionsStatus200Schema as Qg, getRouteVersionsStatus400Schema as Qh, getRouteVersionsStatus401Schema as Qi, getRouteVersionsStatus403Schema as Qj, getRouteVersionsStatus410Schema as Qk, getRoutesErrorSchema as Ql, getRoutesPathProjectIdSchema as Qm, getRoutesQueryDiffSchema as Qn, getRoutesQueryFilterSchema as Qo, getRoutesQueryQSchema as Qp, getRoutesQuerySlugSchema as Qq, getRoutesQueryTeamIdSchema as Qr, getRoutesQueryVersionIdSchema as Qs, getRoutesResponseSchema as Qt, getRoutesStatus200Schema as Qu, getRoutesStatus400Schema as Qv, getRoutesStatus401Schema as Qw, getRoutesStatus403Schema as Qx, getRoutesStatus404Schema as Qy, getRoutesStatus410Schema as Qz, addProjectDomainQueryTeamIdSchema as R, getSessionSnapshotStatus404Schema as R$, getSecurityFirewallConfigStatus403Schema as R0, getSecurityFirewallConfigStatus404Schema as R1, getSecurityFirewallConfigStatus410Schema as R2, getSecurityFirewallEventsErrorSchema as R3, getSecurityFirewallEventsQueryEndTimestampSchema as R4, getSecurityFirewallEventsQueryHostsSchema as R5, getSecurityFirewallEventsQueryProjectIdSchema as R6, getSecurityFirewallEventsQuerySlugSchema as R7, getSecurityFirewallEventsQueryStartTimestampSchema as R8, getSecurityFirewallEventsQueryTeamIdSchema as R9, getSessionCommandQuerySlugSchema as RA, getSessionCommandQueryTeamIdSchema as RB, getSessionCommandQueryWaitSchema as RC, getSessionCommandResponseSchema as RD, getSessionCommandStatus200Schema as RE, getSessionCommandStatus400Schema as RF, getSessionCommandStatus401Schema as RG, getSessionCommandStatus403Schema as RH, getSessionCommandStatus404Schema as RI, getSessionCommandStatus410Schema as RJ, getSessionCommandStatus422Schema as RK, getSessionCommandStatus429Schema as RL, getSessionCommandStatus500Schema as RM, getSessionErrorSchema as RN, getSessionPathSessionIdSchema as RO, getSessionQuerySlugSchema as RP, getSessionQueryTeamIdSchema as RQ, getSessionResponseSchema as RR, getSessionSnapshotErrorSchema as RS, getSessionSnapshotPathSnapshotIdSchema as RT, getSessionSnapshotQuerySlugSchema as RU, getSessionSnapshotQueryTeamIdSchema as RV, getSessionSnapshotResponseSchema as RW, getSessionSnapshotStatus200Schema as RX, getSessionSnapshotStatus400Schema as RY, getSessionSnapshotStatus401Schema as RZ, getSessionSnapshotStatus403Schema as R_, getSecurityFirewallEventsResponseSchema as Ra, getSecurityFirewallEventsStatus200Schema as Rb, getSecurityFirewallEventsStatus400Schema as Rc, getSecurityFirewallEventsStatus401Schema as Rd, getSecurityFirewallEventsStatus403Schema as Re, getSecurityFirewallEventsStatus404Schema as Rf, getSecurityFirewallEventsStatus410Schema as Rg, getSecurityFirewallEventsStatus500Schema as Rh, getSessionCommandErrorSchema as Ri, getSessionCommandLogsErrorSchema as Rj, getSessionCommandLogsPathCmdIdSchema as Rk, getSessionCommandLogsPathSessionIdSchema as Rl, getSessionCommandLogsQuerySlugSchema as Rm, getSessionCommandLogsQueryTeamIdSchema as Rn, getSessionCommandLogsResponseSchema as Ro, getSessionCommandLogsStatus200Schema as Rp, getSessionCommandLogsStatus400Schema as Rq, getSessionCommandLogsStatus401Schema as Rr, getSessionCommandLogsStatus403Schema as Rs, getSessionCommandLogsStatus404Schema as Rt, getSessionCommandLogsStatus410Schema as Ru, getSessionCommandLogsStatus422Schema as Rv, getSessionCommandLogsStatus429Schema as Rw, getSessionCommandLogsStatus500Schema as Rx, getSessionCommandPathCmdIdSchema as Ry, getSessionCommandPathSessionIdSchema as Rz, addProjectDomainResponseSchema as S, getTeamMembersStatus400Schema as S$, getSessionSnapshotStatus410Schema as S0, getSessionSnapshotStatus429Schema as S1, getSessionStatus200Schema as S2, getSessionStatus400Schema as S3, getSessionStatus401Schema as S4, getSessionStatus403Schema as S5, getSessionStatus404Schema as S6, getSessionStatus410Schema as S7, getSessionStatus429Schema as S8, getSessionStatus500Schema as S9, getSupportedTldsStatus401Schema as SA, getSupportedTldsStatus403Schema as SB, getSupportedTldsStatus429Schema as SC, getSupportedTldsStatus500Schema as SD, getTeamAccessRequestErrorSchema as SE, getTeamAccessRequestPathTeamIdSchema as SF, getTeamAccessRequestPathUserIdSchema as SG, getTeamAccessRequestResponseSchema as SH, getTeamAccessRequestStatus200Schema as SI, getTeamAccessRequestStatus400Schema as SJ, getTeamAccessRequestStatus401Schema as SK, getTeamAccessRequestStatus403Schema as SL, getTeamAccessRequestStatus404Schema as SM, getTeamAccessRequestStatus410Schema as SN, getTeamErrorSchema as SO, getTeamMembersErrorSchema as SP, getTeamMembersPathTeamIdSchema as SQ, getTeamMembersQueryEligibleMembersForProjectIdSchema as SR, getTeamMembersQueryExcludeProjectSchema as SS, getTeamMembersQueryLimitSchema as ST, getTeamMembersQueryRoleSchema as SU, getTeamMembersQuerySearchSchema as SV, getTeamMembersQuerySinceSchema as SW, getTeamMembersQuerySlugSchema as SX, getTeamMembersQueryUntilSchema as SY, getTeamMembersResponseSchema as SZ, getTeamMembersStatus200Schema as S_, getSharedEnvVarErrorSchema as Sa, getSharedEnvVarPathIdSchema as Sb, getSharedEnvVarQuerySlugSchema as Sc, getSharedEnvVarQueryTeamIdSchema as Sd, getSharedEnvVarResponseSchema as Se, getSharedEnvVarStatus200Schema as Sf, getSharedEnvVarStatus400Schema as Sg, getSharedEnvVarStatus401Schema as Sh, getSharedEnvVarStatus403Schema as Si, getSharedEnvVarStatus410Schema as Sj, getStorageStoresByIdErrorSchema as Sk, getStorageStoresByIdPathIdSchema as Sl, getStorageStoresByIdQueryincludeGuidesSchema as Sm, getStorageStoresByIdQueryskipMetadataSchema as Sn, getStorageStoresByIdResponseSchema as So, getStorageStoresByIdStatus200Schema as Sp, getStorageStoresByIdStatus400Schema as Sq, getStorageStoresByIdStatus401Schema as Sr, getStorageStoresByIdStatus403Schema as Ss, getStorageStoresByIdStatus404Schema as St, getStorageStoresByIdStatus410Schema as Su, getSupportedTldsErrorSchema as Sv, getSupportedTldsQueryTeamIdSchema as Sw, getSupportedTldsResponseSchema as Sx, getSupportedTldsStatus200Schema as Sy, getSupportedTldsStatus400Schema as Sz, addProjectDomainStatus200Schema as T, getWebhookStatus401Schema as T$, getTeamMembersStatus401Schema as T0, getTeamMembersStatus403Schema as T1, getTeamMembersStatus404Schema as T2, getTeamMembersStatus410Schema as T3, getTeamPathTeamIdSchema as T4, getTeamQuerySlugSchema as T5, getTeamResponseSchema as T6, getTeamStatus200Schema as T7, getTeamStatus400Schema as T8, getTeamStatus401Schema as T9, getTldPriceStatus500Schema as TA, getTldQueryTeamIdSchema as TB, getTldResponseSchema as TC, getTldStatus200Schema as TD, getTldStatus400Schema as TE, getTldStatus401Schema as TF, getTldStatus403Schema as TG, getTldStatus429Schema as TH, getTldStatus500Schema as TI, getVersionsErrorSchema as TJ, getVersionsQueryProjectIdSchema as TK, getVersionsQuerySlugSchema as TL, getVersionsQueryTeamIdSchema as TM, getVersionsResponseSchema as TN, getVersionsStatus200Schema as TO, getVersionsStatus400Schema as TP, getVersionsStatus401Schema as TQ, getVersionsStatus403Schema as TR, getVersionsStatus410Schema as TS, getVersionsStatus500Schema as TT, getWebhookErrorSchema as TU, getWebhookPathIdSchema as TV, getWebhookQuerySlugSchema as TW, getWebhookQueryTeamIdSchema as TX, getWebhookResponseSchema as TY, getWebhookStatus200Schema as TZ, getWebhookStatus400Schema as T_, getTeamStatus403Schema as Ta, getTeamStatus404Schema as Tb, getTeamStatus410Schema as Tc, getTeamsErrorSchema as Td, getTeamsQueryLimitSchema as Te, getTeamsQuerySinceSchema as Tf, getTeamsQueryUntilSchema as Tg, getTeamsResponseSchema as Th, getTeamsStatus200Schema as Ti, getTeamsStatus400Schema as Tj, getTeamsStatus401Schema as Tk, getTeamsStatus403Schema as Tl, getTeamsStatus410Schema as Tm, getTeamsStatus500Schema as Tn, getTldErrorSchema as To, getTldPathTldSchema as Tp, getTldPriceErrorSchema as Tq, getTldPricePathTldSchema as Tr, getTldPriceQueryTeamIdSchema as Ts, getTldPriceQueryYearsSchema as Tt, getTldPriceResponseSchema as Tu, getTldPriceStatus200Schema as Tv, getTldPriceStatus400Schema as Tw, getTldPriceStatus401Schema as Tx, getTldPriceStatus403Schema as Ty, getTldPriceStatus429Schema as Tz, addProjectDomainStatus400Schema as U, invalidateByTagsStatus401Schema as U$, getWebhookStatus403Schema as U0, getWebhookStatus410Schema as U1, getWebhooksErrorSchema as U2, getWebhooksQueryProjectIdSchema as U3, getWebhooksQuerySlugSchema as U4, getWebhooksQueryTeamIdSchema as U5, getWebhooksResponseSchema as U6, getWebhooksStatus200Schema as U7, getWebhooksStatus400Schema as U8, getWebhooksStatus401Schema as U9, importResourceStatus403Schema as UA, importResourceStatus404Schema as UB, importResourceStatus409Schema as UC, importResourceStatus410Schema as UD, importResourceStatus422Schema as UE, importResourceStatus429Schema as UF, internalServerErrorSchema as UG, invalidAdditionalContactInfoSchema as UH, invalidateBySrcImagesErrorSchema as UI, invalidateBySrcImagesQueryProjectIdOrNameSchema as UJ, invalidateBySrcImagesQuerySlugSchema as UK, invalidateBySrcImagesQueryTeamIdSchema as UL, invalidateBySrcImagesResponseSchema as UM, invalidateBySrcImagesStatus200Schema as UN, invalidateBySrcImagesStatus400Schema as UO, invalidateBySrcImagesStatus401Schema as UP, invalidateBySrcImagesStatus402Schema as UQ, invalidateBySrcImagesStatus403Schema as UR, invalidateBySrcImagesStatus404Schema as US, invalidateBySrcImagesStatus410Schema as UT, invalidateByTagsErrorSchema as UU, invalidateByTagsQueryProjectIdOrNameSchema as UV, invalidateByTagsQuerySlugSchema as UW, invalidateByTagsQueryTeamIdSchema as UX, invalidateByTagsResponseSchema as UY, invalidateByTagsStatus200Schema as UZ, invalidateByTagsStatus400Schema as U_, getWebhooksStatus403Schema as Ua, getWebhooksStatus410Schema as Ub, gitNamespacesErrorSchema as Uc, gitNamespacesQueryHostSchema as Ud, gitNamespacesQueryProviderSchema as Ue, gitNamespacesQueryViewerMetadataSchema as Uf, gitNamespacesResponseSchema as Ug, gitNamespacesStatus200Schema as Uh, gitNamespacesStatus400Schema as Ui, gitNamespacesStatus401Schema as Uj, gitNamespacesStatus403Schema as Uk, gitNamespacesStatus404Schema as Ul, gitNamespacesStatus410Schema as Um, gitNamespacesStatus429Schema as Un, gitNamespacesStatus500Schema as Uo, globalConfigItemSchema as Up, globalConfigItemValueSchema as Uq, globalConfigTokenSchema as Ur, httpApiDecodeErrorSchema as Us, importResourceErrorSchema as Ut, importResourcePathIntegrationConfigurationIdSchema as Uu, importResourcePathResourceIdSchema as Uv, importResourceResponseSchema as Uw, importResourceStatus200Schema as Ux, importResourceStatus400Schema as Uy, importResourceStatus401Schema as Uz, addProjectDomainStatus401Schema as V, listAccessGroupMembersStatus200Schema as V$, invalidateByTagsStatus403Schema as V0, invalidateByTagsStatus404Schema as V1, invalidateByTagsStatus410Schema as V2, inviteUserToTeamErrorSchema as V3, inviteUserToTeamPathTeamIdSchema as V4, inviteUserToTeamQuerySlugSchema as V5, inviteUserToTeamResponseSchema as V6, inviteUserToTeamStatus200Schema as V7, inviteUserToTeamStatus400Schema as V8, inviteUserToTeamStatus401Schema as V9, joinTeamStatus404Schema as VA, joinTeamStatus410Schema as VB, joinTeamStatus503Schema as VC, killSessionCommandErrorSchema as VD, killSessionCommandPathCmdIdSchema as VE, killSessionCommandPathSessionIdSchema as VF, killSessionCommandQuerySlugSchema as VG, killSessionCommandQueryTeamIdSchema as VH, killSessionCommandResponseSchema as VI, killSessionCommandStatus200Schema as VJ, killSessionCommandStatus400Schema as VK, killSessionCommandStatus401Schema as VL, killSessionCommandStatus403Schema as VM, killSessionCommandStatus404Schema as VN, killSessionCommandStatus410Schema as VO, killSessionCommandStatus422Schema as VP, killSessionCommandStatus429Schema as VQ, killSessionCommandStatus500Schema as VR, languageCodeRequiredSchema as VS, listAccessGroupMembersErrorSchema as VT, listAccessGroupMembersPathIdOrNameSchema as VU, listAccessGroupMembersQueryLimitSchema as VV, listAccessGroupMembersQueryNextSchema as VW, listAccessGroupMembersQuerySearchSchema as VX, listAccessGroupMembersQuerySlugSchema as VY, listAccessGroupMembersQueryTeamIdSchema as VZ, listAccessGroupMembersResponseSchema as V_, inviteUserToTeamStatus403Schema as Va, inviteUserToTeamStatus410Schema as Vb, inviteUserToTeamStatus503Schema as Vc, invitedTeamMemberSchema as Vd, issueCertErrorSchema as Ve, issueCertQuerySlugSchema as Vf, issueCertQueryTeamIdSchema as Vg, issueCertResponseSchema as Vh, issueCertStatus200Schema as Vi, issueCertStatus400Schema as Vj, issueCertStatus401Schema as Vk, issueCertStatus402Schema as Vl, issueCertStatus403Schema as Vm, issueCertStatus404Schema as Vn, issueCertStatus410Schema as Vo, issueCertStatus449Schema as Vp, issueCertStatus500Schema as Vq, issueSchema as Vr, joinTeamErrorSchema as Vs, joinTeamPathTeamIdSchema as Vt, joinTeamResponseSchema as Vu, joinTeamStatus200Schema as Vv, joinTeamStatus400Schema as Vw, joinTeamStatus401Schema as Vx, joinTeamStatus402Schema as Vy, joinTeamStatus403Schema as Vz, addProjectDomainStatus402Schema as W, listAliasesQueryTeamIdSchema as W$, listAccessGroupMembersStatus400Schema as W0, listAccessGroupMembersStatus401Schema as W1, listAccessGroupMembersStatus403Schema as W2, listAccessGroupMembersStatus410Schema as W3, listAccessGroupProjectsErrorSchema as W4, listAccessGroupProjectsPathIdOrNameSchema as W5, listAccessGroupProjectsQueryLimitSchema as W6, listAccessGroupProjectsQueryNextSchema as W7, listAccessGroupProjectsQuerySlugSchema as W8, listAccessGroupProjectsQueryTeamIdSchema as W9, listAiGatewayRulesStatus200Schema as WA, listAiGatewayRulesStatus400Schema as WB, listAiGatewayRulesStatus401Schema as WC, listAiGatewayRulesStatus403Schema as WD, listAiGatewayRulesStatus410Schema as WE, listAiGatewayRulesStatus500Schema as WF, listAiGatewayVirtualModelConfigsErrorSchema as WG, listAiGatewayVirtualModelConfigsQueryCursorSchema as WH, listAiGatewayVirtualModelConfigsQueryLimitSchema as WI, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema as WJ, listAiGatewayVirtualModelConfigsQuerySlugSchema as WK, listAiGatewayVirtualModelConfigsQueryTeamIdSchema as WL, listAiGatewayVirtualModelConfigsResponseSchema as WM, listAiGatewayVirtualModelConfigsStatus200Schema as WN, listAiGatewayVirtualModelConfigsStatus400Schema as WO, listAiGatewayVirtualModelConfigsStatus401Schema as WP, listAiGatewayVirtualModelConfigsStatus403Schema as WQ, listAiGatewayVirtualModelConfigsStatus410Schema as WR, listAiGatewayVirtualModelConfigsStatus500Schema as WS, listAliasesErrorSchema as WT, listAliasesQueryDomainSchema as WU, listAliasesQueryFromSchema as WV, listAliasesQueryLimitSchema as WW, listAliasesQueryProjectIdSchema as WX, listAliasesQueryRollbackDeploymentIdSchema as WY, listAliasesQuerySinceSchema as WZ, listAliasesQuerySlugSchema as W_, listAccessGroupProjectsResponseSchema as Wa, listAccessGroupProjectsStatus200Schema as Wb, listAccessGroupProjectsStatus400Schema as Wc, listAccessGroupProjectsStatus401Schema as Wd, listAccessGroupProjectsStatus403Schema as We, listAccessGroupProjectsStatus410Schema as Wf, listAccessGroupsErrorSchema as Wg, listAccessGroupsQueryLimitSchema as Wh, listAccessGroupsQueryMembersLimitSchema as Wi, listAccessGroupsQueryNextSchema as Wj, listAccessGroupsQueryProjectIdSchema as Wk, listAccessGroupsQueryProjectsLimitSchema as Wl, listAccessGroupsQuerySearchSchema as Wm, listAccessGroupsQuerySlugSchema as Wn, listAccessGroupsQueryTeamIdSchema as Wo, listAccessGroupsResponseSchema as Wp, listAccessGroupsStatus200Schema as Wq, listAccessGroupsStatus400Schema as Wr, listAccessGroupsStatus401Schema as Ws, listAccessGroupsStatus403Schema as Wt, listAccessGroupsStatus410Schema as Wu, listAiGatewayRulesErrorSchema as Wv, listAiGatewayRulesQueryIncludeDisabledSchema as Ww, listAiGatewayRulesQuerySlugSchema as Wx, listAiGatewayRulesQueryTeamIdSchema as Wy, listAiGatewayRulesResponseSchema as Wz, addProjectDomainStatus403Schema as X, listDeploymentCheckRunsPathDeploymentIdSchema as X$, listAliasesQueryUntilSchema as X0, listAliasesResponseSchema as X1, listAliasesStatus200Schema as X2, listAliasesStatus400Schema as X3, listAliasesStatus401Schema as X4, listAliasesStatus403Schema as X5, listAliasesStatus404Schema as X6, listAliasesStatus410Schema as X7, listAuthTokensErrorSchema as X8, listAuthTokensResponseSchema as X9, listCheckRunsStatus400Schema as XA, listCheckRunsStatus401Schema as XB, listCheckRunsStatus403Schema as XC, listCheckRunsStatus410Schema as XD, listCheckRunsStatus500Schema as XE, listContractCommitmentsErrorSchema as XF, listContractCommitmentsQuerySlugSchema as XG, listContractCommitmentsQueryTeamIdSchema as XH, listContractCommitmentsResponseSchema as XI, listContractCommitmentsStatus200Schema as XJ, listContractCommitmentsStatus400Schema as XK, listContractCommitmentsStatus401Schema as XL, listContractCommitmentsStatus403Schema as XM, listContractCommitmentsStatus404Schema as XN, listContractCommitmentsStatus410Schema as XO, listDeploymentAliasesErrorSchema as XP, listDeploymentAliasesPathIdSchema as XQ, listDeploymentAliasesQuerySlugSchema as XR, listDeploymentAliasesQueryTeamIdSchema as XS, listDeploymentAliasesResponseSchema as XT, listDeploymentAliasesStatus200Schema as XU, listDeploymentAliasesStatus400Schema as XV, listDeploymentAliasesStatus401Schema as XW, listDeploymentAliasesStatus403Schema as XX, listDeploymentAliasesStatus404Schema as XY, listDeploymentAliasesStatus410Schema as XZ, listDeploymentCheckRunsErrorSchema as X_, listAuthTokensStatus200Schema as Xa, listAuthTokensStatus400Schema as Xb, listAuthTokensStatus401Schema as Xc, listAuthTokensStatus403Schema as Xd, listAuthTokensStatus410Schema as Xe, listBillingChargesErrorSchema as Xf, listBillingChargesQueryFromSchema as Xg, listBillingChargesQuerySlugSchema as Xh, listBillingChargesQueryTeamIdSchema as Xi, listBillingChargesQueryToSchema as Xj, listBillingChargesResponseSchema as Xk, listBillingChargesStatus200Schema as Xl, listBillingChargesStatus400Schema as Xm, listBillingChargesStatus401Schema as Xn, listBillingChargesStatus403Schema as Xo, listBillingChargesStatus404Schema as Xp, listBillingChargesStatus410Schema as Xq, listBillingChargesStatus500Schema as Xr, listBillingChargesStatus503Schema as Xs, listCheckRunsErrorSchema as Xt, listCheckRunsPathCheckIdSchema as Xu, listCheckRunsPathProjectIdOrNameSchema as Xv, listCheckRunsQuerySlugSchema as Xw, listCheckRunsQueryTeamIdSchema as Xx, listCheckRunsResponseSchema as Xy, listCheckRunsStatus200Schema as Xz, addProjectDomainStatus409Schema as Y, listFlagVersionsQueryCursorSchema as Y$, listDeploymentCheckRunsQuerySlugSchema as Y0, listDeploymentCheckRunsQueryTeamIdSchema as Y1, listDeploymentCheckRunsResponseSchema as Y2, listDeploymentCheckRunsStatus200Schema as Y3, listDeploymentCheckRunsStatus400Schema as Y4, listDeploymentCheckRunsStatus401Schema as Y5, listDeploymentCheckRunsStatus403Schema as Y6, listDeploymentCheckRunsStatus410Schema as Y7, listDeploymentCheckRunsStatus500Schema as Y8, listDeploymentFilesErrorSchema as Y9, listDrivesStatus429Schema as YA, listEventTypeSchema as YB, listEventTypesErrorSchema as YC, listEventTypesQuerySlugSchema as YD, listEventTypesQueryTeamIdSchema as YE, listEventTypesResponseSchema as YF, listEventTypesStatus200Schema as YG, listEventTypesStatus400Schema as YH, listEventTypesStatus401Schema as YI, listEventTypesStatus403Schema as YJ, listEventTypesStatus410Schema as YK, listFlagSegmentsErrorSchema as YL, listFlagSegmentsPathProjectIdOrNameSchema as YM, listFlagSegmentsQuerySlugSchema as YN, listFlagSegmentsQueryTeamIdSchema as YO, listFlagSegmentsQueryWithMetadataSchema as YP, listFlagSegmentsResponseSchema as YQ, listFlagSegmentsStatus200Schema as YR, listFlagSegmentsStatus400Schema as YS, listFlagSegmentsStatus401Schema as YT, listFlagSegmentsStatus402Schema as YU, listFlagSegmentsStatus403Schema as YV, listFlagSegmentsStatus404Schema as YW, listFlagSegmentsStatus410Schema as YX, listFlagVersionsErrorSchema as YY, listFlagVersionsPathFlagIdOrSlugSchema as YZ, listFlagVersionsPathProjectIdOrNameSchema as Y_, listDeploymentFilesPathIdSchema as Ya, listDeploymentFilesQuerySlugSchema as Yb, listDeploymentFilesQueryTeamIdSchema as Yc, listDeploymentFilesResponseSchema as Yd, listDeploymentFilesStatus200Schema as Ye, listDeploymentFilesStatus400Schema as Yf, listDeploymentFilesStatus401Schema as Yg, listDeploymentFilesStatus403Schema as Yh, listDeploymentFilesStatus404Schema as Yi, listDeploymentFilesStatus410Schema as Yj, listDrivesErrorSchema as Yk, listDrivesQueryCursorSchema as Yl, listDrivesQueryLimitSchema as Ym, listDrivesQueryNamePrefixSchema as Yn, listDrivesQueryProjectIdSchema as Yo, listDrivesQuerySlugSchema as Yp, listDrivesQuerySortBySchema as Yq, listDrivesQuerySortOrderSchema as Yr, listDrivesQueryTeamIdSchema as Ys, listDrivesResponseSchema as Yt, listDrivesStatus200Schema as Yu, listDrivesStatus400Schema as Yv, listDrivesStatus401Schema as Yw, listDrivesStatus403Schema as Yx, listDrivesStatus404Schema as Yy, listDrivesStatus410Schema as Yz, addProjectDomainStatus410Schema as Z, listNetworksErrorSchema as Z$, listFlagVersionsQueryEnvironmentSchema as Z0, listFlagVersionsQueryLimitSchema as Z1, listFlagVersionsQuerySlugSchema as Z2, listFlagVersionsQueryTeamIdSchema as Z3, listFlagVersionsQueryWithMetadataSchema as Z4, listFlagVersionsResponseSchema as Z5, listFlagVersionsStatus200Schema as Z6, listFlagVersionsStatus304Schema as Z7, listFlagVersionsStatus400Schema as Z8, listFlagVersionsStatus401Schema as Z9, listFlagsV2QueryIncludeMarketplaceFlagsSchema as ZA, listFlagsV2QueryLimitSchema as ZB, listFlagsV2QueryMaintainerIdsSchema as ZC, listFlagsV2QuerySearchSchema as ZD, listFlagsV2QuerySlugSchema as ZE, listFlagsV2QueryStateSchema as ZF, listFlagsV2QueryTagsSchema as ZG, listFlagsV2QueryTeamIdSchema as ZH, listFlagsV2ResponseSchema as ZI, listFlagsV2Status200Schema as ZJ, listFlagsV2Status400Schema as ZK, listFlagsV2Status401Schema as ZL, listFlagsV2Status402Schema as ZM, listFlagsV2Status403Schema as ZN, listFlagsV2Status404Schema as ZO, listFlagsV2Status410Schema as ZP, listKmsIssuersErrorSchema as ZQ, listKmsIssuersQueryLimitSchema as ZR, listKmsIssuersQueryNextSchema as ZS, listKmsIssuersQuerySlugSchema as ZT, listKmsIssuersQueryTeamIdSchema as ZU, listKmsIssuersResponseSchema as ZV, listKmsIssuersStatus200Schema as ZW, listKmsIssuersStatus400Schema as ZX, listKmsIssuersStatus401Schema as ZY, listKmsIssuersStatus403Schema as ZZ, listKmsIssuersStatus410Schema as Z_, listFlagVersionsStatus402Schema as Za, listFlagVersionsStatus403Schema as Zb, listFlagVersionsStatus404Schema as Zc, listFlagVersionsStatus410Schema as Zd, listFlagsErrorSchema as Ze, listFlagsPathProjectIdOrNameSchema as Zf, listFlagsQueryCursorSchema as Zg, listFlagsQueryLimitSchema as Zh, listFlagsQuerySearchSchema as Zi, listFlagsQuerySlugSchema as Zj, listFlagsQueryStateSchema as Zk, listFlagsQueryTagsSchema as Zl, listFlagsQueryTeamIdSchema as Zm, listFlagsQueryWithMetadataSchema as Zn, listFlagsResponseSchema as Zo, listFlagsStatus200Schema as Zp, listFlagsStatus400Schema as Zq, listFlagsStatus401Schema as Zr, listFlagsStatus402Schema as Zs, listFlagsStatus403Schema as Zt, listFlagsStatus404Schema as Zu, listFlagsStatus410Schema as Zv, listFlagsV2ErrorSchema as Zw, listFlagsV2PathProjectIdOrNameSchema as Zx, listFlagsV2QueryCreatedBySchema as Zy, listFlagsV2QueryCursorSchema as Zz, addProjectMemberErrorSchema as _, listRepositoryImagesStatus401Schema as _$, listNetworksQueryIncludeHostedZonesSchema as _0, listNetworksQueryIncludePeeringConnectionsSchema as _1, listNetworksQueryIncludeProjectsSchema as _2, listNetworksQuerySearchSchema as _3, listNetworksQuerySlugSchema as _4, listNetworksQueryTeamIdSchema as _5, listNetworksResponseSchema as _6, listNetworksStatus200Schema as _7, listNetworksStatus400Schema as _8, listNetworksStatus401Schema as _9, listPromoteAliasesStatus403Schema as _A, listPromoteAliasesStatus404Schema as _B, listPromoteAliasesStatus410Schema as _C, listRepositoriesErrorSchema as _D, listRepositoriesQueryCursorSchema as _E, listRepositoriesQueryLimitSchema as _F, listRepositoriesQueryProjectIdSchema as _G, listRepositoriesQuerySlugSchema as _H, listRepositoriesQueryTeamIdSchema as _I, listRepositoriesResponseSchema as _J, listRepositoriesStatus200Schema as _K, listRepositoriesStatus400Schema as _L, listRepositoriesStatus401Schema as _M, listRepositoriesStatus403Schema as _N, listRepositoriesStatus404Schema as _O, listRepositoriesStatus410Schema as _P, listRepositoryImagesErrorSchema as _Q, listRepositoryImagesPathIdOrNameSchema as _R, listRepositoryImagesQueryCursorSchema as _S, listRepositoryImagesQueryLimitSchema as _T, listRepositoryImagesQueryProjectIdSchema as _U, listRepositoryImagesQuerySlugSchema as _V, listRepositoryImagesQueryTeamIdSchema as _W, listRepositoryImagesQueryUntaggedSchema as _X, listRepositoryImagesResponseSchema as _Y, listRepositoryImagesStatus200Schema as _Z, listRepositoryImagesStatus400Schema as __, listNetworksStatus403Schema as _a, listNetworksStatus410Schema as _b, listProjectChecksErrorSchema as _c, listProjectChecksPathProjectIdOrNameSchema as _d, listProjectChecksQueryBlocksSchema as _e, listProjectChecksQuerySlugSchema as _f, listProjectChecksQueryTeamIdSchema as _g, listProjectChecksResponseSchema as _h, listProjectChecksStatus200Schema as _i, listProjectChecksStatus400Schema as _j, listProjectChecksStatus401Schema as _k, listProjectChecksStatus403Schema as _l, listProjectChecksStatus410Schema as _m, listProjectChecksStatus500Schema as _n, listPromoteAliasesErrorSchema as _o, listPromoteAliasesPathProjectIdSchema as _p, listPromoteAliasesQueryFailedOnlySchema as _q, listPromoteAliasesQueryLimitSchema as _r, listPromoteAliasesQuerySinceSchema as _s, listPromoteAliasesQuerySlugSchema as _t, listPromoteAliasesQueryTeamIdSchema as _u, listPromoteAliasesQueryUntilSchema as _v, listPromoteAliasesResponseSchema as _w, listPromoteAliasesStatus200Schema as _x, listPromoteAliasesStatus400Schema as _y, listPromoteAliasesStatus401Schema as _z, aCLActionSchema as a, aggregatePageviewsStatus402Schema as a$, addProjectMemberQuerySlugSchema as a0, listTeamFlagsQueryCursorSchema as a0$, listSessionSnapshotsErrorSchema as a00, listSessionSnapshotsQueryCursorSchema as a01, listSessionSnapshotsQueryLimitSchema as a02, listSessionSnapshotsQueryNameSchema as a03, listSessionSnapshotsQueryProjectSchema as a04, listSessionSnapshotsQuerySlugSchema as a05, listSessionSnapshotsQuerySortOrderSchema as a06, listSessionSnapshotsQueryTeamIdSchema as a07, listSessionSnapshotsResponseSchema as a08, listSessionSnapshotsStatus200Schema as a09, listSharedEnvVariableQueryIdsSchema as a0A, listSharedEnvVariableQueryProjectIdSchema as a0B, listSharedEnvVariableQuerySearchSchema as a0C, listSharedEnvVariableQuerySlugSchema as a0D, listSharedEnvVariableQueryTeamIdSchema as a0E, listSharedEnvVariableQueryexcludeIdsSchema as a0F, listSharedEnvVariableQueryexcludeProjectIdSchema as a0G, listSharedEnvVariableResponseSchema as a0H, listSharedEnvVariableStatus200Schema as a0I, listSharedEnvVariableStatus400Schema as a0J, listSharedEnvVariableStatus401Schema as a0K, listSharedEnvVariableStatus403Schema as a0L, listSharedEnvVariableStatus404Schema as a0M, listSharedEnvVariableStatus410Schema as a0N, listTeamFlagSettingsErrorSchema as a0O, listTeamFlagSettingsPathTeamIdSchema as a0P, listTeamFlagSettingsQueryCursorSchema as a0Q, listTeamFlagSettingsQueryLimitSchema as a0R, listTeamFlagSettingsQuerySlugSchema as a0S, listTeamFlagSettingsResponseSchema as a0T, listTeamFlagSettingsStatus200Schema as a0U, listTeamFlagSettingsStatus400Schema as a0V, listTeamFlagSettingsStatus401Schema as a0W, listTeamFlagSettingsStatus403Schema as a0X, listTeamFlagSettingsStatus410Schema as a0Y, listTeamFlagsErrorSchema as a0Z, listTeamFlagsPathTeamIdSchema as a0_, listSessionSnapshotsStatus400Schema as a0a, listSessionSnapshotsStatus401Schema as a0b, listSessionSnapshotsStatus403Schema as a0c, listSessionSnapshotsStatus404Schema as a0d, listSessionSnapshotsStatus410Schema as a0e, listSessionSnapshotsStatus429Schema as a0f, listSessionsErrorSchema as a0g, listSessionsQueryCursorSchema as a0h, listSessionsQueryLimitSchema as a0i, listSessionsQueryNameSchema as a0j, listSessionsQueryProjectSchema as a0k, listSessionsQuerySlugSchema as a0l, listSessionsQuerySortOrderSchema as a0m, listSessionsQueryTeamIdSchema as a0n, listSessionsResponseSchema as a0o, listSessionsStatus200Schema as a0p, listSessionsStatus400Schema as a0q, listSessionsStatus401Schema as a0r, listSessionsStatus403Schema as a0s, listSessionsStatus404Schema as a0t, listSessionsStatus410Schema as a0u, listSessionsStatus429Schema as a0v, listSessionsStatus500Schema as a0w, listSharedEnvVariableErrorSchema as a0x, listSharedEnvVariableQueryExcludeIdsSchema as a0y, listSharedEnvVariableQueryExcludeProjectIdSchema as a0z, addProjectMemberQueryTeamIdSchema as a1, nameserverSchema as a1$, listTeamFlagsQueryKindSchema as a10, listTeamFlagsQueryLimitSchema as a11, listTeamFlagsQuerySearchSchema as a12, listTeamFlagsQuerySlugSchema as a13, listTeamFlagsQueryStateSchema as a14, listTeamFlagsQueryTagsSchema as a15, listTeamFlagsQueryWithMetadataSchema as a16, listTeamFlagsResponseSchema as a17, listTeamFlagsStatus200Schema as a18, listTeamFlagsStatus400Schema as a19, listUserEventsQuerySinceSchema as a1A, listUserEventsQuerySlugSchema as a1B, listUserEventsQueryTeamIdSchema as a1C, listUserEventsQueryTypesSchema as a1D, listUserEventsQueryUntilSchema as a1E, listUserEventsQueryUserIdSchema as a1F, listUserEventsQueryWithPayloadSchema as a1G, listUserEventsResponseSchema as a1H, listUserEventsStatus200Schema as a1I, listUserEventsStatus400Schema as a1J, listUserEventsStatus401Schema as a1K, listUserEventsStatus403Schema as a1L, listUserEventsStatus410Schema as a1M, marketplaceFlagSchema as a1N, moveProjectDomainErrorSchema as a1O, moveProjectDomainPathDomainSchema as a1P, moveProjectDomainPathIdOrNameSchema as a1Q, moveProjectDomainQuerySlugSchema as a1R, moveProjectDomainQueryTeamIdSchema as a1S, moveProjectDomainResponseSchema as a1T, moveProjectDomainStatus200Schema as a1U, moveProjectDomainStatus400Schema as a1V, moveProjectDomainStatus401Schema as a1W, moveProjectDomainStatus403Schema as a1X, moveProjectDomainStatus409Schema as a1Y, moveProjectDomainStatus410Schema as a1Z, namedSandboxSchema as a1_, listTeamFlagsStatus401Schema as a1a, listTeamFlagsStatus403Schema as a1b, listTeamFlagsStatus410Schema as a1c, listTeamFlagsV2ErrorSchema as a1d, listTeamFlagsV2PathTeamIdSchema as a1e, listTeamFlagsV2QueryCreatedBySchema as a1f, listTeamFlagsV2QueryCursorSchema as a1g, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema as a1h, listTeamFlagsV2QueryKindSchema as a1i, listTeamFlagsV2QueryLimitSchema as a1j, listTeamFlagsV2QueryMaintainerIdsSchema as a1k, listTeamFlagsV2QuerySearchSchema as a1l, listTeamFlagsV2QuerySlugSchema as a1m, listTeamFlagsV2QueryStateSchema as a1n, listTeamFlagsV2QueryTagsSchema as a1o, listTeamFlagsV2ResponseSchema as a1p, listTeamFlagsV2Status200Schema as a1q, listTeamFlagsV2Status400Schema as a1r, listTeamFlagsV2Status401Schema as a1s, listTeamFlagsV2Status403Schema as a1t, listTeamFlagsV2Status410Schema as a1u, listUserEventsErrorSchema as a1v, listUserEventsQueryEntityIdSchema as a1w, listUserEventsQueryLimitSchema as a1x, listUserEventsQueryPrincipalIdSchema as a1y, listUserEventsQueryProjectIdsSchema as a1z, addProjectMemberResponseSchema as a2, patchUrlProtectionBypassResponseSchema as a2$, networkSchema as a20, nonEmptyTrimmedStringSchema as a21, notAuthorizedForScopeSchema as a22, notFoundSchema as a23, orderIdSchema as a24, orderTooExpensiveSchema as a25, paginationSchema as a26, patchDomainErrorSchema as a27, patchDomainPathDomainSchema as a28, patchDomainQuerySlugSchema as a29, patchEdgeConfigSchemaQueryDryRunSchema as a2A, patchEdgeConfigSchemaQuerySlugSchema as a2B, patchEdgeConfigSchemaQueryTeamIdSchema as a2C, patchEdgeConfigSchemaResponseSchema as a2D, patchEdgeConfigSchemaStatus200Schema as a2E, patchEdgeConfigSchemaStatus400Schema as a2F, patchEdgeConfigSchemaStatus401Schema as a2G, patchEdgeConfigSchemaStatus402Schema as a2H, patchEdgeConfigSchemaStatus403Schema as a2I, patchEdgeConfigSchemaStatus404Schema as a2J, patchEdgeConfigSchemaStatus409Schema as a2K, patchEdgeConfigSchemaStatus410Schema as a2L, patchTeamErrorSchema as a2M, patchTeamPathTeamIdSchema as a2N, patchTeamQuerySlugSchema as a2O, patchTeamResponseSchema as a2P, patchTeamStatus200Schema as a2Q, patchTeamStatus400Schema as a2R, patchTeamStatus401Schema as a2S, patchTeamStatus402Schema as a2T, patchTeamStatus403Schema as a2U, patchTeamStatus410Schema as a2V, patchTeamStatus428Schema as a2W, patchUrlProtectionBypassErrorSchema as a2X, patchUrlProtectionBypassPathIdSchema as a2Y, patchUrlProtectionBypassQuerySlugSchema as a2Z, patchUrlProtectionBypassQueryTeamIdSchema as a2_, patchDomainQueryTeamIdSchema as a2a, patchDomainResponseSchema as a2b, patchDomainStatus200Schema as a2c, patchDomainStatus400Schema as a2d, patchDomainStatus401Schema as a2e, patchDomainStatus403Schema as a2f, patchDomainStatus404Schema as a2g, patchDomainStatus409Schema as a2h, patchDomainStatus410Schema as a2i, patchDomainStatus500Schema as a2j, patchEdgeConfigItemsErrorSchema as a2k, patchEdgeConfigItemsPathEdgeConfigIdSchema as a2l, patchEdgeConfigItemsQuerySlugSchema as a2m, patchEdgeConfigItemsQueryTeamIdSchema as a2n, patchEdgeConfigItemsResponseSchema as a2o, patchEdgeConfigItemsStatus200Schema as a2p, patchEdgeConfigItemsStatus400Schema as a2q, patchEdgeConfigItemsStatus401Schema as a2r, patchEdgeConfigItemsStatus402Schema as a2s, patchEdgeConfigItemsStatus403Schema as a2t, patchEdgeConfigItemsStatus404Schema as a2u, patchEdgeConfigItemsStatus409Schema as a2v, patchEdgeConfigItemsStatus410Schema as a2w, patchEdgeConfigItemsStatus412Schema as a2x, patchEdgeConfigSchemaErrorSchema as a2y, patchEdgeConfigSchemaPathEdgeConfigIdSchema as a2z, addProjectMemberStatus200Schema as a3, readAccessGroupStatus410Schema as a3$, patchUrlProtectionBypassStatus200Schema as a30, patchUrlProtectionBypassStatus400Schema as a31, patchUrlProtectionBypassStatus401Schema as a32, patchUrlProtectionBypassStatus403Schema as a33, patchUrlProtectionBypassStatus404Schema as a34, patchUrlProtectionBypassStatus409Schema as a35, patchUrlProtectionBypassStatus410Schema as a36, patchUrlProtectionBypassStatus428Schema as a37, pauseProjectErrorSchema as a38, pauseProjectPathProjectIdSchema as a39, putFirewallConfigStatus401Schema as a3A, putFirewallConfigStatus402Schema as a3B, putFirewallConfigStatus403Schema as a3C, putFirewallConfigStatus404Schema as a3D, putFirewallConfigStatus410Schema as a3E, putFirewallConfigStatus500Schema as a3F, rateLimitNoticeSchema as a3G, readAccessGroupErrorSchema as a3H, readAccessGroupPathIdOrNameSchema as a3I, readAccessGroupProjectErrorSchema as a3J, readAccessGroupProjectPathAccessGroupIdOrNameSchema as a3K, readAccessGroupProjectPathProjectIdSchema as a3L, readAccessGroupProjectQuerySlugSchema as a3M, readAccessGroupProjectQueryTeamIdSchema as a3N, readAccessGroupProjectResponseSchema as a3O, readAccessGroupProjectStatus200Schema as a3P, readAccessGroupProjectStatus400Schema as a3Q, readAccessGroupProjectStatus401Schema as a3R, readAccessGroupProjectStatus403Schema as a3S, readAccessGroupProjectStatus410Schema as a3T, readAccessGroupQuerySlugSchema as a3U, readAccessGroupQueryTeamIdSchema as a3V, readAccessGroupResponseSchema as a3W, readAccessGroupStatus200Schema as a3X, readAccessGroupStatus400Schema as a3Y, readAccessGroupStatus401Schema as a3Z, readAccessGroupStatus403Schema as a3_, pauseProjectQuerySlugSchema as a3a, pauseProjectQueryTeamIdSchema as a3b, pauseProjectResponseSchema as a3c, pauseProjectStatus200Schema as a3d, pauseProjectStatus400Schema as a3e, pauseProjectStatus401Schema as a3f, pauseProjectStatus403Schema as a3g, pauseProjectStatus410Schema as a3h, pauseProjectStatus500Schema as a3i, postTeamDsyncRolesErrorSchema as a3j, postTeamDsyncRolesPathTeamIdSchema as a3k, postTeamDsyncRolesQuerySlugSchema as a3l, postTeamDsyncRolesResponseSchema as a3m, postTeamDsyncRolesStatus200Schema as a3n, postTeamDsyncRolesStatus400Schema as a3o, postTeamDsyncRolesStatus401Schema as a3p, postTeamDsyncRolesStatus403Schema as a3q, postTeamDsyncRolesStatus410Schema as a3r, propertyKeySchema as a3s, putFirewallConfigErrorSchema as a3t, putFirewallConfigQueryProjectIdSchema as a3u, putFirewallConfigQuerySlugSchema as a3v, putFirewallConfigQueryTeamIdSchema as a3w, putFirewallConfigResponseSchema as a3x, putFirewallConfigStatus200Schema as a3y, putFirewallConfigStatus400Schema as a3z, addProjectMemberStatus400Schema as a4, removeCustomEnvironmentQuerySlugSchema as a4$, readNetworkErrorSchema as a40, readNetworkPathNetworkIdSchema as a41, readNetworkQuerySlugSchema as a42, readNetworkQueryTeamIdSchema as a43, readNetworkResponseSchema as a44, readNetworkStatus200Schema as a45, readNetworkStatus400Schema as a46, readNetworkStatus401Schema as a47, readNetworkStatus403Schema as a48, readNetworkStatus410Schema as a49, registrantFieldSchema as a4A, removeBypassIpErrorSchema as a4B, removeBypassIpQueryProjectIdSchema as a4C, removeBypassIpQuerySlugSchema as a4D, removeBypassIpQueryTeamIdSchema as a4E, removeBypassIpResponseSchema as a4F, removeBypassIpStatus200Schema as a4G, removeBypassIpStatus400Schema as a4H, removeBypassIpStatus401Schema as a4I, removeBypassIpStatus403Schema as a4J, removeBypassIpStatus404Schema as a4K, removeBypassIpStatus410Schema as a4L, removeBypassIpStatus500Schema as a4M, removeCertErrorSchema as a4N, removeCertPathIdSchema as a4O, removeCertQuerySlugSchema as a4P, removeCertQueryTeamIdSchema as a4Q, removeCertResponseSchema as a4R, removeCertStatus200Schema as a4S, removeCertStatus400Schema as a4T, removeCertStatus401Schema as a4U, removeCertStatus403Schema as a4V, removeCertStatus404Schema as a4W, removeCertStatus410Schema as a4X, removeCustomEnvironmentErrorSchema as a4Y, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema as a4Z, removeCustomEnvironmentPathIdOrNameSchema as a4_, readSessionFileErrorSchema as a4a, readSessionFilePathSessionIdSchema as a4b, readSessionFileQuerySlugSchema as a4c, readSessionFileQueryTeamIdSchema as a4d, readSessionFileResponseSchema as a4e, readSessionFileStatus200Schema as a4f, readSessionFileStatus400Schema as a4g, readSessionFileStatus401Schema as a4h, readSessionFileStatus403Schema as a4i, readSessionFileStatus404Schema as a4j, readSessionFileStatus410Schema as a4k, readSessionFileStatus422Schema as a4l, readSessionFileStatus429Schema as a4m, readSessionFileStatus500Schema as a4n, recordEventsErrorSchema as a4o, recordEventsHeaderxArtifactClientCiSchema as a4p, recordEventsHeaderxArtifactClientInteractiveSchema as a4q, recordEventsQuerySlugSchema as a4r, recordEventsQueryTeamIdSchema as a4s, recordEventsResponseSchema as a4t, recordEventsStatus200Schema as a4u, recordEventsStatus400Schema as a4v, recordEventsStatus401Schema as a4w, recordEventsStatus402Schema as a4x, recordEventsStatus403Schema as a4y, recordEventsStatus410Schema as a4z, addProjectMemberStatus401Schema as a5, removeRepositoryPermissionStatus204Schema as a5$, removeCustomEnvironmentQueryTeamIdSchema as a50, removeCustomEnvironmentResponseSchema as a51, removeCustomEnvironmentStatus200Schema as a52, removeCustomEnvironmentStatus400Schema as a53, removeCustomEnvironmentStatus401Schema as a54, removeCustomEnvironmentStatus403Schema as a55, removeCustomEnvironmentStatus410Schema as a56, removeProjectDomainErrorSchema as a57, removeProjectDomainPathDomainSchema as a58, removeProjectDomainPathIdOrNameSchema as a59, removeProjectMemberPathUidSchema as a5A, removeProjectMemberQuerySlugSchema as a5B, removeProjectMemberQueryTeamIdSchema as a5C, removeProjectMemberResponseSchema as a5D, removeProjectMemberStatus200Schema as a5E, removeProjectMemberStatus400Schema as a5F, removeProjectMemberStatus401Schema as a5G, removeProjectMemberStatus403Schema as a5H, removeProjectMemberStatus410Schema as a5I, removeRecordErrorSchema as a5J, removeRecordPathDomainSchema as a5K, removeRecordPathRecordIdSchema as a5L, removeRecordQuerySlugSchema as a5M, removeRecordQueryTeamIdSchema as a5N, removeRecordResponseSchema as a5O, removeRecordStatus200Schema as a5P, removeRecordStatus400Schema as a5Q, removeRecordStatus401Schema as a5R, removeRecordStatus403Schema as a5S, removeRecordStatus404Schema as a5T, removeRecordStatus410Schema as a5U, removeRepositoryPermissionErrorSchema as a5V, removeRepositoryPermissionPathIdOrNameSchema as a5W, removeRepositoryPermissionQueryProjectIdSchema as a5X, removeRepositoryPermissionQuerySlugSchema as a5Y, removeRepositoryPermissionQueryTeamIdSchema as a5Z, removeRepositoryPermissionResponseSchema as a5_, removeProjectDomainQuerySlugSchema as a5a, removeProjectDomainQueryTeamIdSchema as a5b, removeProjectDomainResponseSchema as a5c, removeProjectDomainStatus200Schema as a5d, removeProjectDomainStatus400Schema as a5e, removeProjectDomainStatus401Schema as a5f, removeProjectDomainStatus403Schema as a5g, removeProjectDomainStatus404Schema as a5h, removeProjectDomainStatus409Schema as a5i, removeProjectDomainStatus410Schema as a5j, removeProjectEnvErrorSchema as a5k, removeProjectEnvPathIdOrNameSchema as a5l, removeProjectEnvPathIdSchema as a5m, removeProjectEnvQueryCustomEnvironmentIdSchema as a5n, removeProjectEnvQuerySlugSchema as a5o, removeProjectEnvQueryTeamIdSchema as a5p, removeProjectEnvResponseSchema as a5q, removeProjectEnvStatus200Schema as a5r, removeProjectEnvStatus400Schema as a5s, removeProjectEnvStatus401Schema as a5t, removeProjectEnvStatus403Schema as a5u, removeProjectEnvStatus404Schema as a5v, removeProjectEnvStatus409Schema as a5w, removeProjectEnvStatus410Schema as a5x, removeProjectMemberErrorSchema as a5y, removeProjectMemberPathIdOrNameSchema as a5z, addProjectMemberStatus403Schema as a6, replaceDomainsByDomainRecordsStatus403Schema as a6$, removeRepositoryPermissionStatus400Schema as a60, removeRepositoryPermissionStatus401Schema as a61, removeRepositoryPermissionStatus403Schema as a62, removeRepositoryPermissionStatus404Schema as a63, removeRepositoryPermissionStatus410Schema as a64, removeTeamMemberErrorSchema as a65, removeTeamMemberPathTeamIdSchema as a66, removeTeamMemberPathUidSchema as a67, removeTeamMemberQueryNewDefaultTeamIdSchema as a68, removeTeamMemberResponseSchema as a69, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as a6A, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as a6B, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as a6C, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as a6D, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as a6E, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as a6F, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema as a6G, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as a6H, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as a6I, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as a6J, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as a6K, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as a6L, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as a6M, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema as a6N, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as a6O, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as a6P, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as a6Q, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as a6R, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as a6S, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as a6T, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema as a6U, replaceDomainsByDomainRecordsErrorSchema as a6V, replaceDomainsByDomainRecordsPathDomainSchema as a6W, replaceDomainsByDomainRecordsResponseSchema as a6X, replaceDomainsByDomainRecordsStatus200Schema as a6Y, replaceDomainsByDomainRecordsStatus400Schema as a6Z, replaceDomainsByDomainRecordsStatus401Schema as a6_, removeTeamMemberStatus200Schema as a6a, removeTeamMemberStatus400Schema as a6b, removeTeamMemberStatus401Schema as a6c, removeTeamMemberStatus403Schema as a6d, removeTeamMemberStatus404Schema as a6e, removeTeamMemberStatus410Schema as a6f, removeTeamMemberStatus503Schema as a6g, renewDomainErrorSchema as a6h, renewDomainPathDomainSchema as a6i, renewDomainQueryTeamIdSchema as a6j, renewDomainResponseSchema as a6k, renewDomainStatus200Schema as a6l, renewDomainStatus400Schema as a6m, renewDomainStatus401Schema as a6n, renewDomainStatus403Schema as a6o, renewDomainStatus404Schema as a6p, renewDomainStatus429Schema as a6q, renewDomainStatus500Schema as a6r, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as a6s, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as a6t, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as a6u, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as a6v, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as a6w, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema as a6x, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as a6y, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema as a6z, addProjectMemberStatus410Schema as a7, requestRollbackStatus422Schema as a7$, replaceDomainsByDomainRecordsStatus404Schema as a70, replaceDomainsByDomainRecordsStatus409Schema as a71, replaceDomainsByDomainRecordsStatus410Schema as a72, replaceDomainsByDomainRecordsStatus415Schema as a73, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema as a74, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema as a75, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema as a76, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema as a77, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema as a78, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema as a79, requestPromotePathDeploymentIdSchema as a7A, requestPromotePathProjectIdSchema as a7B, requestPromoteQuerySlugSchema as a7C, requestPromoteQueryTeamIdSchema as a7D, requestPromoteResponseSchema as a7E, requestPromoteStatus201Schema as a7F, requestPromoteStatus202Schema as a7G, requestPromoteStatus400Schema as a7H, requestPromoteStatus401Schema as a7I, requestPromoteStatus403Schema as a7J, requestPromoteStatus409Schema as a7K, requestPromoteStatus410Schema as a7L, requestPromoteStatus422Schema as a7M, requestRollbackErrorSchema as a7N, requestRollbackPathDeploymentIdSchema as a7O, requestRollbackPathProjectIdSchema as a7P, requestRollbackQueryDescriptionSchema as a7Q, requestRollbackQuerySlugSchema as a7R, requestRollbackQueryTeamIdSchema as a7S, requestRollbackResponseSchema as a7T, requestRollbackStatus201Schema as a7U, requestRollbackStatus400Schema as a7V, requestRollbackStatus401Schema as a7W, requestRollbackStatus402Schema as a7X, requestRollbackStatus403Schema as a7Y, requestRollbackStatus409Schema as a7Z, requestRollbackStatus410Schema as a7_, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema as a7a, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema as a7b, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema as a7c, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema as a7d, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema as a7e, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema as a7f, requestAccessToTeamErrorSchema as a7g, requestAccessToTeamPathTeamIdSchema as a7h, requestAccessToTeamResponseSchema as a7i, requestAccessToTeamStatus200Schema as a7j, requestAccessToTeamStatus400Schema as a7k, requestAccessToTeamStatus401Schema as a7l, requestAccessToTeamStatus403Schema as a7m, requestAccessToTeamStatus404Schema as a7n, requestAccessToTeamStatus410Schema as a7o, requestAccessToTeamStatus429Schema as a7p, requestAccessToTeamStatus503Schema as a7q, requestDeleteErrorSchema as a7r, requestDeleteResponseSchema as a7s, requestDeleteStatus202Schema as a7t, requestDeleteStatus400Schema as a7u, requestDeleteStatus401Schema as a7v, requestDeleteStatus402Schema as a7w, requestDeleteStatus403Schema as a7x, requestDeleteStatus410Schema as a7y, requestPromoteErrorSchema as a7z, addProjectMemberStatus500Schema as a8, rotateInstallationCredentialErrorSchema as a8$, rerequestCheckErrorSchema as a80, rerequestCheckPathCheckIdSchema as a81, rerequestCheckPathDeploymentIdSchema as a82, rerequestCheckQueryAutoUpdateSchema as a83, rerequestCheckQuerySlugSchema as a84, rerequestCheckQueryTeamIdSchema as a85, rerequestCheckResponseSchema as a86, rerequestCheckStatus200Schema as a87, rerequestCheckStatus400Schema as a88, rerequestCheckStatus401Schema as a89, restoreRedirectsStatus403Schema as a8A, restoreRedirectsStatus404Schema as a8B, restoreRedirectsStatus410Schema as a8C, restoreRedirectsStatus500Schema as a8D, revokeInstallationCredentialErrorSchema as a8E, revokeInstallationCredentialPathIntegrationConfigurationIdSchema as a8F, revokeInstallationCredentialResponseSchema as a8G, revokeInstallationCredentialStatus200Schema as a8H, revokeInstallationCredentialStatus400Schema as a8I, revokeInstallationCredentialStatus401Schema as a8J, revokeInstallationCredentialStatus403Schema as a8K, revokeInstallationCredentialStatus404Schema as a8L, revokeInstallationCredentialStatus409Schema as a8M, revokeInstallationCredentialStatus410Schema as a8N, revokeKmsSigningKeyErrorSchema as a8O, revokeKmsSigningKeyPathIssuerIdSchema as a8P, revokeKmsSigningKeyPathKeyIdSchema as a8Q, revokeKmsSigningKeyQuerySlugSchema as a8R, revokeKmsSigningKeyQueryTeamIdSchema as a8S, revokeKmsSigningKeyResponseSchema as a8T, revokeKmsSigningKeyStatus200Schema as a8U, revokeKmsSigningKeyStatus400Schema as a8V, revokeKmsSigningKeyStatus401Schema as a8W, revokeKmsSigningKeyStatus403Schema as a8X, revokeKmsSigningKeyStatus404Schema as a8Y, revokeKmsSigningKeyStatus409Schema as a8Z, revokeKmsSigningKeyStatus410Schema as a8_, rerequestCheckStatus403Schema as a8a, rerequestCheckStatus404Schema as a8b, rerequestCheckStatus410Schema as a8c, restoreEdgeConfigBackupErrorSchema as a8d, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema as a8e, restoreEdgeConfigBackupPathEdgeConfigIdSchema as a8f, restoreEdgeConfigBackupQuerySlugSchema as a8g, restoreEdgeConfigBackupQueryTeamIdSchema as a8h, restoreEdgeConfigBackupResponseSchema as a8i, restoreEdgeConfigBackupStatus200Schema as a8j, restoreEdgeConfigBackupStatus400Schema as a8k, restoreEdgeConfigBackupStatus401Schema as a8l, restoreEdgeConfigBackupStatus402Schema as a8m, restoreEdgeConfigBackupStatus403Schema as a8n, restoreEdgeConfigBackupStatus404Schema as a8o, restoreEdgeConfigBackupStatus409Schema as a8p, restoreEdgeConfigBackupStatus410Schema as a8q, restoreEdgeConfigBackupStatus412Schema as a8r, restoreRedirectsErrorSchema as a8s, restoreRedirectsQueryProjectIdSchema as a8t, restoreRedirectsQuerySlugSchema as a8u, restoreRedirectsQueryTeamIdSchema as a8v, restoreRedirectsResponseSchema as a8w, restoreRedirectsStatus200Schema as a8x, restoreRedirectsStatus400Schema as a8y, restoreRedirectsStatus401Schema as a8z, addRepositoryPermissionErrorSchema as a9, signKmsTokenStatus403Schema as a9$, rotateInstallationCredentialPathIntegrationConfigurationIdSchema as a90, rotateInstallationCredentialResponseSchema as a91, rotateInstallationCredentialStatus200Schema as a92, rotateInstallationCredentialStatus400Schema as a93, rotateInstallationCredentialStatus401Schema as a94, rotateInstallationCredentialStatus403Schema as a95, rotateInstallationCredentialStatus404Schema as a96, rotateInstallationCredentialStatus409Schema as a97, rotateInstallationCredentialStatus410Schema as a98, runSessionCommandErrorSchema as a99, searchRepoStatus200Schema as a9A, searchRepoStatus400Schema as a9B, searchRepoStatus401Schema as a9C, searchRepoStatus403Schema as a9D, searchRepoStatus404Schema as a9E, searchRepoStatus410Schema as a9F, searchRepoStatus429Schema as a9G, searchRepoStatus500Schema as a9H, searchRepoStatus502Schema as a9I, segmentSchema as a9J, sessionCommandSchema as a9K, sessionSchema as a9L, signKmsMessageErrorSchema as a9M, signKmsMessagePathIssuerIdSchema as a9N, signKmsMessageResponseSchema as a9O, signKmsMessageStatus200Schema as a9P, signKmsMessageStatus400Schema as a9Q, signKmsMessageStatus401Schema as a9R, signKmsMessageStatus403Schema as a9S, signKmsMessageStatus404Schema as a9T, signKmsMessageStatus429Schema as a9U, signKmsTokenErrorSchema as a9V, signKmsTokenPathIssuerIdSchema as a9W, signKmsTokenResponseSchema as a9X, signKmsTokenStatus200Schema as a9Y, signKmsTokenStatus400Schema as a9Z, signKmsTokenStatus401Schema as a9_, runSessionCommandPathSessionIdSchema as a9a, runSessionCommandQueryCmdIdSchema as a9b, runSessionCommandQuerySlugSchema as a9c, runSessionCommandQueryTeamIdSchema as a9d, runSessionCommandResponseSchema as a9e, runSessionCommandStatus200Schema as a9f, runSessionCommandStatus400Schema as a9g, runSessionCommandStatus401Schema as a9h, runSessionCommandStatus403Schema as a9i, runSessionCommandStatus404Schema as a9j, runSessionCommandStatus410Schema as a9k, runSessionCommandStatus422Schema as a9l, runSessionCommandStatus429Schema as a9m, runSessionCommandStatus500Schema as a9n, sandboxInjectionRuleSchema as a9o, sandboxNetworkPolicySchema as a9p, sandboxPublicRouteSchema as a9q, searchRepoErrorSchema as a9r, searchRepoQueryHostSchema as a9s, searchRepoQueryInstallationIdSchema as a9t, searchRepoQueryNamespaceIdSchema as a9u, searchRepoQueryProviderSchema as a9v, searchRepoQueryQuerySchema as a9w, searchRepoQuerySlugSchema as a9x, searchRepoQueryTeamIdSchema as a9y, searchRepoResponseSchema as a9z, aggregateEventsQueryFilterSchema as aA, aggregateEventsQueryLimitSchema as aB, aggregateEventsQueryProjectIdSchema as aC, aggregateEventsQuerySinceSchema as aD, aggregateEventsQuerySlugSchema as aE, aggregateEventsQueryTeamIdSchema as aF, aggregateEventsQueryUntilSchema as aG, aggregateEventsResponseSchema as aH, aggregateEventsStatus200Schema as aI, aggregateEventsStatus400Schema as aJ, aggregateEventsStatus401Schema as aK, aggregateEventsStatus402Schema as aL, aggregateEventsStatus403Schema as aM, aggregateEventsStatus410Schema as aN, aggregatePageviewsErrorSchema as aO, aggregatePageviewsQueryBySchema as aP, aggregatePageviewsQueryFilterSchema as aQ, aggregatePageviewsQueryLimitSchema as aR, aggregatePageviewsQueryProjectIdSchema as aS, aggregatePageviewsQuerySinceSchema as aT, aggregatePageviewsQuerySlugSchema as aU, aggregatePageviewsQueryTeamIdSchema as aV, aggregatePageviewsQueryUntilSchema as aW, aggregatePageviewsResponseSchema as aX, aggregatePageviewsStatus200Schema as aY, aggregatePageviewsStatus400Schema as aZ, aggregatePageviewsStatus401Schema as a_, addRepositoryPermissionPathIdOrNameSchema as aa, submitBillingDataPathIntegrationConfigurationIdSchema as aa$, signKmsTokenStatus404Schema as aa0, signKmsTokenStatus429Schema as aa1, snapshotSchema as aa2, stageRedirectsErrorSchema as aa3, stageRedirectsQuerySlugSchema as aa4, stageRedirectsQueryTeamIdSchema as aa5, stageRedirectsResponseSchema as aa6, stageRedirectsStatus200Schema as aa7, stageRedirectsStatus400Schema as aa8, stageRedirectsStatus401Schema as aa9, startRollingReleaseStatus410Schema as aaA, startRollingReleaseStatus422Schema as aaB, statusErrorSchema as aaC, statusQuerySlugSchema as aaD, statusQueryTeamIdSchema as aaE, statusResponseSchema as aaF, statusStatus200Schema as aaG, statusStatus400Schema as aaH, statusStatus401Schema as aaI, statusStatus402Schema as aaJ, statusStatus403Schema as aaK, statusStatus410Schema as aaL, stopSessionErrorSchema as aaM, stopSessionPathSessionIdSchema as aaN, stopSessionQuerySlugSchema as aaO, stopSessionQueryTeamIdSchema as aaP, stopSessionResponseSchema as aaQ, stopSessionStatus200Schema as aaR, stopSessionStatus400Schema as aaS, stopSessionStatus401Schema as aaT, stopSessionStatus403Schema as aaU, stopSessionStatus404Schema as aaV, stopSessionStatus410Schema as aaW, stopSessionStatus422Schema as aaX, stopSessionStatus429Schema as aaY, stopSessionStatus500Schema as aaZ, submitBillingDataErrorSchema as aa_, stageRedirectsStatus403Schema as aaa, stageRedirectsStatus410Schema as aab, stageRedirectsStatus500Schema as aac, stageRoutesErrorSchema as aad, stageRoutesPathProjectIdSchema as aae, stageRoutesQuerySlugSchema as aaf, stageRoutesQueryTeamIdSchema as aag, stageRoutesResponseSchema as aah, stageRoutesStatus200Schema as aai, stageRoutesStatus400Schema as aaj, stageRoutesStatus401Schema as aak, stageRoutesStatus403Schema as aal, stageRoutesStatus409Schema as aam, stageRoutesStatus410Schema as aan, stageRoutesStatus500Schema as aao, startRollingReleaseErrorSchema as aap, startRollingReleasePathIdOrNameSchema as aaq, startRollingReleaseQuerySlugSchema as aar, startRollingReleaseQueryTeamIdSchema as aas, startRollingReleaseResponseSchema as aat, startRollingReleaseStatus200Schema as aau, startRollingReleaseStatus400Schema as aav, startRollingReleaseStatus401Schema as aaw, startRollingReleaseStatus403Schema as aax, startRollingReleaseStatus404Schema as aay, startRollingReleaseStatus409Schema as aaz, addRepositoryPermissionQueryProjectIdSchema as ab, unlinkSharedEnvVariableStatus410Schema as ab$, submitBillingDataResponseSchema as ab0, submitBillingDataStatus201Schema as ab1, submitBillingDataStatus400Schema as ab2, submitBillingDataStatus401Schema as ab3, submitBillingDataStatus403Schema as ab4, submitBillingDataStatus404Schema as ab5, submitBillingDataStatus410Schema as ab6, submitInvoiceErrorSchema as ab7, submitInvoicePathIntegrationConfigurationIdSchema as ab8, submitInvoiceResponseSchema as ab9, testDrainStatus403Schema as abA, testDrainStatus410Schema as abB, tldNameSchema as abC, tldNotSupportedSchema as abD, tooManyDomainsSchema as abE, tooManyRequestsSchema as abF, transferInDomainErrorSchema as abG, transferInDomainPathDomainSchema as abH, transferInDomainQueryTeamIdSchema as abI, transferInDomainResponseSchema as abJ, transferInDomainStatus200Schema as abK, transferInDomainStatus400Schema as abL, transferInDomainStatus401Schema as abM, transferInDomainStatus403Schema as abN, transferInDomainStatus429Schema as abO, transferInDomainStatus500Schema as abP, unauthorizedSchema as abQ, unlinkSharedEnvVariableErrorSchema as abR, unlinkSharedEnvVariablePathIdSchema as abS, unlinkSharedEnvVariablePathProjectIdSchema as abT, unlinkSharedEnvVariableQuerySlugSchema as abU, unlinkSharedEnvVariableQueryTeamIdSchema as abV, unlinkSharedEnvVariableResponseSchema as abW, unlinkSharedEnvVariableStatus200Schema as abX, unlinkSharedEnvVariableStatus400Schema as abY, unlinkSharedEnvVariableStatus401Schema as abZ, unlinkSharedEnvVariableStatus403Schema as ab_, submitInvoiceStatus200Schema as aba, submitInvoiceStatus400Schema as abb, submitInvoiceStatus401Schema as abc, submitInvoiceStatus403Schema as abd, submitInvoiceStatus404Schema as abe, submitInvoiceStatus409Schema as abf, submitInvoiceStatus410Schema as abg, submitPrepaymentBalancesErrorSchema as abh, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema as abi, submitPrepaymentBalancesResponseSchema as abj, submitPrepaymentBalancesStatus201Schema as abk, submitPrepaymentBalancesStatus400Schema as abl, submitPrepaymentBalancesStatus401Schema as abm, submitPrepaymentBalancesStatus403Schema as abn, submitPrepaymentBalancesStatus404Schema as abo, submitPrepaymentBalancesStatus410Schema as abp, teamLimitedSchema as abq, teamSchema as abr, testDrainErrorSchema as abs, testDrainQuerySlugSchema as abt, testDrainQueryTeamIdSchema as abu, testDrainResponseSchema as abv, testDrainStatus200Schema as abw, testDrainStatus400Schema as abx, testDrainStatus401Schema as aby, testDrainStatus402Schema as abz, addRepositoryPermissionQuerySlugSchema as ac, updateAttackChallengeModeStatus410Schema as ac$, unpauseProjectErrorSchema as ac0, unpauseProjectPathProjectIdSchema as ac1, unpauseProjectQuerySlugSchema as ac2, unpauseProjectQueryTeamIdSchema as ac3, unpauseProjectResponseSchema as ac4, unpauseProjectStatus200Schema as ac5, unpauseProjectStatus400Schema as ac6, unpauseProjectStatus401Schema as ac7, unpauseProjectStatus403Schema as ac8, unpauseProjectStatus410Schema as ac9, updateAiGatewayRuleStatus200Schema as acA, updateAiGatewayRuleStatus400Schema as acB, updateAiGatewayRuleStatus401Schema as acC, updateAiGatewayRuleStatus403Schema as acD, updateAiGatewayRuleStatus404Schema as acE, updateAiGatewayRuleStatus410Schema as acF, updateAiGatewayRuleStatus500Schema as acG, updateAiGatewayVirtualModelConfigErrorSchema as acH, updateAiGatewayVirtualModelConfigQuerySlugSchema as acI, updateAiGatewayVirtualModelConfigQueryTeamIdSchema as acJ, updateAiGatewayVirtualModelConfigResponseSchema as acK, updateAiGatewayVirtualModelConfigStatus200Schema as acL, updateAiGatewayVirtualModelConfigStatus400Schema as acM, updateAiGatewayVirtualModelConfigStatus401Schema as acN, updateAiGatewayVirtualModelConfigStatus403Schema as acO, updateAiGatewayVirtualModelConfigStatus404Schema as acP, updateAiGatewayVirtualModelConfigStatus410Schema as acQ, updateAiGatewayVirtualModelConfigStatus500Schema as acR, updateAttackChallengeModeErrorSchema as acS, updateAttackChallengeModeQuerySlugSchema as acT, updateAttackChallengeModeQueryTeamIdSchema as acU, updateAttackChallengeModeResponseSchema as acV, updateAttackChallengeModeStatus200Schema as acW, updateAttackChallengeModeStatus400Schema as acX, updateAttackChallengeModeStatus401Schema as acY, updateAttackChallengeModeStatus403Schema as acZ, updateAttackChallengeModeStatus404Schema as ac_, unpauseProjectStatus500Schema as aca, updateAccessGroupErrorSchema as acb, updateAccessGroupPathIdOrNameSchema as acc, updateAccessGroupProjectErrorSchema as acd, updateAccessGroupProjectPathAccessGroupIdOrNameSchema as ace, updateAccessGroupProjectPathProjectIdSchema as acf, updateAccessGroupProjectQuerySlugSchema as acg, updateAccessGroupProjectQueryTeamIdSchema as ach, updateAccessGroupProjectResponseSchema as aci, updateAccessGroupProjectStatus200Schema as acj, updateAccessGroupProjectStatus400Schema as ack, updateAccessGroupProjectStatus401Schema as acl, updateAccessGroupProjectStatus403Schema as acm, updateAccessGroupProjectStatus410Schema as acn, updateAccessGroupQuerySlugSchema as aco, updateAccessGroupQueryTeamIdSchema as acp, updateAccessGroupResponseSchema as acq, updateAccessGroupStatus200Schema as acr, updateAccessGroupStatus400Schema as acs, updateAccessGroupStatus401Schema as act, updateAccessGroupStatus403Schema as acu, updateAccessGroupStatus410Schema as acv, updateAiGatewayRuleErrorSchema as acw, updateAiGatewayRuleQuerySlugSchema as acx, updateAiGatewayRuleQueryTeamIdSchema as acy, updateAiGatewayRuleResponseSchema as acz, addRepositoryPermissionQueryTeamIdSchema as ad, updateDomainAutoRenewStatus500Schema as ad$, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as ad0, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as ad1, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as ad2, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as ad3, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as ad4, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as ad5, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema as ad6, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as ad7, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as ad8, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as ad9, updateCustomEnvironmentStatus402Schema as adA, updateCustomEnvironmentStatus403Schema as adB, updateCustomEnvironmentStatus410Schema as adC, updateCustomEnvironmentStatus500Schema as adD, updateDeploymentCheckRunErrorSchema as adE, updateDeploymentCheckRunPathCheckRunIdSchema as adF, updateDeploymentCheckRunPathDeploymentIdSchema as adG, updateDeploymentCheckRunQuerySlugSchema as adH, updateDeploymentCheckRunQueryTeamIdSchema as adI, updateDeploymentCheckRunResponseSchema as adJ, updateDeploymentCheckRunStatus200Schema as adK, updateDeploymentCheckRunStatus400Schema as adL, updateDeploymentCheckRunStatus401Schema as adM, updateDeploymentCheckRunStatus403Schema as adN, updateDeploymentCheckRunStatus410Schema as adO, updateDeploymentCheckRunStatus413Schema as adP, updateDeploymentCheckRunStatus500Schema as adQ, updateDomainAutoRenewErrorSchema as adR, updateDomainAutoRenewPathDomainSchema as adS, updateDomainAutoRenewQueryTeamIdSchema as adT, updateDomainAutoRenewResponseSchema as adU, updateDomainAutoRenewStatus204Schema as adV, updateDomainAutoRenewStatus400Schema as adW, updateDomainAutoRenewStatus401Schema as adX, updateDomainAutoRenewStatus403Schema as adY, updateDomainAutoRenewStatus404Schema as adZ, updateDomainAutoRenewStatus429Schema as ad_, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as ada, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as adb, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as adc, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema as add, updateCheckErrorSchema as ade, updateCheckPathCheckIdSchema as adf, updateCheckPathDeploymentIdSchema as adg, updateCheckQuerySlugSchema as adh, updateCheckQueryTeamIdSchema as adi, updateCheckResponseSchema as adj, updateCheckStatus200Schema as adk, updateCheckStatus400Schema as adl, updateCheckStatus401Schema as adm, updateCheckStatus403Schema as adn, updateCheckStatus404Schema as ado, updateCheckStatus410Schema as adp, updateCheckStatus413Schema as adq, updateCustomEnvironmentErrorSchema as adr, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema as ads, updateCustomEnvironmentPathIdOrNameSchema as adt, updateCustomEnvironmentQuerySlugSchema as adu, updateCustomEnvironmentQueryTeamIdSchema as adv, updateCustomEnvironmentResponseSchema as adw, updateCustomEnvironmentStatus200Schema as adx, updateCustomEnvironmentStatus400Schema as ady, updateCustomEnvironmentStatus401Schema as adz, addRepositoryPermissionResponseSchema as ae, updateFlagSegmentResponseSchema as ae$, updateDomainNameserversErrorSchema as ae0, updateDomainNameserversPathDomainSchema as ae1, updateDomainNameserversQueryTeamIdSchema as ae2, updateDomainNameserversResponseSchema as ae3, updateDomainNameserversStatus204Schema as ae4, updateDomainNameserversStatus400Schema as ae5, updateDomainNameserversStatus401Schema as ae6, updateDomainNameserversStatus403Schema as ae7, updateDomainNameserversStatus404Schema as ae8, updateDomainNameserversStatus429Schema as ae9, updateFirewallConfigErrorSchema as aeA, updateFirewallConfigQueryProjectIdSchema as aeB, updateFirewallConfigQuerySlugSchema as aeC, updateFirewallConfigQueryTeamIdSchema as aeD, updateFirewallConfigResponseSchema as aeE, updateFirewallConfigStatus200Schema as aeF, updateFirewallConfigStatus400Schema as aeG, updateFirewallConfigStatus401Schema as aeH, updateFirewallConfigStatus402Schema as aeI, updateFirewallConfigStatus403Schema as aeJ, updateFirewallConfigStatus404Schema as aeK, updateFirewallConfigStatus410Schema as aeL, updateFirewallConfigStatus500Schema as aeM, updateFlagErrorSchema as aeN, updateFlagPathFlagIdOrSlugSchema as aeO, updateFlagPathProjectIdOrNameSchema as aeP, updateFlagQueryIfMatchSchema as aeQ, updateFlagQuerySlugSchema as aeR, updateFlagQueryTeamIdSchema as aeS, updateFlagQueryWithMetadataSchema as aeT, updateFlagResponseSchema as aeU, updateFlagSegmentErrorSchema as aeV, updateFlagSegmentPathProjectIdOrNameSchema as aeW, updateFlagSegmentPathSegmentIdOrSlugSchema as aeX, updateFlagSegmentQuerySlugSchema as aeY, updateFlagSegmentQueryTeamIdSchema as aeZ, updateFlagSegmentQueryWithMetadataSchema as ae_, updateDomainNameserversStatus500Schema as aea, updateDrainErrorSchema as aeb, updateDrainPathIdSchema as aec, updateDrainQuerySlugSchema as aed, updateDrainQueryTeamIdSchema as aee, updateDrainResponseSchema as aef, updateDrainStatus200Schema as aeg, updateDrainStatus400Schema as aeh, updateDrainStatus401Schema as aei, updateDrainStatus402Schema as aej, updateDrainStatus403Schema as aek, updateDrainStatus404Schema as ael, updateDrainStatus410Schema as aem, updateEdgeConfigErrorSchema as aen, updateEdgeConfigPathEdgeConfigIdSchema as aeo, updateEdgeConfigQuerySlugSchema as aep, updateEdgeConfigQueryTeamIdSchema as aeq, updateEdgeConfigResponseSchema as aer, updateEdgeConfigStatus200Schema as aes, updateEdgeConfigStatus400Schema as aet, updateEdgeConfigStatus401Schema as aeu, updateEdgeConfigStatus402Schema as aev, updateEdgeConfigStatus403Schema as aew, updateEdgeConfigStatus404Schema as aex, updateEdgeConfigStatus409Schema as aey, updateEdgeConfigStatus410Schema as aez, addRepositoryPermissionStatus200Schema as af, updateInvoicePathIntegrationConfigurationIdSchema as af$, updateFlagSegmentStatus200Schema as af0, updateFlagSegmentStatus400Schema as af1, updateFlagSegmentStatus401Schema as af2, updateFlagSegmentStatus402Schema as af3, updateFlagSegmentStatus403Schema as af4, updateFlagSegmentStatus404Schema as af5, updateFlagSegmentStatus409Schema as af6, updateFlagSegmentStatus410Schema as af7, updateFlagSettingsErrorSchema as af8, updateFlagSettingsPathProjectIdOrNameSchema as af9, updateInstallationStatus401Schema as afA, updateInstallationStatus403Schema as afB, updateInstallationStatus404Schema as afC, updateInstallationStatus410Schema as afD, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema as afE, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema as afF, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema as afG, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema as afH, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema as afI, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema as afJ, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema as afK, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema as afL, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema as afM, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema as afN, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema as afO, updateIntegrationDeploymentActionErrorSchema as afP, updateIntegrationDeploymentActionPathActionSchema as afQ, updateIntegrationDeploymentActionPathDeploymentIdSchema as afR, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema as afS, updateIntegrationDeploymentActionPathResourceIdSchema as afT, updateIntegrationDeploymentActionResponseSchema as afU, updateIntegrationDeploymentActionStatus202Schema as afV, updateIntegrationDeploymentActionStatus400Schema as afW, updateIntegrationDeploymentActionStatus401Schema as afX, updateIntegrationDeploymentActionStatus403Schema as afY, updateIntegrationDeploymentActionStatus410Schema as afZ, updateInvoiceErrorSchema as af_, updateFlagSettingsQuerySlugSchema as afa, updateFlagSettingsQueryTeamIdSchema as afb, updateFlagSettingsResponseSchema as afc, updateFlagSettingsStatus200Schema as afd, updateFlagSettingsStatus201Schema as afe, updateFlagSettingsStatus400Schema as aff, updateFlagSettingsStatus401Schema as afg, updateFlagSettingsStatus402Schema as afh, updateFlagSettingsStatus403Schema as afi, updateFlagSettingsStatus404Schema as afj, updateFlagSettingsStatus409Schema as afk, updateFlagSettingsStatus410Schema as afl, updateFlagStatus200Schema as afm, updateFlagStatus304Schema as afn, updateFlagStatus400Schema as afo, updateFlagStatus401Schema as afp, updateFlagStatus402Schema as afq, updateFlagStatus403Schema as afr, updateFlagStatus404Schema as afs, updateFlagStatus409Schema as aft, updateFlagStatus410Schema as afu, updateInstallationErrorSchema as afv, updateInstallationPathIntegrationConfigurationIdSchema as afw, updateInstallationResponseSchema as afx, updateInstallationStatus204Schema as afy, updateInstallationStatus400Schema as afz, addRepositoryPermissionStatus400Schema as ag, updateNetworkStatus401Schema as ag$, updateInvoicePathInvoiceIdSchema as ag0, updateInvoiceResponseSchema as ag1, updateInvoiceStatus204Schema as ag2, updateInvoiceStatus400Schema as ag3, updateInvoiceStatus401Schema as ag4, updateInvoiceStatus403Schema as ag5, updateInvoiceStatus404Schema as ag6, updateInvoiceStatus409Schema as ag7, updateInvoiceStatus410Schema as ag8, updateKmsIssuerErrorSchema as ag9, updateMicrofrontendsGroupPathTeamIdSchema as agA, updateMicrofrontendsGroupQuerySlugSchema as agB, updateMicrofrontendsGroupResponseSchema as agC, updateMicrofrontendsGroupStatus200Schema as agD, updateMicrofrontendsGroupStatus400Schema as agE, updateMicrofrontendsGroupStatus401Schema as agF, updateMicrofrontendsGroupStatus403Schema as agG, updateMicrofrontendsGroupStatus404Schema as agH, updateMicrofrontendsGroupStatus410Schema as agI, updateMicrofrontendsPathProjectIdSchema as agJ, updateMicrofrontendsQuerySlugSchema as agK, updateMicrofrontendsQueryTeamIdSchema as agL, updateMicrofrontendsResponseSchema as agM, updateMicrofrontendsStatus200Schema as agN, updateMicrofrontendsStatus400Schema as agO, updateMicrofrontendsStatus401Schema as agP, updateMicrofrontendsStatus403Schema as agQ, updateMicrofrontendsStatus409Schema as agR, updateMicrofrontendsStatus410Schema as agS, updateMicrofrontendsStatus500Schema as agT, updateNetworkErrorSchema as agU, updateNetworkPathNetworkIdSchema as agV, updateNetworkQuerySlugSchema as agW, updateNetworkQueryTeamIdSchema as agX, updateNetworkResponseSchema as agY, updateNetworkStatus200Schema as agZ, updateNetworkStatus400Schema as ag_, updateKmsIssuerPathIssuerIdSchema as aga, updateKmsIssuerPolicyErrorSchema as agb, updateKmsIssuerPolicyPathIssuerIdSchema as agc, updateKmsIssuerPolicyPathKindSchema as agd, updateKmsIssuerPolicyPathPolicyKeySchema as age, updateKmsIssuerPolicyQuerySlugSchema as agf, updateKmsIssuerPolicyQueryTeamIdSchema as agg, updateKmsIssuerPolicyResponseSchema as agh, updateKmsIssuerPolicyStatus200Schema as agi, updateKmsIssuerPolicyStatus400Schema as agj, updateKmsIssuerPolicyStatus401Schema as agk, updateKmsIssuerPolicyStatus403Schema as agl, updateKmsIssuerPolicyStatus404Schema as agm, updateKmsIssuerPolicyStatus410Schema as agn, updateKmsIssuerQuerySlugSchema as ago, updateKmsIssuerQueryTeamIdSchema as agp, updateKmsIssuerResponseSchema as agq, updateKmsIssuerStatus200Schema as agr, updateKmsIssuerStatus400Schema as ags, updateKmsIssuerStatus401Schema as agt, updateKmsIssuerStatus403Schema as agu, updateKmsIssuerStatus404Schema as agv, updateKmsIssuerStatus410Schema as agw, updateMicrofrontendsErrorSchema as agx, updateMicrofrontendsGroupErrorSchema as agy, updateMicrofrontendsGroupPathGroupIdSchema as agz, addRepositoryPermissionStatus401Schema as ah, updateProjectStatus410Schema as ah$, updateNetworkStatus403Schema as ah0, updateNetworkStatus410Schema as ah1, updateObservabilityConfigurationProjectErrorSchema as ah2, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema as ah3, updateObservabilityConfigurationProjectQuerySlugSchema as ah4, updateObservabilityConfigurationProjectQueryTeamIdSchema as ah5, updateObservabilityConfigurationProjectResponseSchema as ah6, updateObservabilityConfigurationProjectStatus200Schema as ah7, updateObservabilityConfigurationProjectStatus400Schema as ah8, updateObservabilityConfigurationProjectStatus401Schema as ah9, updateProjectDomainStatus403Schema as ahA, updateProjectDomainStatus409Schema as ahB, updateProjectDomainStatus410Schema as ahC, updateProjectErrorSchema as ahD, updateProjectPathIdOrNameSchema as ahE, updateProjectProtectionBypassErrorSchema as ahF, updateProjectProtectionBypassPathIdOrNameSchema as ahG, updateProjectProtectionBypassQuerySlugSchema as ahH, updateProjectProtectionBypassQueryTeamIdSchema as ahI, updateProjectProtectionBypassResponseSchema as ahJ, updateProjectProtectionBypassStatus200Schema as ahK, updateProjectProtectionBypassStatus400Schema as ahL, updateProjectProtectionBypassStatus401Schema as ahM, updateProjectProtectionBypassStatus403Schema as ahN, updateProjectProtectionBypassStatus404Schema as ahO, updateProjectProtectionBypassStatus409Schema as ahP, updateProjectProtectionBypassStatus410Schema as ahQ, updateProjectQuerySlugSchema as ahR, updateProjectQueryTeamIdSchema as ahS, updateProjectResponseSchema as ahT, updateProjectStatus200Schema as ahU, updateProjectStatus400Schema as ahV, updateProjectStatus401Schema as ahW, updateProjectStatus402Schema as ahX, updateProjectStatus403Schema as ahY, updateProjectStatus404Schema as ahZ, updateProjectStatus409Schema as ah_, updateObservabilityConfigurationProjectStatus403Schema as aha, updateObservabilityConfigurationProjectStatus404Schema as ahb, updateObservabilityConfigurationProjectStatus410Schema as ahc, updateObservabilityConfigurationProjectStatus429Schema as ahd, updateProjectCheckErrorSchema as ahe, updateProjectCheckPathCheckIdSchema as ahf, updateProjectCheckPathProjectIdOrNameSchema as ahg, updateProjectCheckQuerySlugSchema as ahh, updateProjectCheckQueryTeamIdSchema as ahi, updateProjectCheckResponseSchema as ahj, updateProjectCheckStatus200Schema as ahk, updateProjectCheckStatus400Schema as ahl, updateProjectCheckStatus401Schema as ahm, updateProjectCheckStatus403Schema as ahn, updateProjectCheckStatus404Schema as aho, updateProjectCheckStatus410Schema as ahp, updateProjectCheckStatus500Schema as ahq, updateProjectDomainErrorSchema as ahr, updateProjectDomainPathDomainSchema as ahs, updateProjectDomainPathIdOrNameSchema as aht, updateProjectDomainQuerySlugSchema as ahu, updateProjectDomainQueryTeamIdSchema as ahv, updateProjectDomainResponseSchema as ahw, updateProjectDomainStatus200Schema as ahx, updateProjectDomainStatus400Schema as ahy, updateProjectDomainStatus401Schema as ahz, addRepositoryPermissionStatus403Schema as ai, updateRollingReleaseConfigPathIdOrNameSchema as ai$, updateProjectStatus428Schema as ai0, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema as ai1, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema as ai2, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema as ai3, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema as ai4, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema as ai5, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema as ai6, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema as ai7, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema as ai8, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema as ai9, updateResourceSecretsByIdStatus403Schema as aiA, updateResourceSecretsByIdStatus404Schema as aiB, updateResourceSecretsByIdStatus409Schema as aiC, updateResourceSecretsByIdStatus410Schema as aiD, updateResourceSecretsByIdStatus422Schema as aiE, updateResourceSecretsErrorSchema as aiF, updateResourceSecretsPathIntegrationConfigurationIdSchema as aiG, updateResourceSecretsPathIntegrationProductIdOrSlugSchema as aiH, updateResourceSecretsPathResourceIdSchema as aiI, updateResourceSecretsResponseSchema as aiJ, updateResourceSecretsStatus201Schema as aiK, updateResourceSecretsStatus400Schema as aiL, updateResourceSecretsStatus401Schema as aiM, updateResourceSecretsStatus403Schema as aiN, updateResourceSecretsStatus404Schema as aiO, updateResourceSecretsStatus409Schema as aiP, updateResourceSecretsStatus410Schema as aiQ, updateResourceSecretsStatus422Schema as aiR, updateResourceStatus200Schema as aiS, updateResourceStatus400Schema as aiT, updateResourceStatus401Schema as aiU, updateResourceStatus403Schema as aiV, updateResourceStatus404Schema as aiW, updateResourceStatus409Schema as aiX, updateResourceStatus410Schema as aiY, updateResourceStatus422Schema as aiZ, updateRollingReleaseConfigErrorSchema as ai_, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema as aia, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema as aib, updateRecordErrorSchema as aic, updateRecordPathRecordIdSchema as aid, updateRecordQuerySlugSchema as aie, updateRecordQueryTeamIdSchema as aif, updateRecordResponseSchema as aig, updateRecordStatus200Schema as aih, updateRecordStatus400Schema as aii, updateRecordStatus401Schema as aij, updateRecordStatus402Schema as aik, updateRecordStatus403Schema as ail, updateRecordStatus404Schema as aim, updateRecordStatus409Schema as ain, updateRecordStatus410Schema as aio, updateResourceErrorSchema as aip, updateResourcePathIntegrationConfigurationIdSchema as aiq, updateResourcePathResourceIdSchema as air, updateResourceResponseSchema as ais, updateResourceSecretsByIdErrorSchema as ait, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema as aiu, updateResourceSecretsByIdPathResourceIdSchema as aiv, updateResourceSecretsByIdResponseSchema as aiw, updateResourceSecretsByIdStatus201Schema as aix, updateResourceSecretsByIdStatus400Schema as aiy, updateResourceSecretsByIdStatus401Schema as aiz, addRepositoryPermissionStatus404Schema as aj, updateSharedEnvVariableStatus410Schema as aj$, updateRollingReleaseConfigQuerySlugSchema as aj0, updateRollingReleaseConfigQueryTeamIdSchema as aj1, updateRollingReleaseConfigResponseSchema as aj2, updateRollingReleaseConfigStatus200Schema as aj3, updateRollingReleaseConfigStatus400Schema as aj4, updateRollingReleaseConfigStatus401Schema as aj5, updateRollingReleaseConfigStatus403Schema as aj6, updateRollingReleaseConfigStatus404Schema as aj7, updateRollingReleaseConfigStatus410Schema as aj8, updateRouteVersionsErrorSchema as aj9, updateSandboxStatus410Schema as ajA, updateSandboxStatus422Schema as ajB, updateSandboxStatus429Schema as ajC, updateSandboxStatus500Schema as ajD, updateSessionNetworkPolicyErrorSchema as ajE, updateSessionNetworkPolicyPathSessionIdSchema as ajF, updateSessionNetworkPolicyQuerySlugSchema as ajG, updateSessionNetworkPolicyQueryTeamIdSchema as ajH, updateSessionNetworkPolicyResponseSchema as ajI, updateSessionNetworkPolicyStatus200Schema as ajJ, updateSessionNetworkPolicyStatus400Schema as ajK, updateSessionNetworkPolicyStatus401Schema as ajL, updateSessionNetworkPolicyStatus403Schema as ajM, updateSessionNetworkPolicyStatus404Schema as ajN, updateSessionNetworkPolicyStatus410Schema as ajO, updateSessionNetworkPolicyStatus422Schema as ajP, updateSessionNetworkPolicyStatus429Schema as ajQ, updateSessionNetworkPolicyStatus500Schema as ajR, updateSharedEnvVariableErrorSchema as ajS, updateSharedEnvVariableQuerySlugSchema as ajT, updateSharedEnvVariableQueryTeamIdSchema as ajU, updateSharedEnvVariableResponseSchema as ajV, updateSharedEnvVariableStatus200Schema as ajW, updateSharedEnvVariableStatus400Schema as ajX, updateSharedEnvVariableStatus401Schema as ajY, updateSharedEnvVariableStatus402Schema as ajZ, updateSharedEnvVariableStatus403Schema as aj_, updateRouteVersionsPathProjectIdSchema as aja, updateRouteVersionsQuerySlugSchema as ajb, updateRouteVersionsQueryTeamIdSchema as ajc, updateRouteVersionsResponseSchema as ajd, updateRouteVersionsStatus200Schema as aje, updateRouteVersionsStatus400Schema as ajf, updateRouteVersionsStatus401Schema as ajg, updateRouteVersionsStatus403Schema as ajh, updateRouteVersionsStatus404Schema as aji, updateRouteVersionsStatus409Schema as ajj, updateRouteVersionsStatus410Schema as ajk, updateRouteVersionsStatus500Schema as ajl, updateSandboxErrorSchema as ajm, updateSandboxPathNameSchema as ajn, updateSandboxQueryProjectIdSchema as ajo, updateSandboxQueryResumeSchema as ajp, updateSandboxQuerySlugSchema as ajq, updateSandboxQueryTeamIdSchema as ajr, updateSandboxResponseSchema as ajs, updateSandboxStatus200Schema as ajt, updateSandboxStatus400Schema as aju, updateSandboxStatus401Schema as ajv, updateSandboxStatus402Schema as ajw, updateSandboxStatus403Schema as ajx, updateSandboxStatus404Schema as ajy, updateSandboxStatus409Schema as ajz, addRepositoryPermissionStatus410Schema as ak, uploadCertStatus401Schema as ak$, updateStaticIpsErrorSchema as ak0, updateStaticIpsPathIdOrNameSchema as ak1, updateStaticIpsQuerySlugSchema as ak2, updateStaticIpsQueryTeamIdSchema as ak3, updateStaticIpsResponseSchema as ak4, updateStaticIpsStatus200Schema as ak5, updateStaticIpsStatus400Schema as ak6, updateStaticIpsStatus401Schema as ak7, updateStaticIpsStatus402Schema as ak8, updateStaticIpsStatus403Schema as ak9, updateVersionStatus404Schema as akA, updateVersionStatus410Schema as akB, updateVersionStatus500Schema as akC, uploadArtifactErrorSchema as akD, uploadArtifactHeadercontentLengthSchema as akE, uploadArtifactHeaderxArtifactClientCiSchema as akF, uploadArtifactHeaderxArtifactClientInteractiveSchema as akG, uploadArtifactHeaderxArtifactDirtyHashSchema as akH, uploadArtifactHeaderxArtifactDurationSchema as akI, uploadArtifactHeaderxArtifactShaSchema as akJ, uploadArtifactHeaderxArtifactTagSchema as akK, uploadArtifactPathHashSchema as akL, uploadArtifactQuerySlugSchema as akM, uploadArtifactQueryTeamIdSchema as akN, uploadArtifactResponseSchema as akO, uploadArtifactStatus202Schema as akP, uploadArtifactStatus400Schema as akQ, uploadArtifactStatus401Schema as akR, uploadArtifactStatus402Schema as akS, uploadArtifactStatus403Schema as akT, uploadArtifactStatus410Schema as akU, uploadCertErrorSchema as akV, uploadCertQuerySlugSchema as akW, uploadCertQueryTeamIdSchema as akX, uploadCertResponseSchema as akY, uploadCertStatus200Schema as akZ, uploadCertStatus400Schema as ak_, updateStaticIpsStatus404Schema as aka, updateStaticIpsStatus409Schema as akb, updateStaticIpsStatus410Schema as akc, updateStaticIpsStatus500Schema as akd, updateTeamMemberErrorSchema as ake, updateTeamMemberPathTeamIdSchema as akf, updateTeamMemberPathUidSchema as akg, updateTeamMemberResponseSchema as akh, updateTeamMemberStatus200Schema as aki, updateTeamMemberStatus400Schema as akj, updateTeamMemberStatus401Schema as akk, updateTeamMemberStatus402Schema as akl, updateTeamMemberStatus403Schema as akm, updateTeamMemberStatus404Schema as akn, updateTeamMemberStatus409Schema as ako, updateTeamMemberStatus410Schema as akp, updateTeamMemberStatus500Schema as akq, updateVersionErrorSchema as akr, updateVersionQueryProjectIdSchema as aks, updateVersionQuerySlugSchema as akt, updateVersionQueryTeamIdSchema as aku, updateVersionResponseSchema as akv, updateVersionStatus200Schema as akw, updateVersionStatus400Schema as akx, updateVersionStatus401Schema as aky, updateVersionStatus403Schema as akz, addRouteErrorSchema as al, writeSessionFilesStatus401Schema as al$, uploadCertStatus402Schema as al0, uploadCertStatus403Schema as al1, uploadCertStatus410Schema as al2, uploadFileErrorSchema as al3, uploadFileHeadercontentLengthSchema as al4, uploadFileHeaderxNowDigestSchema as al5, uploadFileHeaderxNowSizeSchema as al6, uploadFileHeaderxVercelDigestSchema as al7, uploadFileQuerySlugSchema as al8, uploadFileQueryTeamIdSchema as al9, vcrRepositoryPermissionSchema as alA, vcrRepositorySchema as alB, vcrTagSchema as alC, vercelBadRequestErrorSchema as alD, vercelBaseErrorSchema as alE, vercelForbiddenErrorSchema as alF, vercelNotFoundErrorSchema as alG, vercelRateLimitErrorSchema as alH, verifyProjectDomainErrorSchema as alI, verifyProjectDomainPathDomainSchema as alJ, verifyProjectDomainPathIdOrNameSchema as alK, verifyProjectDomainQuerySlugSchema as alL, verifyProjectDomainQueryTeamIdSchema as alM, verifyProjectDomainResponseSchema as alN, verifyProjectDomainStatus200Schema as alO, verifyProjectDomainStatus400Schema as alP, verifyProjectDomainStatus401Schema as alQ, verifyProjectDomainStatus403Schema as alR, verifyProjectDomainStatus410Schema as alS, writeSessionFilesErrorSchema as alT, writeSessionFilesHeaderxCwdSchema as alU, writeSessionFilesPathSessionIdSchema as alV, writeSessionFilesQuerySlugSchema as alW, writeSessionFilesQueryTeamIdSchema as alX, writeSessionFilesResponseSchema as alY, writeSessionFilesStatus200Schema as alZ, writeSessionFilesStatus400Schema as al_, uploadFileResponseSchema as ala, uploadFileStatus200Schema as alb, uploadFileStatus400Schema as alc, uploadFileStatus401Schema as ald, uploadFileStatus403Schema as ale, uploadFileStatus410Schema as alf, uploadFileStatus426Schema as alg, uploadProjectAvatarErrorSchema as alh, uploadProjectAvatarPathIdOrNameSchema as ali, uploadProjectAvatarQuerySlugSchema as alj, uploadProjectAvatarQueryTeamIdSchema as alk, uploadProjectAvatarResponseSchema as all, uploadProjectAvatarStatus200Schema as alm, uploadProjectAvatarStatus400Schema as aln, uploadProjectAvatarStatus401Schema as alo, uploadProjectAvatarStatus403Schema as alp, uploadProjectAvatarStatus410Schema as alq, uploadProjectAvatarStatus413Schema as alr, uploadProjectAvatarStatus415Schema as als, userEventSchema as alt, vcrImageDetailSchema as alu, vcrImageLayerSchema as alv, vcrImageListItemSchema as alw, vcrImageListSchema as alx, vcrRepositoryListSchema as aly, vcrRepositoryPermissionListSchema as alz, addRoutePathProjectIdSchema as am, writeSessionFilesStatus403Schema as am0, writeSessionFilesStatus404Schema as am1, writeSessionFilesStatus410Schema as am2, writeSessionFilesStatus422Schema as am3, writeSessionFilesStatus429Schema as am4, writeSessionFilesStatus500Schema as am5, addRouteQuerySlugSchema as an, addRouteQueryTeamIdSchema as ao, addRouteResponseSchema as ap, addRouteStatus200Schema as aq, addRouteStatus400Schema as ar, addRouteStatus401Schema as as, addRouteStatus403Schema as at, addRouteStatus409Schema as au, addRouteStatus410Schema as av, addRouteStatus500Schema as aw, additionalContactInfoRequiredSchema as ax, aggregateEventsErrorSchema as ay, aggregateEventsQueryBySchema as az, aPIKeyQuotaSchema as b, buyCreditsResponseSchema as b$, aggregatePageviewsStatus403Schema as b0, aggregatePageviewsStatus410Schema as b1, aiGatewayProviderOptionBagSchema as b2, aiGatewayRuleListSchema as b3, aiGatewayRuleSchema as b4, aiGatewayVirtualModelConfigListSchema as b5, aiGatewayVirtualModelConfigSchema as b6, approveRollingReleaseStageErrorSchema as b7, approveRollingReleaseStagePathIdOrNameSchema as b8, approveRollingReleaseStageQuerySlugSchema as b9, assignAliasStatus401Schema as bA, assignAliasStatus402Schema as bB, assignAliasStatus403Schema as bC, assignAliasStatus404Schema as bD, assignAliasStatus409Schema as bE, assignAliasStatus410Schema as bF, authTokenSchema as bG, authUserLimitedSchema as bH, authUserSchema as bI, badRequestSchema as bJ, batchRemoveProjectEnvErrorSchema as bK, batchRemoveProjectEnvPathIdOrNameSchema as bL, batchRemoveProjectEnvQuerySlugSchema as bM, batchRemoveProjectEnvQueryTeamIdSchema as bN, batchRemoveProjectEnvResponseSchema as bO, batchRemoveProjectEnvStatus200Schema as bP, batchRemoveProjectEnvStatus400Schema as bQ, batchRemoveProjectEnvStatus401Schema as bR, batchRemoveProjectEnvStatus403Schema as bS, batchRemoveProjectEnvStatus404Schema as bT, batchRemoveProjectEnvStatus409Schema as bU, batchRemoveProjectEnvStatus410Schema as bV, boughtTooRecentlySchema as bW, buyCreditsErrorSchema as bX, buyCreditsQuerySlugSchema as bY, buyCreditsQuerySourceSchema as bZ, buyCreditsQueryTeamIdSchema as b_, approveRollingReleaseStageQueryTeamIdSchema as ba, approveRollingReleaseStageResponseSchema as bb, approveRollingReleaseStageStatus200Schema as bc, approveRollingReleaseStageStatus400Schema as bd, approveRollingReleaseStageStatus401Schema as be, approveRollingReleaseStageStatus403Schema as bf, approveRollingReleaseStageStatus404Schema as bg, approveRollingReleaseStageStatus410Schema as bh, approveRollingReleaseStageStatus500Schema as bi, artifactQueryErrorSchema as bj, artifactQueryQuerySlugSchema as bk, artifactQueryQueryTeamIdSchema as bl, artifactQueryResponseSchema as bm, artifactQueryStatus200Schema as bn, artifactQueryStatus400Schema as bo, artifactQueryStatus401Schema as bp, artifactQueryStatus402Schema as bq, artifactQueryStatus403Schema as br, artifactQueryStatus410Schema as bs, assignAliasErrorSchema as bt, assignAliasPathIdSchema as bu, assignAliasQuerySlugSchema as bv, assignAliasQueryTeamIdSchema as bw, assignAliasResponseSchema as bx, assignAliasStatus200Schema as by, assignAliasStatus400Schema as bz, aPIKeySchema as c, completeRollingReleasePathIdOrNameSchema as c$, buyCreditsStatus200Schema as c0, buyCreditsStatus400Schema as c1, buyCreditsStatus401Schema as c2, buyCreditsStatus402Schema as c3, buyCreditsStatus403Schema as c4, buyCreditsStatus404Schema as c5, buyCreditsStatus409Schema as c6, buyCreditsStatus410Schema as c7, buyCreditsStatus500Schema as c8, buyDomainsErrorSchema as c9, cancelDeploymentStatus403Schema as cA, cancelDeploymentStatus404Schema as cB, cancelDeploymentStatus410Schema as cC, claimDomainOwnershipErrorSchema as cD, claimDomainOwnershipPathDomainSchema as cE, claimDomainOwnershipQuerySlugSchema as cF, claimDomainOwnershipQueryTeamIdSchema as cG, claimDomainOwnershipResponseSchema as cH, claimDomainOwnershipStatus200Schema as cI, claimDomainOwnershipStatus400Schema as cJ, claimDomainOwnershipStatus401Schema as cK, claimDomainOwnershipStatus403Schema as cL, claimDomainOwnershipStatus404Schema as cM, claimDomainOwnershipStatus410Schema as cN, clearRepositoryPermissionsErrorSchema as cO, clearRepositoryPermissionsPathIdOrNameSchema as cP, clearRepositoryPermissionsQueryProjectIdSchema as cQ, clearRepositoryPermissionsQuerySlugSchema as cR, clearRepositoryPermissionsQueryTeamIdSchema as cS, clearRepositoryPermissionsResponseSchema as cT, clearRepositoryPermissionsStatus204Schema as cU, clearRepositoryPermissionsStatus400Schema as cV, clearRepositoryPermissionsStatus401Schema as cW, clearRepositoryPermissionsStatus403Schema as cX, clearRepositoryPermissionsStatus404Schema as cY, clearRepositoryPermissionsStatus410Schema as cZ, completeRollingReleaseErrorSchema as c_, buyDomainsQueryTeamIdSchema as ca, buyDomainsResponseSchema as cb, buyDomainsStatus200Schema as cc, buyDomainsStatus400Schema as cd, buyDomainsStatus401Schema as ce, buyDomainsStatus403Schema as cf, buyDomainsStatus429Schema as cg, buyDomainsStatus500Schema as ch, buySingleDomainErrorSchema as ci, buySingleDomainPathDomainSchema as cj, buySingleDomainQueryTeamIdSchema as ck, buySingleDomainResponseSchema as cl, buySingleDomainStatus200Schema as cm, buySingleDomainStatus400Schema as cn, buySingleDomainStatus401Schema as co, buySingleDomainStatus403Schema as cp, buySingleDomainStatus429Schema as cq, buySingleDomainStatus500Schema as cr, cancelDeploymentErrorSchema as cs, cancelDeploymentPathIdSchema as ct, cancelDeploymentQuerySlugSchema as cu, cancelDeploymentQueryTeamIdSchema as cv, cancelDeploymentResponseSchema as cw, cancelDeploymentStatus200Schema as cx, cancelDeploymentStatus400Schema as cy, cancelDeploymentStatus401Schema as cz, acceptProjectTransferRequestErrorSchema as d, createAccessGroupProjectQuerySlugSchema as d$, completeRollingReleaseQuerySlugSchema as d0, completeRollingReleaseQueryTeamIdSchema as d1, completeRollingReleaseResponseSchema as d2, completeRollingReleaseStatus200Schema as d3, completeRollingReleaseStatus400Schema as d4, completeRollingReleaseStatus401Schema as d5, completeRollingReleaseStatus403Schema as d6, completeRollingReleaseStatus404Schema as d7, completeRollingReleaseStatus410Schema as d8, connectConnectorCreateDataSchema as d9, countEventsQueryTeamIdSchema as dA, countEventsQueryUntilSchema as dB, countEventsResponseSchema as dC, countEventsStatus200Schema as dD, countEventsStatus400Schema as dE, countEventsStatus401Schema as dF, countEventsStatus402Schema as dG, countEventsStatus403Schema as dH, countEventsStatus410Schema as dI, countPageviewsErrorSchema as dJ, countPageviewsQueryFilterSchema as dK, countPageviewsQueryProjectIdSchema as dL, countPageviewsQuerySinceSchema as dM, countPageviewsQuerySlugSchema as dN, countPageviewsQueryTeamIdSchema as dO, countPageviewsQueryUntilSchema as dP, countPageviewsResponseSchema as dQ, countPageviewsStatus200Schema as dR, countPageviewsStatus400Schema as dS, countPageviewsStatus401Schema as dT, countPageviewsStatus402Schema as dU, countPageviewsStatus403Schema as dV, countPageviewsStatus410Schema as dW, countryCodeSchema as dX, createAccessGroupErrorSchema as dY, createAccessGroupProjectErrorSchema as dZ, createAccessGroupProjectPathAccessGroupIdOrNameSchema as d_, connectConnectorCreateResultSchema as da, connectCreateConnectorRequestSchema as db, connectEnvironmentSchema as dc, connectErrorSchema as dd, connectIntegrationResourceToProjectErrorSchema as de, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema as df, connectIntegrationResourceToProjectPathResourceIdSchema as dg, connectIntegrationResourceToProjectQuerySlugSchema as dh, connectIntegrationResourceToProjectQueryTeamIdSchema as di, connectIntegrationResourceToProjectResponseSchema as dj, connectIntegrationResourceToProjectStatus201Schema as dk, connectIntegrationResourceToProjectStatus400Schema as dl, connectIntegrationResourceToProjectStatus401Schema as dm, connectIntegrationResourceToProjectStatus403Schema as dn, connectIntegrationResourceToProjectStatus404Schema as dp, connectIntegrationResourceToProjectStatus410Schema as dq, connectTriggerConfigurationSchema as dr, connectTriggerDestinationSchema as ds, contactPendingVerificationSchema as dt, contactVerifiedSchema as du, countEventsErrorSchema as dv, countEventsQueryFilterSchema as dw, countEventsQueryProjectIdSchema as dx, countEventsQuerySinceSchema as dy, countEventsQuerySlugSchema as dz, acceptProjectTransferRequestPathCodeSchema as e, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema as e$, createAccessGroupProjectQueryTeamIdSchema as e0, createAccessGroupProjectResponseSchema as e1, createAccessGroupProjectStatus200Schema as e2, createAccessGroupProjectStatus400Schema as e3, createAccessGroupProjectStatus401Schema as e4, createAccessGroupProjectStatus403Schema as e5, createAccessGroupProjectStatus410Schema as e6, createAccessGroupQuerySlugSchema as e7, createAccessGroupQueryTeamIdSchema as e8, createAccessGroupResponseSchema as e9, createAiGatewayVirtualModelConfigStatus429Schema as eA, createAiGatewayVirtualModelConfigStatus500Schema as eB, createApiKeysErrorSchema as eC, createApiKeysResponseSchema as eD, createApiKeysStatus200Schema as eE, createApiKeysStatus400Schema as eF, createApiKeysStatus401Schema as eG, createApiKeysStatus403Schema as eH, createApiKeysStatus409Schema as eI, createApiKeysStatus410Schema as eJ, createApiKeysStatus429Schema as eK, createApiKeysStatus500Schema as eL, createAuthTokenErrorSchema as eM, createAuthTokenQuerySlugSchema as eN, createAuthTokenQueryTeamIdSchema as eO, createAuthTokenResponseSchema as eP, createAuthTokenStatus200Schema as eQ, createAuthTokenStatus400Schema as eR, createAuthTokenStatus401Schema as eS, createAuthTokenStatus403Schema as eT, createAuthTokenStatus404Schema as eU, createAuthTokenStatus410Schema as eV, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsErrorSchema as eW, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema as eX, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema as eY, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema as eZ, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema as e_, createAccessGroupStatus200Schema as ea, createAccessGroupStatus400Schema as eb, createAccessGroupStatus401Schema as ec, createAccessGroupStatus403Schema as ed, createAccessGroupStatus410Schema as ee, createAiGatewayRuleErrorSchema as ef, createAiGatewayRuleQuerySlugSchema as eg, createAiGatewayRuleQueryTeamIdSchema as eh, createAiGatewayRuleResponseSchema as ei, createAiGatewayRuleStatus201Schema as ej, createAiGatewayRuleStatus400Schema as ek, createAiGatewayRuleStatus401Schema as el, createAiGatewayRuleStatus403Schema as em, createAiGatewayRuleStatus409Schema as en, createAiGatewayRuleStatus410Schema as eo, createAiGatewayRuleStatus500Schema as ep, createAiGatewayVirtualModelConfigErrorSchema as eq, createAiGatewayVirtualModelConfigQuerySlugSchema as er, createAiGatewayVirtualModelConfigQueryTeamIdSchema as es, createAiGatewayVirtualModelConfigResponseSchema as et, createAiGatewayVirtualModelConfigStatus201Schema as eu, createAiGatewayVirtualModelConfigStatus400Schema as ev, createAiGatewayVirtualModelConfigStatus401Schema as ew, createAiGatewayVirtualModelConfigStatus403Schema as ex, createAiGatewayVirtualModelConfigStatus409Schema as ey, createAiGatewayVirtualModelConfigStatus410Schema as ez, acceptProjectTransferRequestQuerySlugSchema as f, createDeploymentCheckRunErrorSchema as f$, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema as f0, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema as f1, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema as f2, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema as f3, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema as f4, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema as f5, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema as f6, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema as f7, createCheckErrorSchema as f8, createCheckPathDeploymentIdSchema as f9, createConnectorAuthorizationRequestStatus410Schema as fA, createConnectorErrorSchema as fB, createConnectorQuerySlugSchema as fC, createConnectorQueryTeamIdSchema as fD, createConnectorResponseSchema as fE, createConnectorStatus201Schema as fF, createConnectorStatus400Schema as fG, createConnectorStatus401Schema as fH, createConnectorStatus403Schema as fI, createConnectorStatus404Schema as fJ, createConnectorStatus409Schema as fK, createConnectorStatus410Schema as fL, createConnectorStatus422Schema as fM, createConnectorStatus500Schema as fN, createConnectorStatus502Schema as fO, createCustomEnvironmentErrorSchema as fP, createCustomEnvironmentPathIdOrNameSchema as fQ, createCustomEnvironmentQuerySlugSchema as fR, createCustomEnvironmentQueryTeamIdSchema as fS, createCustomEnvironmentResponseSchema as fT, createCustomEnvironmentStatus201Schema as fU, createCustomEnvironmentStatus400Schema as fV, createCustomEnvironmentStatus401Schema as fW, createCustomEnvironmentStatus402Schema as fX, createCustomEnvironmentStatus403Schema as fY, createCustomEnvironmentStatus410Schema as fZ, createCustomEnvironmentStatus500Schema as f_, createCheckQuerySlugSchema as fa, createCheckQueryTeamIdSchema as fb, createCheckResponseSchema as fc, createCheckStatus200Schema as fd, createCheckStatus400Schema as fe, createCheckStatus401Schema as ff, createCheckStatus403Schema as fg, createCheckStatus404Schema as fh, createCheckStatus410Schema as fi, createConfigurableLogDrainErrorSchema as fj, createConfigurableLogDrainQuerySlugSchema as fk, createConfigurableLogDrainQueryTeamIdSchema as fl, createConfigurableLogDrainResponseSchema as fm, createConfigurableLogDrainStatus200Schema as fn, createConfigurableLogDrainStatus400Schema as fo, createConfigurableLogDrainStatus401Schema as fp, createConfigurableLogDrainStatus403Schema as fq, createConfigurableLogDrainStatus410Schema as fr, createConnectorAuthorizationRequestErrorSchema as fs, createConnectorAuthorizationRequestPathConnectorSchema as ft, createConnectorAuthorizationRequestResponseSchema as fu, createConnectorAuthorizationRequestStatus200Schema as fv, createConnectorAuthorizationRequestStatus400Schema as fw, createConnectorAuthorizationRequestStatus401Schema as fx, createConnectorAuthorizationRequestStatus403Schema as fy, createConnectorAuthorizationRequestStatus404Schema as fz, acceptProjectTransferRequestQueryTeamIdSchema as g, createEventPathIntegrationConfigurationIdSchema as g$, createDeploymentCheckRunPathDeploymentIdSchema as g0, createDeploymentCheckRunQuerySlugSchema as g1, createDeploymentCheckRunQueryTeamIdSchema as g2, createDeploymentCheckRunResponseSchema as g3, createDeploymentCheckRunStatus200Schema as g4, createDeploymentCheckRunStatus400Schema as g5, createDeploymentCheckRunStatus401Schema as g6, createDeploymentCheckRunStatus403Schema as g7, createDeploymentCheckRunStatus404Schema as g8, createDeploymentCheckRunStatus410Schema as g9, createDrainStatus402Schema as gA, createDrainStatus403Schema as gB, createDrainStatus410Schema as gC, createEdgeConfigErrorSchema as gD, createEdgeConfigQuerySlugSchema as gE, createEdgeConfigQueryTeamIdSchema as gF, createEdgeConfigResponseSchema as gG, createEdgeConfigStatus201Schema as gH, createEdgeConfigStatus400Schema as gI, createEdgeConfigStatus401Schema as gJ, createEdgeConfigStatus402Schema as gK, createEdgeConfigStatus403Schema as gL, createEdgeConfigStatus410Schema as gM, createEdgeConfigTokenErrorSchema as gN, createEdgeConfigTokenPathEdgeConfigIdSchema as gO, createEdgeConfigTokenQuerySlugSchema as gP, createEdgeConfigTokenQueryTeamIdSchema as gQ, createEdgeConfigTokenResponseSchema as gR, createEdgeConfigTokenStatus201Schema as gS, createEdgeConfigTokenStatus400Schema as gT, createEdgeConfigTokenStatus401Schema as gU, createEdgeConfigTokenStatus402Schema as gV, createEdgeConfigTokenStatus403Schema as gW, createEdgeConfigTokenStatus404Schema as gX, createEdgeConfigTokenStatus409Schema as gY, createEdgeConfigTokenStatus410Schema as gZ, createEventErrorSchema as g_, createDeploymentCheckRunStatus500Schema as ga, createDeploymentErrorSchema as gb, createDeploymentQueryForceNewSchema as gc, createDeploymentQuerySkipAutoDetectionConfirmationSchema as gd, createDeploymentQuerySlugSchema as ge, createDeploymentQueryTeamIdSchema as gf, createDeploymentResponseSchema as gg, createDeploymentStatus200Schema as gh, createDeploymentStatus400Schema as gi, createDeploymentStatus401Schema as gj, createDeploymentStatus402Schema as gk, createDeploymentStatus403Schema as gl, createDeploymentStatus404Schema as gm, createDeploymentStatus409Schema as gn, createDeploymentStatus410Schema as go, createDeploymentStatus426Schema as gp, createDeploymentStatus429Schema as gq, createDeploymentStatus500Schema as gr, createDeploymentStatus503Schema as gs, createDrainErrorSchema as gt, createDrainQuerySlugSchema as gu, createDrainQueryTeamIdSchema as gv, createDrainResponseSchema as gw, createDrainStatus200Schema as gx, createDrainStatus400Schema as gy, createDrainStatus401Schema as gz, acceptProjectTransferRequestResponseSchema as h, createKmsIssuerPolicyStatus201Schema as h$, createEventResponseSchema as h0, createEventStatus201Schema as h1, createEventStatus400Schema as h2, createEventStatus401Schema as h3, createEventStatus403Schema as h4, createEventStatus404Schema as h5, createEventStatus410Schema as h6, createFlagErrorSchema as h7, createFlagPathProjectIdOrNameSchema as h8, createFlagQuerySlugSchema as h9, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema as hA, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema as hB, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema as hC, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema as hD, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema as hE, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema as hF, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema as hG, createIntegrationStoreDirectErrorSchema as hH, createIntegrationStoreDirectQuerySlugSchema as hI, createIntegrationStoreDirectQueryTeamIdSchema as hJ, createIntegrationStoreDirectResponseSchema as hK, createIntegrationStoreDirectStatus200Schema as hL, createIntegrationStoreDirectStatus400Schema as hM, createIntegrationStoreDirectStatus401Schema as hN, createIntegrationStoreDirectStatus402Schema as hO, createIntegrationStoreDirectStatus403Schema as hP, createIntegrationStoreDirectStatus404Schema as hQ, createIntegrationStoreDirectStatus409Schema as hR, createIntegrationStoreDirectStatus410Schema as hS, createIntegrationStoreDirectStatus429Schema as hT, createIntegrationStoreDirectStatus500Schema as hU, createKmsIssuerErrorSchema as hV, createKmsIssuerPolicyErrorSchema as hW, createKmsIssuerPolicyPathIssuerIdSchema as hX, createKmsIssuerPolicyQuerySlugSchema as hY, createKmsIssuerPolicyQueryTeamIdSchema as hZ, createKmsIssuerPolicyResponseSchema as h_, createFlagQueryTeamIdSchema as ha, createFlagResponseSchema as hb, createFlagSegmentErrorSchema as hc, createFlagSegmentPathProjectIdOrNameSchema as hd, createFlagSegmentQuerySlugSchema as he, createFlagSegmentQueryTeamIdSchema as hf, createFlagSegmentResponseSchema as hg, createFlagSegmentStatus201Schema as hh, createFlagSegmentStatus400Schema as hi, createFlagSegmentStatus401Schema as hj, createFlagSegmentStatus402Schema as hk, createFlagSegmentStatus403Schema as hl, createFlagSegmentStatus404Schema as hm, createFlagSegmentStatus409Schema as hn, createFlagSegmentStatus410Schema as ho, createFlagStatus201Schema as hp, createFlagStatus400Schema as hq, createFlagStatus401Schema as hr, createFlagStatus402Schema as hs, createFlagStatus403Schema as ht, createFlagStatus404Schema as hu, createFlagStatus409Schema as hv, createFlagStatus410Schema as hw, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsErrorSchema as hx, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema as hy, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema as hz, acceptProjectTransferRequestStatus202Schema as i, createObservabilityQueryStatus402Schema as i$, createKmsIssuerPolicyStatus400Schema as i0, createKmsIssuerPolicyStatus401Schema as i1, createKmsIssuerPolicyStatus403Schema as i2, createKmsIssuerPolicyStatus404Schema as i3, createKmsIssuerPolicyStatus410Schema as i4, createKmsIssuerQuerySlugSchema as i5, createKmsIssuerQueryTeamIdSchema as i6, createKmsIssuerResponseSchema as i7, createKmsIssuerStatus201Schema as i8, createKmsIssuerStatus400Schema as i9, createLogDrainStatus410Schema as iA, createMicrofrontendsGroupWithApplicationsErrorSchema as iB, createMicrofrontendsGroupWithApplicationsQuerySlugSchema as iC, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema as iD, createMicrofrontendsGroupWithApplicationsResponseSchema as iE, createMicrofrontendsGroupWithApplicationsStatus200Schema as iF, createMicrofrontendsGroupWithApplicationsStatus400Schema as iG, createMicrofrontendsGroupWithApplicationsStatus401Schema as iH, createMicrofrontendsGroupWithApplicationsStatus403Schema as iI, createMicrofrontendsGroupWithApplicationsStatus410Schema as iJ, createMicrofrontendsGroupWithApplicationsStatus500Schema as iK, createNetworkErrorSchema as iL, createNetworkQuerySlugSchema as iM, createNetworkQueryTeamIdSchema as iN, createNetworkResponseSchema as iO, createNetworkStatus201Schema as iP, createNetworkStatus400Schema as iQ, createNetworkStatus401Schema as iR, createNetworkStatus402Schema as iS, createNetworkStatus403Schema as iT, createNetworkStatus409Schema as iU, createNetworkStatus410Schema as iV, createObservabilityQueryErrorSchema as iW, createObservabilityQueryResponseSchema as iX, createObservabilityQueryStatus200Schema as iY, createObservabilityQueryStatus400Schema as iZ, createObservabilityQueryStatus401Schema as i_, createKmsIssuerStatus401Schema as ia, createKmsIssuerStatus403Schema as ib, createKmsIssuerStatus404Schema as ic, createKmsIssuerStatus410Schema as id, createKmsSigningKeyErrorSchema as ie, createKmsSigningKeyPathIssuerIdSchema as ig, createKmsSigningKeyQuerySlugSchema as ih, createKmsSigningKeyQueryTeamIdSchema as ii, createKmsSigningKeyResponseSchema as ij, createKmsSigningKeyStatus200Schema as ik, createKmsSigningKeyStatus400Schema as il, createKmsSigningKeyStatus401Schema as im, createKmsSigningKeyStatus403Schema as io, createKmsSigningKeyStatus404Schema as ip, createKmsSigningKeyStatus409Schema as iq, createKmsSigningKeyStatus410Schema as ir, createLogDrainErrorSchema as is, createLogDrainQuerySlugSchema as it, createLogDrainQueryTeamIdSchema as iu, createLogDrainResponseSchema as iv, createLogDrainStatus200Schema as iw, createLogDrainStatus400Schema as ix, createLogDrainStatus401Schema as iy, createLogDrainStatus403Schema as iz, acceptProjectTransferRequestStatus400Schema as j, createProjectTransferRequestStatus400Schema as j$, createObservabilityQueryStatus403Schema as j0, createObservabilityQueryStatus408Schema as j1, createObservabilityQueryStatus410Schema as j2, createOrTransferDomainErrorSchema as j3, createOrTransferDomainQuerySlugSchema as j4, createOrTransferDomainQueryTeamIdSchema as j5, createOrTransferDomainResponseSchema as j6, createOrTransferDomainStatus200Schema as j7, createOrTransferDomainStatus400Schema as j8, createOrTransferDomainStatus401Schema as j9, createProjectEnvStatus403Schema as jA, createProjectEnvStatus404Schema as jB, createProjectEnvStatus409Schema as jC, createProjectEnvStatus410Schema as jD, createProjectEnvStatus429Schema as jE, createProjectEnvStatus500Schema as jF, createProjectErrorSchema as jG, createProjectQuerySlugSchema as jH, createProjectQueryTeamIdSchema as jI, createProjectResponseSchema as jJ, createProjectStatus200Schema as jK, createProjectStatus400Schema as jL, createProjectStatus401Schema as jM, createProjectStatus402Schema as jN, createProjectStatus403Schema as jO, createProjectStatus404Schema as jP, createProjectStatus409Schema as jQ, createProjectStatus410Schema as jR, createProjectStatus428Schema as jS, createProjectStatus429Schema as jT, createProjectStatus500Schema as jU, createProjectTransferRequestErrorSchema as jV, createProjectTransferRequestPathIdOrNameSchema as jW, createProjectTransferRequestQuerySlugSchema as jX, createProjectTransferRequestQueryTeamIdSchema as jY, createProjectTransferRequestResponseSchema as jZ, createProjectTransferRequestStatus200Schema as j_, createOrTransferDomainStatus402Schema as ja, createOrTransferDomainStatus403Schema as jb, createOrTransferDomainStatus404Schema as jc, createOrTransferDomainStatus409Schema as jd, createOrTransferDomainStatus410Schema as je, createProjectCheckErrorSchema as jf, createProjectCheckPathProjectIdOrNameSchema as jg, createProjectCheckQuerySlugSchema as jh, createProjectCheckQueryTeamIdSchema as ji, createProjectCheckResponseSchema as jj, createProjectCheckStatus200Schema as jk, createProjectCheckStatus400Schema as jl, createProjectCheckStatus401Schema as jm, createProjectCheckStatus403Schema as jn, createProjectCheckStatus410Schema as jo, createProjectCheckStatus500Schema as jp, createProjectEnvErrorSchema as jq, createProjectEnvPathIdOrNameSchema as jr, createProjectEnvQuerySlugSchema as js, createProjectEnvQueryTeamIdSchema as jt, createProjectEnvQueryUpsertSchema as ju, createProjectEnvResponseSchema as jv, createProjectEnvStatus201Schema as jw, createProjectEnvStatus400Schema as jx, createProjectEnvStatus401Schema as jy, createProjectEnvStatus402Schema as jz, acceptProjectTransferRequestStatus401Schema as k, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema as k$, createProjectTransferRequestStatus401Schema as k0, createProjectTransferRequestStatus403Schema as k1, createProjectTransferRequestStatus410Schema as k2, createRecordErrorSchema as k3, createRecordPathDomainSchema as k4, createRecordQuerySlugSchema as k5, createRecordQueryTeamIdSchema as k6, createRecordResponseSchema as k7, createRecordStatus200Schema as k8, createRecordStatus400Schema as k9, createSandboxesByNameForkV2Status401Schema as kA, createSandboxesByNameForkV2Status402Schema as kB, createSandboxesByNameForkV2Status403Schema as kC, createSandboxesByNameForkV2Status404Schema as kD, createSandboxesByNameForkV2Status409Schema as kE, createSandboxesByNameForkV2Status410Schema as kF, createSandboxesByNameForkV2Status422Schema as kG, createSandboxesByNameForkV2Status429Schema as kH, createSandboxesByNameForkV2Status500Schema as kI, createSandboxesByNameForkV3ErrorSchema as kJ, createSandboxesByNameForkV3PathNameSchema as kK, createSandboxesByNameForkV3QueryProjectIdSchema as kL, createSandboxesByNameForkV3QuerySlugSchema as kM, createSandboxesByNameForkV3QueryTeamIdSchema as kN, createSandboxesByNameForkV3ResponseSchema as kO, createSandboxesByNameForkV3Status200Schema as kP, createSandboxesByNameForkV3Status400Schema as kQ, createSandboxesByNameForkV3Status401Schema as kR, createSandboxesByNameForkV3Status402Schema as kS, createSandboxesByNameForkV3Status403Schema as kT, createSandboxesByNameForkV3Status404Schema as kU, createSandboxesByNameForkV3Status409Schema as kV, createSandboxesByNameForkV3Status410Schema as kW, createSandboxesByNameForkV3Status422Schema as kX, createSandboxesByNameForkV3Status429Schema as kY, createSandboxesByNameForkV3Status500Schema as kZ, createSandboxesSessionsBySessionIdSnapshotV2ErrorSchema as k_, createRecordStatus401Schema as ka, createRecordStatus402Schema as kb, createRecordStatus403Schema as kc, createRecordStatus404Schema as kd, createRecordStatus409Schema as ke, createRecordStatus410Schema as kf, createRepositoryErrorSchema as kg, createRepositoryQuerySlugSchema as kh, createRepositoryQueryTeamIdSchema as ki, createRepositoryResponseSchema as kj, createRepositoryStatus200Schema as kk, createRepositoryStatus400Schema as kl, createRepositoryStatus401Schema as km, createRepositoryStatus402Schema as kn, createRepositoryStatus403Schema as ko, createRepositoryStatus404Schema as kp, createRepositoryStatus409Schema as kq, createRepositoryStatus410Schema as kr, createSandboxesByNameForkV2ErrorSchema as ks, createSandboxesByNameForkV2PathNameSchema as kt, createSandboxesByNameForkV2QueryProjectIdSchema as ku, createSandboxesByNameForkV2QuerySlugSchema as kv, createSandboxesByNameForkV2QueryTeamIdSchema as kw, createSandboxesByNameForkV2ResponseSchema as kx, createSandboxesByNameForkV2Status200Schema as ky, createSandboxesByNameForkV2Status400Schema as kz, acceptProjectTransferRequestStatus403Schema as l, createSandboxesV4Status400Schema as l$, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema as l0, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema as l1, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema as l2, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema as l3, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema as l4, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema as l5, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema as l6, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema as l7, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema as l8, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema as l9, createSandboxesV2Status403Schema as lA, createSandboxesV2Status404Schema as lB, createSandboxesV2Status409Schema as lC, createSandboxesV2Status410Schema as lD, createSandboxesV2Status422Schema as lE, createSandboxesV2Status429Schema as lF, createSandboxesV2Status500Schema as lG, createSandboxesV3ErrorSchema as lH, createSandboxesV3QuerySlugSchema as lI, createSandboxesV3QueryTeamIdSchema as lJ, createSandboxesV3ResponseSchema as lK, createSandboxesV3Status200Schema as lL, createSandboxesV3Status400Schema as lM, createSandboxesV3Status401Schema as lN, createSandboxesV3Status402Schema as lO, createSandboxesV3Status403Schema as lP, createSandboxesV3Status404Schema as lQ, createSandboxesV3Status409Schema as lR, createSandboxesV3Status410Schema as lS, createSandboxesV3Status422Schema as lT, createSandboxesV3Status429Schema as lU, createSandboxesV3Status500Schema as lV, createSandboxesV4ErrorSchema as lW, createSandboxesV4QuerySlugSchema as lX, createSandboxesV4QueryTeamIdSchema as lY, createSandboxesV4ResponseSchema as lZ, createSandboxesV4Status200Schema as l_, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema as la, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema as lb, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema as lc, createSandboxesSessionsBySessionIdSnapshotV3ErrorSchema as ld, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema as le, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema as lf, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema as lg, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema as lh, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema as li, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema as lj, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema as lk, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema as ll, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema as lm, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema as ln, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema as lo, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema as lp, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema as lq, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema as lr, createSandboxesV2ErrorSchema as ls, createSandboxesV2QuerySlugSchema as lt, createSandboxesV2QueryTeamIdSchema as lu, createSandboxesV2ResponseSchema as lv, createSandboxesV2Status200Schema as lw, createSandboxesV2Status400Schema as lx, createSandboxesV2Status401Schema as ly, createSandboxesV2Status402Schema as lz, acceptProjectTransferRequestStatus404Schema as m, createSpeedInsightsToggleStatus402Schema as m$, createSandboxesV4Status401Schema as m0, createSandboxesV4Status402Schema as m1, createSandboxesV4Status403Schema as m2, createSandboxesV4Status404Schema as m3, createSandboxesV4Status409Schema as m4, createSandboxesV4Status410Schema as m5, createSandboxesV4Status422Schema as m6, createSandboxesV4Status429Schema as m7, createSandboxesV4Status500Schema as m8, createSdkKeyErrorSchema as m9, createSessionDirectoryQueryTeamIdSchema as mA, createSessionDirectoryResponseSchema as mB, createSessionDirectoryStatus200Schema as mC, createSessionDirectoryStatus400Schema as mD, createSessionDirectoryStatus401Schema as mE, createSessionDirectoryStatus403Schema as mF, createSessionDirectoryStatus404Schema as mG, createSessionDirectoryStatus410Schema as mH, createSessionDirectoryStatus422Schema as mI, createSessionDirectoryStatus429Schema as mJ, createSessionDirectoryStatus500Schema as mK, createSharedEnvVariableErrorSchema as mL, createSharedEnvVariableQuerySlugSchema as mM, createSharedEnvVariableQueryTeamIdSchema as mN, createSharedEnvVariableResponseSchema as mO, createSharedEnvVariableStatus201Schema as mP, createSharedEnvVariableStatus400Schema as mQ, createSharedEnvVariableStatus401Schema as mR, createSharedEnvVariableStatus402Schema as mS, createSharedEnvVariableStatus403Schema as mT, createSharedEnvVariableStatus410Schema as mU, createSpeedInsightsToggleErrorSchema as mV, createSpeedInsightsToggleQueryProjectIdSchema as mW, createSpeedInsightsToggleResponseSchema as mX, createSpeedInsightsToggleStatus200Schema as mY, createSpeedInsightsToggleStatus400Schema as mZ, createSpeedInsightsToggleStatus401Schema as m_, createSdkKeyPathProjectIdOrNameSchema as ma, createSdkKeyQuerySlugSchema as mb, createSdkKeyQueryTeamIdSchema as mc, createSdkKeyResponseSchema as md, createSdkKeyStatus200Schema as me, createSdkKeyStatus400Schema as mf, createSdkKeyStatus401Schema as mg, createSdkKeyStatus402Schema as mh, createSdkKeyStatus403Schema as mi, createSdkKeyStatus404Schema as mj, createSdkKeyStatus409Schema as mk, createSdkKeyStatus410Schema as ml, createSecurityFirewallConfigByConfigVersionActivateErrorSchema as mm, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema as mn, createSecurityFirewallConfigByConfigVersionActivateResponseSchema as mo, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema as mp, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema as mq, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema as mr, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema as ms, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema as mt, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema as mu, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema as mv, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema as mw, createSessionDirectoryErrorSchema as mx, createSessionDirectoryPathSessionIdSchema as my, createSessionDirectoryQuerySlugSchema as mz, acceptProjectTransferRequestStatus410Schema as n, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema as n$, createSpeedInsightsToggleStatus403Schema as n0, createSpeedInsightsToggleStatus410Schema as n1, createStorageStoresBlobErrorSchema as n2, createStorageStoresBlobResponseSchema as n3, createStorageStoresBlobStatus200Schema as n4, createStorageStoresBlobStatus400Schema as n5, createStorageStoresBlobStatus401Schema as n6, createStorageStoresBlobStatus402Schema as n7, createStorageStoresBlobStatus403Schema as n8, createStorageStoresBlobStatus404Schema as n9, createWebInsightsToggleStatus400Schema as nA, createWebInsightsToggleStatus401Schema as nB, createWebInsightsToggleStatus403Schema as nC, createWebInsightsToggleStatus410Schema as nD, createWebhookErrorSchema as nE, createWebhookQuerySlugSchema as nF, createWebhookQueryTeamIdSchema as nG, createWebhookResponseSchema as nH, createWebhookStatus200Schema as nI, createWebhookStatus400Schema as nJ, createWebhookStatus401Schema as nK, createWebhookStatus403Schema as nL, createWebhookStatus410Schema as nM, dNSSECEnabledSchema as nN, dangerouslyDeleteBySrcImagesErrorSchema as nO, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema as nP, dangerouslyDeleteBySrcImagesQuerySlugSchema as nQ, dangerouslyDeleteBySrcImagesQueryTeamIdSchema as nR, dangerouslyDeleteBySrcImagesResponseSchema as nS, dangerouslyDeleteBySrcImagesStatus200Schema as nT, dangerouslyDeleteBySrcImagesStatus400Schema as nU, dangerouslyDeleteBySrcImagesStatus401Schema as nV, dangerouslyDeleteBySrcImagesStatus402Schema as nW, dangerouslyDeleteBySrcImagesStatus403Schema as nX, dangerouslyDeleteBySrcImagesStatus404Schema as nY, dangerouslyDeleteBySrcImagesStatus410Schema as nZ, dangerouslyDeleteByTagsErrorSchema as n_, createStorageStoresBlobStatus409Schema as na, createStorageStoresBlobStatus410Schema as nb, createStorageStoresBlobStatus429Schema as nc, createTeamErrorSchema as nd, createTeamResponseSchema as ne, createTeamStatus200Schema as nf, createTeamStatus400Schema as ng, createTeamStatus401Schema as nh, createTeamStatus403Schema as ni, createTeamStatus404Schema as nj, createTeamStatus409Schema as nk, createTeamStatus410Schema as nl, createTraceSessionErrorSchema as nm, createTraceSessionQuerySlugSchema as nn, createTraceSessionQueryTeamIdSchema as no, createTraceSessionResponseSchema as np, createTraceSessionStatus200Schema as nq, createTraceSessionStatus400Schema as nr, createTraceSessionStatus401Schema as ns, createTraceSessionStatus403Schema as nt, createTraceSessionStatus410Schema as nu, createTraceSessionStatus422Schema as nv, createWebInsightsToggleErrorSchema as nw, createWebInsightsToggleQueryProjectIdSchema as nx, createWebInsightsToggleResponseSchema as ny, createWebInsightsToggleStatus200Schema as nz, acceptProjectTransferRequestStatus422Schema as o, deleteAliasStatus401Schema as o$, dangerouslyDeleteByTagsQuerySlugSchema as o0, dangerouslyDeleteByTagsQueryTeamIdSchema as o1, dangerouslyDeleteByTagsResponseSchema as o2, dangerouslyDeleteByTagsStatus200Schema as o3, dangerouslyDeleteByTagsStatus400Schema as o4, dangerouslyDeleteByTagsStatus401Schema as o5, dangerouslyDeleteByTagsStatus403Schema as o6, dangerouslyDeleteByTagsStatus404Schema as o7, dangerouslyDeleteByTagsStatus410Schema as o8, dateFromStringSchema as o9, deleteAiGatewayRuleStatus204Schema as oA, deleteAiGatewayRuleStatus400Schema as oB, deleteAiGatewayRuleStatus401Schema as oC, deleteAiGatewayRuleStatus403Schema as oD, deleteAiGatewayRuleStatus404Schema as oE, deleteAiGatewayRuleStatus410Schema as oF, deleteAiGatewayRuleStatus500Schema as oG, deleteAiGatewayVirtualModelConfigErrorSchema as oH, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema as oI, deleteAiGatewayVirtualModelConfigQuerySlugSchema as oJ, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema as oK, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema as oL, deleteAiGatewayVirtualModelConfigResponseSchema as oM, deleteAiGatewayVirtualModelConfigStatus204Schema as oN, deleteAiGatewayVirtualModelConfigStatus400Schema as oO, deleteAiGatewayVirtualModelConfigStatus401Schema as oP, deleteAiGatewayVirtualModelConfigStatus403Schema as oQ, deleteAiGatewayVirtualModelConfigStatus404Schema as oR, deleteAiGatewayVirtualModelConfigStatus410Schema as oS, deleteAiGatewayVirtualModelConfigStatus500Schema as oT, deleteAliasErrorSchema as oU, deleteAliasPathAliasIdSchema as oV, deleteAliasQuerySlugSchema as oW, deleteAliasQueryTeamIdSchema as oX, deleteAliasResponseSchema as oY, deleteAliasStatus200Schema as oZ, deleteAliasStatus400Schema as o_, deleteAccessGroupErrorSchema as oa, deleteAccessGroupPathIdOrNameSchema as ob, deleteAccessGroupProjectErrorSchema as oc, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema as od, deleteAccessGroupProjectPathProjectIdSchema as oe, deleteAccessGroupProjectQuerySlugSchema as of, deleteAccessGroupProjectQueryTeamIdSchema as og, deleteAccessGroupProjectResponseSchema as oh, deleteAccessGroupProjectStatus200Schema as oi, deleteAccessGroupProjectStatus400Schema as oj, deleteAccessGroupProjectStatus401Schema as ok, deleteAccessGroupProjectStatus403Schema as ol, deleteAccessGroupProjectStatus410Schema as om, deleteAccessGroupQuerySlugSchema as on, deleteAccessGroupQueryTeamIdSchema as oo, deleteAccessGroupResponseSchema as op, deleteAccessGroupStatus200Schema as oq, deleteAccessGroupStatus400Schema as or, deleteAccessGroupStatus401Schema as os, deleteAccessGroupStatus403Schema as ot, deleteAccessGroupStatus410Schema as ou, deleteAiGatewayRuleErrorSchema as ov, deleteAiGatewayRuleQueryRuleIdSchema as ow, deleteAiGatewayRuleQuerySlugSchema as ox, deleteAiGatewayRuleQueryTeamIdSchema as oy, deleteAiGatewayRuleResponseSchema as oz, activateKmsSigningKeyErrorSchema as p, deleteConfigurableLogDrainQueryTeamIdSchema as p$, deleteAliasStatus403Schema as p0, deleteAliasStatus404Schema as p1, deleteAliasStatus410Schema as p2, deleteAllArtifactsErrorSchema as p3, deleteAllArtifactsQuerySlugSchema as p4, deleteAllArtifactsQueryTeamIdSchema as p5, deleteAllArtifactsResponseSchema as p6, deleteAllArtifactsStatus200Schema as p7, deleteAllArtifactsStatus400Schema as p8, deleteAllArtifactsStatus401Schema as p9, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as pA, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as pB, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as pC, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as pD, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema as pE, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as pF, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as pG, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as pH, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as pI, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as pJ, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as pK, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as pL, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as pM, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as pN, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as pO, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as pP, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as pQ, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema as pR, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as pS, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as pT, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as pU, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as pV, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as pW, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as pX, deleteConfigurableLogDrainErrorSchema as pY, deleteConfigurableLogDrainPathIdSchema as pZ, deleteConfigurableLogDrainQuerySlugSchema as p_, deleteAllArtifactsStatus403Schema as pa, deleteAllArtifactsStatus410Schema as pb, deleteAuthTokenErrorSchema as pc, deleteAuthTokenPathTokenIdSchema as pd, deleteAuthTokenResponseSchema as pe, deleteAuthTokenStatus200Schema as pf, deleteAuthTokenStatus400Schema as pg, deleteAuthTokenStatus401Schema as ph, deleteAuthTokenStatus403Schema as pi, deleteAuthTokenStatus404Schema as pj, deleteAuthTokenStatus410Schema as pk, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema as pl, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema as pm, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema as pn, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema as po, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema as pp, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema as pq, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema as pr, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema as ps, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema as pt, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema as pu, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema as pv, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema as pw, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema as px, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as py, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as pz, activateKmsSigningKeyPathIssuerIdSchema as q, deleteDriveStatus404Schema as q$, deleteConfigurableLogDrainResponseSchema as q0, deleteConfigurableLogDrainStatus204Schema as q1, deleteConfigurableLogDrainStatus400Schema as q2, deleteConfigurableLogDrainStatus401Schema as q3, deleteConfigurableLogDrainStatus403Schema as q4, deleteConfigurableLogDrainStatus404Schema as q5, deleteConfigurableLogDrainStatus410Schema as q6, deleteConfigurationErrorSchema as q7, deleteConfigurationPathIdSchema as q8, deleteConfigurationQuerySlugSchema as q9, deleteDomainStatus400Schema as qA, deleteDomainStatus401Schema as qB, deleteDomainStatus403Schema as qC, deleteDomainStatus404Schema as qD, deleteDomainStatus409Schema as qE, deleteDomainStatus410Schema as qF, deleteDrainErrorSchema as qG, deleteDrainPathIdSchema as qH, deleteDrainQuerySlugSchema as qI, deleteDrainQueryTeamIdSchema as qJ, deleteDrainResponseSchema as qK, deleteDrainStatus204Schema as qL, deleteDrainStatus400Schema as qM, deleteDrainStatus401Schema as qN, deleteDrainStatus403Schema as qO, deleteDrainStatus404Schema as qP, deleteDrainStatus410Schema as qQ, deleteDriveErrorSchema as qR, deleteDrivePathNameSchema as qS, deleteDriveQueryProjectIdSchema as qT, deleteDriveQuerySlugSchema as qU, deleteDriveQueryTeamIdSchema as qV, deleteDriveResponseSchema as qW, deleteDriveStatus200Schema as qX, deleteDriveStatus400Schema as qY, deleteDriveStatus401Schema as qZ, deleteDriveStatus403Schema as q_, deleteConfigurationQueryTeamIdSchema as qa, deleteConfigurationResponseSchema as qb, deleteConfigurationStatus204Schema as qc, deleteConfigurationStatus400Schema as qd, deleteConfigurationStatus401Schema as qe, deleteConfigurationStatus403Schema as qf, deleteConfigurationStatus404Schema as qg, deleteConfigurationStatus410Schema as qh, deleteDeploymentErrorSchema as qi, deleteDeploymentPathIdSchema as qj, deleteDeploymentQuerySlugSchema as qk, deleteDeploymentQueryTeamIdSchema as ql, deleteDeploymentQueryUrlSchema as qm, deleteDeploymentResponseSchema as qn, deleteDeploymentStatus200Schema as qo, deleteDeploymentStatus400Schema as qp, deleteDeploymentStatus401Schema as qq, deleteDeploymentStatus403Schema as qr, deleteDeploymentStatus404Schema as qs, deleteDeploymentStatus410Schema as qt, deleteDomainErrorSchema as qu, deleteDomainPathDomainSchema as qv, deleteDomainQuerySlugSchema as qw, deleteDomainQueryTeamIdSchema as qx, deleteDomainResponseSchema as qy, deleteDomainStatus200Schema as qz, activateKmsSigningKeyPathKeyIdSchema as r, deleteFlagSegmentStatus409Schema as r$, deleteDriveStatus409Schema as r0, deleteDriveStatus410Schema as r1, deleteDriveStatus429Schema as r2, deleteEdgeConfigErrorSchema as r3, deleteEdgeConfigPathEdgeConfigIdSchema as r4, deleteEdgeConfigQuerySlugSchema as r5, deleteEdgeConfigQueryTeamIdSchema as r6, deleteEdgeConfigResponseSchema as r7, deleteEdgeConfigSchemaErrorSchema as r8, deleteEdgeConfigSchemaPathEdgeConfigIdSchema as r9, deleteEdgeConfigTokensStatus402Schema as rA, deleteEdgeConfigTokensStatus403Schema as rB, deleteEdgeConfigTokensStatus404Schema as rC, deleteEdgeConfigTokensStatus409Schema as rD, deleteEdgeConfigTokensStatus410Schema as rE, deleteFlagErrorSchema as rF, deleteFlagPathFlagIdOrSlugSchema as rG, deleteFlagPathProjectIdOrNameSchema as rH, deleteFlagQueryIfMatchSchema as rI, deleteFlagQuerySlugSchema as rJ, deleteFlagQueryTeamIdSchema as rK, deleteFlagQueryWithMetadataSchema as rL, deleteFlagResponseSchema as rM, deleteFlagSegmentErrorSchema as rN, deleteFlagSegmentPathProjectIdOrNameSchema as rO, deleteFlagSegmentPathSegmentIdOrSlugSchema as rP, deleteFlagSegmentQuerySlugSchema as rQ, deleteFlagSegmentQueryTeamIdSchema as rR, deleteFlagSegmentQueryWithMetadataSchema as rS, deleteFlagSegmentResponseSchema as rT, deleteFlagSegmentStatus204Schema as rU, deleteFlagSegmentStatus304Schema as rV, deleteFlagSegmentStatus400Schema as rW, deleteFlagSegmentStatus401Schema as rX, deleteFlagSegmentStatus402Schema as rY, deleteFlagSegmentStatus403Schema as rZ, deleteFlagSegmentStatus404Schema as r_, deleteEdgeConfigSchemaQuerySlugSchema as ra, deleteEdgeConfigSchemaQueryTeamIdSchema as rb, deleteEdgeConfigSchemaResponseSchema as rc, deleteEdgeConfigSchemaStatus204Schema as rd, deleteEdgeConfigSchemaStatus400Schema as re, deleteEdgeConfigSchemaStatus401Schema as rf, deleteEdgeConfigSchemaStatus402Schema as rg, deleteEdgeConfigSchemaStatus403Schema as rh, deleteEdgeConfigSchemaStatus404Schema as ri, deleteEdgeConfigSchemaStatus409Schema as rj, deleteEdgeConfigSchemaStatus410Schema as rk, deleteEdgeConfigStatus204Schema as rl, deleteEdgeConfigStatus400Schema as rm, deleteEdgeConfigStatus401Schema as rn, deleteEdgeConfigStatus403Schema as ro, deleteEdgeConfigStatus404Schema as rp, deleteEdgeConfigStatus409Schema as rq, deleteEdgeConfigStatus410Schema as rr, deleteEdgeConfigTokensErrorSchema as rs, deleteEdgeConfigTokensPathEdgeConfigIdSchema as rt, deleteEdgeConfigTokensQuerySlugSchema as ru, deleteEdgeConfigTokensQueryTeamIdSchema as rv, deleteEdgeConfigTokensResponseSchema as rw, deleteEdgeConfigTokensStatus204Schema as rx, deleteEdgeConfigTokensStatus400Schema as ry, deleteEdgeConfigTokensStatus401Schema as rz, activateKmsSigningKeyQuerySlugSchema as s, deleteKmsIssuerStatus403Schema as s$, deleteFlagSegmentStatus410Schema as s0, deleteFlagStatus204Schema as s1, deleteFlagStatus304Schema as s2, deleteFlagStatus400Schema as s3, deleteFlagStatus401Schema as s4, deleteFlagStatus402Schema as s5, deleteFlagStatus403Schema as s6, deleteFlagStatus404Schema as s7, deleteFlagStatus409Schema as s8, deleteFlagStatus410Schema as s9, deleteIntegrationResourceStatus204Schema as sA, deleteIntegrationResourceStatus400Schema as sB, deleteIntegrationResourceStatus401Schema as sC, deleteIntegrationResourceStatus403Schema as sD, deleteIntegrationResourceStatus404Schema as sE, deleteIntegrationResourceStatus410Schema as sF, deleteKmsIssuerErrorSchema as sG, deleteKmsIssuerPathIssuerIdSchema as sH, deleteKmsIssuerPolicyErrorSchema as sI, deleteKmsIssuerPolicyPathIssuerIdSchema as sJ, deleteKmsIssuerPolicyPathKindSchema as sK, deleteKmsIssuerPolicyPathPolicyKeySchema as sL, deleteKmsIssuerPolicyQuerySlugSchema as sM, deleteKmsIssuerPolicyQueryTeamIdSchema as sN, deleteKmsIssuerPolicyResponseSchema as sO, deleteKmsIssuerPolicyStatus204Schema as sP, deleteKmsIssuerPolicyStatus400Schema as sQ, deleteKmsIssuerPolicyStatus401Schema as sR, deleteKmsIssuerPolicyStatus403Schema as sS, deleteKmsIssuerPolicyStatus404Schema as sT, deleteKmsIssuerPolicyStatus410Schema as sU, deleteKmsIssuerQuerySlugSchema as sV, deleteKmsIssuerQueryTeamIdSchema as sW, deleteKmsIssuerResponseSchema as sX, deleteKmsIssuerStatus204Schema as sY, deleteKmsIssuerStatus400Schema as sZ, deleteKmsIssuerStatus401Schema as s_, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema as sa, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema as sb, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema as sc, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema as sd, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema as se, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema as sf, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema as sg, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema as sh, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema as si, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema as sj, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema as sk, deleteIntegrationLogDrainErrorSchema as sl, deleteIntegrationLogDrainPathIdSchema as sm, deleteIntegrationLogDrainQuerySlugSchema as sn, deleteIntegrationLogDrainQueryTeamIdSchema as so, deleteIntegrationLogDrainResponseSchema as sp, deleteIntegrationLogDrainStatus204Schema as sq, deleteIntegrationLogDrainStatus400Schema as sr, deleteIntegrationLogDrainStatus401Schema as ss, deleteIntegrationLogDrainStatus403Schema as st, deleteIntegrationLogDrainStatus404Schema as su, deleteIntegrationLogDrainStatus410Schema as sv, deleteIntegrationResourceErrorSchema as sw, deleteIntegrationResourcePathIntegrationConfigurationIdSchema as sx, deleteIntegrationResourcePathResourceIdSchema as sy, deleteIntegrationResourceResponseSchema as sz, activateKmsSigningKeyQueryTeamIdSchema as t, deleteRepositoryImageErrorSchema as t$, deleteKmsIssuerStatus404Schema as t0, deleteKmsIssuerStatus410Schema as t1, deleteMicrofrontendsGroupErrorSchema as t2, deleteMicrofrontendsGroupPathGroupIdSchema as t3, deleteMicrofrontendsGroupPathTeamIdSchema as t4, deleteMicrofrontendsGroupQuerySlugSchema as t5, deleteMicrofrontendsGroupResponseSchema as t6, deleteMicrofrontendsGroupStatus200Schema as t7, deleteMicrofrontendsGroupStatus400Schema as t8, deleteMicrofrontendsGroupStatus401Schema as t9, deleteProjectCheckStatus404Schema as tA, deleteProjectCheckStatus410Schema as tB, deleteProjectCheckStatus500Schema as tC, deleteProjectErrorSchema as tD, deleteProjectPathIdOrNameSchema as tE, deleteProjectQuerySlugSchema as tF, deleteProjectQueryTeamIdSchema as tG, deleteProjectResponseSchema as tH, deleteProjectStatus204Schema as tI, deleteProjectStatus400Schema as tJ, deleteProjectStatus401Schema as tK, deleteProjectStatus403Schema as tL, deleteProjectStatus409Schema as tM, deleteProjectStatus410Schema as tN, deleteRedirectsErrorSchema as tO, deleteRedirectsQueryProjectIdSchema as tP, deleteRedirectsQuerySlugSchema as tQ, deleteRedirectsQueryTeamIdSchema as tR, deleteRedirectsResponseSchema as tS, deleteRedirectsStatus200Schema as tT, deleteRedirectsStatus400Schema as tU, deleteRedirectsStatus401Schema as tV, deleteRedirectsStatus403Schema as tW, deleteRedirectsStatus404Schema as tX, deleteRedirectsStatus410Schema as tY, deleteRedirectsStatus500Schema as tZ, deleteRepositoryErrorSchema as t_, deleteMicrofrontendsGroupStatus403Schema as ta, deleteMicrofrontendsGroupStatus404Schema as tb, deleteMicrofrontendsGroupStatus410Schema as tc, deleteMicrofrontendsGroupStatus500Schema as td, deleteNetworkErrorSchema as te, deleteNetworkPathNetworkIdSchema as tf, deleteNetworkQuerySlugSchema as tg, deleteNetworkQueryTeamIdSchema as th, deleteNetworkResponseSchema as ti, deleteNetworkStatus204Schema as tj, deleteNetworkStatus400Schema as tk, deleteNetworkStatus401Schema as tl, deleteNetworkStatus402Schema as tm, deleteNetworkStatus403Schema as tn, deleteNetworkStatus409Schema as to, deleteNetworkStatus410Schema as tp, deleteProjectCheckErrorSchema as tq, deleteProjectCheckPathCheckIdSchema as tr, deleteProjectCheckPathProjectIdOrNameSchema as ts, deleteProjectCheckQuerySlugSchema as tt, deleteProjectCheckQueryTeamIdSchema as tu, deleteProjectCheckResponseSchema as tv, deleteProjectCheckStatus200Schema as tw, deleteProjectCheckStatus400Schema as tx, deleteProjectCheckStatus401Schema as ty, deleteProjectCheckStatus403Schema as tz, activateKmsSigningKeyResponseSchema as u, deleteSdkKeyPathProjectIdOrNameSchema as u$, deleteRepositoryImagePathIdOrNameSchema as u0, deleteRepositoryImagePathImageIdSchema as u1, deleteRepositoryImageQueryProjectIdSchema as u2, deleteRepositoryImageQuerySlugSchema as u3, deleteRepositoryImageQueryTeamIdSchema as u4, deleteRepositoryImageResponseSchema as u5, deleteRepositoryImageStatus202Schema as u6, deleteRepositoryImageStatus400Schema as u7, deleteRepositoryImageStatus401Schema as u8, deleteRepositoryImageStatus403Schema as u9, deleteRoutesQuerySlugSchema as uA, deleteRoutesQueryTeamIdSchema as uB, deleteRoutesResponseSchema as uC, deleteRoutesStatus200Schema as uD, deleteRoutesStatus400Schema as uE, deleteRoutesStatus401Schema as uF, deleteRoutesStatus403Schema as uG, deleteRoutesStatus404Schema as uH, deleteRoutesStatus409Schema as uI, deleteRoutesStatus410Schema as uJ, deleteRoutesStatus500Schema as uK, deleteSandboxErrorSchema as uL, deleteSandboxPathNameSchema as uM, deleteSandboxQueryDeleteOrphanSnapshotsSchema as uN, deleteSandboxQueryProjectIdSchema as uO, deleteSandboxQuerySlugSchema as uP, deleteSandboxQueryTeamIdSchema as uQ, deleteSandboxResponseSchema as uR, deleteSandboxStatus200Schema as uS, deleteSandboxStatus400Schema as uT, deleteSandboxStatus401Schema as uU, deleteSandboxStatus403Schema as uV, deleteSandboxStatus404Schema as uW, deleteSandboxStatus410Schema as uX, deleteSandboxStatus429Schema as uY, deleteSdkKeyErrorSchema as uZ, deleteSdkKeyPathHashKeySchema as u_, deleteRepositoryImageStatus404Schema as ua, deleteRepositoryImageStatus410Schema as ub, deleteRepositoryPathIdOrNameSchema as uc, deleteRepositoryQueryProjectIdSchema as ud, deleteRepositoryQuerySlugSchema as ue, deleteRepositoryQueryTeamIdSchema as uf, deleteRepositoryResponseSchema as ug, deleteRepositoryStatus202Schema as uh, deleteRepositoryStatus400Schema as ui, deleteRepositoryStatus401Schema as uj, deleteRepositoryStatus403Schema as uk, deleteRepositoryStatus404Schema as ul, deleteRepositoryStatus410Schema as um, deleteRollingReleaseConfigErrorSchema as un, deleteRollingReleaseConfigPathIdOrNameSchema as uo, deleteRollingReleaseConfigQuerySlugSchema as up, deleteRollingReleaseConfigQueryTeamIdSchema as uq, deleteRollingReleaseConfigResponseSchema as ur, deleteRollingReleaseConfigStatus200Schema as us, deleteRollingReleaseConfigStatus400Schema as ut, deleteRollingReleaseConfigStatus401Schema as uu, deleteRollingReleaseConfigStatus403Schema as uv, deleteRollingReleaseConfigStatus404Schema as uw, deleteRollingReleaseConfigStatus410Schema as ux, deleteRoutesErrorSchema as uy, deleteRoutesPathProjectIdSchema as uz, activateKmsSigningKeyStatus200Schema as v, deleteTeamInviteCodeStatus410Schema as v$, deleteSdkKeyQuerySlugSchema as v0, deleteSdkKeyQueryTeamIdSchema as v1, deleteSdkKeyResponseSchema as v2, deleteSdkKeyStatus204Schema as v3, deleteSdkKeyStatus400Schema as v4, deleteSdkKeyStatus401Schema as v5, deleteSdkKeyStatus402Schema as v6, deleteSdkKeyStatus403Schema as v7, deleteSdkKeyStatus404Schema as v8, deleteSdkKeyStatus409Schema as v9, deleteSharedEnvVariableResponseSchema as vA, deleteSharedEnvVariableStatus200Schema as vB, deleteSharedEnvVariableStatus400Schema as vC, deleteSharedEnvVariableStatus401Schema as vD, deleteSharedEnvVariableStatus402Schema as vE, deleteSharedEnvVariableStatus403Schema as vF, deleteSharedEnvVariableStatus410Schema as vG, deleteStorageStoresBlobByIdErrorSchema as vH, deleteStorageStoresBlobByIdPathIdSchema as vI, deleteStorageStoresBlobByIdResponseSchema as vJ, deleteStorageStoresBlobByIdStatus200Schema as vK, deleteStorageStoresBlobByIdStatus400Schema as vL, deleteStorageStoresBlobByIdStatus401Schema as vM, deleteStorageStoresBlobByIdStatus403Schema as vN, deleteStorageStoresBlobByIdStatus404Schema as vO, deleteStorageStoresBlobByIdStatus409Schema as vP, deleteStorageStoresBlobByIdStatus410Schema as vQ, deleteTeamErrorSchema as vR, deleteTeamInviteCodeErrorSchema as vS, deleteTeamInviteCodePathInviteIdSchema as vT, deleteTeamInviteCodePathTeamIdSchema as vU, deleteTeamInviteCodeResponseSchema as vV, deleteTeamInviteCodeStatus200Schema as vW, deleteTeamInviteCodeStatus400Schema as vX, deleteTeamInviteCodeStatus401Schema as vY, deleteTeamInviteCodeStatus403Schema as vZ, deleteTeamInviteCodeStatus404Schema as v_, deleteSdkKeyStatus410Schema as va, deleteSecurityFirewallConfigByConfigVersionErrorSchema as vb, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema as vc, deleteSecurityFirewallConfigByConfigVersionResponseSchema as vd, deleteSecurityFirewallConfigByConfigVersionStatus204Schema as ve, deleteSecurityFirewallConfigByConfigVersionStatus400Schema as vf, deleteSecurityFirewallConfigByConfigVersionStatus401Schema as vg, deleteSecurityFirewallConfigByConfigVersionStatus403Schema as vh, deleteSecurityFirewallConfigByConfigVersionStatus404Schema as vi, deleteSecurityFirewallConfigByConfigVersionStatus410Schema as vj, deleteSecurityFirewallConfigByConfigVersionStatus500Schema as vk, deleteSessionSnapshotErrorSchema as vl, deleteSessionSnapshotPathSnapshotIdSchema as vm, deleteSessionSnapshotQuerySlugSchema as vn, deleteSessionSnapshotQueryTeamIdSchema as vo, deleteSessionSnapshotResponseSchema as vp, deleteSessionSnapshotStatus200Schema as vq, deleteSessionSnapshotStatus400Schema as vr, deleteSessionSnapshotStatus401Schema as vs, deleteSessionSnapshotStatus403Schema as vt, deleteSessionSnapshotStatus404Schema as vu, deleteSessionSnapshotStatus410Schema as vv, deleteSessionSnapshotStatus429Schema as vw, deleteSharedEnvVariableErrorSchema as vx, deleteSharedEnvVariableQuerySlugSchema as vy, deleteSharedEnvVariableQueryTeamIdSchema as vz, activateKmsSigningKeyStatus400Schema as w, editRedirectQueryProjectIdSchema as w$, deleteTeamPathTeamIdSchema as w0, deleteTeamQueryNewDefaultTeamIdSchema as w1, deleteTeamQuerySlugSchema as w2, deleteTeamResponseSchema as w3, deleteTeamStatus200Schema as w4, deleteTeamStatus400Schema as w5, deleteTeamStatus401Schema as w6, deleteTeamStatus402Schema as w7, deleteTeamStatus403Schema as w8, deleteTeamStatus409Schema as w9, downloadArtifactResponseSchema as wA, downloadArtifactStatus200Schema as wB, downloadArtifactStatus400Schema as wC, downloadArtifactStatus401Schema as wD, downloadArtifactStatus402Schema as wE, downloadArtifactStatus403Schema as wF, downloadArtifactStatus404Schema as wG, downloadArtifactStatus410Schema as wH, driveSchema as wI, duplicateDomainsSchema as wJ, e164PhoneNumberSchema as wK, editProjectEnvErrorSchema as wL, editProjectEnvPathIdOrNameSchema as wM, editProjectEnvPathIdSchema as wN, editProjectEnvQuerySlugSchema as wO, editProjectEnvQueryTeamIdSchema as wP, editProjectEnvResponseSchema as wQ, editProjectEnvStatus200Schema as wR, editProjectEnvStatus400Schema as wS, editProjectEnvStatus401Schema as wT, editProjectEnvStatus403Schema as wU, editProjectEnvStatus404Schema as wV, editProjectEnvStatus409Schema as wW, editProjectEnvStatus410Schema as wX, editProjectEnvStatus429Schema as wY, editProjectEnvStatus500Schema as wZ, editRedirectErrorSchema as w_, deleteTeamStatus410Schema as wa, deleteWebhookErrorSchema as wb, deleteWebhookPathIdSchema as wc, deleteWebhookQuerySlugSchema as wd, deleteWebhookQueryTeamIdSchema as we, deleteWebhookResponseSchema as wf, deleteWebhookStatus204Schema as wg, deleteWebhookStatus400Schema as wh, deleteWebhookStatus401Schema as wi, deleteWebhookStatus403Schema as wj, deleteWebhookStatus410Schema as wk, domainAlreadyOwnedSchema as wl, domainAlreadyRenewingSchema as wm, domainCannotBeTransferedOutUntilSchema as wn, domainNameSchema as wo, domainNotAvailableSchema as wp, domainNotFoundSchema as wq, domainNotRegisteredSchema as wr, domainNotRenewableSchema as ws, domainTooShortSchema as wt, downloadArtifactErrorSchema as wu, downloadArtifactHeaderxArtifactClientCiSchema as wv, downloadArtifactHeaderxArtifactClientInteractiveSchema as ww, downloadArtifactPathHashSchema as wx, downloadArtifactQuerySlugSchema as wy, downloadArtifactQueryTeamIdSchema as wz, activateKmsSigningKeyStatus401Schema as x, finalizeInstallationPathIntegrationConfigurationIdSchema as x$, editRedirectQuerySlugSchema as x0, editRedirectQueryTeamIdSchema as x1, editRedirectResponseSchema as x2, editRedirectStatus200Schema as x3, editRedirectStatus400Schema as x4, editRedirectStatus401Schema as x5, editRedirectStatus403Schema as x6, editRedirectStatus404Schema as x7, editRedirectStatus410Schema as x8, editRedirectStatus500Schema as x9, extendSessionTimeoutResponseSchema as xA, extendSessionTimeoutStatus200Schema as xB, extendSessionTimeoutStatus400Schema as xC, extendSessionTimeoutStatus401Schema as xD, extendSessionTimeoutStatus403Schema as xE, extendSessionTimeoutStatus404Schema as xF, extendSessionTimeoutStatus410Schema as xG, extendSessionTimeoutStatus422Schema as xH, extendSessionTimeoutStatus429Schema as xI, extendSessionTimeoutStatus500Schema as xJ, fileTreeSchema as xK, filterProjectEnvsErrorSchema as xL, filterProjectEnvsPathIdOrNameSchema as xM, filterProjectEnvsQueryCustomEnvironmentIdSchema as xN, filterProjectEnvsQueryCustomEnvironmentSlugSchema as xO, filterProjectEnvsQueryDecryptSchema as xP, filterProjectEnvsQueryGitBranchSchema as xQ, filterProjectEnvsQuerySlugSchema as xR, filterProjectEnvsQuerySourceSchema as xS, filterProjectEnvsQueryTeamIdSchema as xT, filterProjectEnvsResponseSchema as xU, filterProjectEnvsStatus200Schema as xV, filterProjectEnvsStatus400Schema as xW, filterProjectEnvsStatus401Schema as xX, filterProjectEnvsStatus403Schema as xY, filterProjectEnvsStatus410Schema as xZ, finalizeInstallationErrorSchema as x_, editRouteErrorSchema as xa, editRoutePathProjectIdSchema as xb, editRoutePathRouteIdSchema as xc, editRouteQuerySlugSchema as xd, editRouteQueryTeamIdSchema as xe, editRouteResponseSchema as xf, editRouteStatus200Schema as xg, editRouteStatus400Schema as xh, editRouteStatus401Schema as xi, editRouteStatus403Schema as xj, editRouteStatus404Schema as xk, editRouteStatus409Schema as xl, editRouteStatus410Schema as xm, editRouteStatus500Schema as xn, emailAddressSchema as xo, exchangeSsoTokenErrorSchema as xp, exchangeSsoTokenResponseSchema as xq, exchangeSsoTokenStatus200Schema as xr, exchangeSsoTokenStatus400Schema as xs, exchangeSsoTokenStatus403Schema as xt, exchangeSsoTokenStatus500Schema as xu, expectedPriceMismatchSchema as xv, extendSessionTimeoutErrorSchema as xw, extendSessionTimeoutPathSessionIdSchema as xx, extendSessionTimeoutQuerySlugSchema as xy, extendSessionTimeoutQueryTeamIdSchema as xz, activateKmsSigningKeyStatus403Schema as y, getAiGatewayVirtualModelConfigStatus200Schema as y$, finalizeInstallationResponseSchema as y0, finalizeInstallationStatus204Schema as y1, finalizeInstallationStatus400Schema as y2, finalizeInstallationStatus401Schema as y3, finalizeInstallationStatus403Schema as y4, finalizeInstallationStatus404Schema as y5, finalizeInstallationStatus410Schema as y6, flagJSONValueSchema as y7, flagSchema as y8, flagsSdkKeyWithSecretsSchema as y9, getAccountInfoErrorSchema as yA, getAccountInfoPathIntegrationConfigurationIdSchema as yB, getAccountInfoResponseSchema as yC, getAccountInfoStatus200Schema as yD, getAccountInfoStatus400Schema as yE, getAccountInfoStatus401Schema as yF, getAccountInfoStatus403Schema as yG, getAccountInfoStatus404Schema as yH, getAccountInfoStatus410Schema as yI, getActiveAttackStatusErrorSchema as yJ, getActiveAttackStatusQueryProjectIdSchema as yK, getActiveAttackStatusQuerySinceSchema as yL, getActiveAttackStatusQuerySlugSchema as yM, getActiveAttackStatusQueryTeamIdSchema as yN, getActiveAttackStatusResponseSchema as yO, getActiveAttackStatusStatus200Schema as yP, getActiveAttackStatusStatus400Schema as yQ, getActiveAttackStatusStatus401Schema as yR, getActiveAttackStatusStatus403Schema as yS, getActiveAttackStatusStatus404Schema as yT, getActiveAttackStatusStatus410Schema as yU, getAiGatewayVirtualModelConfigErrorSchema as yV, getAiGatewayVirtualModelConfigQueryOwnerIdSchema as yW, getAiGatewayVirtualModelConfigQuerySlugSchema as yX, getAiGatewayVirtualModelConfigQueryTeamIdSchema as yY, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema as yZ, getAiGatewayVirtualModelConfigResponseSchema as y_, forbiddenSchema as ya, generateFirewallRuleErrorSchema as yb, generateFirewallRuleQueryProjectIdSchema as yc, generateFirewallRuleQuerySlugSchema as yd, generateFirewallRuleQueryTeamIdSchema as ye, generateFirewallRuleResponseSchema as yf, generateFirewallRuleStatus200Schema as yg, generateFirewallRuleStatus400Schema as yh, generateFirewallRuleStatus401Schema as yi, generateFirewallRuleStatus403Schema as yj, generateFirewallRuleStatus404Schema as yk, generateFirewallRuleStatus408Schema as yl, generateFirewallRuleStatus410Schema as ym, generateFirewallRuleStatus500Schema as yn, generateRouteErrorSchema as yo, generateRoutePathProjectIdSchema as yp, generateRouteQuerySlugSchema as yq, generateRouteQueryTeamIdSchema as yr, generateRouteResponseSchema as ys, generateRouteStatus200Schema as yt, generateRouteStatus400Schema as yu, generateRouteStatus401Schema as yv, generateRouteStatus403Schema as yw, generateRouteStatus408Schema as yx, generateRouteStatus410Schema as yy, generateRouteStatus500Schema as yz, activateKmsSigningKeyStatus404Schema as z, getBillingPlansErrorSchema as z$, getAiGatewayVirtualModelConfigStatus400Schema as z0, getAiGatewayVirtualModelConfigStatus401Schema as z1, getAiGatewayVirtualModelConfigStatus403Schema as z2, getAiGatewayVirtualModelConfigStatus404Schema as z3, getAiGatewayVirtualModelConfigStatus410Schema as z4, getAiGatewayVirtualModelConfigStatus500Schema as z5, getAliasErrorSchema as z6, getAliasPathIdOrAliasSchema as z7, getAliasQueryFromSchema as z8, getAliasQueryProjectIdSchema as z9, getAllLogDrainsQuerySlugSchema as zA, getAllLogDrainsQueryTeamIdSchema as zB, getAllLogDrainsResponseSchema as zC, getAllLogDrainsStatus200Schema as zD, getAllLogDrainsStatus400Schema as zE, getAllLogDrainsStatus401Schema as zF, getAllLogDrainsStatus403Schema as zG, getAllLogDrainsStatus404Schema as zH, getAllLogDrainsStatus410Schema as zI, getAuthTokenErrorSchema as zJ, getAuthTokenPathTokenIdSchema as zK, getAuthTokenResponseSchema as zL, getAuthTokenStatus200Schema as zM, getAuthTokenStatus400Schema as zN, getAuthTokenStatus401Schema as zO, getAuthTokenStatus403Schema as zP, getAuthTokenStatus404Schema as zQ, getAuthTokenStatus410Schema as zR, getAuthUserErrorSchema as zS, getAuthUserResponseSchema as zT, getAuthUserStatus200Schema as zU, getAuthUserStatus302Schema as zV, getAuthUserStatus400Schema as zW, getAuthUserStatus401Schema as zX, getAuthUserStatus403Schema as zY, getAuthUserStatus409Schema as zZ, getAuthUserStatus410Schema as z_, getAliasQuerySinceSchema as za, getAliasQuerySlugSchema as zb, getAliasQueryTeamIdSchema as zc, getAliasQueryUntilSchema as zd, getAliasResponseSchema as ze, getAliasStatus200Schema as zf, getAliasStatus400Schema as zg, getAliasStatus401Schema as zh, getAliasStatus403Schema as zi, getAliasStatus404Schema as zj, getAliasStatus410Schema as zk, getAllChecksErrorSchema as zl, getAllChecksPathDeploymentIdSchema as zm, getAllChecksQuerySlugSchema as zn, getAllChecksQueryTeamIdSchema as zo, getAllChecksResponseSchema as zp, getAllChecksStatus200Schema as zq, getAllChecksStatus400Schema as zr, getAllChecksStatus401Schema as zs, getAllChecksStatus403Schema as zt, getAllChecksStatus404Schema as zu, getAllChecksStatus410Schema as zv, getAllLogDrainsErrorSchema as zw, getAllLogDrainsQueryIncludeMetadataSchema as zx, getAllLogDrainsQueryProjectIdOrNameSchema as zy, getAllLogDrainsQueryProjectIdSchema as zz };
|
|
26316
|
+
export { addProjectMemberErrorSchema as $, listFlagsQueryTeamIdSchema as $$, listDrivesQueryNamePrefixSchema as $0, listDrivesQueryProjectIdSchema as $1, listDrivesQuerySlugSchema as $2, listDrivesQuerySortBySchema as $3, listDrivesQuerySortOrderSchema as $4, listDrivesQueryTeamIdSchema as $5, listDrivesResponseSchema as $6, listDrivesStatus200Schema as $7, listDrivesStatus400Schema as $8, listDrivesStatus401Schema as $9, listFlagSegmentsStatus410Schema as $A, listFlagVersionsErrorSchema as $B, listFlagVersionsPathFlagIdOrSlugSchema as $C, listFlagVersionsPathProjectIdOrNameSchema as $D, listFlagVersionsQueryCursorSchema as $E, listFlagVersionsQueryEnvironmentSchema as $F, listFlagVersionsQueryLimitSchema as $G, listFlagVersionsQuerySlugSchema as $H, listFlagVersionsQueryTeamIdSchema as $I, listFlagVersionsQueryWithMetadataSchema as $J, listFlagVersionsResponseSchema as $K, listFlagVersionsStatus200Schema as $L, listFlagVersionsStatus304Schema as $M, listFlagVersionsStatus400Schema as $N, listFlagVersionsStatus401Schema as $O, listFlagVersionsStatus402Schema as $P, listFlagVersionsStatus403Schema as $Q, listFlagVersionsStatus404Schema as $R, listFlagVersionsStatus410Schema as $S, listFlagsErrorSchema as $T, listFlagsPathProjectIdOrNameSchema as $U, listFlagsQueryCursorSchema as $V, listFlagsQueryLimitSchema as $W, listFlagsQuerySearchSchema as $X, listFlagsQuerySlugSchema as $Y, listFlagsQueryStateSchema as $Z, listFlagsQueryTagsSchema as $_, listDrivesStatus403Schema as $a, listDrivesStatus404Schema as $b, listDrivesStatus410Schema as $c, listDrivesStatus429Schema as $d, listEventTypeSchema as $e, listEventTypesErrorSchema as $f, listEventTypesQuerySlugSchema as $g, listEventTypesQueryTeamIdSchema as $h, listEventTypesResponseSchema as $i, listEventTypesStatus200Schema as $j, listEventTypesStatus400Schema as $k, listEventTypesStatus401Schema as $l, listEventTypesStatus403Schema as $m, listEventTypesStatus410Schema as $n, listFlagSegmentsErrorSchema as $o, listFlagSegmentsPathProjectIdOrNameSchema as $p, listFlagSegmentsQuerySlugSchema as $q, listFlagSegmentsQueryTeamIdSchema as $r, listFlagSegmentsQueryWithMetadataSchema as $s, listFlagSegmentsResponseSchema as $t, listFlagSegmentsStatus200Schema as $u, listFlagSegmentsStatus400Schema as $v, listFlagSegmentsStatus401Schema as $w, listFlagSegmentsStatus402Schema as $x, listFlagSegmentsStatus403Schema as $y, listFlagSegmentsStatus404Schema as $z, activateKmsSigningKeyStatus409Schema as A, getAliasResponseSchema as A$, generateRouteStatus400Schema as A0, generateRouteStatus401Schema as A1, generateRouteStatus403Schema as A2, generateRouteStatus408Schema as A3, generateRouteStatus410Schema as A4, generateRouteStatus500Schema as A5, getAccountInfoErrorSchema as A6, getAccountInfoPathIntegrationConfigurationIdSchema as A7, getAccountInfoResponseSchema as A8, getAccountInfoStatus200Schema as A9, getAiGatewayVirtualModelConfigBySlugStatus403Schema as AA, getAiGatewayVirtualModelConfigBySlugStatus404Schema as AB, getAiGatewayVirtualModelConfigBySlugStatus410Schema as AC, getAiGatewayVirtualModelConfigBySlugStatus500Schema as AD, getAiGatewayVirtualModelConfigErrorSchema as AE, getAiGatewayVirtualModelConfigQueryCursorSchema as AF, getAiGatewayVirtualModelConfigQueryLimitSchema as AG, getAiGatewayVirtualModelConfigQueryOwnerIdSchema as AH, getAiGatewayVirtualModelConfigQuerySlugSchema as AI, getAiGatewayVirtualModelConfigQueryTeamIdSchema as AJ, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema as AK, getAiGatewayVirtualModelConfigResponseSchema as AL, getAiGatewayVirtualModelConfigStatus200Schema as AM, getAiGatewayVirtualModelConfigStatus400Schema as AN, getAiGatewayVirtualModelConfigStatus401Schema as AO, getAiGatewayVirtualModelConfigStatus403Schema as AP, getAiGatewayVirtualModelConfigStatus404Schema as AQ, getAiGatewayVirtualModelConfigStatus410Schema as AR, getAiGatewayVirtualModelConfigStatus500Schema as AS, getAliasErrorSchema as AT, getAliasPathIdOrAliasSchema as AU, getAliasQueryFromSchema as AV, getAliasQueryProjectIdSchema as AW, getAliasQuerySinceSchema as AX, getAliasQuerySlugSchema as AY, getAliasQueryTeamIdSchema as AZ, getAliasQueryUntilSchema as A_, getAccountInfoStatus400Schema as Aa, getAccountInfoStatus401Schema as Ab, getAccountInfoStatus403Schema as Ac, getAccountInfoStatus404Schema as Ad, getAccountInfoStatus410Schema as Ae, getActiveAttackStatusErrorSchema as Af, getActiveAttackStatusQueryProjectIdSchema as Ag, getActiveAttackStatusQuerySinceSchema as Ah, getActiveAttackStatusQuerySlugSchema as Ai, getActiveAttackStatusQueryTeamIdSchema as Aj, getActiveAttackStatusResponseSchema as Ak, getActiveAttackStatusStatus200Schema as Al, getActiveAttackStatusStatus400Schema as Am, getActiveAttackStatusStatus401Schema as An, getActiveAttackStatusStatus403Schema as Ao, getActiveAttackStatusStatus404Schema as Ap, getActiveAttackStatusStatus410Schema as Aq, getAiGatewayVirtualModelConfigBySlugErrorSchema as Ar, getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema as As, getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema as At, getAiGatewayVirtualModelConfigBySlugQuerySlugSchema as Au, getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema as Av, getAiGatewayVirtualModelConfigBySlugResponseSchema as Aw, getAiGatewayVirtualModelConfigBySlugStatus200Schema as Ax, getAiGatewayVirtualModelConfigBySlugStatus400Schema as Ay, getAiGatewayVirtualModelConfigBySlugStatus401Schema as Az, activateKmsSigningKeyStatus410Schema as B, getBulkAvailabilityErrorSchema as B$, getAliasStatus200Schema as B0, getAliasStatus400Schema as B1, getAliasStatus401Schema as B2, getAliasStatus403Schema as B3, getAliasStatus404Schema as B4, getAliasStatus410Schema as B5, getAllChecksErrorSchema as B6, getAllChecksPathDeploymentIdSchema as B7, getAllChecksQuerySlugSchema as B8, getAllChecksQueryTeamIdSchema as B9, getAuthTokenStatus403Schema as BA, getAuthTokenStatus404Schema as BB, getAuthTokenStatus410Schema as BC, getAuthUserErrorSchema as BD, getAuthUserResponseSchema as BE, getAuthUserStatus200Schema as BF, getAuthUserStatus302Schema as BG, getAuthUserStatus400Schema as BH, getAuthUserStatus401Schema as BI, getAuthUserStatus403Schema as BJ, getAuthUserStatus409Schema as BK, getAuthUserStatus410Schema as BL, getBillingPlansErrorSchema as BM, getBillingPlansPathIntegrationIdOrSlugSchema as BN, getBillingPlansPathProductIdOrSlugSchema as BO, getBillingPlansQueryIntegrationConfigurationIdSchema as BP, getBillingPlansQueryMetadataSchema as BQ, getBillingPlansQuerySlugSchema as BR, getBillingPlansQuerySourceSchema as BS, getBillingPlansQueryTeamIdSchema as BT, getBillingPlansResponseSchema as BU, getBillingPlansStatus200Schema as BV, getBillingPlansStatus400Schema as BW, getBillingPlansStatus401Schema as BX, getBillingPlansStatus403Schema as BY, getBillingPlansStatus404Schema as BZ, getBillingPlansStatus410Schema as B_, getAllChecksResponseSchema as Ba, getAllChecksStatus200Schema as Bb, getAllChecksStatus400Schema as Bc, getAllChecksStatus401Schema as Bd, getAllChecksStatus403Schema as Be, getAllChecksStatus404Schema as Bf, getAllChecksStatus410Schema as Bg, getAllLogDrainsErrorSchema as Bh, getAllLogDrainsQueryIncludeMetadataSchema as Bi, getAllLogDrainsQueryProjectIdOrNameSchema as Bj, getAllLogDrainsQueryProjectIdSchema as Bk, getAllLogDrainsQuerySlugSchema as Bl, getAllLogDrainsQueryTeamIdSchema as Bm, getAllLogDrainsResponseSchema as Bn, getAllLogDrainsStatus200Schema as Bo, getAllLogDrainsStatus400Schema as Bp, getAllLogDrainsStatus401Schema as Bq, getAllLogDrainsStatus403Schema as Br, getAllLogDrainsStatus404Schema as Bs, getAllLogDrainsStatus410Schema as Bt, getAuthTokenErrorSchema as Bu, getAuthTokenPathTokenIdSchema as Bv, getAuthTokenResponseSchema as Bw, getAuthTokenStatus200Schema as Bx, getAuthTokenStatus400Schema as By, getAuthTokenStatus401Schema as Bz, addBypassIpErrorSchema as C, getBypassIpQueryOffsetSchema as C$, getBulkAvailabilityQueryTeamIdSchema as C0, getBulkAvailabilityResponseSchema as C1, getBulkAvailabilityStatus200Schema as C2, getBulkAvailabilityStatus400Schema as C3, getBulkAvailabilityStatus401Schema as C4, getBulkAvailabilityStatus403Schema as C5, getBulkAvailabilityStatus429Schema as C6, getBulkAvailabilityStatus500Schema as C7, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema as C8, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema as C9, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as CA, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as CB, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as CC, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as CD, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as CE, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as CF, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as CG, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as CH, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as CI, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as CJ, getByTeamSlugByProjectSlugByRepositoryNameTagsListErrorSchema as CK, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema as CL, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema as CM, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema as CN, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema as CO, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema as CP, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema as CQ, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema as CR, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema as CS, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema as CT, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema as CU, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema as CV, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema as CW, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema as CX, getBypassIpErrorSchema as CY, getBypassIpQueryDomainSchema as CZ, getBypassIpQueryLimitSchema as C_, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema as Ca, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema as Cb, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema as Cc, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema as Cd, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema as Ce, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema as Cf, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema as Cg, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema as Ch, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema as Ci, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema as Cj, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema as Ck, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as Cl, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as Cm, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as Cn, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as Co, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as Cp, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as Cq, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema as Cr, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as Cs, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as Ct, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as Cu, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as Cv, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as Cw, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as Cx, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as Cy, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as Cz, addBypassIpQueryProjectIdSchema as D, getConfigurationProductsResponseSchema as D$, getBypassIpQueryProjectIdSchema as D0, getBypassIpQueryProjectScopeSchema as D1, getBypassIpQuerySlugSchema as D2, getBypassIpQuerySourceIpSchema as D3, getBypassIpQueryTeamIdSchema as D4, getBypassIpResponseSchema as D5, getBypassIpStatus200Schema as D6, getBypassIpStatus400Schema as D7, getBypassIpStatus401Schema as D8, getBypassIpStatus402Schema as D9, getCheckPathDeploymentIdSchema as DA, getCheckQuerySlugSchema as DB, getCheckQueryTeamIdSchema as DC, getCheckResponseSchema as DD, getCheckStatus200Schema as DE, getCheckStatus400Schema as DF, getCheckStatus401Schema as DG, getCheckStatus403Schema as DH, getCheckStatus404Schema as DI, getCheckStatus410Schema as DJ, getConfigurableLogDrainErrorSchema as DK, getConfigurableLogDrainPathIdSchema as DL, getConfigurableLogDrainQuerySlugSchema as DM, getConfigurableLogDrainQueryTeamIdSchema as DN, getConfigurableLogDrainResponseSchema as DO, getConfigurableLogDrainStatus200Schema as DP, getConfigurableLogDrainStatus400Schema as DQ, getConfigurableLogDrainStatus401Schema as DR, getConfigurableLogDrainStatus403Schema as DS, getConfigurableLogDrainStatus404Schema as DT, getConfigurableLogDrainStatus410Schema as DU, getConfigurationErrorSchema as DV, getConfigurationPathIdSchema as DW, getConfigurationProductsErrorSchema as DX, getConfigurationProductsPathIdSchema as DY, getConfigurationProductsQuerySlugSchema as DZ, getConfigurationProductsQueryTeamIdSchema as D_, getBypassIpStatus403Schema as Da, getBypassIpStatus404Schema as Db, getBypassIpStatus410Schema as Dc, getBypassIpStatus500Schema as Dd, getCertByIdErrorSchema as De, getCertByIdPathIdSchema as Df, getCertByIdQuerySlugSchema as Dg, getCertByIdQueryTeamIdSchema as Dh, getCertByIdResponseSchema as Di, getCertByIdStatus200Schema as Dj, getCertByIdStatus400Schema as Dk, getCertByIdStatus401Schema as Dl, getCertByIdStatus403Schema as Dm, getCertByIdStatus404Schema as Dn, getCertByIdStatus410Schema as Do, getCertsErrorSchema as Dp, getCertsQuerySlugSchema as Dq, getCertsQueryTeamIdSchema as Dr, getCertsResponseSchema as Ds, getCertsStatus200Schema as Dt, getCertsStatus400Schema as Du, getCertsStatus401Schema as Dv, getCertsStatus403Schema as Dw, getCertsStatus410Schema as Dx, getCheckErrorSchema as Dy, getCheckPathCheckIdSchema as Dz, addBypassIpQuerySlugSchema as E, getContactInfoSchemaErrorSchema as E$, getConfigurationProductsStatus200Schema as E0, getConfigurationProductsStatus400Schema as E1, getConfigurationProductsStatus401Schema as E2, getConfigurationProductsStatus403Schema as E3, getConfigurationProductsStatus404Schema as E4, getConfigurationProductsStatus410Schema as E5, getConfigurationProductsStatus500Schema as E6, getConfigurationQuerySlugSchema as E7, getConfigurationQueryTeamIdSchema as E8, getConfigurationResponseSchema as E9, getConnectorProjectConnectionStatus200Schema as EA, getConnectorProjectConnectionStatus400Schema as EB, getConnectorProjectConnectionStatus401Schema as EC, getConnectorProjectConnectionStatus403Schema as ED, getConnectorProjectConnectionStatus404Schema as EE, getConnectorProjectConnectionStatus410Schema as EF, getConnectorQuerySlugSchema as EG, getConnectorQueryTeamIdSchema as EH, getConnectorResponseSchema as EI, getConnectorStatus200Schema as EJ, getConnectorStatus400Schema as EK, getConnectorStatus401Schema as EL, getConnectorStatus403Schema as EM, getConnectorStatus404Schema as EN, getConnectorStatus410Schema as EO, getConnectorStatus422Schema as EP, getConnectorTokenErrorSchema as EQ, getConnectorTokenPathConnectorSchema as ER, getConnectorTokenResponseSchema as ES, getConnectorTokenStatus200Schema as ET, getConnectorTokenStatus400Schema as EU, getConnectorTokenStatus401Schema as EV, getConnectorTokenStatus403Schema as EW, getConnectorTokenStatus404Schema as EX, getConnectorTokenStatus410Schema as EY, getConnectorTokenStatus422Schema as EZ, getConnectorTokenStatus429Schema as E_, getConfigurationStatus200Schema as Ea, getConfigurationStatus400Schema as Eb, getConfigurationStatus401Schema as Ec, getConfigurationStatus403Schema as Ed, getConfigurationStatus404Schema as Ee, getConfigurationStatus410Schema as Ef, getConfigurationsErrorSchema as Eg, getConfigurationsQueryInstallationTypeSchema as Eh, getConfigurationsQueryIntegrationIdOrSlugSchema as Ei, getConfigurationsQuerySlugSchema as Ej, getConfigurationsQueryTeamIdSchema as Ek, getConfigurationsQueryViewSchema as El, getConfigurationsResponseSchema as Em, getConfigurationsStatus200Schema as En, getConfigurationsStatus400Schema as Eo, getConfigurationsStatus401Schema as Ep, getConfigurationsStatus403Schema as Eq, getConfigurationsStatus410Schema as Er, getConnectorErrorSchema as Es, getConnectorPathConnectorSchema as Et, getConnectorProjectConnectionErrorSchema as Eu, getConnectorProjectConnectionPathConnectorSchema as Ev, getConnectorProjectConnectionPathProjectIdSchema as Ew, getConnectorProjectConnectionQuerySlugSchema as Ex, getConnectorProjectConnectionQueryTeamIdSchema as Ey, getConnectorProjectConnectionResponseSchema as Ez, addBypassIpQueryTeamIdSchema as F, getDeploymentFeatureFlagsStatus403Schema as F$, getContactInfoSchemaPathDomainSchema as F0, getContactInfoSchemaQueryTeamIdSchema as F1, getContactInfoSchemaResponseSchema as F2, getContactInfoSchemaStatus200Schema as F3, getContactInfoSchemaStatus400Schema as F4, getContactInfoSchemaStatus401Schema as F5, getContactInfoSchemaStatus403Schema as F6, getContactInfoSchemaStatus429Schema as F7, getContactInfoSchemaStatus500Schema as F8, getCustomEnvironmentErrorSchema as F9, getDeploymentEventsPathIdOrUrlSchema as FA, getDeploymentEventsQueryBuildsSchema as FB, getDeploymentEventsQueryDelimiterSchema as FC, getDeploymentEventsQueryDirectionSchema as FD, getDeploymentEventsQueryFollowSchema as FE, getDeploymentEventsQueryLimitSchema as FF, getDeploymentEventsQueryNameSchema as FG, getDeploymentEventsQuerySinceSchema as FH, getDeploymentEventsQuerySlugSchema as FI, getDeploymentEventsQueryStatusCodeSchema as FJ, getDeploymentEventsQueryTeamIdSchema as FK, getDeploymentEventsQueryUntilSchema as FL, getDeploymentEventsResponseSchema as FM, getDeploymentEventsStatus200Schema as FN, getDeploymentEventsStatus400Schema as FO, getDeploymentEventsStatus401Schema as FP, getDeploymentEventsStatus403Schema as FQ, getDeploymentEventsStatus410Schema as FR, getDeploymentEventsStatus500Schema as FS, getDeploymentFeatureFlagsErrorSchema as FT, getDeploymentFeatureFlagsPathDeploymentIdSchema as FU, getDeploymentFeatureFlagsQuerySlugSchema as FV, getDeploymentFeatureFlagsQueryTeamIdSchema as FW, getDeploymentFeatureFlagsResponseSchema as FX, getDeploymentFeatureFlagsStatus200Schema as FY, getDeploymentFeatureFlagsStatus400Schema as FZ, getDeploymentFeatureFlagsStatus401Schema as F_, getCustomEnvironmentPathEnvironmentSlugOrIdSchema as Fa, getCustomEnvironmentPathIdOrNameSchema as Fb, getCustomEnvironmentQuerySlugSchema as Fc, getCustomEnvironmentQueryTeamIdSchema as Fd, getCustomEnvironmentResponseSchema as Fe, getCustomEnvironmentStatus200Schema as Ff, getCustomEnvironmentStatus400Schema as Fg, getCustomEnvironmentStatus401Schema as Fh, getCustomEnvironmentStatus403Schema as Fi, getCustomEnvironmentStatus404Schema as Fj, getCustomEnvironmentStatus410Schema as Fk, getDeploymentCheckRunErrorSchema as Fl, getDeploymentCheckRunPathCheckRunIdSchema as Fm, getDeploymentCheckRunPathDeploymentIdSchema as Fn, getDeploymentCheckRunQuerySlugSchema as Fo, getDeploymentCheckRunQueryTeamIdSchema as Fp, getDeploymentCheckRunResponseSchema as Fq, getDeploymentCheckRunStatus200Schema as Fr, getDeploymentCheckRunStatus400Schema as Fs, getDeploymentCheckRunStatus401Schema as Ft, getDeploymentCheckRunStatus403Schema as Fu, getDeploymentCheckRunStatus404Schema as Fv, getDeploymentCheckRunStatus410Schema as Fw, getDeploymentCheckRunStatus500Schema as Fx, getDeploymentErrorSchema as Fy, getDeploymentEventsErrorSchema as Fz, addBypassIpResponseSchema as G, getDomainAvailabilityPathDomainSchema as G$, getDeploymentFeatureFlagsStatus404Schema as G0, getDeploymentFeatureFlagsStatus410Schema as G1, getDeploymentFileContentsErrorSchema as G2, getDeploymentFileContentsPathFileIdSchema as G3, getDeploymentFileContentsPathIdSchema as G4, getDeploymentFileContentsQueryPathSchema as G5, getDeploymentFileContentsQuerySlugSchema as G6, getDeploymentFileContentsQueryTeamIdSchema as G7, getDeploymentFileContentsResponseSchema as G8, getDeploymentFileContentsStatus400Schema as G9, getDeploymentsQueryStateSchema as GA, getDeploymentsQueryTargetSchema as GB, getDeploymentsQueryTeamIdSchema as GC, getDeploymentsQueryToSchema as GD, getDeploymentsQueryUntilSchema as GE, getDeploymentsQueryUsersSchema as GF, getDeploymentsResponseSchema as GG, getDeploymentsStatus200Schema as GH, getDeploymentsStatus400Schema as GI, getDeploymentsStatus401Schema as GJ, getDeploymentsStatus403Schema as GK, getDeploymentsStatus404Schema as GL, getDeploymentsStatus410Schema as GM, getDeploymentsStatus422Schema as GN, getDomainAuthCodeErrorSchema as GO, getDomainAuthCodePathDomainSchema as GP, getDomainAuthCodeQueryTeamIdSchema as GQ, getDomainAuthCodeResponseSchema as GR, getDomainAuthCodeStatus200Schema as GS, getDomainAuthCodeStatus400Schema as GT, getDomainAuthCodeStatus401Schema as GU, getDomainAuthCodeStatus403Schema as GV, getDomainAuthCodeStatus404Schema as GW, getDomainAuthCodeStatus409Schema as GX, getDomainAuthCodeStatus429Schema as GY, getDomainAuthCodeStatus500Schema as GZ, getDomainAvailabilityErrorSchema as G_, getDeploymentFileContentsStatus401Schema as Ga, getDeploymentFileContentsStatus403Schema as Gb, getDeploymentFileContentsStatus404Schema as Gc, getDeploymentFileContentsStatus410Schema as Gd, getDeploymentPathIdOrUrlSchema as Ge, getDeploymentQuerySlugSchema as Gf, getDeploymentQueryTeamIdSchema as Gg, getDeploymentQueryWithGitRepoInfoSchema as Gh, getDeploymentResponseSchema as Gi, getDeploymentStatus200Schema as Gj, getDeploymentStatus400Schema as Gk, getDeploymentStatus403Schema as Gl, getDeploymentStatus404Schema as Gm, getDeploymentStatus410Schema as Gn, getDeploymentStatus429Schema as Go, getDeploymentsErrorSchema as Gp, getDeploymentsQueryAppSchema as Gq, getDeploymentsQueryBranchSchema as Gr, getDeploymentsQueryFromSchema as Gs, getDeploymentsQueryLimitSchema as Gt, getDeploymentsQueryProjectIdSchema as Gu, getDeploymentsQueryProjectIdsSchema as Gv, getDeploymentsQueryRollbackCandidateSchema as Gw, getDeploymentsQueryShaSchema as Gx, getDeploymentsQuerySinceSchema as Gy, getDeploymentsQuerySlugSchema as Gz, addBypassIpStatus200Schema as H, getDomainStatus400Schema as H$, getDomainAvailabilityQueryTeamIdSchema as H0, getDomainAvailabilityResponseSchema as H1, getDomainAvailabilityStatus200Schema as H2, getDomainAvailabilityStatus400Schema as H3, getDomainAvailabilityStatus401Schema as H4, getDomainAvailabilityStatus403Schema as H5, getDomainAvailabilityStatus404Schema as H6, getDomainAvailabilityStatus429Schema as H7, getDomainAvailabilityStatus500Schema as H8, getDomainConfigErrorSchema as H9, getDomainPriceQueryTeamIdSchema as HA, getDomainPriceQueryYearsSchema as HB, getDomainPriceResponseSchema as HC, getDomainPriceStatus200Schema as HD, getDomainPriceStatus400Schema as HE, getDomainPriceStatus401Schema as HF, getDomainPriceStatus403Schema as HG, getDomainPriceStatus429Schema as HH, getDomainPriceStatus500Schema as HI, getDomainProjectDomainsErrorSchema as HJ, getDomainProjectDomainsPathDomainSchema as HK, getDomainProjectDomainsQueryLimitSchema as HL, getDomainProjectDomainsQuerySinceSchema as HM, getDomainProjectDomainsQuerySlugSchema as HN, getDomainProjectDomainsQueryTeamIdSchema as HO, getDomainProjectDomainsQueryUntilSchema as HP, getDomainProjectDomainsResponseSchema as HQ, getDomainProjectDomainsStatus200Schema as HR, getDomainProjectDomainsStatus400Schema as HS, getDomainProjectDomainsStatus401Schema as HT, getDomainProjectDomainsStatus403Schema as HU, getDomainProjectDomainsStatus404Schema as HV, getDomainProjectDomainsStatus410Schema as HW, getDomainQuerySlugSchema as HX, getDomainQueryTeamIdSchema as HY, getDomainResponseSchema as HZ, getDomainStatus200Schema as H_, getDomainConfigPathDomainSchema as Ha, getDomainConfigQueryProjectIdOrNameSchema as Hb, getDomainConfigQuerySlugSchema as Hc, getDomainConfigQueryStrictSchema as Hd, getDomainConfigQueryTeamIdSchema as He, getDomainConfigResponseSchema as Hf, getDomainConfigStatus200Schema as Hg, getDomainConfigStatus400Schema as Hh, getDomainConfigStatus401Schema as Hi, getDomainConfigStatus403Schema as Hj, getDomainConfigStatus410Schema as Hk, getDomainContactVerificationErrorSchema as Hl, getDomainContactVerificationPathDomainSchema as Hm, getDomainContactVerificationQueryTeamIdSchema as Hn, getDomainContactVerificationResponseSchema as Ho, getDomainContactVerificationStatus200Schema as Hp, getDomainContactVerificationStatus400Schema as Hq, getDomainContactVerificationStatus401Schema as Hr, getDomainContactVerificationStatus403Schema as Hs, getDomainContactVerificationStatus404Schema as Ht, getDomainContactVerificationStatus429Schema as Hu, getDomainContactVerificationStatus500Schema as Hv, getDomainErrorSchema as Hw, getDomainPathDomainSchema as Hx, getDomainPriceErrorSchema as Hy, getDomainPricePathDomainSchema as Hz, addBypassIpStatus400Schema as I, getDrainsQueryTeamIdSchema as I$, getDomainStatus401Schema as I0, getDomainStatus403Schema as I1, getDomainStatus404Schema as I2, getDomainStatus410Schema as I3, getDomainTransferInErrorSchema as I4, getDomainTransferInPathDomainSchema as I5, getDomainTransferInQueryTeamIdSchema as I6, getDomainTransferInResponseSchema as I7, getDomainTransferInStatus200Schema as I8, getDomainTransferInStatus400Schema as I9, getDomainsRecordsByRecordIdStatus400Schema as IA, getDomainsRecordsByRecordIdStatus401Schema as IB, getDomainsRecordsByRecordIdStatus403Schema as IC, getDomainsRecordsByRecordIdStatus404Schema as ID, getDomainsRecordsByRecordIdStatus410Schema as IE, getDomainsResponseSchema as IF, getDomainsStatus200Schema as IG, getDomainsStatus400Schema as IH, getDomainsStatus401Schema as II, getDomainsStatus403Schema as IJ, getDomainsStatus409Schema as IK, getDomainsStatus410Schema as IL, getDrainErrorSchema as IM, getDrainPathIdSchema as IN, getDrainQuerySlugSchema as IO, getDrainQueryTeamIdSchema as IP, getDrainResponseSchema as IQ, getDrainStatus200Schema as IR, getDrainStatus400Schema as IS, getDrainStatus401Schema as IT, getDrainStatus403Schema as IU, getDrainStatus404Schema as IV, getDrainStatus410Schema as IW, getDrainsErrorSchema as IX, getDrainsQueryIncludeMetadataSchema as IY, getDrainsQueryProjectIdSchema as IZ, getDrainsQuerySlugSchema as I_, getDomainTransferInStatus401Schema as Ia, getDomainTransferInStatus403Schema as Ib, getDomainTransferInStatus404Schema as Ic, getDomainTransferInStatus429Schema as Id, getDomainTransferInStatus500Schema as Ie, getDomainVerificationRecordErrorSchema as If, getDomainVerificationRecordPathDomainSchema as Ig, getDomainVerificationRecordQuerySlugSchema as Ih, getDomainVerificationRecordQueryTeamIdSchema as Ii, getDomainVerificationRecordResponseSchema as Ij, getDomainVerificationRecordStatus200Schema as Ik, getDomainVerificationRecordStatus400Schema as Il, getDomainVerificationRecordStatus401Schema as Im, getDomainVerificationRecordStatus403Schema as In, getDomainVerificationRecordStatus404Schema as Io, getDomainVerificationRecordStatus410Schema as Ip, getDomainsErrorSchema as Iq, getDomainsQueryLimitSchema as Ir, getDomainsQuerySinceSchema as Is, getDomainsQuerySlugSchema as It, getDomainsQueryTeamIdSchema as Iu, getDomainsQueryUntilSchema as Iv, getDomainsRecordsByRecordIdErrorSchema as Iw, getDomainsRecordsByRecordIdPathRecordIdSchema as Ix, getDomainsRecordsByRecordIdResponseSchema as Iy, getDomainsRecordsByRecordIdStatus200Schema as Iz, addBypassIpStatus401Schema as J, getEdgeConfigSchemaQuerySlugSchema as J$, getDrainsResponseSchema as J0, getDrainsStatus200Schema as J1, getDrainsStatus400Schema as J2, getDrainsStatus401Schema as J3, getDrainsStatus403Schema as J4, getDrainsStatus404Schema as J5, getDrainsStatus410Schema as J6, getEdgeConfigBackupErrorSchema as J7, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema as J8, getEdgeConfigBackupPathEdgeConfigIdSchema as J9, getEdgeConfigItemPathEdgeConfigItemKeySchema as JA, getEdgeConfigItemQuerySlugSchema as JB, getEdgeConfigItemQueryTeamIdSchema as JC, getEdgeConfigItemResponseSchema as JD, getEdgeConfigItemStatus200Schema as JE, getEdgeConfigItemStatus400Schema as JF, getEdgeConfigItemStatus401Schema as JG, getEdgeConfigItemStatus403Schema as JH, getEdgeConfigItemStatus404Schema as JI, getEdgeConfigItemStatus410Schema as JJ, getEdgeConfigItemsErrorSchema as JK, getEdgeConfigItemsPathEdgeConfigIdSchema as JL, getEdgeConfigItemsQuerySlugSchema as JM, getEdgeConfigItemsQueryTeamIdSchema as JN, getEdgeConfigItemsResponseSchema as JO, getEdgeConfigItemsStatus200Schema as JP, getEdgeConfigItemsStatus400Schema as JQ, getEdgeConfigItemsStatus401Schema as JR, getEdgeConfigItemsStatus403Schema as JS, getEdgeConfigItemsStatus404Schema as JT, getEdgeConfigItemsStatus410Schema as JU, getEdgeConfigPathEdgeConfigIdSchema as JV, getEdgeConfigQuerySlugSchema as JW, getEdgeConfigQueryTeamIdSchema as JX, getEdgeConfigResponseSchema as JY, getEdgeConfigSchemaErrorSchema as JZ, getEdgeConfigSchemaPathEdgeConfigIdSchema as J_, getEdgeConfigBackupQuerySlugSchema as Ja, getEdgeConfigBackupQueryTeamIdSchema as Jb, getEdgeConfigBackupResponseSchema as Jc, getEdgeConfigBackupStatus200Schema as Jd, getEdgeConfigBackupStatus400Schema as Je, getEdgeConfigBackupStatus401Schema as Jf, getEdgeConfigBackupStatus403Schema as Jg, getEdgeConfigBackupStatus404Schema as Jh, getEdgeConfigBackupStatus410Schema as Ji, getEdgeConfigBackupsErrorSchema as Jj, getEdgeConfigBackupsPathEdgeConfigIdSchema as Jk, getEdgeConfigBackupsQueryLimitSchema as Jl, getEdgeConfigBackupsQueryMetadataSchema as Jm, getEdgeConfigBackupsQueryNextSchema as Jn, getEdgeConfigBackupsQuerySlugSchema as Jo, getEdgeConfigBackupsQueryTeamIdSchema as Jp, getEdgeConfigBackupsResponseSchema as Jq, getEdgeConfigBackupsStatus200Schema as Jr, getEdgeConfigBackupsStatus400Schema as Js, getEdgeConfigBackupsStatus401Schema as Jt, getEdgeConfigBackupsStatus403Schema as Ju, getEdgeConfigBackupsStatus404Schema as Jv, getEdgeConfigBackupsStatus410Schema as Jw, getEdgeConfigErrorSchema as Jx, getEdgeConfigItemErrorSchema as Jy, getEdgeConfigItemPathEdgeConfigIdSchema as Jz, addBypassIpStatus402Schema as K, getFlagQueryTeamIdSchema as K$, getEdgeConfigSchemaQueryTeamIdSchema as K0, getEdgeConfigSchemaResponseSchema as K1, getEdgeConfigSchemaStatus200Schema as K2, getEdgeConfigSchemaStatus400Schema as K3, getEdgeConfigSchemaStatus401Schema as K4, getEdgeConfigSchemaStatus403Schema as K5, getEdgeConfigSchemaStatus404Schema as K6, getEdgeConfigSchemaStatus410Schema as K7, getEdgeConfigStatus200Schema as K8, getEdgeConfigStatus400Schema as K9, getEdgeConfigTokensStatus410Schema as KA, getEdgeConfigsErrorSchema as KB, getEdgeConfigsQuerySlugSchema as KC, getEdgeConfigsQueryTeamIdSchema as KD, getEdgeConfigsResponseSchema as KE, getEdgeConfigsStatus200Schema as KF, getEdgeConfigsStatus400Schema as KG, getEdgeConfigsStatus401Schema as KH, getEdgeConfigsStatus403Schema as KI, getEdgeConfigsStatus410Schema as KJ, getFirewallConfigErrorSchema as KK, getFirewallConfigPathConfigVersionSchema as KL, getFirewallConfigQueryProjectIdSchema as KM, getFirewallConfigQuerySlugSchema as KN, getFirewallConfigQueryTeamIdSchema as KO, getFirewallConfigResponseSchema as KP, getFirewallConfigStatus200Schema as KQ, getFirewallConfigStatus400Schema as KR, getFirewallConfigStatus401Schema as KS, getFirewallConfigStatus403Schema as KT, getFirewallConfigStatus404Schema as KU, getFirewallConfigStatus410Schema as KV, getFlagErrorSchema as KW, getFlagPathFlagIdOrSlugSchema as KX, getFlagPathProjectIdOrNameSchema as KY, getFlagQueryIfMatchSchema as KZ, getFlagQuerySlugSchema as K_, getEdgeConfigStatus401Schema as Ka, getEdgeConfigStatus403Schema as Kb, getEdgeConfigStatus404Schema as Kc, getEdgeConfigStatus410Schema as Kd, getEdgeConfigTokenErrorSchema as Ke, getEdgeConfigTokenPathEdgeConfigIdSchema as Kf, getEdgeConfigTokenPathTokenSchema as Kg, getEdgeConfigTokenQuerySlugSchema as Kh, getEdgeConfigTokenQueryTeamIdSchema as Ki, getEdgeConfigTokenResponseSchema as Kj, getEdgeConfigTokenStatus200Schema as Kk, getEdgeConfigTokenStatus400Schema as Kl, getEdgeConfigTokenStatus401Schema as Km, getEdgeConfigTokenStatus403Schema as Kn, getEdgeConfigTokenStatus404Schema as Ko, getEdgeConfigTokenStatus410Schema as Kp, getEdgeConfigTokensErrorSchema as Kq, getEdgeConfigTokensPathEdgeConfigIdSchema as Kr, getEdgeConfigTokensQuerySlugSchema as Ks, getEdgeConfigTokensQueryTeamIdSchema as Kt, getEdgeConfigTokensResponseSchema as Ku, getEdgeConfigTokensStatus200Schema as Kv, getEdgeConfigTokensStatus400Schema as Kw, getEdgeConfigTokensStatus401Schema as Kx, getEdgeConfigTokensStatus403Schema as Ky, getEdgeConfigTokensStatus404Schema as Kz, addBypassIpStatus403Schema as L, getIntegrationResourceStatus403Schema as L$, getFlagQueryWithMetadataSchema as L0, getFlagResponseSchema as L1, getFlagSegmentErrorSchema as L2, getFlagSegmentPathProjectIdOrNameSchema as L3, getFlagSegmentPathSegmentIdOrSlugSchema as L4, getFlagSegmentQuerySlugSchema as L5, getFlagSegmentQueryTeamIdSchema as L6, getFlagSegmentQueryWithMetadataSchema as L7, getFlagSegmentResponseSchema as L8, getFlagSegmentStatus200Schema as L9, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema as LA, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema as LB, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema as LC, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema as LD, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema as LE, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema as LF, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema as LG, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema as LH, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema as LI, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema as LJ, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema as LK, getIntegrationLogDrainsErrorSchema as LL, getIntegrationLogDrainsQuerySlugSchema as LM, getIntegrationLogDrainsQueryTeamIdSchema as LN, getIntegrationLogDrainsResponseSchema as LO, getIntegrationLogDrainsStatus200Schema as LP, getIntegrationLogDrainsStatus400Schema as LQ, getIntegrationLogDrainsStatus401Schema as LR, getIntegrationLogDrainsStatus403Schema as LS, getIntegrationLogDrainsStatus410Schema as LT, getIntegrationResourceErrorSchema as LU, getIntegrationResourcePathIntegrationConfigurationIdSchema as LV, getIntegrationResourcePathResourceIdSchema as LW, getIntegrationResourceResponseSchema as LX, getIntegrationResourceStatus200Schema as LY, getIntegrationResourceStatus400Schema as LZ, getIntegrationResourceStatus401Schema as L_, getFlagSegmentStatus400Schema as La, getFlagSegmentStatus401Schema as Lb, getFlagSegmentStatus402Schema as Lc, getFlagSegmentStatus403Schema as Ld, getFlagSegmentStatus404Schema as Le, getFlagSegmentStatus410Schema as Lf, getFlagSettingsErrorSchema as Lg, getFlagSettingsPathProjectIdOrNameSchema as Lh, getFlagSettingsQuerySlugSchema as Li, getFlagSettingsQueryTeamIdSchema as Lj, getFlagSettingsResponseSchema as Lk, getFlagSettingsStatus200Schema as Ll, getFlagSettingsStatus400Schema as Lm, getFlagSettingsStatus401Schema as Ln, getFlagSettingsStatus402Schema as Lo, getFlagSettingsStatus403Schema as Lp, getFlagSettingsStatus404Schema as Lq, getFlagSettingsStatus410Schema as Lr, getFlagStatus200Schema as Ls, getFlagStatus304Schema as Lt, getFlagStatus400Schema as Lu, getFlagStatus401Schema as Lv, getFlagStatus402Schema as Lw, getFlagStatus403Schema as Lx, getFlagStatus404Schema as Ly, getFlagStatus410Schema as Lz, addBypassIpStatus404Schema as M, getMicrofrontendsConfigStatus403Schema as M$, getIntegrationResourceStatus404Schema as M0, getIntegrationResourceStatus410Schema as M1, getIntegrationResourcesErrorSchema as M2, getIntegrationResourcesPathIntegrationConfigurationIdSchema as M3, getIntegrationResourcesResponseSchema as M4, getIntegrationResourcesStatus200Schema as M5, getIntegrationResourcesStatus400Schema as M6, getIntegrationResourcesStatus401Schema as M7, getIntegrationResourcesStatus403Schema as M8, getIntegrationResourcesStatus404Schema as M9, getMemberResponseSchema as MA, getMemberStatus200Schema as MB, getMemberStatus400Schema as MC, getMemberStatus401Schema as MD, getMemberStatus403Schema as ME, getMemberStatus404Schema as MF, getMemberStatus410Schema as MG, getMicrofrontendsConfigErrorSchema as MH, getMicrofrontendsConfigForProjectErrorSchema as MI, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema as MJ, getMicrofrontendsConfigForProjectQuerySlugSchema as MK, getMicrofrontendsConfigForProjectQueryTeamIdSchema as ML, getMicrofrontendsConfigForProjectResponseSchema as MM, getMicrofrontendsConfigForProjectStatus200Schema as MN, getMicrofrontendsConfigForProjectStatus400Schema as MO, getMicrofrontendsConfigForProjectStatus401Schema as MP, getMicrofrontendsConfigForProjectStatus403Schema as MQ, getMicrofrontendsConfigForProjectStatus404Schema as MR, getMicrofrontendsConfigForProjectStatus410Schema as MS, getMicrofrontendsConfigForProjectStatus500Schema as MT, getMicrofrontendsConfigPathDeploymentIdSchema as MU, getMicrofrontendsConfigQuerySlugSchema as MV, getMicrofrontendsConfigQueryTeamIdSchema as MW, getMicrofrontendsConfigResponseSchema as MX, getMicrofrontendsConfigStatus200Schema as MY, getMicrofrontendsConfigStatus400Schema as MZ, getMicrofrontendsConfigStatus401Schema as M_, getIntegrationResourcesStatus410Schema as Ma, getInvoiceErrorSchema as Mb, getInvoicePathIntegrationConfigurationIdSchema as Mc, getInvoicePathInvoiceIdSchema as Md, getInvoiceResponseSchema as Me, getInvoiceStatus200Schema as Mf, getInvoiceStatus400Schema as Mg, getInvoiceStatus401Schema as Mh, getInvoiceStatus403Schema as Mi, getInvoiceStatus404Schema as Mj, getInvoiceStatus410Schema as Mk, getInvoiceStatus429Schema as Ml, getKmsIssuerErrorSchema as Mm, getKmsIssuerPathIssuerIdSchema as Mn, getKmsIssuerQuerySlugSchema as Mo, getKmsIssuerQueryTeamIdSchema as Mp, getKmsIssuerResponseSchema as Mq, getKmsIssuerStatus200Schema as Mr, getKmsIssuerStatus400Schema as Ms, getKmsIssuerStatus401Schema as Mt, getKmsIssuerStatus403Schema as Mu, getKmsIssuerStatus404Schema as Mv, getKmsIssuerStatus410Schema as Mw, getMemberErrorSchema as Mx, getMemberPathIntegrationConfigurationIdSchema as My, getMemberPathMemberIdSchema as Mz, addBypassIpStatus410Schema as N, getObservabilitySchemaStatus403Schema as N$, getMicrofrontendsConfigStatus404Schema as N0, getMicrofrontendsConfigStatus410Schema as N1, getMicrofrontendsConfigStatus500Schema as N2, getMicrofrontendsGroupsErrorSchema as N3, getMicrofrontendsGroupsQuerySlugSchema as N4, getMicrofrontendsGroupsQueryTeamIdSchema as N5, getMicrofrontendsGroupsResponseSchema as N6, getMicrofrontendsGroupsStatus200Schema as N7, getMicrofrontendsGroupsStatus400Schema as N8, getMicrofrontendsGroupsStatus401Schema as N9, getNamedSandboxStatus409Schema as NA, getNamedSandboxStatus410Schema as NB, getNamedSandboxStatus429Schema as NC, getNamedSandboxStatus500Schema as ND, getObservabilityConfigurationProjectsErrorSchema as NE, getObservabilityConfigurationProjectsQuerySlugSchema as NF, getObservabilityConfigurationProjectsQueryTeamIdSchema as NG, getObservabilityConfigurationProjectsResponseSchema as NH, getObservabilityConfigurationProjectsStatus200Schema as NI, getObservabilityConfigurationProjectsStatus400Schema as NJ, getObservabilityConfigurationProjectsStatus401Schema as NK, getObservabilityConfigurationProjectsStatus403Schema as NL, getObservabilityConfigurationProjectsStatus404Schema as NM, getObservabilityConfigurationProjectsStatus410Schema as NN, getObservabilitySchemaByMetricIdErrorSchema as NO, getObservabilitySchemaByMetricIdPathMetricIdSchema as NP, getObservabilitySchemaByMetricIdResponseSchema as NQ, getObservabilitySchemaByMetricIdStatus200Schema as NR, getObservabilitySchemaByMetricIdStatus400Schema as NS, getObservabilitySchemaByMetricIdStatus401Schema as NT, getObservabilitySchemaByMetricIdStatus403Schema as NU, getObservabilitySchemaByMetricIdStatus410Schema as NV, getObservabilitySchemaErrorSchema as NW, getObservabilitySchemaResponseSchema as NX, getObservabilitySchemaStatus200Schema as NY, getObservabilitySchemaStatus400Schema as NZ, getObservabilitySchemaStatus401Schema as N_, getMicrofrontendsGroupsStatus403Schema as Na, getMicrofrontendsGroupsStatus410Schema as Nb, getMicrofrontendsGroupsStatus500Schema as Nc, getMicrofrontendsInGroupErrorSchema as Nd, getMicrofrontendsInGroupPathGroupIdSchema as Ne, getMicrofrontendsInGroupQuerySlugSchema as Nf, getMicrofrontendsInGroupQueryTeamIdSchema as Ng, getMicrofrontendsInGroupResponseSchema as Nh, getMicrofrontendsInGroupStatus200Schema as Ni, getMicrofrontendsInGroupStatus400Schema as Nj, getMicrofrontendsInGroupStatus401Schema as Nk, getMicrofrontendsInGroupStatus403Schema as Nl, getMicrofrontendsInGroupStatus410Schema as Nm, getNamedSandboxErrorSchema as Nn, getNamedSandboxPathNameSchema as No, getNamedSandboxQueryProjectIdSchema as Np, getNamedSandboxQueryResumeSchema as Nq, getNamedSandboxQuerySlugSchema as Nr, getNamedSandboxQueryTeamIdSchema as Ns, getNamedSandboxResponseSchema as Nt, getNamedSandboxStatus200Schema as Nu, getNamedSandboxStatus400Schema as Nv, getNamedSandboxStatus401Schema as Nw, getNamedSandboxStatus402Schema as Nx, getNamedSandboxStatus403Schema as Ny, getNamedSandboxStatus404Schema as Nz, addBypassIpStatus500Schema as O, getProjectDomainsQueryUntilSchema as O$, getObservabilitySchemaStatus410Schema as O0, getOrCreateDriveErrorSchema as O1, getOrCreateDrivePathNameSchema as O2, getOrCreateDriveQuerySlugSchema as O3, getOrCreateDriveQueryTeamIdSchema as O4, getOrCreateDriveResponseSchema as O5, getOrCreateDriveStatus200Schema as O6, getOrCreateDriveStatus201Schema as O7, getOrCreateDriveStatus400Schema as O8, getOrCreateDriveStatus401Schema as O9, getProjectCheckStatus403Schema as OA, getProjectCheckStatus410Schema as OB, getProjectCheckStatus500Schema as OC, getProjectDomainErrorSchema as OD, getProjectDomainPathDomainSchema as OE, getProjectDomainPathIdOrNameSchema as OF, getProjectDomainQuerySlugSchema as OG, getProjectDomainQueryTeamIdSchema as OH, getProjectDomainResponseSchema as OI, getProjectDomainStatus200Schema as OJ, getProjectDomainStatus400Schema as OK, getProjectDomainStatus401Schema as OL, getProjectDomainStatus403Schema as OM, getProjectDomainStatus410Schema as ON, getProjectDomainsErrorSchema as OO, getProjectDomainsPathIdOrNameSchema as OP, getProjectDomainsQueryCustomEnvironmentIdSchema as OQ, getProjectDomainsQueryGitBranchSchema as OR, getProjectDomainsQueryLimitSchema as OS, getProjectDomainsQueryOrderSchema as OT, getProjectDomainsQueryProductionSchema as OU, getProjectDomainsQueryRedirectSchema as OV, getProjectDomainsQueryRedirectsSchema as OW, getProjectDomainsQuerySinceSchema as OX, getProjectDomainsQuerySlugSchema as OY, getProjectDomainsQueryTargetSchema as OZ, getProjectDomainsQueryTeamIdSchema as O_, getOrCreateDriveStatus402Schema as Oa, getOrCreateDriveStatus403Schema as Ob, getOrCreateDriveStatus404Schema as Oc, getOrCreateDriveStatus409Schema as Od, getOrCreateDriveStatus410Schema as Oe, getOrCreateDriveStatus429Schema as Of, getOrderErrorSchema as Og, getOrderPathOrderIdSchema as Oh, getOrderQueryTeamIdSchema as Oi, getOrderResponseSchema as Oj, getOrderStatus200Schema as Ok, getOrderStatus400Schema as Ol, getOrderStatus401Schema as Om, getOrderStatus403Schema as On, getOrderStatus404Schema as Oo, getOrderStatus429Schema as Op, getOrderStatus500Schema as Oq, getProjectCheckErrorSchema as Or, getProjectCheckPathCheckIdSchema as Os, getProjectCheckPathProjectIdOrNameSchema as Ot, getProjectCheckQuerySlugSchema as Ou, getProjectCheckQueryTeamIdSchema as Ov, getProjectCheckResponseSchema as Ow, getProjectCheckStatus200Schema as Ox, getProjectCheckStatus400Schema as Oy, getProjectCheckStatus401Schema as Oz, addProjectDomainErrorSchema as P, getProjectTraceStatus404Schema as P$, getProjectDomainsQueryVerifiedSchema as P0, getProjectDomainsResponseSchema as P1, getProjectDomainsStatus200Schema as P2, getProjectDomainsStatus400Schema as P3, getProjectDomainsStatus401Schema as P4, getProjectDomainsStatus403Schema as P5, getProjectDomainsStatus410Schema as P6, getProjectEnvErrorSchema as P7, getProjectEnvPathIdOrNameSchema as P8, getProjectEnvPathIdSchema as P9, getProjectResponseSchema as PA, getProjectStatus200Schema as PB, getProjectStatus400Schema as PC, getProjectStatus401Schema as PD, getProjectStatus403Schema as PE, getProjectStatus410Schema as PF, getProjectTokenErrorSchema as PG, getProjectTokenPathIdOrNameSchema as PH, getProjectTokenQuerySlugSchema as PI, getProjectTokenQueryTeamIdSchema as PJ, getProjectTokenResponseSchema as PK, getProjectTokenStatus200Schema as PL, getProjectTokenStatus400Schema as PM, getProjectTokenStatus401Schema as PN, getProjectTokenStatus403Schema as PO, getProjectTokenStatus404Schema as PP, getProjectTokenStatus410Schema as PQ, getProjectTraceErrorSchema as PR, getProjectTraceQueryProjectIdSchema as PS, getProjectTraceQueryRequestIdSchema as PT, getProjectTraceQuerySlugSchema as PU, getProjectTraceQueryTeamIdSchema as PV, getProjectTraceResponseSchema as PW, getProjectTraceStatus200Schema as PX, getProjectTraceStatus400Schema as PY, getProjectTraceStatus401Schema as PZ, getProjectTraceStatus403Schema as P_, getProjectEnvQuerySlugSchema as Pa, getProjectEnvQueryTeamIdSchema as Pb, getProjectEnvResponseSchema as Pc, getProjectEnvStatus200Schema as Pd, getProjectEnvStatus400Schema as Pe, getProjectEnvStatus401Schema as Pf, getProjectEnvStatus403Schema as Pg, getProjectEnvStatus410Schema as Ph, getProjectErrorSchema as Pi, getProjectMembersErrorSchema as Pj, getProjectMembersPathIdOrNameSchema as Pk, getProjectMembersQueryLimitSchema as Pl, getProjectMembersQuerySearchSchema as Pm, getProjectMembersQuerySinceSchema as Pn, getProjectMembersQuerySlugSchema as Po, getProjectMembersQueryTeamIdSchema as Pp, getProjectMembersQueryUntilSchema as Pq, getProjectMembersResponseSchema as Pr, getProjectMembersStatus200Schema as Ps, getProjectMembersStatus400Schema as Pt, getProjectMembersStatus401Schema as Pu, getProjectMembersStatus403Schema as Pv, getProjectMembersStatus410Schema as Pw, getProjectPathIdOrNameSchema as Px, getProjectQuerySlugSchema as Py, getProjectQueryTeamIdSchema as Pz, addProjectDomainPathIdOrNameSchema as Q, getRedirectsStatus400Schema as Q$, getProjectTraceStatus410Schema as Q0, getProjectsByIdOrNameCustomEnvironmentsErrorSchema as Q1, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema as Q2, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema as Q3, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema as Q4, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema as Q5, getProjectsByIdOrNameCustomEnvironmentsResponseSchema as Q6, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema as Q7, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema as Q8, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema as Q9, getRecordsErrorSchema as QA, getRecordsPathDomainSchema as QB, getRecordsQueryLimitSchema as QC, getRecordsQuerySinceSchema as QD, getRecordsQuerySlugSchema as QE, getRecordsQueryTeamIdSchema as QF, getRecordsQueryUntilSchema as QG, getRecordsResponseSchema as QH, getRecordsStatus200Schema as QI, getRecordsStatus400Schema as QJ, getRecordsStatus401Schema as QK, getRecordsStatus403Schema as QL, getRecordsStatus404Schema as QM, getRecordsStatus410Schema as QN, getRedirectsErrorSchema as QO, getRedirectsQueryDiffSchema as QP, getRedirectsQueryPageSchema as QQ, getRedirectsQueryPerPageSchema as QR, getRedirectsQueryProjectIdSchema as QS, getRedirectsQueryQSchema as QT, getRedirectsQuerySlugSchema as QU, getRedirectsQuerySortBySchema as QV, getRedirectsQuerySortOrderSchema as QW, getRedirectsQueryTeamIdSchema as QX, getRedirectsQueryVersionIdSchema as QY, getRedirectsResponseSchema as QZ, getRedirectsStatus200Schema as Q_, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema as Qa, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema as Qb, getProjectsErrorSchema as Qc, getProjectsQueryBuildMachineTypesSchema as Qd, getProjectsQueryBuildQueueConfigurationSchema as Qe, getProjectsQueryDeprecatedSchema as Qf, getProjectsQueryEdgeConfigIdSchema as Qg, getProjectsQueryEdgeConfigTokenIdSchema as Qh, getProjectsQueryElasticConcurrencyEnabledSchema as Qi, getProjectsQueryExcludeReposSchema as Qj, getProjectsQueryFromSchema as Qk, getProjectsQueryGitForkProtectionSchema as Ql, getProjectsQueryLimitSchema as Qm, getProjectsQueryRepoIdSchema as Qn, getProjectsQueryRepoSchema as Qo, getProjectsQueryRepoUrlSchema as Qp, getProjectsQuerySearchSchema as Qq, getProjectsQuerySlugSchema as Qr, getProjectsQueryStaticIpsEnabledSchema as Qs, getProjectsQueryTeamIdSchema as Qt, getProjectsResponseSchema as Qu, getProjectsStatus200Schema as Qv, getProjectsStatus400Schema as Qw, getProjectsStatus401Schema as Qx, getProjectsStatus403Schema as Qy, getProjectsStatus410Schema as Qz, addProjectDomainQuerySlugSchema as R, getRollingReleaseConfigStatus410Schema as R$, getRedirectsStatus401Schema as R0, getRedirectsStatus403Schema as R1, getRedirectsStatus404Schema as R2, getRedirectsStatus410Schema as R3, getRepositoryErrorSchema as R4, getRepositoryImageErrorSchema as R5, getRepositoryImagePathIdOrNameSchema as R6, getRepositoryImagePathImageIdOrDigestSchema as R7, getRepositoryImageQueryProjectIdSchema as R8, getRepositoryImageQuerySlugSchema as R9, getRepositoryTagStatus200Schema as RA, getRepositoryTagStatus400Schema as RB, getRepositoryTagStatus401Schema as RC, getRepositoryTagStatus403Schema as RD, getRepositoryTagStatus404Schema as RE, getRepositoryTagStatus410Schema as RF, getRollingReleaseBillingStatusErrorSchema as RG, getRollingReleaseBillingStatusPathIdOrNameSchema as RH, getRollingReleaseBillingStatusQuerySlugSchema as RI, getRollingReleaseBillingStatusQueryTeamIdSchema as RJ, getRollingReleaseBillingStatusResponseSchema as RK, getRollingReleaseBillingStatusStatus200Schema as RL, getRollingReleaseBillingStatusStatus400Schema as RM, getRollingReleaseBillingStatusStatus401Schema as RN, getRollingReleaseBillingStatusStatus403Schema as RO, getRollingReleaseBillingStatusStatus404Schema as RP, getRollingReleaseBillingStatusStatus410Schema as RQ, getRollingReleaseConfigErrorSchema as RR, getRollingReleaseConfigPathIdOrNameSchema as RS, getRollingReleaseConfigQuerySlugSchema as RT, getRollingReleaseConfigQueryTeamIdSchema as RU, getRollingReleaseConfigResponseSchema as RV, getRollingReleaseConfigStatus200Schema as RW, getRollingReleaseConfigStatus400Schema as RX, getRollingReleaseConfigStatus401Schema as RY, getRollingReleaseConfigStatus403Schema as RZ, getRollingReleaseConfigStatus404Schema as R_, getRepositoryImageQueryTeamIdSchema as Ra, getRepositoryImageResponseSchema as Rb, getRepositoryImageStatus200Schema as Rc, getRepositoryImageStatus400Schema as Rd, getRepositoryImageStatus401Schema as Re, getRepositoryImageStatus403Schema as Rf, getRepositoryImageStatus404Schema as Rg, getRepositoryImageStatus410Schema as Rh, getRepositoryPathIdOrNameSchema as Ri, getRepositoryQueryProjectIdSchema as Rj, getRepositoryQuerySlugSchema as Rk, getRepositoryQueryTeamIdSchema as Rl, getRepositoryResponseSchema as Rm, getRepositoryStatus200Schema as Rn, getRepositoryStatus400Schema as Ro, getRepositoryStatus401Schema as Rp, getRepositoryStatus403Schema as Rq, getRepositoryStatus404Schema as Rr, getRepositoryStatus410Schema as Rs, getRepositoryTagErrorSchema as Rt, getRepositoryTagPathIdOrNameSchema as Ru, getRepositoryTagPathTagSchema as Rv, getRepositoryTagQueryProjectIdSchema as Rw, getRepositoryTagQuerySlugSchema as Rx, getRepositoryTagQueryTeamIdSchema as Ry, getRepositoryTagResponseSchema as Rz, addProjectDomainQueryTeamIdSchema as S, getSdkKeysStatus400Schema as S$, getRollingReleaseErrorSchema as S0, getRollingReleasePathIdOrNameSchema as S1, getRollingReleaseQuerySlugSchema as S2, getRollingReleaseQueryStateSchema as S3, getRollingReleaseQueryTeamIdSchema as S4, getRollingReleaseResponseSchema as S5, getRollingReleaseStatus200Schema as S6, getRollingReleaseStatus400Schema as S7, getRollingReleaseStatus401Schema as S8, getRollingReleaseStatus403Schema as S9, getRoutesQuerySlugSchema as SA, getRoutesQueryTeamIdSchema as SB, getRoutesQueryVersionIdSchema as SC, getRoutesResponseSchema as SD, getRoutesStatus200Schema as SE, getRoutesStatus400Schema as SF, getRoutesStatus401Schema as SG, getRoutesStatus403Schema as SH, getRoutesStatus404Schema as SI, getRoutesStatus410Schema as SJ, getRuntimeLogsErrorSchema as SK, getRuntimeLogsPathDeploymentIdSchema as SL, getRuntimeLogsPathProjectIdSchema as SM, getRuntimeLogsQuerySlugSchema as SN, getRuntimeLogsQueryTeamIdSchema as SO, getRuntimeLogsResponseSchema as SP, getRuntimeLogsStatus200Schema as SQ, getRuntimeLogsStatus400Schema as SR, getRuntimeLogsStatus401Schema as SS, getRuntimeLogsStatus403Schema as ST, getRuntimeLogsStatus410Schema as SU, getSdkKeysErrorSchema as SV, getSdkKeysPathProjectIdOrNameSchema as SW, getSdkKeysQuerySlugSchema as SX, getSdkKeysQueryTeamIdSchema as SY, getSdkKeysResponseSchema as SZ, getSdkKeysStatus200Schema as S_, getRollingReleaseStatus404Schema as Sa, getRollingReleaseStatus410Schema as Sb, getRootErrorSchema as Sc, getRootResponseSchema as Sd, getRootStatus200Schema as Se, getRootStatus400Schema as Sf, getRootStatus401Schema as Sg, getRootStatus402Schema as Sh, getRootStatus403Schema as Si, getRootStatus404Schema as Sj, getRootStatus410Schema as Sk, getRouteVersionsErrorSchema as Sl, getRouteVersionsPathProjectIdSchema as Sm, getRouteVersionsQuerySlugSchema as Sn, getRouteVersionsQueryTeamIdSchema as So, getRouteVersionsResponseSchema as Sp, getRouteVersionsStatus200Schema as Sq, getRouteVersionsStatus400Schema as Sr, getRouteVersionsStatus401Schema as Ss, getRouteVersionsStatus403Schema as St, getRouteVersionsStatus410Schema as Su, getRoutesErrorSchema as Sv, getRoutesPathProjectIdSchema as Sw, getRoutesQueryDiffSchema as Sx, getRoutesQueryFilterSchema as Sy, getRoutesQueryQSchema as Sz, addProjectDomainResponseSchema as T, getSessionQueryTeamIdSchema as T$, getSdkKeysStatus401Schema as T0, getSdkKeysStatus402Schema as T1, getSdkKeysStatus403Schema as T2, getSdkKeysStatus404Schema as T3, getSdkKeysStatus410Schema as T4, getSecurityFirewallConfigErrorSchema as T5, getSecurityFirewallConfigResponseSchema as T6, getSecurityFirewallConfigStatus200Schema as T7, getSecurityFirewallConfigStatus400Schema as T8, getSecurityFirewallConfigStatus401Schema as T9, getSessionCommandLogsStatus200Schema as TA, getSessionCommandLogsStatus400Schema as TB, getSessionCommandLogsStatus401Schema as TC, getSessionCommandLogsStatus403Schema as TD, getSessionCommandLogsStatus404Schema as TE, getSessionCommandLogsStatus410Schema as TF, getSessionCommandLogsStatus422Schema as TG, getSessionCommandLogsStatus429Schema as TH, getSessionCommandLogsStatus500Schema as TI, getSessionCommandPathCmdIdSchema as TJ, getSessionCommandPathSessionIdSchema as TK, getSessionCommandQuerySlugSchema as TL, getSessionCommandQueryTeamIdSchema as TM, getSessionCommandQueryWaitSchema as TN, getSessionCommandResponseSchema as TO, getSessionCommandStatus200Schema as TP, getSessionCommandStatus400Schema as TQ, getSessionCommandStatus401Schema as TR, getSessionCommandStatus403Schema as TS, getSessionCommandStatus404Schema as TT, getSessionCommandStatus410Schema as TU, getSessionCommandStatus422Schema as TV, getSessionCommandStatus429Schema as TW, getSessionCommandStatus500Schema as TX, getSessionErrorSchema as TY, getSessionPathSessionIdSchema as TZ, getSessionQuerySlugSchema as T_, getSecurityFirewallConfigStatus403Schema as Ta, getSecurityFirewallConfigStatus404Schema as Tb, getSecurityFirewallConfigStatus410Schema as Tc, getSecurityFirewallEventsErrorSchema as Td, getSecurityFirewallEventsQueryEndTimestampSchema as Te, getSecurityFirewallEventsQueryHostsSchema as Tf, getSecurityFirewallEventsQueryProjectIdSchema as Tg, getSecurityFirewallEventsQuerySlugSchema as Th, getSecurityFirewallEventsQueryStartTimestampSchema as Ti, getSecurityFirewallEventsQueryTeamIdSchema as Tj, getSecurityFirewallEventsResponseSchema as Tk, getSecurityFirewallEventsStatus200Schema as Tl, getSecurityFirewallEventsStatus400Schema as Tm, getSecurityFirewallEventsStatus401Schema as Tn, getSecurityFirewallEventsStatus403Schema as To, getSecurityFirewallEventsStatus404Schema as Tp, getSecurityFirewallEventsStatus408Schema as Tq, getSecurityFirewallEventsStatus410Schema as Tr, getSecurityFirewallEventsStatus500Schema as Ts, getSessionCommandErrorSchema as Tt, getSessionCommandLogsErrorSchema as Tu, getSessionCommandLogsPathCmdIdSchema as Tv, getSessionCommandLogsPathSessionIdSchema as Tw, getSessionCommandLogsQuerySlugSchema as Tx, getSessionCommandLogsQueryTeamIdSchema as Ty, getSessionCommandLogsResponseSchema as Tz, addProjectDomainStatus200Schema as U, getTeamMembersPathTeamIdSchema as U$, getSessionResponseSchema as U0, getSessionSnapshotErrorSchema as U1, getSessionSnapshotPathSnapshotIdSchema as U2, getSessionSnapshotQuerySlugSchema as U3, getSessionSnapshotQueryTeamIdSchema as U4, getSessionSnapshotResponseSchema as U5, getSessionSnapshotStatus200Schema as U6, getSessionSnapshotStatus400Schema as U7, getSessionSnapshotStatus401Schema as U8, getSessionSnapshotStatus403Schema as U9, getStorageStoresByIdStatus200Schema as UA, getStorageStoresByIdStatus400Schema as UB, getStorageStoresByIdStatus401Schema as UC, getStorageStoresByIdStatus403Schema as UD, getStorageStoresByIdStatus404Schema as UE, getStorageStoresByIdStatus410Schema as UF, getSupportedTldsErrorSchema as UG, getSupportedTldsQueryTeamIdSchema as UH, getSupportedTldsResponseSchema as UI, getSupportedTldsStatus200Schema as UJ, getSupportedTldsStatus400Schema as UK, getSupportedTldsStatus401Schema as UL, getSupportedTldsStatus403Schema as UM, getSupportedTldsStatus429Schema as UN, getSupportedTldsStatus500Schema as UO, getTeamAccessRequestErrorSchema as UP, getTeamAccessRequestPathTeamIdSchema as UQ, getTeamAccessRequestPathUserIdSchema as UR, getTeamAccessRequestResponseSchema as US, getTeamAccessRequestStatus200Schema as UT, getTeamAccessRequestStatus400Schema as UU, getTeamAccessRequestStatus401Schema as UV, getTeamAccessRequestStatus403Schema as UW, getTeamAccessRequestStatus404Schema as UX, getTeamAccessRequestStatus410Schema as UY, getTeamErrorSchema as UZ, getTeamMembersErrorSchema as U_, getSessionSnapshotStatus404Schema as Ua, getSessionSnapshotStatus410Schema as Ub, getSessionSnapshotStatus429Schema as Uc, getSessionStatus200Schema as Ud, getSessionStatus400Schema as Ue, getSessionStatus401Schema as Uf, getSessionStatus403Schema as Ug, getSessionStatus404Schema as Uh, getSessionStatus410Schema as Ui, getSessionStatus429Schema as Uj, getSessionStatus500Schema as Uk, getSharedEnvVarErrorSchema as Ul, getSharedEnvVarPathIdSchema as Um, getSharedEnvVarQuerySlugSchema as Un, getSharedEnvVarQueryTeamIdSchema as Uo, getSharedEnvVarResponseSchema as Up, getSharedEnvVarStatus200Schema as Uq, getSharedEnvVarStatus400Schema as Ur, getSharedEnvVarStatus401Schema as Us, getSharedEnvVarStatus403Schema as Ut, getSharedEnvVarStatus410Schema as Uu, getStorageStoresByIdErrorSchema as Uv, getStorageStoresByIdPathIdSchema as Uw, getStorageStoresByIdQueryIncludeGuidesSchema as Ux, getStorageStoresByIdQuerySkipMetadataSchema as Uy, getStorageStoresByIdResponseSchema as Uz, addProjectDomainStatus400Schema as V, getVersionsStatus401Schema as V$, getTeamMembersQueryEligibleMembersForProjectIdSchema as V0, getTeamMembersQueryExcludeProjectSchema as V1, getTeamMembersQueryLimitSchema as V2, getTeamMembersQueryRoleSchema as V3, getTeamMembersQuerySearchSchema as V4, getTeamMembersQuerySinceSchema as V5, getTeamMembersQuerySlugSchema as V6, getTeamMembersQueryUntilSchema as V7, getTeamMembersResponseSchema as V8, getTeamMembersStatus200Schema as V9, getTldPathTldSchema as VA, getTldPriceErrorSchema as VB, getTldPricePathTldSchema as VC, getTldPriceQueryTeamIdSchema as VD, getTldPriceQueryYearsSchema as VE, getTldPriceResponseSchema as VF, getTldPriceStatus200Schema as VG, getTldPriceStatus400Schema as VH, getTldPriceStatus401Schema as VI, getTldPriceStatus403Schema as VJ, getTldPriceStatus429Schema as VK, getTldPriceStatus500Schema as VL, getTldQueryTeamIdSchema as VM, getTldResponseSchema as VN, getTldStatus200Schema as VO, getTldStatus400Schema as VP, getTldStatus401Schema as VQ, getTldStatus403Schema as VR, getTldStatus429Schema as VS, getTldStatus500Schema as VT, getVersionsErrorSchema as VU, getVersionsQueryProjectIdSchema as VV, getVersionsQuerySlugSchema as VW, getVersionsQueryTeamIdSchema as VX, getVersionsResponseSchema as VY, getVersionsStatus200Schema as VZ, getVersionsStatus400Schema as V_, getTeamMembersStatus400Schema as Va, getTeamMembersStatus401Schema as Vb, getTeamMembersStatus403Schema as Vc, getTeamMembersStatus404Schema as Vd, getTeamMembersStatus410Schema as Ve, getTeamPathTeamIdSchema as Vf, getTeamQuerySlugSchema as Vg, getTeamResponseSchema as Vh, getTeamStatus200Schema as Vi, getTeamStatus400Schema as Vj, getTeamStatus401Schema as Vk, getTeamStatus403Schema as Vl, getTeamStatus404Schema as Vm, getTeamStatus410Schema as Vn, getTeamsErrorSchema as Vo, getTeamsQueryLimitSchema as Vp, getTeamsQuerySinceSchema as Vq, getTeamsQueryUntilSchema as Vr, getTeamsResponseSchema as Vs, getTeamsStatus200Schema as Vt, getTeamsStatus400Schema as Vu, getTeamsStatus401Schema as Vv, getTeamsStatus403Schema as Vw, getTeamsStatus410Schema as Vx, getTeamsStatus500Schema as Vy, getTldErrorSchema as Vz, addProjectDomainStatus401Schema as W, invalidateBySrcImagesStatus403Schema as W$, getVersionsStatus403Schema as W0, getVersionsStatus410Schema as W1, getVersionsStatus500Schema as W2, getWebhookErrorSchema as W3, getWebhookPathIdSchema as W4, getWebhookQuerySlugSchema as W5, getWebhookQueryTeamIdSchema as W6, getWebhookResponseSchema as W7, getWebhookStatus200Schema as W8, getWebhookStatus400Schema as W9, globalConfigItemSchema as WA, globalConfigItemValueSchema as WB, globalConfigTokenSchema as WC, httpApiDecodeErrorSchema as WD, importResourceErrorSchema as WE, importResourcePathIntegrationConfigurationIdSchema as WF, importResourcePathResourceIdSchema as WG, importResourceResponseSchema as WH, importResourceStatus200Schema as WI, importResourceStatus400Schema as WJ, importResourceStatus401Schema as WK, importResourceStatus403Schema as WL, importResourceStatus404Schema as WM, importResourceStatus409Schema as WN, importResourceStatus410Schema as WO, importResourceStatus422Schema as WP, internalServerErrorSchema as WQ, invalidAdditionalContactInfoSchema as WR, invalidateBySrcImagesErrorSchema as WS, invalidateBySrcImagesQueryProjectIdOrNameSchema as WT, invalidateBySrcImagesQuerySlugSchema as WU, invalidateBySrcImagesQueryTeamIdSchema as WV, invalidateBySrcImagesResponseSchema as WW, invalidateBySrcImagesStatus200Schema as WX, invalidateBySrcImagesStatus400Schema as WY, invalidateBySrcImagesStatus401Schema as WZ, invalidateBySrcImagesStatus402Schema as W_, getWebhookStatus401Schema as Wa, getWebhookStatus403Schema as Wb, getWebhookStatus410Schema as Wc, getWebhooksErrorSchema as Wd, getWebhooksQueryProjectIdSchema as We, getWebhooksQuerySlugSchema as Wf, getWebhooksQueryTeamIdSchema as Wg, getWebhooksResponseSchema as Wh, getWebhooksStatus200Schema as Wi, getWebhooksStatus400Schema as Wj, getWebhooksStatus401Schema as Wk, getWebhooksStatus403Schema as Wl, getWebhooksStatus410Schema as Wm, gitNamespacesErrorSchema as Wn, gitNamespacesQueryHostSchema as Wo, gitNamespacesQueryProviderSchema as Wp, gitNamespacesQueryViewerMetadataSchema as Wq, gitNamespacesResponseSchema as Wr, gitNamespacesStatus200Schema as Ws, gitNamespacesStatus400Schema as Wt, gitNamespacesStatus401Schema as Wu, gitNamespacesStatus403Schema as Wv, gitNamespacesStatus404Schema as Ww, gitNamespacesStatus410Schema as Wx, gitNamespacesStatus429Schema as Wy, gitNamespacesStatus500Schema as Wz, addProjectDomainStatus402Schema as X, killSessionCommandStatus500Schema as X$, invalidateBySrcImagesStatus404Schema as X0, invalidateBySrcImagesStatus410Schema as X1, invalidateByTagsErrorSchema as X2, invalidateByTagsQueryProjectIdOrNameSchema as X3, invalidateByTagsQuerySlugSchema as X4, invalidateByTagsQueryTeamIdSchema as X5, invalidateByTagsResponseSchema as X6, invalidateByTagsStatus200Schema as X7, invalidateByTagsStatus400Schema as X8, invalidateByTagsStatus401Schema as X9, issueCertStatus500Schema as XA, issueSchema as XB, joinTeamErrorSchema as XC, joinTeamPathTeamIdSchema as XD, joinTeamResponseSchema as XE, joinTeamStatus200Schema as XF, joinTeamStatus400Schema as XG, joinTeamStatus401Schema as XH, joinTeamStatus402Schema as XI, joinTeamStatus403Schema as XJ, joinTeamStatus404Schema as XK, joinTeamStatus410Schema as XL, joinTeamStatus503Schema as XM, killSessionCommandErrorSchema as XN, killSessionCommandPathCmdIdSchema as XO, killSessionCommandPathSessionIdSchema as XP, killSessionCommandQuerySlugSchema as XQ, killSessionCommandQueryTeamIdSchema as XR, killSessionCommandResponseSchema as XS, killSessionCommandStatus200Schema as XT, killSessionCommandStatus400Schema as XU, killSessionCommandStatus401Schema as XV, killSessionCommandStatus403Schema as XW, killSessionCommandStatus404Schema as XX, killSessionCommandStatus410Schema as XY, killSessionCommandStatus422Schema as XZ, killSessionCommandStatus429Schema as X_, invalidateByTagsStatus403Schema as Xa, invalidateByTagsStatus404Schema as Xb, invalidateByTagsStatus410Schema as Xc, inviteUserToTeamErrorSchema as Xd, inviteUserToTeamPathTeamIdSchema as Xe, inviteUserToTeamQuerySlugSchema as Xf, inviteUserToTeamResponseSchema as Xg, inviteUserToTeamStatus200Schema as Xh, inviteUserToTeamStatus400Schema as Xi, inviteUserToTeamStatus401Schema as Xj, inviteUserToTeamStatus403Schema as Xk, inviteUserToTeamStatus410Schema as Xl, inviteUserToTeamStatus503Schema as Xm, invitedTeamMemberSchema as Xn, issueCertErrorSchema as Xo, issueCertQuerySlugSchema as Xp, issueCertQueryTeamIdSchema as Xq, issueCertResponseSchema as Xr, issueCertStatus200Schema as Xs, issueCertStatus400Schema as Xt, issueCertStatus401Schema as Xu, issueCertStatus402Schema as Xv, issueCertStatus403Schema as Xw, issueCertStatus404Schema as Xx, issueCertStatus410Schema as Xy, issueCertStatus449Schema as Xz, addProjectDomainStatus403Schema as Y, listAiGatewayVirtualModelConfigsStatus410Schema as Y$, languageCodeRequiredSchema as Y0, listAccessGroupMembersErrorSchema as Y1, listAccessGroupMembersPathIdOrNameSchema as Y2, listAccessGroupMembersQueryLimitSchema as Y3, listAccessGroupMembersQueryNextSchema as Y4, listAccessGroupMembersQuerySearchSchema as Y5, listAccessGroupMembersQuerySlugSchema as Y6, listAccessGroupMembersQueryTeamIdSchema as Y7, listAccessGroupMembersResponseSchema as Y8, listAccessGroupMembersStatus200Schema as Y9, listAccessGroupsStatus200Schema as YA, listAccessGroupsStatus400Schema as YB, listAccessGroupsStatus401Schema as YC, listAccessGroupsStatus403Schema as YD, listAccessGroupsStatus410Schema as YE, listAiGatewayRulesErrorSchema as YF, listAiGatewayRulesQueryIncludeDisabledSchema as YG, listAiGatewayRulesQuerySlugSchema as YH, listAiGatewayRulesQueryTeamIdSchema as YI, listAiGatewayRulesResponseSchema as YJ, listAiGatewayRulesStatus200Schema as YK, listAiGatewayRulesStatus400Schema as YL, listAiGatewayRulesStatus401Schema as YM, listAiGatewayRulesStatus403Schema as YN, listAiGatewayRulesStatus410Schema as YO, listAiGatewayRulesStatus500Schema as YP, listAiGatewayVirtualModelConfigsErrorSchema as YQ, listAiGatewayVirtualModelConfigsQueryCursorSchema as YR, listAiGatewayVirtualModelConfigsQueryLimitSchema as YS, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema as YT, listAiGatewayVirtualModelConfigsQuerySlugSchema as YU, listAiGatewayVirtualModelConfigsQueryTeamIdSchema as YV, listAiGatewayVirtualModelConfigsResponseSchema as YW, listAiGatewayVirtualModelConfigsStatus200Schema as YX, listAiGatewayVirtualModelConfigsStatus400Schema as YY, listAiGatewayVirtualModelConfigsStatus401Schema as YZ, listAiGatewayVirtualModelConfigsStatus403Schema as Y_, listAccessGroupMembersStatus400Schema as Ya, listAccessGroupMembersStatus401Schema as Yb, listAccessGroupMembersStatus403Schema as Yc, listAccessGroupMembersStatus410Schema as Yd, listAccessGroupProjectsErrorSchema as Ye, listAccessGroupProjectsPathIdOrNameSchema as Yf, listAccessGroupProjectsQueryLimitSchema as Yg, listAccessGroupProjectsQueryNextSchema as Yh, listAccessGroupProjectsQuerySlugSchema as Yi, listAccessGroupProjectsQueryTeamIdSchema as Yj, listAccessGroupProjectsResponseSchema as Yk, listAccessGroupProjectsStatus200Schema as Yl, listAccessGroupProjectsStatus400Schema as Ym, listAccessGroupProjectsStatus401Schema as Yn, listAccessGroupProjectsStatus403Schema as Yo, listAccessGroupProjectsStatus410Schema as Yp, listAccessGroupsErrorSchema as Yq, listAccessGroupsQueryLimitSchema as Yr, listAccessGroupsQueryMembersLimitSchema as Ys, listAccessGroupsQueryNextSchema as Yt, listAccessGroupsQueryProjectIdSchema as Yu, listAccessGroupsQueryProjectsLimitSchema as Yv, listAccessGroupsQuerySearchSchema as Yw, listAccessGroupsQuerySlugSchema as Yx, listAccessGroupsQueryTeamIdSchema as Yy, listAccessGroupsResponseSchema as Yz, addProjectDomainStatus409Schema as Z, listConnectorProjectConnectionsStatus410Schema as Z$, listAiGatewayVirtualModelConfigsStatus500Schema as Z0, listAliasesErrorSchema as Z1, listAliasesQueryDomainSchema as Z2, listAliasesQueryFromSchema as Z3, listAliasesQueryLimitSchema as Z4, listAliasesQueryProjectIdSchema as Z5, listAliasesQueryRollbackDeploymentIdSchema as Z6, listAliasesQuerySinceSchema as Z7, listAliasesQuerySlugSchema as Z8, listAliasesQueryTeamIdSchema as Z9, listBillingChargesStatus410Schema as ZA, listBillingChargesStatus500Schema as ZB, listBillingChargesStatus503Schema as ZC, listCheckRunsErrorSchema as ZD, listCheckRunsPathCheckIdSchema as ZE, listCheckRunsPathProjectIdOrNameSchema as ZF, listCheckRunsQuerySlugSchema as ZG, listCheckRunsQueryTeamIdSchema as ZH, listCheckRunsResponseSchema as ZI, listCheckRunsStatus200Schema as ZJ, listCheckRunsStatus400Schema as ZK, listCheckRunsStatus401Schema as ZL, listCheckRunsStatus403Schema as ZM, listCheckRunsStatus410Schema as ZN, listCheckRunsStatus500Schema as ZO, listConnectorProjectConnectionsErrorSchema as ZP, listConnectorProjectConnectionsPathConnectorSchema as ZQ, listConnectorProjectConnectionsQueryCursorSchema as ZR, listConnectorProjectConnectionsQueryLimitSchema as ZS, listConnectorProjectConnectionsQuerySlugSchema as ZT, listConnectorProjectConnectionsQueryTeamIdSchema as ZU, listConnectorProjectConnectionsResponseSchema as ZV, listConnectorProjectConnectionsStatus200Schema as ZW, listConnectorProjectConnectionsStatus400Schema as ZX, listConnectorProjectConnectionsStatus401Schema as ZY, listConnectorProjectConnectionsStatus403Schema as ZZ, listConnectorProjectConnectionsStatus404Schema as Z_, listAliasesQueryUntilSchema as Za, listAliasesResponseSchema as Zb, listAliasesStatus200Schema as Zc, listAliasesStatus400Schema as Zd, listAliasesStatus401Schema as Ze, listAliasesStatus403Schema as Zf, listAliasesStatus404Schema as Zg, listAliasesStatus410Schema as Zh, listAuthTokensErrorSchema as Zi, listAuthTokensResponseSchema as Zj, listAuthTokensStatus200Schema as Zk, listAuthTokensStatus400Schema as Zl, listAuthTokensStatus401Schema as Zm, listAuthTokensStatus403Schema as Zn, listAuthTokensStatus410Schema as Zo, listBillingChargesErrorSchema as Zp, listBillingChargesQueryFromSchema as Zq, listBillingChargesQuerySlugSchema as Zr, listBillingChargesQueryTeamIdSchema as Zs, listBillingChargesQueryToSchema as Zt, listBillingChargesResponseSchema as Zu, listBillingChargesStatus200Schema as Zv, listBillingChargesStatus400Schema as Zw, listBillingChargesStatus401Schema as Zx, listBillingChargesStatus403Schema as Zy, listBillingChargesStatus404Schema as Zz, addProjectDomainStatus410Schema as _, listDrivesQueryLimitSchema as _$, listConnectorProjectConnectionsStatus422Schema as _0, listConnectorsErrorSchema as _1, listConnectorsQueryCursorSchema as _2, listConnectorsQueryLimitSchema as _3, listConnectorsQueryProjectIdSchema as _4, listConnectorsQuerySearchSchema as _5, listConnectorsQueryServiceSchema as _6, listConnectorsQuerySlugSchema as _7, listConnectorsQuerySortSchema as _8, listConnectorsQueryTeamIdSchema as _9, listDeploymentAliasesStatus403Schema as _A, listDeploymentAliasesStatus404Schema as _B, listDeploymentAliasesStatus410Schema as _C, listDeploymentCheckRunsErrorSchema as _D, listDeploymentCheckRunsPathDeploymentIdSchema as _E, listDeploymentCheckRunsQuerySlugSchema as _F, listDeploymentCheckRunsQueryTeamIdSchema as _G, listDeploymentCheckRunsResponseSchema as _H, listDeploymentCheckRunsStatus200Schema as _I, listDeploymentCheckRunsStatus400Schema as _J, listDeploymentCheckRunsStatus401Schema as _K, listDeploymentCheckRunsStatus403Schema as _L, listDeploymentCheckRunsStatus410Schema as _M, listDeploymentCheckRunsStatus500Schema as _N, listDeploymentFilesErrorSchema as _O, listDeploymentFilesPathIdSchema as _P, listDeploymentFilesQuerySlugSchema as _Q, listDeploymentFilesQueryTeamIdSchema as _R, listDeploymentFilesResponseSchema as _S, listDeploymentFilesStatus200Schema as _T, listDeploymentFilesStatus400Schema as _U, listDeploymentFilesStatus401Schema as _V, listDeploymentFilesStatus403Schema as _W, listDeploymentFilesStatus404Schema as _X, listDeploymentFilesStatus410Schema as _Y, listDrivesErrorSchema as _Z, listDrivesQueryCursorSchema as __, listConnectorsQueryTypeSchema as _a, listConnectorsResponseSchema as _b, listConnectorsStatus200Schema as _c, listConnectorsStatus400Schema as _d, listConnectorsStatus401Schema as _e, listConnectorsStatus403Schema as _f, listConnectorsStatus410Schema as _g, listConnectorsStatus422Schema as _h, listContractCommitmentsErrorSchema as _i, listContractCommitmentsQuerySlugSchema as _j, listContractCommitmentsQueryTeamIdSchema as _k, listContractCommitmentsResponseSchema as _l, listContractCommitmentsStatus200Schema as _m, listContractCommitmentsStatus400Schema as _n, listContractCommitmentsStatus401Schema as _o, listContractCommitmentsStatus403Schema as _p, listContractCommitmentsStatus404Schema as _q, listContractCommitmentsStatus410Schema as _r, listDeploymentAliasesErrorSchema as _s, listDeploymentAliasesPathIdSchema as _t, listDeploymentAliasesQuerySlugSchema as _u, listDeploymentAliasesQueryTeamIdSchema as _v, listDeploymentAliasesResponseSchema as _w, listDeploymentAliasesStatus200Schema as _x, listDeploymentAliasesStatus400Schema as _y, listDeploymentAliasesStatus401Schema as _z, aCLActionSchema as a, aggregatePageviewsStatus200Schema as a$, addProjectMemberPathIdOrNameSchema as a0, listNetworksQuerySearchSchema as a0$, listFlagsQueryWithMetadataSchema as a00, listFlagsResponseSchema as a01, listFlagsStatus200Schema as a02, listFlagsStatus400Schema as a03, listFlagsStatus401Schema as a04, listFlagsStatus402Schema as a05, listFlagsStatus403Schema as a06, listFlagsStatus404Schema as a07, listFlagsStatus410Schema as a08, listFlagsV2ErrorSchema as a09, listKmsIssuersStatus400Schema as a0A, listKmsIssuersStatus401Schema as a0B, listKmsIssuersStatus403Schema as a0C, listKmsIssuersStatus410Schema as a0D, listNamedSandboxesErrorSchema as a0E, listNamedSandboxesQueryCursorSchema as a0F, listNamedSandboxesQueryLimitSchema as a0G, listNamedSandboxesQueryNamePrefixSchema as a0H, listNamedSandboxesQueryProjectSchema as a0I, listNamedSandboxesQuerySlugSchema as a0J, listNamedSandboxesQuerySortBySchema as a0K, listNamedSandboxesQuerySortOrderSchema as a0L, listNamedSandboxesQueryStatusSchema as a0M, listNamedSandboxesQueryTagsSchema as a0N, listNamedSandboxesQueryTeamIdSchema as a0O, listNamedSandboxesResponseSchema as a0P, listNamedSandboxesStatus200Schema as a0Q, listNamedSandboxesStatus400Schema as a0R, listNamedSandboxesStatus401Schema as a0S, listNamedSandboxesStatus403Schema as a0T, listNamedSandboxesStatus404Schema as a0U, listNamedSandboxesStatus410Schema as a0V, listNamedSandboxesStatus429Schema as a0W, listNetworksErrorSchema as a0X, listNetworksQueryIncludeHostedZonesSchema as a0Y, listNetworksQueryIncludePeeringConnectionsSchema as a0Z, listNetworksQueryIncludeProjectsSchema as a0_, listFlagsV2PathProjectIdOrNameSchema as a0a, listFlagsV2QueryCreatedBySchema as a0b, listFlagsV2QueryCursorSchema as a0c, listFlagsV2QueryIncludeMarketplaceFlagsSchema as a0d, listFlagsV2QueryLimitSchema as a0e, listFlagsV2QueryMaintainerIdsSchema as a0f, listFlagsV2QuerySearchSchema as a0g, listFlagsV2QuerySlugSchema as a0h, listFlagsV2QueryStateSchema as a0i, listFlagsV2QueryTagsSchema as a0j, listFlagsV2QueryTeamIdSchema as a0k, listFlagsV2ResponseSchema as a0l, listFlagsV2Status200Schema as a0m, listFlagsV2Status400Schema as a0n, listFlagsV2Status401Schema as a0o, listFlagsV2Status402Schema as a0p, listFlagsV2Status403Schema as a0q, listFlagsV2Status404Schema as a0r, listFlagsV2Status410Schema as a0s, listKmsIssuersErrorSchema as a0t, listKmsIssuersQueryLimitSchema as a0u, listKmsIssuersQueryNextSchema as a0v, listKmsIssuersQuerySlugSchema as a0w, listKmsIssuersQueryTeamIdSchema as a0x, listKmsIssuersResponseSchema as a0y, listKmsIssuersStatus200Schema as a0z, addProjectMemberQuerySlugSchema as a1, listRepositoriesQuerySlugSchema as a1$, listNetworksQuerySlugSchema as a10, listNetworksQueryTeamIdSchema as a11, listNetworksResponseSchema as a12, listNetworksStatus200Schema as a13, listNetworksStatus400Schema as a14, listNetworksStatus401Schema as a15, listNetworksStatus403Schema as a16, listNetworksStatus410Schema as a17, listPrivateLinkEndpointsErrorSchema as a18, listPrivateLinkEndpointsQueryProjectIdSchema as a19, listProjectConnectorConnectionsQueryTeamIdSchema as a1A, listProjectConnectorConnectionsResponseSchema as a1B, listProjectConnectorConnectionsStatus200Schema as a1C, listProjectConnectorConnectionsStatus400Schema as a1D, listProjectConnectorConnectionsStatus401Schema as a1E, listProjectConnectorConnectionsStatus403Schema as a1F, listProjectConnectorConnectionsStatus404Schema as a1G, listProjectConnectorConnectionsStatus410Schema as a1H, listPromoteAliasesErrorSchema as a1I, listPromoteAliasesPathProjectIdSchema as a1J, listPromoteAliasesQueryFailedOnlySchema as a1K, listPromoteAliasesQueryLimitSchema as a1L, listPromoteAliasesQuerySinceSchema as a1M, listPromoteAliasesQuerySlugSchema as a1N, listPromoteAliasesQueryTeamIdSchema as a1O, listPromoteAliasesQueryUntilSchema as a1P, listPromoteAliasesResponseSchema as a1Q, listPromoteAliasesStatus200Schema as a1R, listPromoteAliasesStatus400Schema as a1S, listPromoteAliasesStatus401Schema as a1T, listPromoteAliasesStatus403Schema as a1U, listPromoteAliasesStatus404Schema as a1V, listPromoteAliasesStatus410Schema as a1W, listRepositoriesErrorSchema as a1X, listRepositoriesQueryCursorSchema as a1Y, listRepositoriesQueryLimitSchema as a1Z, listRepositoriesQueryProjectIdSchema as a1_, listPrivateLinkEndpointsQuerySlugSchema as a1a, listPrivateLinkEndpointsQueryTeamIdSchema as a1b, listPrivateLinkEndpointsResponseSchema as a1c, listPrivateLinkEndpointsStatus200Schema as a1d, listPrivateLinkEndpointsStatus400Schema as a1e, listPrivateLinkEndpointsStatus401Schema as a1f, listPrivateLinkEndpointsStatus403Schema as a1g, listPrivateLinkEndpointsStatus404Schema as a1h, listPrivateLinkEndpointsStatus410Schema as a1i, listProjectChecksErrorSchema as a1j, listProjectChecksPathProjectIdOrNameSchema as a1k, listProjectChecksQueryBlocksSchema as a1l, listProjectChecksQuerySlugSchema as a1m, listProjectChecksQueryTeamIdSchema as a1n, listProjectChecksResponseSchema as a1o, listProjectChecksStatus200Schema as a1p, listProjectChecksStatus400Schema as a1q, listProjectChecksStatus401Schema as a1r, listProjectChecksStatus403Schema as a1s, listProjectChecksStatus410Schema as a1t, listProjectChecksStatus500Schema as a1u, listProjectConnectorConnectionsErrorSchema as a1v, listProjectConnectorConnectionsPathProjectIdSchema as a1w, listProjectConnectorConnectionsQueryCursorSchema as a1x, listProjectConnectorConnectionsQueryLimitSchema as a1y, listProjectConnectorConnectionsQuerySlugSchema as a1z, addProjectMemberQueryTeamIdSchema as a2, listSessionCommandsStatus410Schema as a2$, listRepositoriesQueryTeamIdSchema as a20, listRepositoriesResponseSchema as a21, listRepositoriesStatus200Schema as a22, listRepositoriesStatus400Schema as a23, listRepositoriesStatus401Schema as a24, listRepositoriesStatus403Schema as a25, listRepositoriesStatus404Schema as a26, listRepositoriesStatus410Schema as a27, listRepositoryImagesErrorSchema as a28, listRepositoryImagesPathIdOrNameSchema as a29, listRepositoryPermissionsStatus410Schema as a2A, listRepositoryTagsErrorSchema as a2B, listRepositoryTagsPathIdOrNameSchema as a2C, listRepositoryTagsQueryCursorSchema as a2D, listRepositoryTagsQueryLimitSchema as a2E, listRepositoryTagsQueryProjectIdSchema as a2F, listRepositoryTagsQuerySlugSchema as a2G, listRepositoryTagsQuerySortBySchema as a2H, listRepositoryTagsQuerySortOrderSchema as a2I, listRepositoryTagsQueryTeamIdSchema as a2J, listRepositoryTagsResponseSchema as a2K, listRepositoryTagsStatus200Schema as a2L, listRepositoryTagsStatus400Schema as a2M, listRepositoryTagsStatus401Schema as a2N, listRepositoryTagsStatus403Schema as a2O, listRepositoryTagsStatus404Schema as a2P, listRepositoryTagsStatus410Schema as a2Q, listSessionCommandsErrorSchema as a2R, listSessionCommandsPathSessionIdSchema as a2S, listSessionCommandsQuerySlugSchema as a2T, listSessionCommandsQueryTeamIdSchema as a2U, listSessionCommandsResponseSchema as a2V, listSessionCommandsStatus200Schema as a2W, listSessionCommandsStatus400Schema as a2X, listSessionCommandsStatus401Schema as a2Y, listSessionCommandsStatus403Schema as a2Z, listSessionCommandsStatus404Schema as a2_, listRepositoryImagesQueryCursorSchema as a2a, listRepositoryImagesQueryLimitSchema as a2b, listRepositoryImagesQueryProjectIdSchema as a2c, listRepositoryImagesQuerySlugSchema as a2d, listRepositoryImagesQueryTeamIdSchema as a2e, listRepositoryImagesQueryUntaggedSchema as a2f, listRepositoryImagesResponseSchema as a2g, listRepositoryImagesStatus200Schema as a2h, listRepositoryImagesStatus400Schema as a2i, listRepositoryImagesStatus401Schema as a2j, listRepositoryImagesStatus403Schema as a2k, listRepositoryImagesStatus404Schema as a2l, listRepositoryImagesStatus410Schema as a2m, listRepositoryPermissionsErrorSchema as a2n, listRepositoryPermissionsPathIdOrNameSchema as a2o, listRepositoryPermissionsQueryCursorSchema as a2p, listRepositoryPermissionsQueryLimitSchema as a2q, listRepositoryPermissionsQueryProjectIdSchema as a2r, listRepositoryPermissionsQuerySlugSchema as a2s, listRepositoryPermissionsQueryTeamIdSchema as a2t, listRepositoryPermissionsResponseSchema as a2u, listRepositoryPermissionsStatus200Schema as a2v, listRepositoryPermissionsStatus400Schema as a2w, listRepositoryPermissionsStatus401Schema as a2x, listRepositoryPermissionsStatus403Schema as a2y, listRepositoryPermissionsStatus404Schema as a2z, addProjectMemberResponseSchema as a3, listTeamFlagsQueryKindSchema as a3$, listSessionCommandsStatus429Schema as a30, listSessionSnapshotsErrorSchema as a31, listSessionSnapshotsQueryCursorSchema as a32, listSessionSnapshotsQueryLimitSchema as a33, listSessionSnapshotsQueryNameSchema as a34, listSessionSnapshotsQueryProjectSchema as a35, listSessionSnapshotsQuerySlugSchema as a36, listSessionSnapshotsQuerySortOrderSchema as a37, listSessionSnapshotsQueryTeamIdSchema as a38, listSessionSnapshotsResponseSchema as a39, listSharedEnvVariableQueryExcludeProjectIdSchema as a3A, listSharedEnvVariableQueryIdsSchema as a3B, listSharedEnvVariableQueryProjectIdSchema as a3C, listSharedEnvVariableQuerySearchSchema as a3D, listSharedEnvVariableQuerySlugSchema as a3E, listSharedEnvVariableQueryTeamIdSchema as a3F, listSharedEnvVariableResponseSchema as a3G, listSharedEnvVariableStatus200Schema as a3H, listSharedEnvVariableStatus400Schema as a3I, listSharedEnvVariableStatus401Schema as a3J, listSharedEnvVariableStatus403Schema as a3K, listSharedEnvVariableStatus404Schema as a3L, listSharedEnvVariableStatus410Schema as a3M, listTeamFlagSettingsErrorSchema as a3N, listTeamFlagSettingsPathTeamIdSchema as a3O, listTeamFlagSettingsQueryCursorSchema as a3P, listTeamFlagSettingsQueryLimitSchema as a3Q, listTeamFlagSettingsQuerySlugSchema as a3R, listTeamFlagSettingsResponseSchema as a3S, listTeamFlagSettingsStatus200Schema as a3T, listTeamFlagSettingsStatus400Schema as a3U, listTeamFlagSettingsStatus401Schema as a3V, listTeamFlagSettingsStatus403Schema as a3W, listTeamFlagSettingsStatus410Schema as a3X, listTeamFlagsErrorSchema as a3Y, listTeamFlagsPathTeamIdSchema as a3Z, listTeamFlagsQueryCursorSchema as a3_, listSessionSnapshotsStatus200Schema as a3a, listSessionSnapshotsStatus400Schema as a3b, listSessionSnapshotsStatus401Schema as a3c, listSessionSnapshotsStatus403Schema as a3d, listSessionSnapshotsStatus404Schema as a3e, listSessionSnapshotsStatus410Schema as a3f, listSessionSnapshotsStatus429Schema as a3g, listSessionsErrorSchema as a3h, listSessionsQueryCursorSchema as a3i, listSessionsQueryLimitSchema as a3j, listSessionsQueryNameSchema as a3k, listSessionsQueryProjectSchema as a3l, listSessionsQuerySlugSchema as a3m, listSessionsQuerySortOrderSchema as a3n, listSessionsQueryTeamIdSchema as a3o, listSessionsResponseSchema as a3p, listSessionsStatus200Schema as a3q, listSessionsStatus400Schema as a3r, listSessionsStatus401Schema as a3s, listSessionsStatus403Schema as a3t, listSessionsStatus404Schema as a3u, listSessionsStatus410Schema as a3v, listSessionsStatus429Schema as a3w, listSessionsStatus500Schema as a3x, listSharedEnvVariableErrorSchema as a3y, listSharedEnvVariableQueryExcludeIdsSchema as a3z, addProjectMemberStatus200Schema as a4, networkSchema as a4$, listTeamFlagsQueryLimitSchema as a40, listTeamFlagsQuerySearchSchema as a41, listTeamFlagsQuerySlugSchema as a42, listTeamFlagsQueryStateSchema as a43, listTeamFlagsQueryTagsSchema as a44, listTeamFlagsQueryWithMetadataSchema as a45, listTeamFlagsResponseSchema as a46, listTeamFlagsStatus200Schema as a47, listTeamFlagsStatus400Schema as a48, listTeamFlagsStatus401Schema as a49, listUserEventsQuerySlugSchema as a4A, listUserEventsQueryTeamIdSchema as a4B, listUserEventsQueryTypesSchema as a4C, listUserEventsQueryUntilSchema as a4D, listUserEventsQueryUserIdSchema as a4E, listUserEventsQueryWithPayloadSchema as a4F, listUserEventsResponseSchema as a4G, listUserEventsStatus200Schema as a4H, listUserEventsStatus400Schema as a4I, listUserEventsStatus401Schema as a4J, listUserEventsStatus403Schema as a4K, listUserEventsStatus410Schema as a4L, marketplaceFlagSchema as a4M, moveProjectDomainErrorSchema as a4N, moveProjectDomainPathDomainSchema as a4O, moveProjectDomainPathIdOrNameSchema as a4P, moveProjectDomainQuerySlugSchema as a4Q, moveProjectDomainQueryTeamIdSchema as a4R, moveProjectDomainResponseSchema as a4S, moveProjectDomainStatus200Schema as a4T, moveProjectDomainStatus400Schema as a4U, moveProjectDomainStatus401Schema as a4V, moveProjectDomainStatus403Schema as a4W, moveProjectDomainStatus409Schema as a4X, moveProjectDomainStatus410Schema as a4Y, namedSandboxSchema as a4Z, nameserverSchema as a4_, listTeamFlagsStatus403Schema as a4a, listTeamFlagsStatus410Schema as a4b, listTeamFlagsV2ErrorSchema as a4c, listTeamFlagsV2PathTeamIdSchema as a4d, listTeamFlagsV2QueryCreatedBySchema as a4e, listTeamFlagsV2QueryCursorSchema as a4f, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema as a4g, listTeamFlagsV2QueryKindSchema as a4h, listTeamFlagsV2QueryLimitSchema as a4i, listTeamFlagsV2QueryMaintainerIdsSchema as a4j, listTeamFlagsV2QuerySearchSchema as a4k, listTeamFlagsV2QuerySlugSchema as a4l, listTeamFlagsV2QueryStateSchema as a4m, listTeamFlagsV2QueryTagsSchema as a4n, listTeamFlagsV2ResponseSchema as a4o, listTeamFlagsV2Status200Schema as a4p, listTeamFlagsV2Status400Schema as a4q, listTeamFlagsV2Status401Schema as a4r, listTeamFlagsV2Status403Schema as a4s, listTeamFlagsV2Status410Schema as a4t, listUserEventsErrorSchema as a4u, listUserEventsQueryEntityIdSchema as a4v, listUserEventsQueryLimitSchema as a4w, listUserEventsQueryPrincipalIdSchema as a4x, listUserEventsQueryProjectIdsSchema as a4y, listUserEventsQuerySinceSchema as a4z, addProjectMemberStatus400Schema as a5, patchUrlProtectionBypassStatus200Schema as a5$, nonEmptyTrimmedStringSchema as a50, notAuthorizedForScopeSchema as a51, notFoundSchema as a52, orderIdSchema as a53, orderTooExpensiveSchema as a54, paginationSchema as a55, patchDomainErrorSchema as a56, patchDomainPathDomainSchema as a57, patchDomainQuerySlugSchema as a58, patchDomainQueryTeamIdSchema as a59, patchEdgeConfigSchemaQuerySlugSchema as a5A, patchEdgeConfigSchemaQueryTeamIdSchema as a5B, patchEdgeConfigSchemaResponseSchema as a5C, patchEdgeConfigSchemaStatus200Schema as a5D, patchEdgeConfigSchemaStatus400Schema as a5E, patchEdgeConfigSchemaStatus401Schema as a5F, patchEdgeConfigSchemaStatus402Schema as a5G, patchEdgeConfigSchemaStatus403Schema as a5H, patchEdgeConfigSchemaStatus404Schema as a5I, patchEdgeConfigSchemaStatus409Schema as a5J, patchEdgeConfigSchemaStatus410Schema as a5K, patchTeamErrorSchema as a5L, patchTeamPathTeamIdSchema as a5M, patchTeamQuerySlugSchema as a5N, patchTeamResponseSchema as a5O, patchTeamStatus200Schema as a5P, patchTeamStatus400Schema as a5Q, patchTeamStatus401Schema as a5R, patchTeamStatus402Schema as a5S, patchTeamStatus403Schema as a5T, patchTeamStatus410Schema as a5U, patchTeamStatus428Schema as a5V, patchUrlProtectionBypassErrorSchema as a5W, patchUrlProtectionBypassPathIdSchema as a5X, patchUrlProtectionBypassQuerySlugSchema as a5Y, patchUrlProtectionBypassQueryTeamIdSchema as a5Z, patchUrlProtectionBypassResponseSchema as a5_, patchDomainResponseSchema as a5a, patchDomainStatus200Schema as a5b, patchDomainStatus400Schema as a5c, patchDomainStatus401Schema as a5d, patchDomainStatus403Schema as a5e, patchDomainStatus404Schema as a5f, patchDomainStatus409Schema as a5g, patchDomainStatus410Schema as a5h, patchDomainStatus500Schema as a5i, patchEdgeConfigItemsErrorSchema as a5j, patchEdgeConfigItemsPathEdgeConfigIdSchema as a5k, patchEdgeConfigItemsQuerySlugSchema as a5l, patchEdgeConfigItemsQueryTeamIdSchema as a5m, patchEdgeConfigItemsResponseSchema as a5n, patchEdgeConfigItemsStatus200Schema as a5o, patchEdgeConfigItemsStatus400Schema as a5p, patchEdgeConfigItemsStatus401Schema as a5q, patchEdgeConfigItemsStatus402Schema as a5r, patchEdgeConfigItemsStatus403Schema as a5s, patchEdgeConfigItemsStatus404Schema as a5t, patchEdgeConfigItemsStatus409Schema as a5u, patchEdgeConfigItemsStatus410Schema as a5v, patchEdgeConfigItemsStatus412Schema as a5w, patchEdgeConfigSchemaErrorSchema as a5x, patchEdgeConfigSchemaPathEdgeConfigIdSchema as a5y, patchEdgeConfigSchemaQueryDryRunSchema as a5z, addProjectMemberStatus401Schema as a6, readAccessGroupStatus410Schema as a6$, patchUrlProtectionBypassStatus400Schema as a60, patchUrlProtectionBypassStatus401Schema as a61, patchUrlProtectionBypassStatus403Schema as a62, patchUrlProtectionBypassStatus404Schema as a63, patchUrlProtectionBypassStatus409Schema as a64, patchUrlProtectionBypassStatus410Schema as a65, patchUrlProtectionBypassStatus428Schema as a66, pauseProjectErrorSchema as a67, pauseProjectPathProjectIdSchema as a68, pauseProjectQuerySlugSchema as a69, putFirewallConfigStatus401Schema as a6A, putFirewallConfigStatus402Schema as a6B, putFirewallConfigStatus403Schema as a6C, putFirewallConfigStatus404Schema as a6D, putFirewallConfigStatus410Schema as a6E, putFirewallConfigStatus500Schema as a6F, rateLimitNoticeSchema as a6G, readAccessGroupErrorSchema as a6H, readAccessGroupPathIdOrNameSchema as a6I, readAccessGroupProjectErrorSchema as a6J, readAccessGroupProjectPathAccessGroupIdOrNameSchema as a6K, readAccessGroupProjectPathProjectIdSchema as a6L, readAccessGroupProjectQuerySlugSchema as a6M, readAccessGroupProjectQueryTeamIdSchema as a6N, readAccessGroupProjectResponseSchema as a6O, readAccessGroupProjectStatus200Schema as a6P, readAccessGroupProjectStatus400Schema as a6Q, readAccessGroupProjectStatus401Schema as a6R, readAccessGroupProjectStatus403Schema as a6S, readAccessGroupProjectStatus410Schema as a6T, readAccessGroupQuerySlugSchema as a6U, readAccessGroupQueryTeamIdSchema as a6V, readAccessGroupResponseSchema as a6W, readAccessGroupStatus200Schema as a6X, readAccessGroupStatus400Schema as a6Y, readAccessGroupStatus401Schema as a6Z, readAccessGroupStatus403Schema as a6_, pauseProjectQueryTeamIdSchema as a6a, pauseProjectResponseSchema as a6b, pauseProjectStatus200Schema as a6c, pauseProjectStatus400Schema as a6d, pauseProjectStatus401Schema as a6e, pauseProjectStatus403Schema as a6f, pauseProjectStatus410Schema as a6g, pauseProjectStatus500Schema as a6h, postTeamDsyncRolesErrorSchema as a6i, postTeamDsyncRolesPathTeamIdSchema as a6j, postTeamDsyncRolesQuerySlugSchema as a6k, postTeamDsyncRolesResponseSchema as a6l, postTeamDsyncRolesStatus200Schema as a6m, postTeamDsyncRolesStatus400Schema as a6n, postTeamDsyncRolesStatus401Schema as a6o, postTeamDsyncRolesStatus403Schema as a6p, postTeamDsyncRolesStatus410Schema as a6q, privateLinkEndpointSchema as a6r, propertyKeySchema as a6s, putFirewallConfigErrorSchema as a6t, putFirewallConfigQueryProjectIdSchema as a6u, putFirewallConfigQuerySlugSchema as a6v, putFirewallConfigQueryTeamIdSchema as a6w, putFirewallConfigResponseSchema as a6x, putFirewallConfigStatus200Schema as a6y, putFirewallConfigStatus400Schema as a6z, addProjectMemberStatus403Schema as a7, removeCertPathIdSchema as a7$, readNetworkErrorSchema as a70, readNetworkPathNetworkIdSchema as a71, readNetworkQuerySlugSchema as a72, readNetworkQueryTeamIdSchema as a73, readNetworkResponseSchema as a74, readNetworkStatus200Schema as a75, readNetworkStatus400Schema as a76, readNetworkStatus401Schema as a77, readNetworkStatus403Schema as a78, readNetworkStatus410Schema as a79, recordEventsErrorSchema as a7A, recordEventsHeaderXArtifactClientCiSchema as a7B, recordEventsHeaderXArtifactClientInteractiveSchema as a7C, recordEventsQuerySlugSchema as a7D, recordEventsQueryTeamIdSchema as a7E, recordEventsResponseSchema as a7F, recordEventsStatus200Schema as a7G, recordEventsStatus400Schema as a7H, recordEventsStatus401Schema as a7I, recordEventsStatus402Schema as a7J, recordEventsStatus403Schema as a7K, recordEventsStatus410Schema as a7L, registrantFieldSchema as a7M, removeBypassIpErrorSchema as a7N, removeBypassIpQueryProjectIdSchema as a7O, removeBypassIpQuerySlugSchema as a7P, removeBypassIpQueryTeamIdSchema as a7Q, removeBypassIpResponseSchema as a7R, removeBypassIpStatus200Schema as a7S, removeBypassIpStatus400Schema as a7T, removeBypassIpStatus401Schema as a7U, removeBypassIpStatus402Schema as a7V, removeBypassIpStatus403Schema as a7W, removeBypassIpStatus404Schema as a7X, removeBypassIpStatus410Schema as a7Y, removeBypassIpStatus500Schema as a7Z, removeCertErrorSchema as a7_, readPrivateLinkEndpointErrorSchema as a7a, readPrivateLinkEndpointPathEndpointIdSchema as a7b, readPrivateLinkEndpointQueryProjectIdSchema as a7c, readPrivateLinkEndpointQuerySlugSchema as a7d, readPrivateLinkEndpointQueryTeamIdSchema as a7e, readPrivateLinkEndpointResponseSchema as a7f, readPrivateLinkEndpointStatus200Schema as a7g, readPrivateLinkEndpointStatus400Schema as a7h, readPrivateLinkEndpointStatus401Schema as a7i, readPrivateLinkEndpointStatus403Schema as a7j, readPrivateLinkEndpointStatus404Schema as a7k, readPrivateLinkEndpointStatus410Schema as a7l, readSessionFileErrorSchema as a7m, readSessionFilePathSessionIdSchema as a7n, readSessionFileQuerySlugSchema as a7o, readSessionFileQueryTeamIdSchema as a7p, readSessionFileResponseSchema as a7q, readSessionFileStatus200Schema as a7r, readSessionFileStatus400Schema as a7s, readSessionFileStatus401Schema as a7t, readSessionFileStatus403Schema as a7u, readSessionFileStatus404Schema as a7v, readSessionFileStatus410Schema as a7w, readSessionFileStatus422Schema as a7x, readSessionFileStatus429Schema as a7y, readSessionFileStatus500Schema as a7z, addProjectMemberStatus410Schema as a8, removeRecordResponseSchema as a8$, removeCertQuerySlugSchema as a80, removeCertQueryTeamIdSchema as a81, removeCertResponseSchema as a82, removeCertStatus200Schema as a83, removeCertStatus400Schema as a84, removeCertStatus401Schema as a85, removeCertStatus403Schema as a86, removeCertStatus404Schema as a87, removeCertStatus410Schema as a88, removeCustomEnvironmentErrorSchema as a89, removeProjectEnvQueryCustomEnvironmentIdSchema as a8A, removeProjectEnvQuerySlugSchema as a8B, removeProjectEnvQueryTeamIdSchema as a8C, removeProjectEnvResponseSchema as a8D, removeProjectEnvStatus200Schema as a8E, removeProjectEnvStatus400Schema as a8F, removeProjectEnvStatus401Schema as a8G, removeProjectEnvStatus403Schema as a8H, removeProjectEnvStatus404Schema as a8I, removeProjectEnvStatus409Schema as a8J, removeProjectEnvStatus410Schema as a8K, removeProjectMemberErrorSchema as a8L, removeProjectMemberPathIdOrNameSchema as a8M, removeProjectMemberPathUidSchema as a8N, removeProjectMemberQuerySlugSchema as a8O, removeProjectMemberQueryTeamIdSchema as a8P, removeProjectMemberResponseSchema as a8Q, removeProjectMemberStatus200Schema as a8R, removeProjectMemberStatus400Schema as a8S, removeProjectMemberStatus401Schema as a8T, removeProjectMemberStatus403Schema as a8U, removeProjectMemberStatus410Schema as a8V, removeRecordErrorSchema as a8W, removeRecordPathDomainSchema as a8X, removeRecordPathRecordIdSchema as a8Y, removeRecordQuerySlugSchema as a8Z, removeRecordQueryTeamIdSchema as a8_, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema as a8a, removeCustomEnvironmentPathIdOrNameSchema as a8b, removeCustomEnvironmentQuerySlugSchema as a8c, removeCustomEnvironmentQueryTeamIdSchema as a8d, removeCustomEnvironmentResponseSchema as a8e, removeCustomEnvironmentStatus200Schema as a8f, removeCustomEnvironmentStatus400Schema as a8g, removeCustomEnvironmentStatus401Schema as a8h, removeCustomEnvironmentStatus403Schema as a8i, removeCustomEnvironmentStatus410Schema as a8j, removeProjectDomainErrorSchema as a8k, removeProjectDomainPathDomainSchema as a8l, removeProjectDomainPathIdOrNameSchema as a8m, removeProjectDomainQuerySlugSchema as a8n, removeProjectDomainQueryTeamIdSchema as a8o, removeProjectDomainResponseSchema as a8p, removeProjectDomainStatus200Schema as a8q, removeProjectDomainStatus400Schema as a8r, removeProjectDomainStatus401Schema as a8s, removeProjectDomainStatus403Schema as a8t, removeProjectDomainStatus404Schema as a8u, removeProjectDomainStatus409Schema as a8v, removeProjectDomainStatus410Schema as a8w, removeProjectEnvErrorSchema as a8x, removeProjectEnvPathIdOrNameSchema as a8y, removeProjectEnvPathIdSchema as a8z, addProjectMemberStatus500Schema as a9, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as a9$, removeRecordStatus200Schema as a90, removeRecordStatus400Schema as a91, removeRecordStatus401Schema as a92, removeRecordStatus403Schema as a93, removeRecordStatus404Schema as a94, removeRecordStatus410Schema as a95, removeRepositoryPermissionErrorSchema as a96, removeRepositoryPermissionPathIdOrNameSchema as a97, removeRepositoryPermissionQueryProjectIdSchema as a98, removeRepositoryPermissionQuerySlugSchema as a99, renewDomainStatus401Schema as a9A, renewDomainStatus403Schema as a9B, renewDomainStatus404Schema as a9C, renewDomainStatus429Schema as a9D, renewDomainStatus500Schema as a9E, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as a9F, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as a9G, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as a9H, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as a9I, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as a9J, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema as a9K, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as a9L, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema as a9M, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as a9N, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as a9O, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as a9P, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as a9Q, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as a9R, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as a9S, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema as a9T, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as a9U, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as a9V, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as a9W, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as a9X, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as a9Y, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as a9Z, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema as a9_, removeRepositoryPermissionQueryTeamIdSchema as a9a, removeRepositoryPermissionResponseSchema as a9b, removeRepositoryPermissionStatus204Schema as a9c, removeRepositoryPermissionStatus400Schema as a9d, removeRepositoryPermissionStatus401Schema as a9e, removeRepositoryPermissionStatus403Schema as a9f, removeRepositoryPermissionStatus404Schema as a9g, removeRepositoryPermissionStatus410Schema as a9h, removeTeamMemberErrorSchema as a9i, removeTeamMemberPathTeamIdSchema as a9j, removeTeamMemberPathUidSchema as a9k, removeTeamMemberQueryNewDefaultTeamIdSchema as a9l, removeTeamMemberResponseSchema as a9m, removeTeamMemberStatus200Schema as a9n, removeTeamMemberStatus400Schema as a9o, removeTeamMemberStatus401Schema as a9p, removeTeamMemberStatus403Schema as a9q, removeTeamMemberStatus404Schema as a9r, removeTeamMemberStatus410Schema as a9s, removeTeamMemberStatus503Schema as a9t, renewDomainErrorSchema as a9u, renewDomainPathDomainSchema as a9v, renewDomainQueryTeamIdSchema as a9w, renewDomainResponseSchema as a9x, renewDomainStatus200Schema as a9y, renewDomainStatus400Schema as a9z, aggregateEventsQueryBySchema as aA, aggregateEventsQueryFilterSchema as aB, aggregateEventsQueryLimitSchema as aC, aggregateEventsQueryProjectIdSchema as aD, aggregateEventsQuerySinceSchema as aE, aggregateEventsQuerySlugSchema as aF, aggregateEventsQueryTeamIdSchema as aG, aggregateEventsQueryUntilSchema as aH, aggregateEventsResponseSchema as aI, aggregateEventsStatus200Schema as aJ, aggregateEventsStatus400Schema as aK, aggregateEventsStatus401Schema as aL, aggregateEventsStatus402Schema as aM, aggregateEventsStatus403Schema as aN, aggregateEventsStatus404Schema as aO, aggregateEventsStatus410Schema as aP, aggregateEventsStatus503Schema as aQ, aggregatePageviewsErrorSchema as aR, aggregatePageviewsQueryBySchema as aS, aggregatePageviewsQueryFilterSchema as aT, aggregatePageviewsQueryLimitSchema as aU, aggregatePageviewsQueryProjectIdSchema as aV, aggregatePageviewsQuerySinceSchema as aW, aggregatePageviewsQuerySlugSchema as aX, aggregatePageviewsQueryTeamIdSchema as aY, aggregatePageviewsQueryUntilSchema as aZ, aggregatePageviewsResponseSchema as a_, addRepositoryPermissionErrorSchema as aa, requestPromoteQuerySlugSchema as aa$, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as aa0, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as aa1, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as aa2, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as aa3, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as aa4, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema as aa5, replaceConnectorTriggerDestinationsErrorSchema as aa6, replaceConnectorTriggerDestinationsPathConnectorSchema as aa7, replaceConnectorTriggerDestinationsQuerySlugSchema as aa8, replaceConnectorTriggerDestinationsQueryTeamIdSchema as aa9, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema as aaA, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema as aaB, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema as aaC, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema as aaD, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema as aaE, requestAccessToTeamErrorSchema as aaF, requestAccessToTeamPathTeamIdSchema as aaG, requestAccessToTeamResponseSchema as aaH, requestAccessToTeamStatus200Schema as aaI, requestAccessToTeamStatus400Schema as aaJ, requestAccessToTeamStatus401Schema as aaK, requestAccessToTeamStatus403Schema as aaL, requestAccessToTeamStatus404Schema as aaM, requestAccessToTeamStatus410Schema as aaN, requestAccessToTeamStatus429Schema as aaO, requestAccessToTeamStatus503Schema as aaP, requestDeleteErrorSchema as aaQ, requestDeleteResponseSchema as aaR, requestDeleteStatus202Schema as aaS, requestDeleteStatus400Schema as aaT, requestDeleteStatus401Schema as aaU, requestDeleteStatus402Schema as aaV, requestDeleteStatus403Schema as aaW, requestDeleteStatus410Schema as aaX, requestPromoteErrorSchema as aaY, requestPromotePathDeploymentIdSchema as aaZ, requestPromotePathProjectIdSchema as aa_, replaceConnectorTriggerDestinationsResponseSchema as aaa, replaceConnectorTriggerDestinationsStatus200Schema as aab, replaceConnectorTriggerDestinationsStatus400Schema as aac, replaceConnectorTriggerDestinationsStatus401Schema as aad, replaceConnectorTriggerDestinationsStatus403Schema as aae, replaceConnectorTriggerDestinationsStatus404Schema as aaf, replaceConnectorTriggerDestinationsStatus410Schema as aag, replaceConnectorTriggerDestinationsStatus422Schema as aah, replaceDomainsByDomainRecordsErrorSchema as aai, replaceDomainsByDomainRecordsPathDomainSchema as aaj, replaceDomainsByDomainRecordsResponseSchema as aak, replaceDomainsByDomainRecordsStatus200Schema as aal, replaceDomainsByDomainRecordsStatus400Schema as aam, replaceDomainsByDomainRecordsStatus401Schema as aan, replaceDomainsByDomainRecordsStatus403Schema as aao, replaceDomainsByDomainRecordsStatus404Schema as aap, replaceDomainsByDomainRecordsStatus409Schema as aaq, replaceDomainsByDomainRecordsStatus410Schema as aar, replaceDomainsByDomainRecordsStatus415Schema as aas, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema as aat, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema as aau, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema as aav, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema as aaw, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema as aax, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema as aay, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema as aaz, addRepositoryPermissionPathIdOrNameSchema as ab, restoreRedirectsStatus410Schema as ab$, requestPromoteQueryTeamIdSchema as ab0, requestPromoteResponseSchema as ab1, requestPromoteStatus201Schema as ab2, requestPromoteStatus202Schema as ab3, requestPromoteStatus400Schema as ab4, requestPromoteStatus401Schema as ab5, requestPromoteStatus403Schema as ab6, requestPromoteStatus409Schema as ab7, requestPromoteStatus410Schema as ab8, requestPromoteStatus422Schema as ab9, rerequestCheckStatus404Schema as abA, rerequestCheckStatus410Schema as abB, restoreEdgeConfigBackupErrorSchema as abC, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema as abD, restoreEdgeConfigBackupPathEdgeConfigIdSchema as abE, restoreEdgeConfigBackupQuerySlugSchema as abF, restoreEdgeConfigBackupQueryTeamIdSchema as abG, restoreEdgeConfigBackupResponseSchema as abH, restoreEdgeConfigBackupStatus200Schema as abI, restoreEdgeConfigBackupStatus400Schema as abJ, restoreEdgeConfigBackupStatus401Schema as abK, restoreEdgeConfigBackupStatus402Schema as abL, restoreEdgeConfigBackupStatus403Schema as abM, restoreEdgeConfigBackupStatus404Schema as abN, restoreEdgeConfigBackupStatus409Schema as abO, restoreEdgeConfigBackupStatus410Schema as abP, restoreEdgeConfigBackupStatus412Schema as abQ, restoreRedirectsErrorSchema as abR, restoreRedirectsQueryProjectIdSchema as abS, restoreRedirectsQuerySlugSchema as abT, restoreRedirectsQueryTeamIdSchema as abU, restoreRedirectsResponseSchema as abV, restoreRedirectsStatus200Schema as abW, restoreRedirectsStatus400Schema as abX, restoreRedirectsStatus401Schema as abY, restoreRedirectsStatus403Schema as abZ, restoreRedirectsStatus404Schema as ab_, requestRollbackErrorSchema as aba, requestRollbackPathDeploymentIdSchema as abb, requestRollbackPathProjectIdSchema as abc, requestRollbackQueryDescriptionSchema as abd, requestRollbackQuerySlugSchema as abe, requestRollbackQueryTeamIdSchema as abf, requestRollbackResponseSchema as abg, requestRollbackStatus201Schema as abh, requestRollbackStatus400Schema as abi, requestRollbackStatus401Schema as abj, requestRollbackStatus402Schema as abk, requestRollbackStatus403Schema as abl, requestRollbackStatus409Schema as abm, requestRollbackStatus410Schema as abn, requestRollbackStatus422Schema as abo, rerequestCheckErrorSchema as abp, rerequestCheckPathCheckIdSchema as abq, rerequestCheckPathDeploymentIdSchema as abr, rerequestCheckQueryAutoUpdateSchema as abs, rerequestCheckQuerySlugSchema as abt, rerequestCheckQueryTeamIdSchema as abu, rerequestCheckResponseSchema as abv, rerequestCheckStatus200Schema as abw, rerequestCheckStatus400Schema as abx, rerequestCheckStatus401Schema as aby, rerequestCheckStatus403Schema as abz, addRepositoryPermissionQueryProjectIdSchema as ac, searchRepoStatus401Schema as ac$, restoreRedirectsStatus500Schema as ac0, revokeInstallationCredentialErrorSchema as ac1, revokeInstallationCredentialPathIntegrationConfigurationIdSchema as ac2, revokeInstallationCredentialResponseSchema as ac3, revokeInstallationCredentialStatus200Schema as ac4, revokeInstallationCredentialStatus400Schema as ac5, revokeInstallationCredentialStatus401Schema as ac6, revokeInstallationCredentialStatus403Schema as ac7, revokeInstallationCredentialStatus404Schema as ac8, revokeInstallationCredentialStatus409Schema as ac9, runSessionCommandQueryCmdIdSchema as acA, runSessionCommandQuerySlugSchema as acB, runSessionCommandQueryTeamIdSchema as acC, runSessionCommandResponseSchema as acD, runSessionCommandStatus200Schema as acE, runSessionCommandStatus400Schema as acF, runSessionCommandStatus401Schema as acG, runSessionCommandStatus403Schema as acH, runSessionCommandStatus404Schema as acI, runSessionCommandStatus410Schema as acJ, runSessionCommandStatus422Schema as acK, runSessionCommandStatus429Schema as acL, runSessionCommandStatus500Schema as acM, sandboxInjectionRuleSchema as acN, sandboxNetworkPolicySchema as acO, sandboxPublicRouteSchema as acP, searchRepoErrorSchema as acQ, searchRepoQueryHostSchema as acR, searchRepoQueryInstallationIdSchema as acS, searchRepoQueryNamespaceIdSchema as acT, searchRepoQueryProviderSchema as acU, searchRepoQueryQuerySchema as acV, searchRepoQuerySlugSchema as acW, searchRepoQueryTeamIdSchema as acX, searchRepoResponseSchema as acY, searchRepoStatus200Schema as acZ, searchRepoStatus400Schema as ac_, revokeInstallationCredentialStatus410Schema as aca, revokeKmsSigningKeyErrorSchema as acb, revokeKmsSigningKeyPathIssuerIdSchema as acc, revokeKmsSigningKeyPathKeyIdSchema as acd, revokeKmsSigningKeyQuerySlugSchema as ace, revokeKmsSigningKeyQueryTeamIdSchema as acf, revokeKmsSigningKeyResponseSchema as acg, revokeKmsSigningKeyStatus200Schema as ach, revokeKmsSigningKeyStatus400Schema as aci, revokeKmsSigningKeyStatus401Schema as acj, revokeKmsSigningKeyStatus403Schema as ack, revokeKmsSigningKeyStatus404Schema as acl, revokeKmsSigningKeyStatus409Schema as acm, revokeKmsSigningKeyStatus410Schema as acn, rotateInstallationCredentialErrorSchema as aco, rotateInstallationCredentialPathIntegrationConfigurationIdSchema as acp, rotateInstallationCredentialResponseSchema as acq, rotateInstallationCredentialStatus200Schema as acr, rotateInstallationCredentialStatus400Schema as acs, rotateInstallationCredentialStatus401Schema as act, rotateInstallationCredentialStatus403Schema as acu, rotateInstallationCredentialStatus404Schema as acv, rotateInstallationCredentialStatus409Schema as acw, rotateInstallationCredentialStatus410Schema as acx, runSessionCommandErrorSchema as acy, runSessionCommandPathSessionIdSchema as acz, addRepositoryPermissionQuerySlugSchema as ad, statusErrorSchema as ad$, searchRepoStatus403Schema as ad0, searchRepoStatus404Schema as ad1, searchRepoStatus410Schema as ad2, searchRepoStatus429Schema as ad3, searchRepoStatus500Schema as ad4, searchRepoStatus502Schema as ad5, segmentSchema as ad6, sessionCommandSchema as ad7, sessionSchema as ad8, signKmsMessageErrorSchema as ad9, stageRedirectsStatus410Schema as adA, stageRedirectsStatus500Schema as adB, stageRoutesErrorSchema as adC, stageRoutesPathProjectIdSchema as adD, stageRoutesQuerySlugSchema as adE, stageRoutesQueryTeamIdSchema as adF, stageRoutesResponseSchema as adG, stageRoutesStatus200Schema as adH, stageRoutesStatus400Schema as adI, stageRoutesStatus401Schema as adJ, stageRoutesStatus403Schema as adK, stageRoutesStatus409Schema as adL, stageRoutesStatus410Schema as adM, stageRoutesStatus500Schema as adN, startRollingReleaseErrorSchema as adO, startRollingReleasePathIdOrNameSchema as adP, startRollingReleaseQuerySlugSchema as adQ, startRollingReleaseQueryTeamIdSchema as adR, startRollingReleaseResponseSchema as adS, startRollingReleaseStatus200Schema as adT, startRollingReleaseStatus400Schema as adU, startRollingReleaseStatus401Schema as adV, startRollingReleaseStatus403Schema as adW, startRollingReleaseStatus404Schema as adX, startRollingReleaseStatus409Schema as adY, startRollingReleaseStatus410Schema as adZ, startRollingReleaseStatus422Schema as ad_, signKmsMessagePathIssuerIdSchema as ada, signKmsMessageResponseSchema as adb, signKmsMessageStatus200Schema as adc, signKmsMessageStatus400Schema as add, signKmsMessageStatus401Schema as ade, signKmsMessageStatus403Schema as adf, signKmsMessageStatus404Schema as adg, signKmsMessageStatus429Schema as adh, signKmsTokenErrorSchema as adi, signKmsTokenPathIssuerIdSchema as adj, signKmsTokenResponseSchema as adk, signKmsTokenStatus200Schema as adl, signKmsTokenStatus400Schema as adm, signKmsTokenStatus401Schema as adn, signKmsTokenStatus403Schema as ado, signKmsTokenStatus404Schema as adp, signKmsTokenStatus429Schema as adq, snapshotSchema as adr, stageRedirectsErrorSchema as ads, stageRedirectsQuerySlugSchema as adt, stageRedirectsQueryTeamIdSchema as adu, stageRedirectsResponseSchema as adv, stageRedirectsStatus200Schema as adw, stageRedirectsStatus400Schema as adx, stageRedirectsStatus401Schema as ady, stageRedirectsStatus403Schema as adz, addRepositoryPermissionQueryTeamIdSchema as ae, tldNameSchema as ae$, statusQuerySlugSchema as ae0, statusQueryTeamIdSchema as ae1, statusResponseSchema as ae2, statusStatus200Schema as ae3, statusStatus400Schema as ae4, statusStatus401Schema as ae5, statusStatus402Schema as ae6, statusStatus403Schema as ae7, statusStatus410Schema as ae8, stopSessionErrorSchema as ae9, submitInvoiceStatus400Schema as aeA, submitInvoiceStatus401Schema as aeB, submitInvoiceStatus403Schema as aeC, submitInvoiceStatus404Schema as aeD, submitInvoiceStatus409Schema as aeE, submitInvoiceStatus410Schema as aeF, submitPrepaymentBalancesErrorSchema as aeG, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema as aeH, submitPrepaymentBalancesResponseSchema as aeI, submitPrepaymentBalancesStatus201Schema as aeJ, submitPrepaymentBalancesStatus400Schema as aeK, submitPrepaymentBalancesStatus401Schema as aeL, submitPrepaymentBalancesStatus403Schema as aeM, submitPrepaymentBalancesStatus404Schema as aeN, submitPrepaymentBalancesStatus410Schema as aeO, teamLimitedSchema as aeP, teamSchema as aeQ, testDrainErrorSchema as aeR, testDrainQuerySlugSchema as aeS, testDrainQueryTeamIdSchema as aeT, testDrainResponseSchema as aeU, testDrainStatus200Schema as aeV, testDrainStatus400Schema as aeW, testDrainStatus401Schema as aeX, testDrainStatus402Schema as aeY, testDrainStatus403Schema as aeZ, testDrainStatus410Schema as ae_, stopSessionPathSessionIdSchema as aea, stopSessionQuerySlugSchema as aeb, stopSessionQueryTeamIdSchema as aec, stopSessionResponseSchema as aed, stopSessionStatus200Schema as aee, stopSessionStatus400Schema as aef, stopSessionStatus401Schema as aeg, stopSessionStatus403Schema as aeh, stopSessionStatus404Schema as aei, stopSessionStatus410Schema as aej, stopSessionStatus422Schema as aek, stopSessionStatus429Schema as ael, stopSessionStatus500Schema as aem, submitBillingDataErrorSchema as aen, submitBillingDataPathIntegrationConfigurationIdSchema as aeo, submitBillingDataResponseSchema as aep, submitBillingDataStatus201Schema as aeq, submitBillingDataStatus400Schema as aer, submitBillingDataStatus401Schema as aes, submitBillingDataStatus403Schema as aet, submitBillingDataStatus404Schema as aeu, submitBillingDataStatus410Schema as aev, submitInvoiceErrorSchema as aew, submitInvoicePathIntegrationConfigurationIdSchema as aex, submitInvoiceResponseSchema as aey, submitInvoiceStatus200Schema as aez, addRepositoryPermissionResponseSchema as af, updateAiGatewayRuleStatus401Schema as af$, tldNotSupportedSchema as af0, tooManyDomainsSchema as af1, tooManyRequestsSchema as af2, transferInDomainErrorSchema as af3, transferInDomainPathDomainSchema as af4, transferInDomainQueryTeamIdSchema as af5, transferInDomainResponseSchema as af6, transferInDomainStatus200Schema as af7, transferInDomainStatus400Schema as af8, transferInDomainStatus401Schema as af9, updateAccessGroupErrorSchema as afA, updateAccessGroupPathIdOrNameSchema as afB, updateAccessGroupProjectErrorSchema as afC, updateAccessGroupProjectPathAccessGroupIdOrNameSchema as afD, updateAccessGroupProjectPathProjectIdSchema as afE, updateAccessGroupProjectQuerySlugSchema as afF, updateAccessGroupProjectQueryTeamIdSchema as afG, updateAccessGroupProjectResponseSchema as afH, updateAccessGroupProjectStatus200Schema as afI, updateAccessGroupProjectStatus400Schema as afJ, updateAccessGroupProjectStatus401Schema as afK, updateAccessGroupProjectStatus403Schema as afL, updateAccessGroupProjectStatus410Schema as afM, updateAccessGroupQuerySlugSchema as afN, updateAccessGroupQueryTeamIdSchema as afO, updateAccessGroupResponseSchema as afP, updateAccessGroupStatus200Schema as afQ, updateAccessGroupStatus400Schema as afR, updateAccessGroupStatus401Schema as afS, updateAccessGroupStatus403Schema as afT, updateAccessGroupStatus410Schema as afU, updateAiGatewayRuleErrorSchema as afV, updateAiGatewayRuleQuerySlugSchema as afW, updateAiGatewayRuleQueryTeamIdSchema as afX, updateAiGatewayRuleResponseSchema as afY, updateAiGatewayRuleStatus200Schema as afZ, updateAiGatewayRuleStatus400Schema as af_, transferInDomainStatus403Schema as afa, transferInDomainStatus429Schema as afb, transferInDomainStatus500Schema as afc, unauthorizedSchema as afd, unlinkSharedEnvVariableErrorSchema as afe, unlinkSharedEnvVariablePathIdSchema as aff, unlinkSharedEnvVariablePathProjectIdSchema as afg, unlinkSharedEnvVariableQuerySlugSchema as afh, unlinkSharedEnvVariableQueryTeamIdSchema as afi, unlinkSharedEnvVariableResponseSchema as afj, unlinkSharedEnvVariableStatus200Schema as afk, unlinkSharedEnvVariableStatus400Schema as afl, unlinkSharedEnvVariableStatus401Schema as afm, unlinkSharedEnvVariableStatus403Schema as afn, unlinkSharedEnvVariableStatus410Schema as afo, unpauseProjectErrorSchema as afp, unpauseProjectPathProjectIdSchema as afq, unpauseProjectQuerySlugSchema as afr, unpauseProjectQueryTeamIdSchema as afs, unpauseProjectResponseSchema as aft, unpauseProjectStatus200Schema as afu, unpauseProjectStatus400Schema as afv, unpauseProjectStatus401Schema as afw, unpauseProjectStatus403Schema as afx, unpauseProjectStatus410Schema as afy, unpauseProjectStatus500Schema as afz, addRepositoryPermissionStatus200Schema as ag, updateCheckStatus413Schema as ag$, updateAiGatewayRuleStatus403Schema as ag0, updateAiGatewayRuleStatus404Schema as ag1, updateAiGatewayRuleStatus410Schema as ag2, updateAiGatewayRuleStatus500Schema as ag3, updateAiGatewayVirtualModelConfigBySlugErrorSchema as ag4, updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema as ag5, updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema as ag6, updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema as ag7, updateAiGatewayVirtualModelConfigBySlugResponseSchema as ag8, updateAiGatewayVirtualModelConfigBySlugStatus200Schema as ag9, updateAttackChallengeModeStatus410Schema as agA, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as agB, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as agC, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as agD, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as agE, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as agF, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as agG, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema as agH, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as agI, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as agJ, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as agK, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as agL, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as agM, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as agN, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema as agO, updateCheckErrorSchema as agP, updateCheckPathCheckIdSchema as agQ, updateCheckPathDeploymentIdSchema as agR, updateCheckQuerySlugSchema as agS, updateCheckQueryTeamIdSchema as agT, updateCheckResponseSchema as agU, updateCheckStatus200Schema as agV, updateCheckStatus400Schema as agW, updateCheckStatus401Schema as agX, updateCheckStatus403Schema as agY, updateCheckStatus404Schema as agZ, updateCheckStatus410Schema as ag_, updateAiGatewayVirtualModelConfigBySlugStatus400Schema as aga, updateAiGatewayVirtualModelConfigBySlugStatus401Schema as agb, updateAiGatewayVirtualModelConfigBySlugStatus403Schema as agc, updateAiGatewayVirtualModelConfigBySlugStatus404Schema as agd, updateAiGatewayVirtualModelConfigBySlugStatus410Schema as age, updateAiGatewayVirtualModelConfigBySlugStatus500Schema as agf, updateAiGatewayVirtualModelConfigErrorSchema as agg, updateAiGatewayVirtualModelConfigQuerySlugSchema as agh, updateAiGatewayVirtualModelConfigQueryTeamIdSchema as agi, updateAiGatewayVirtualModelConfigResponseSchema as agj, updateAiGatewayVirtualModelConfigStatus200Schema as agk, updateAiGatewayVirtualModelConfigStatus400Schema as agl, updateAiGatewayVirtualModelConfigStatus401Schema as agm, updateAiGatewayVirtualModelConfigStatus403Schema as agn, updateAiGatewayVirtualModelConfigStatus404Schema as ago, updateAiGatewayVirtualModelConfigStatus410Schema as agp, updateAiGatewayVirtualModelConfigStatus500Schema as agq, updateAttackChallengeModeErrorSchema as agr, updateAttackChallengeModeQuerySlugSchema as ags, updateAttackChallengeModeQueryTeamIdSchema as agt, updateAttackChallengeModeResponseSchema as agu, updateAttackChallengeModeStatus200Schema as agv, updateAttackChallengeModeStatus400Schema as agw, updateAttackChallengeModeStatus401Schema as agx, updateAttackChallengeModeStatus403Schema as agy, updateAttackChallengeModeStatus404Schema as agz, addRepositoryPermissionStatus400Schema as ah, updateDrainPathIdSchema as ah$, updateConnectorErrorSchema as ah0, updateConnectorPathConnectorSchema as ah1, updateConnectorQuerySlugSchema as ah2, updateConnectorQueryTeamIdSchema as ah3, updateConnectorResponseSchema as ah4, updateConnectorStatus200Schema as ah5, updateConnectorStatus400Schema as ah6, updateConnectorStatus401Schema as ah7, updateConnectorStatus403Schema as ah8, updateConnectorStatus404Schema as ah9, updateDeploymentCheckRunStatus403Schema as ahA, updateDeploymentCheckRunStatus410Schema as ahB, updateDeploymentCheckRunStatus413Schema as ahC, updateDeploymentCheckRunStatus500Schema as ahD, updateDomainAutoRenewErrorSchema as ahE, updateDomainAutoRenewPathDomainSchema as ahF, updateDomainAutoRenewQueryTeamIdSchema as ahG, updateDomainAutoRenewResponseSchema as ahH, updateDomainAutoRenewStatus204Schema as ahI, updateDomainAutoRenewStatus400Schema as ahJ, updateDomainAutoRenewStatus401Schema as ahK, updateDomainAutoRenewStatus403Schema as ahL, updateDomainAutoRenewStatus404Schema as ahM, updateDomainAutoRenewStatus429Schema as ahN, updateDomainAutoRenewStatus500Schema as ahO, updateDomainNameserversErrorSchema as ahP, updateDomainNameserversPathDomainSchema as ahQ, updateDomainNameserversQueryTeamIdSchema as ahR, updateDomainNameserversResponseSchema as ahS, updateDomainNameserversStatus204Schema as ahT, updateDomainNameserversStatus400Schema as ahU, updateDomainNameserversStatus401Schema as ahV, updateDomainNameserversStatus403Schema as ahW, updateDomainNameserversStatus404Schema as ahX, updateDomainNameserversStatus429Schema as ahY, updateDomainNameserversStatus500Schema as ahZ, updateDrainErrorSchema as ah_, updateConnectorStatus409Schema as aha, updateConnectorStatus410Schema as ahb, updateConnectorStatus422Schema as ahc, updateConnectorStatus502Schema as ahd, updateCustomEnvironmentErrorSchema as ahe, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema as ahf, updateCustomEnvironmentPathIdOrNameSchema as ahg, updateCustomEnvironmentQuerySlugSchema as ahh, updateCustomEnvironmentQueryTeamIdSchema as ahi, updateCustomEnvironmentResponseSchema as ahj, updateCustomEnvironmentStatus200Schema as ahk, updateCustomEnvironmentStatus400Schema as ahl, updateCustomEnvironmentStatus401Schema as ahm, updateCustomEnvironmentStatus402Schema as ahn, updateCustomEnvironmentStatus403Schema as aho, updateCustomEnvironmentStatus410Schema as ahp, updateCustomEnvironmentStatus500Schema as ahq, updateDeploymentCheckRunErrorSchema as ahr, updateDeploymentCheckRunPathCheckRunIdSchema as ahs, updateDeploymentCheckRunPathDeploymentIdSchema as aht, updateDeploymentCheckRunQuerySlugSchema as ahu, updateDeploymentCheckRunQueryTeamIdSchema as ahv, updateDeploymentCheckRunResponseSchema as ahw, updateDeploymentCheckRunStatus200Schema as ahx, updateDeploymentCheckRunStatus400Schema as ahy, updateDeploymentCheckRunStatus401Schema as ahz, addRepositoryPermissionStatus401Schema as ai, updateFlagSettingsResponseSchema as ai$, updateDrainQuerySlugSchema as ai0, updateDrainQueryTeamIdSchema as ai1, updateDrainResponseSchema as ai2, updateDrainStatus200Schema as ai3, updateDrainStatus400Schema as ai4, updateDrainStatus401Schema as ai5, updateDrainStatus402Schema as ai6, updateDrainStatus403Schema as ai7, updateDrainStatus404Schema as ai8, updateDrainStatus410Schema as ai9, updateFlagErrorSchema as aiA, updateFlagPathFlagIdOrSlugSchema as aiB, updateFlagPathProjectIdOrNameSchema as aiC, updateFlagQueryIfMatchSchema as aiD, updateFlagQuerySlugSchema as aiE, updateFlagQueryTeamIdSchema as aiF, updateFlagQueryWithMetadataSchema as aiG, updateFlagResponseSchema as aiH, updateFlagSegmentErrorSchema as aiI, updateFlagSegmentPathProjectIdOrNameSchema as aiJ, updateFlagSegmentPathSegmentIdOrSlugSchema as aiK, updateFlagSegmentQuerySlugSchema as aiL, updateFlagSegmentQueryTeamIdSchema as aiM, updateFlagSegmentQueryWithMetadataSchema as aiN, updateFlagSegmentResponseSchema as aiO, updateFlagSegmentStatus200Schema as aiP, updateFlagSegmentStatus400Schema as aiQ, updateFlagSegmentStatus401Schema as aiR, updateFlagSegmentStatus402Schema as aiS, updateFlagSegmentStatus403Schema as aiT, updateFlagSegmentStatus404Schema as aiU, updateFlagSegmentStatus409Schema as aiV, updateFlagSegmentStatus410Schema as aiW, updateFlagSettingsErrorSchema as aiX, updateFlagSettingsPathProjectIdOrNameSchema as aiY, updateFlagSettingsQuerySlugSchema as aiZ, updateFlagSettingsQueryTeamIdSchema as ai_, updateEdgeConfigErrorSchema as aia, updateEdgeConfigPathEdgeConfigIdSchema as aib, updateEdgeConfigQuerySlugSchema as aic, updateEdgeConfigQueryTeamIdSchema as aid, updateEdgeConfigResponseSchema as aie, updateEdgeConfigStatus200Schema as aif, updateEdgeConfigStatus400Schema as aig, updateEdgeConfigStatus401Schema as aih, updateEdgeConfigStatus402Schema as aii, updateEdgeConfigStatus403Schema as aij, updateEdgeConfigStatus404Schema as aik, updateEdgeConfigStatus409Schema as ail, updateEdgeConfigStatus410Schema as aim, updateFirewallConfigErrorSchema as ain, updateFirewallConfigQueryProjectIdSchema as aio, updateFirewallConfigQuerySlugSchema as aip, updateFirewallConfigQueryTeamIdSchema as aiq, updateFirewallConfigResponseSchema as air, updateFirewallConfigStatus200Schema as ais, updateFirewallConfigStatus400Schema as ait, updateFirewallConfigStatus401Schema as aiu, updateFirewallConfigStatus402Schema as aiv, updateFirewallConfigStatus403Schema as aiw, updateFirewallConfigStatus404Schema as aix, updateFirewallConfigStatus410Schema as aiy, updateFirewallConfigStatus500Schema as aiz, addRepositoryPermissionStatus403Schema as aj, updateKmsIssuerPolicyPathIssuerIdSchema as aj$, updateFlagSettingsStatus200Schema as aj0, updateFlagSettingsStatus201Schema as aj1, updateFlagSettingsStatus400Schema as aj2, updateFlagSettingsStatus401Schema as aj3, updateFlagSettingsStatus402Schema as aj4, updateFlagSettingsStatus403Schema as aj5, updateFlagSettingsStatus404Schema as aj6, updateFlagSettingsStatus409Schema as aj7, updateFlagSettingsStatus410Schema as aj8, updateFlagStatus200Schema as aj9, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema as ajA, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema as ajB, updateIntegrationDeploymentActionErrorSchema as ajC, updateIntegrationDeploymentActionPathActionSchema as ajD, updateIntegrationDeploymentActionPathDeploymentIdSchema as ajE, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema as ajF, updateIntegrationDeploymentActionPathResourceIdSchema as ajG, updateIntegrationDeploymentActionResponseSchema as ajH, updateIntegrationDeploymentActionStatus202Schema as ajI, updateIntegrationDeploymentActionStatus400Schema as ajJ, updateIntegrationDeploymentActionStatus401Schema as ajK, updateIntegrationDeploymentActionStatus403Schema as ajL, updateIntegrationDeploymentActionStatus410Schema as ajM, updateInvoiceErrorSchema as ajN, updateInvoicePathIntegrationConfigurationIdSchema as ajO, updateInvoicePathInvoiceIdSchema as ajP, updateInvoiceResponseSchema as ajQ, updateInvoiceStatus204Schema as ajR, updateInvoiceStatus400Schema as ajS, updateInvoiceStatus401Schema as ajT, updateInvoiceStatus403Schema as ajU, updateInvoiceStatus404Schema as ajV, updateInvoiceStatus409Schema as ajW, updateInvoiceStatus410Schema as ajX, updateKmsIssuerErrorSchema as ajY, updateKmsIssuerPathIssuerIdSchema as ajZ, updateKmsIssuerPolicyErrorSchema as aj_, updateFlagStatus304Schema as aja, updateFlagStatus400Schema as ajb, updateFlagStatus401Schema as ajc, updateFlagStatus402Schema as ajd, updateFlagStatus403Schema as aje, updateFlagStatus404Schema as ajf, updateFlagStatus409Schema as ajg, updateFlagStatus410Schema as ajh, updateInstallationErrorSchema as aji, updateInstallationPathIntegrationConfigurationIdSchema as ajj, updateInstallationResponseSchema as ajk, updateInstallationStatus204Schema as ajl, updateInstallationStatus400Schema as ajm, updateInstallationStatus401Schema as ajn, updateInstallationStatus403Schema as ajo, updateInstallationStatus404Schema as ajp, updateInstallationStatus410Schema as ajq, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema as ajr, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema as ajs, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema as ajt, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema as aju, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema as ajv, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema as ajw, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema as ajx, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema as ajy, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema as ajz, addRepositoryPermissionStatus404Schema as ak, updateObservabilityConfigurationProjectStatus410Schema as ak$, updateKmsIssuerPolicyPathKindSchema as ak0, updateKmsIssuerPolicyPathPolicyKeySchema as ak1, updateKmsIssuerPolicyQuerySlugSchema as ak2, updateKmsIssuerPolicyQueryTeamIdSchema as ak3, updateKmsIssuerPolicyResponseSchema as ak4, updateKmsIssuerPolicyStatus200Schema as ak5, updateKmsIssuerPolicyStatus400Schema as ak6, updateKmsIssuerPolicyStatus401Schema as ak7, updateKmsIssuerPolicyStatus403Schema as ak8, updateKmsIssuerPolicyStatus404Schema as ak9, updateMicrofrontendsStatus200Schema as akA, updateMicrofrontendsStatus400Schema as akB, updateMicrofrontendsStatus401Schema as akC, updateMicrofrontendsStatus403Schema as akD, updateMicrofrontendsStatus409Schema as akE, updateMicrofrontendsStatus410Schema as akF, updateMicrofrontendsStatus500Schema as akG, updateNetworkErrorSchema as akH, updateNetworkPathNetworkIdSchema as akI, updateNetworkQuerySlugSchema as akJ, updateNetworkQueryTeamIdSchema as akK, updateNetworkResponseSchema as akL, updateNetworkStatus200Schema as akM, updateNetworkStatus400Schema as akN, updateNetworkStatus401Schema as akO, updateNetworkStatus403Schema as akP, updateNetworkStatus410Schema as akQ, updateObservabilityConfigurationProjectErrorSchema as akR, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema as akS, updateObservabilityConfigurationProjectQuerySlugSchema as akT, updateObservabilityConfigurationProjectQueryTeamIdSchema as akU, updateObservabilityConfigurationProjectResponseSchema as akV, updateObservabilityConfigurationProjectStatus200Schema as akW, updateObservabilityConfigurationProjectStatus400Schema as akX, updateObservabilityConfigurationProjectStatus401Schema as akY, updateObservabilityConfigurationProjectStatus403Schema as akZ, updateObservabilityConfigurationProjectStatus404Schema as ak_, updateKmsIssuerPolicyStatus410Schema as aka, updateKmsIssuerQuerySlugSchema as akb, updateKmsIssuerQueryTeamIdSchema as akc, updateKmsIssuerResponseSchema as akd, updateKmsIssuerStatus200Schema as ake, updateKmsIssuerStatus400Schema as akf, updateKmsIssuerStatus401Schema as akg, updateKmsIssuerStatus403Schema as akh, updateKmsIssuerStatus404Schema as aki, updateKmsIssuerStatus410Schema as akj, updateMicrofrontendsErrorSchema as akk, updateMicrofrontendsGroupErrorSchema as akl, updateMicrofrontendsGroupPathGroupIdSchema as akm, updateMicrofrontendsGroupPathTeamIdSchema as akn, updateMicrofrontendsGroupQuerySlugSchema as ako, updateMicrofrontendsGroupResponseSchema as akp, updateMicrofrontendsGroupStatus200Schema as akq, updateMicrofrontendsGroupStatus400Schema as akr, updateMicrofrontendsGroupStatus401Schema as aks, updateMicrofrontendsGroupStatus403Schema as akt, updateMicrofrontendsGroupStatus404Schema as aku, updateMicrofrontendsGroupStatus410Schema as akv, updateMicrofrontendsPathProjectIdSchema as akw, updateMicrofrontendsQuerySlugSchema as akx, updateMicrofrontendsQueryTeamIdSchema as aky, updateMicrofrontendsResponseSchema as akz, addRepositoryPermissionStatus410Schema as al, updateProjectStatus410Schema as al$, updateObservabilityConfigurationProjectStatus429Schema as al0, updatePrivateLinkEndpointErrorSchema as al1, updatePrivateLinkEndpointPathEndpointIdSchema as al2, updatePrivateLinkEndpointQueryProjectIdSchema as al3, updatePrivateLinkEndpointQuerySlugSchema as al4, updatePrivateLinkEndpointQueryTeamIdSchema as al5, updatePrivateLinkEndpointResponseSchema as al6, updatePrivateLinkEndpointStatus200Schema as al7, updatePrivateLinkEndpointStatus400Schema as al8, updatePrivateLinkEndpointStatus401Schema as al9, updateProjectDomainStatus403Schema as alA, updateProjectDomainStatus409Schema as alB, updateProjectDomainStatus410Schema as alC, updateProjectErrorSchema as alD, updateProjectPathIdOrNameSchema as alE, updateProjectProtectionBypassErrorSchema as alF, updateProjectProtectionBypassPathIdOrNameSchema as alG, updateProjectProtectionBypassQuerySlugSchema as alH, updateProjectProtectionBypassQueryTeamIdSchema as alI, updateProjectProtectionBypassResponseSchema as alJ, updateProjectProtectionBypassStatus200Schema as alK, updateProjectProtectionBypassStatus400Schema as alL, updateProjectProtectionBypassStatus401Schema as alM, updateProjectProtectionBypassStatus403Schema as alN, updateProjectProtectionBypassStatus404Schema as alO, updateProjectProtectionBypassStatus409Schema as alP, updateProjectProtectionBypassStatus410Schema as alQ, updateProjectQuerySlugSchema as alR, updateProjectQueryTeamIdSchema as alS, updateProjectResponseSchema as alT, updateProjectStatus200Schema as alU, updateProjectStatus400Schema as alV, updateProjectStatus401Schema as alW, updateProjectStatus402Schema as alX, updateProjectStatus403Schema as alY, updateProjectStatus404Schema as alZ, updateProjectStatus409Schema as al_, updatePrivateLinkEndpointStatus403Schema as ala, updatePrivateLinkEndpointStatus404Schema as alb, updatePrivateLinkEndpointStatus409Schema as alc, updatePrivateLinkEndpointStatus410Schema as ald, updateProjectCheckErrorSchema as ale, updateProjectCheckPathCheckIdSchema as alf, updateProjectCheckPathProjectIdOrNameSchema as alg, updateProjectCheckQuerySlugSchema as alh, updateProjectCheckQueryTeamIdSchema as ali, updateProjectCheckResponseSchema as alj, updateProjectCheckStatus200Schema as alk, updateProjectCheckStatus400Schema as all, updateProjectCheckStatus401Schema as alm, updateProjectCheckStatus403Schema as aln, updateProjectCheckStatus404Schema as alo, updateProjectCheckStatus410Schema as alp, updateProjectCheckStatus500Schema as alq, updateProjectDomainErrorSchema as alr, updateProjectDomainPathDomainSchema as als, updateProjectDomainPathIdOrNameSchema as alt, updateProjectDomainQuerySlugSchema as alu, updateProjectDomainQueryTeamIdSchema as alv, updateProjectDomainResponseSchema as alw, updateProjectDomainStatus200Schema as alx, updateProjectDomainStatus400Schema as aly, updateProjectDomainStatus401Schema as alz, addRouteErrorSchema as am, updateRollingReleaseConfigErrorSchema as am$, updateProjectStatus428Schema as am0, updateProjectStatus429Schema as am1, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema as am2, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema as am3, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema as am4, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema as am5, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema as am6, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema as am7, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema as am8, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema as am9, updateResourceSecretsByIdStatus401Schema as amA, updateResourceSecretsByIdStatus403Schema as amB, updateResourceSecretsByIdStatus404Schema as amC, updateResourceSecretsByIdStatus409Schema as amD, updateResourceSecretsByIdStatus410Schema as amE, updateResourceSecretsByIdStatus422Schema as amF, updateResourceSecretsErrorSchema as amG, updateResourceSecretsPathIntegrationConfigurationIdSchema as amH, updateResourceSecretsPathIntegrationProductIdOrSlugSchema as amI, updateResourceSecretsPathResourceIdSchema as amJ, updateResourceSecretsResponseSchema as amK, updateResourceSecretsStatus201Schema as amL, updateResourceSecretsStatus400Schema as amM, updateResourceSecretsStatus401Schema as amN, updateResourceSecretsStatus403Schema as amO, updateResourceSecretsStatus404Schema as amP, updateResourceSecretsStatus409Schema as amQ, updateResourceSecretsStatus410Schema as amR, updateResourceSecretsStatus422Schema as amS, updateResourceStatus200Schema as amT, updateResourceStatus400Schema as amU, updateResourceStatus401Schema as amV, updateResourceStatus403Schema as amW, updateResourceStatus404Schema as amX, updateResourceStatus409Schema as amY, updateResourceStatus410Schema as amZ, updateResourceStatus422Schema as am_, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema as ama, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema as amb, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema as amc, updateRecordErrorSchema as amd, updateRecordPathRecordIdSchema as ame, updateRecordQuerySlugSchema as amf, updateRecordQueryTeamIdSchema as amg, updateRecordResponseSchema as amh, updateRecordStatus200Schema as ami, updateRecordStatus400Schema as amj, updateRecordStatus401Schema as amk, updateRecordStatus402Schema as aml, updateRecordStatus403Schema as amm, updateRecordStatus404Schema as amn, updateRecordStatus409Schema as amo, updateRecordStatus410Schema as amp, updateResourceErrorSchema as amq, updateResourcePathIntegrationConfigurationIdSchema as amr, updateResourcePathResourceIdSchema as ams, updateResourceResponseSchema as amt, updateResourceSecretsByIdErrorSchema as amu, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema as amv, updateResourceSecretsByIdPathResourceIdSchema as amw, updateResourceSecretsByIdResponseSchema as amx, updateResourceSecretsByIdStatus201Schema as amy, updateResourceSecretsByIdStatus400Schema as amz, addRoutePathProjectIdSchema as an, updateSharedEnvVariableStatus403Schema as an$, updateRollingReleaseConfigPathIdOrNameSchema as an0, updateRollingReleaseConfigQuerySlugSchema as an1, updateRollingReleaseConfigQueryTeamIdSchema as an2, updateRollingReleaseConfigResponseSchema as an3, updateRollingReleaseConfigStatus200Schema as an4, updateRollingReleaseConfigStatus400Schema as an5, updateRollingReleaseConfigStatus401Schema as an6, updateRollingReleaseConfigStatus403Schema as an7, updateRollingReleaseConfigStatus404Schema as an8, updateRollingReleaseConfigStatus410Schema as an9, updateSandboxStatus409Schema as anA, updateSandboxStatus410Schema as anB, updateSandboxStatus422Schema as anC, updateSandboxStatus429Schema as anD, updateSandboxStatus500Schema as anE, updateSessionNetworkPolicyErrorSchema as anF, updateSessionNetworkPolicyPathSessionIdSchema as anG, updateSessionNetworkPolicyQuerySlugSchema as anH, updateSessionNetworkPolicyQueryTeamIdSchema as anI, updateSessionNetworkPolicyResponseSchema as anJ, updateSessionNetworkPolicyStatus200Schema as anK, updateSessionNetworkPolicyStatus400Schema as anL, updateSessionNetworkPolicyStatus401Schema as anM, updateSessionNetworkPolicyStatus403Schema as anN, updateSessionNetworkPolicyStatus404Schema as anO, updateSessionNetworkPolicyStatus410Schema as anP, updateSessionNetworkPolicyStatus422Schema as anQ, updateSessionNetworkPolicyStatus429Schema as anR, updateSessionNetworkPolicyStatus500Schema as anS, updateSharedEnvVariableErrorSchema as anT, updateSharedEnvVariableQuerySlugSchema as anU, updateSharedEnvVariableQueryTeamIdSchema as anV, updateSharedEnvVariableResponseSchema as anW, updateSharedEnvVariableStatus200Schema as anX, updateSharedEnvVariableStatus400Schema as anY, updateSharedEnvVariableStatus401Schema as anZ, updateSharedEnvVariableStatus402Schema as an_, updateRouteVersionsErrorSchema as ana, updateRouteVersionsPathProjectIdSchema as anb, updateRouteVersionsQuerySlugSchema as anc, updateRouteVersionsQueryTeamIdSchema as and, updateRouteVersionsResponseSchema as ane, updateRouteVersionsStatus200Schema as anf, updateRouteVersionsStatus400Schema as ang, updateRouteVersionsStatus401Schema as anh, updateRouteVersionsStatus403Schema as ani, updateRouteVersionsStatus404Schema as anj, updateRouteVersionsStatus409Schema as ank, updateRouteVersionsStatus410Schema as anl, updateRouteVersionsStatus500Schema as anm, updateSandboxErrorSchema as ann, updateSandboxPathNameSchema as ano, updateSandboxQueryProjectIdSchema as anp, updateSandboxQueryResumeSchema as anq, updateSandboxQuerySlugSchema as anr, updateSandboxQueryTeamIdSchema as ans, updateSandboxResponseSchema as ant, updateSandboxStatus200Schema as anu, updateSandboxStatus400Schema as anv, updateSandboxStatus401Schema as anw, updateSandboxStatus402Schema as anx, updateSandboxStatus403Schema as any, updateSandboxStatus404Schema as anz, addRouteQuerySlugSchema as ao, uploadCertStatus400Schema as ao$, updateSharedEnvVariableStatus410Schema as ao0, updateStaticIpsErrorSchema as ao1, updateStaticIpsPathIdOrNameSchema as ao2, updateStaticIpsQuerySlugSchema as ao3, updateStaticIpsQueryTeamIdSchema as ao4, updateStaticIpsResponseSchema as ao5, updateStaticIpsStatus200Schema as ao6, updateStaticIpsStatus400Schema as ao7, updateStaticIpsStatus401Schema as ao8, updateStaticIpsStatus402Schema as ao9, updateVersionStatus403Schema as aoA, updateVersionStatus404Schema as aoB, updateVersionStatus410Schema as aoC, updateVersionStatus500Schema as aoD, uploadArtifactErrorSchema as aoE, uploadArtifactHeaderContentLengthSchema as aoF, uploadArtifactHeaderXArtifactClientCiSchema as aoG, uploadArtifactHeaderXArtifactClientInteractiveSchema as aoH, uploadArtifactHeaderXArtifactDirtyHashSchema as aoI, uploadArtifactHeaderXArtifactDurationSchema as aoJ, uploadArtifactHeaderXArtifactShaSchema as aoK, uploadArtifactHeaderXArtifactTagSchema as aoL, uploadArtifactPathHashSchema as aoM, uploadArtifactQuerySlugSchema as aoN, uploadArtifactQueryTeamIdSchema as aoO, uploadArtifactResponseSchema as aoP, uploadArtifactStatus202Schema as aoQ, uploadArtifactStatus400Schema as aoR, uploadArtifactStatus401Schema as aoS, uploadArtifactStatus402Schema as aoT, uploadArtifactStatus403Schema as aoU, uploadArtifactStatus410Schema as aoV, uploadCertErrorSchema as aoW, uploadCertQuerySlugSchema as aoX, uploadCertQueryTeamIdSchema as aoY, uploadCertResponseSchema as aoZ, uploadCertStatus200Schema as ao_, updateStaticIpsStatus403Schema as aoa, updateStaticIpsStatus404Schema as aob, updateStaticIpsStatus409Schema as aoc, updateStaticIpsStatus410Schema as aod, updateStaticIpsStatus500Schema as aoe, updateTeamMemberErrorSchema as aof, updateTeamMemberPathTeamIdSchema as aog, updateTeamMemberPathUidSchema as aoh, updateTeamMemberResponseSchema as aoi, updateTeamMemberStatus200Schema as aoj, updateTeamMemberStatus400Schema as aok, updateTeamMemberStatus401Schema as aol, updateTeamMemberStatus402Schema as aom, updateTeamMemberStatus403Schema as aon, updateTeamMemberStatus404Schema as aoo, updateTeamMemberStatus409Schema as aop, updateTeamMemberStatus410Schema as aoq, updateTeamMemberStatus500Schema as aor, updateVersionErrorSchema as aos, updateVersionQueryProjectIdSchema as aot, updateVersionQuerySlugSchema as aou, updateVersionQueryTeamIdSchema as aov, updateVersionResponseSchema as aow, updateVersionStatus200Schema as aox, updateVersionStatus400Schema as aoy, updateVersionStatus401Schema as aoz, addRouteQueryTeamIdSchema as ap, verifyProjectDomainStatus200Schema as ap$, uploadCertStatus401Schema as ap0, uploadCertStatus402Schema as ap1, uploadCertStatus403Schema as ap2, uploadCertStatus410Schema as ap3, uploadFileErrorSchema as ap4, uploadFileHeaderContentLengthSchema as ap5, uploadFileHeaderXNowDigestSchema as ap6, uploadFileHeaderXNowSizeSchema as ap7, uploadFileHeaderXVercelDigestSchema as ap8, uploadFileQuerySlugSchema as ap9, upsertConnectorProjectConnectionStatus200Schema as apA, upsertConnectorProjectConnectionStatus400Schema as apB, upsertConnectorProjectConnectionStatus401Schema as apC, upsertConnectorProjectConnectionStatus403Schema as apD, upsertConnectorProjectConnectionStatus404Schema as apE, upsertConnectorProjectConnectionStatus410Schema as apF, userEventSchema as apG, vcrImageDetailSchema as apH, vcrImageLayerSchema as apI, vcrImageListItemSchema as apJ, vcrImageListSchema as apK, vcrRepositoryListSchema as apL, vcrRepositoryPermissionListSchema as apM, vcrRepositoryPermissionSchema as apN, vcrRepositorySchema as apO, vcrTagSchema as apP, vercelBadRequestErrorSchema as apQ, vercelBaseErrorSchema as apR, vercelForbiddenErrorSchema as apS, vercelNotFoundErrorSchema as apT, vercelRateLimitErrorSchema as apU, verifyProjectDomainErrorSchema as apV, verifyProjectDomainPathDomainSchema as apW, verifyProjectDomainPathIdOrNameSchema as apX, verifyProjectDomainQuerySlugSchema as apY, verifyProjectDomainQueryTeamIdSchema as apZ, verifyProjectDomainResponseSchema as ap_, uploadFileQueryTeamIdSchema as apa, uploadFileResponseSchema as apb, uploadFileStatus200Schema as apc, uploadFileStatus400Schema as apd, uploadFileStatus401Schema as ape, uploadFileStatus403Schema as apf, uploadFileStatus410Schema as apg, uploadFileStatus426Schema as aph, uploadProjectAvatarErrorSchema as api, uploadProjectAvatarPathIdOrNameSchema as apj, uploadProjectAvatarQuerySlugSchema as apk, uploadProjectAvatarQueryTeamIdSchema as apl, uploadProjectAvatarResponseSchema as apm, uploadProjectAvatarStatus200Schema as apn, uploadProjectAvatarStatus400Schema as apo, uploadProjectAvatarStatus401Schema as app, uploadProjectAvatarStatus403Schema as apq, uploadProjectAvatarStatus410Schema as apr, uploadProjectAvatarStatus413Schema as aps, uploadProjectAvatarStatus415Schema as apt, upsertConnectorProjectConnectionErrorSchema as apu, upsertConnectorProjectConnectionPathConnectorSchema as apv, upsertConnectorProjectConnectionPathProjectIdSchema as apw, upsertConnectorProjectConnectionQuerySlugSchema as apx, upsertConnectorProjectConnectionQueryTeamIdSchema as apy, upsertConnectorProjectConnectionResponseSchema as apz, addRouteResponseSchema as aq, verifyProjectDomainStatus400Schema as aq0, verifyProjectDomainStatus401Schema as aq1, verifyProjectDomainStatus403Schema as aq2, verifyProjectDomainStatus410Schema as aq3, writeSessionFilesErrorSchema as aq4, writeSessionFilesHeaderXCwdSchema as aq5, writeSessionFilesPathSessionIdSchema as aq6, writeSessionFilesQuerySlugSchema as aq7, writeSessionFilesQueryTeamIdSchema as aq8, writeSessionFilesResponseSchema as aq9, writeSessionFilesStatus200Schema as aqa, writeSessionFilesStatus400Schema as aqb, writeSessionFilesStatus401Schema as aqc, writeSessionFilesStatus403Schema as aqd, writeSessionFilesStatus404Schema as aqe, writeSessionFilesStatus410Schema as aqf, writeSessionFilesStatus422Schema as aqg, writeSessionFilesStatus429Schema as aqh, writeSessionFilesStatus500Schema as aqi, addRouteStatus200Schema as ar, addRouteStatus400Schema as as, addRouteStatus401Schema as at, addRouteStatus403Schema as au, addRouteStatus409Schema as av, addRouteStatus410Schema as aw, addRouteStatus500Schema as ax, additionalContactInfoRequiredSchema as ay, aggregateEventsErrorSchema as az, aPIKeyQuotaSchema as b, boughtTooRecentlySchema as b$, aggregatePageviewsStatus400Schema as b0, aggregatePageviewsStatus401Schema as b1, aggregatePageviewsStatus402Schema as b2, aggregatePageviewsStatus403Schema as b3, aggregatePageviewsStatus404Schema as b4, aggregatePageviewsStatus410Schema as b5, aggregatePageviewsStatus503Schema as b6, aiGatewayProviderOptionBagSchema as b7, aiGatewayRuleListSchema as b8, aiGatewayRuleSchema as b9, assignAliasQuerySlugSchema as bA, assignAliasQueryTeamIdSchema as bB, assignAliasResponseSchema as bC, assignAliasStatus200Schema as bD, assignAliasStatus400Schema as bE, assignAliasStatus401Schema as bF, assignAliasStatus402Schema as bG, assignAliasStatus403Schema as bH, assignAliasStatus404Schema as bI, assignAliasStatus409Schema as bJ, assignAliasStatus410Schema as bK, authTokenSchema as bL, authUserLimitedSchema as bM, authUserSchema as bN, badRequestSchema as bO, batchRemoveProjectEnvErrorSchema as bP, batchRemoveProjectEnvPathIdOrNameSchema as bQ, batchRemoveProjectEnvQuerySlugSchema as bR, batchRemoveProjectEnvQueryTeamIdSchema as bS, batchRemoveProjectEnvResponseSchema as bT, batchRemoveProjectEnvStatus200Schema as bU, batchRemoveProjectEnvStatus400Schema as bV, batchRemoveProjectEnvStatus401Schema as bW, batchRemoveProjectEnvStatus403Schema as bX, batchRemoveProjectEnvStatus404Schema as bY, batchRemoveProjectEnvStatus409Schema as bZ, batchRemoveProjectEnvStatus410Schema as b_, aiGatewayVirtualModelConfigListSchema as ba, aiGatewayVirtualModelConfigSchema as bb, approveRollingReleaseStageErrorSchema as bc, approveRollingReleaseStagePathIdOrNameSchema as bd, approveRollingReleaseStageQuerySlugSchema as be, approveRollingReleaseStageQueryTeamIdSchema as bf, approveRollingReleaseStageResponseSchema as bg, approveRollingReleaseStageStatus200Schema as bh, approveRollingReleaseStageStatus400Schema as bi, approveRollingReleaseStageStatus401Schema as bj, approveRollingReleaseStageStatus403Schema as bk, approveRollingReleaseStageStatus404Schema as bl, approveRollingReleaseStageStatus410Schema as bm, approveRollingReleaseStageStatus500Schema as bn, artifactQueryErrorSchema as bo, artifactQueryQuerySlugSchema as bp, artifactQueryQueryTeamIdSchema as bq, artifactQueryResponseSchema as br, artifactQueryStatus200Schema as bs, artifactQueryStatus400Schema as bt, artifactQueryStatus401Schema as bu, artifactQueryStatus402Schema as bv, artifactQueryStatus403Schema as bw, artifactQueryStatus410Schema as bx, assignAliasErrorSchema as by, assignAliasPathIdSchema as bz, aPIKeySchema as c, clearRepositoryPermissionsStatus401Schema as c$, buyCreditsErrorSchema as c0, buyCreditsQuerySlugSchema as c1, buyCreditsQuerySourceSchema as c2, buyCreditsQueryTeamIdSchema as c3, buyCreditsResponseSchema as c4, buyCreditsStatus200Schema as c5, buyCreditsStatus400Schema as c6, buyCreditsStatus401Schema as c7, buyCreditsStatus402Schema as c8, buyCreditsStatus403Schema as c9, cancelDeploymentQueryTeamIdSchema as cA, cancelDeploymentResponseSchema as cB, cancelDeploymentStatus200Schema as cC, cancelDeploymentStatus400Schema as cD, cancelDeploymentStatus401Schema as cE, cancelDeploymentStatus403Schema as cF, cancelDeploymentStatus404Schema as cG, cancelDeploymentStatus410Schema as cH, claimDomainOwnershipErrorSchema as cI, claimDomainOwnershipPathDomainSchema as cJ, claimDomainOwnershipQuerySlugSchema as cK, claimDomainOwnershipQueryTeamIdSchema as cL, claimDomainOwnershipResponseSchema as cM, claimDomainOwnershipStatus200Schema as cN, claimDomainOwnershipStatus400Schema as cO, claimDomainOwnershipStatus401Schema as cP, claimDomainOwnershipStatus403Schema as cQ, claimDomainOwnershipStatus404Schema as cR, claimDomainOwnershipStatus410Schema as cS, clearRepositoryPermissionsErrorSchema as cT, clearRepositoryPermissionsPathIdOrNameSchema as cU, clearRepositoryPermissionsQueryProjectIdSchema as cV, clearRepositoryPermissionsQuerySlugSchema as cW, clearRepositoryPermissionsQueryTeamIdSchema as cX, clearRepositoryPermissionsResponseSchema as cY, clearRepositoryPermissionsStatus204Schema as cZ, clearRepositoryPermissionsStatus400Schema as c_, buyCreditsStatus404Schema as ca, buyCreditsStatus409Schema as cb, buyCreditsStatus410Schema as cc, buyCreditsStatus500Schema as cd, buyDomainsErrorSchema as ce, buyDomainsQueryTeamIdSchema as cf, buyDomainsResponseSchema as cg, buyDomainsStatus200Schema as ch, buyDomainsStatus400Schema as ci, buyDomainsStatus401Schema as cj, buyDomainsStatus403Schema as ck, buyDomainsStatus429Schema as cl, buyDomainsStatus500Schema as cm, buySingleDomainErrorSchema as cn, buySingleDomainPathDomainSchema as co, buySingleDomainQueryTeamIdSchema as cp, buySingleDomainResponseSchema as cq, buySingleDomainStatus200Schema as cr, buySingleDomainStatus400Schema as cs, buySingleDomainStatus401Schema as ct, buySingleDomainStatus403Schema as cu, buySingleDomainStatus429Schema as cv, buySingleDomainStatus500Schema as cw, cancelDeploymentErrorSchema as cx, cancelDeploymentPathIdSchema as cy, cancelDeploymentQuerySlugSchema as cz, acceptProjectTransferRequestErrorSchema as d, countEventsStatus403Schema as d$, clearRepositoryPermissionsStatus403Schema as d0, clearRepositoryPermissionsStatus404Schema as d1, clearRepositoryPermissionsStatus410Schema as d2, completeRollingReleaseErrorSchema as d3, completeRollingReleasePathIdOrNameSchema as d4, completeRollingReleaseQuerySlugSchema as d5, completeRollingReleaseQueryTeamIdSchema as d6, completeRollingReleaseResponseSchema as d7, completeRollingReleaseStatus200Schema as d8, completeRollingReleaseStatus400Schema as d9, connectIntegrationResourceToProjectStatus410Schema as dA, connectPaginationSchema as dB, connectProjectConnectionSchema as dC, connectProjectConnectorConnectionListSchema as dD, connectReconsentSchema as dE, connectReplaceTriggerDestinationsRequestSchema as dF, connectServiceSyncErrorSchema as dG, connectServiceSyncSchema as dH, connectTriggerConfigurationSchema as dI, connectTriggerDestinationInputSchema as dJ, connectTriggerDestinationSchema as dK, connectUpdateConnectorRequestSchema as dL, connectUpsertProjectConnectionRequestSchema as dM, contactPendingVerificationSchema as dN, contactVerifiedSchema as dO, countEventsErrorSchema as dP, countEventsQueryFilterSchema as dQ, countEventsQueryProjectIdSchema as dR, countEventsQuerySinceSchema as dS, countEventsQuerySlugSchema as dT, countEventsQueryTeamIdSchema as dU, countEventsQueryUntilSchema as dV, countEventsResponseSchema as dW, countEventsStatus200Schema as dX, countEventsStatus400Schema as dY, countEventsStatus401Schema as dZ, countEventsStatus402Schema as d_, completeRollingReleaseStatus401Schema as da, completeRollingReleaseStatus403Schema as db, completeRollingReleaseStatus404Schema as dc, completeRollingReleaseStatus410Schema as dd, connectConnectorCreateDataSchema as de, connectConnectorCreateResultSchema as df, connectConnectorListSchema as dg, connectConnectorProjectConnectionListSchema as dh, connectConnectorSchema as di, connectConnectorUpdateDataSchema as dj, connectConnectorUpdateResultSchema as dk, connectCreateConnectorRequestSchema as dl, connectEnvironmentSchema as dm, connectErrorSchema as dn, connectIntegrationResourceToProjectErrorSchema as dp, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema as dq, connectIntegrationResourceToProjectPathResourceIdSchema as dr, connectIntegrationResourceToProjectQuerySlugSchema as ds, connectIntegrationResourceToProjectQueryTeamIdSchema as dt, connectIntegrationResourceToProjectResponseSchema as du, connectIntegrationResourceToProjectStatus201Schema as dv, connectIntegrationResourceToProjectStatus400Schema as dw, connectIntegrationResourceToProjectStatus401Schema as dx, connectIntegrationResourceToProjectStatus403Schema as dy, connectIntegrationResourceToProjectStatus404Schema as dz, acceptProjectTransferRequestPathCodeSchema as e, createApiKeysResponseSchema as e$, countEventsStatus404Schema as e0, countEventsStatus410Schema as e1, countEventsStatus503Schema as e2, countPageviewsErrorSchema as e3, countPageviewsQueryFilterSchema as e4, countPageviewsQueryProjectIdSchema as e5, countPageviewsQuerySinceSchema as e6, countPageviewsQuerySlugSchema as e7, countPageviewsQueryTeamIdSchema as e8, countPageviewsQueryUntilSchema as e9, createAccessGroupStatus401Schema as eA, createAccessGroupStatus403Schema as eB, createAccessGroupStatus410Schema as eC, createAiGatewayRuleErrorSchema as eD, createAiGatewayRuleQuerySlugSchema as eE, createAiGatewayRuleQueryTeamIdSchema as eF, createAiGatewayRuleResponseSchema as eG, createAiGatewayRuleStatus201Schema as eH, createAiGatewayRuleStatus400Schema as eI, createAiGatewayRuleStatus401Schema as eJ, createAiGatewayRuleStatus403Schema as eK, createAiGatewayRuleStatus409Schema as eL, createAiGatewayRuleStatus410Schema as eM, createAiGatewayRuleStatus500Schema as eN, createAiGatewayVirtualModelConfigErrorSchema as eO, createAiGatewayVirtualModelConfigQuerySlugSchema as eP, createAiGatewayVirtualModelConfigQueryTeamIdSchema as eQ, createAiGatewayVirtualModelConfigResponseSchema as eR, createAiGatewayVirtualModelConfigStatus201Schema as eS, createAiGatewayVirtualModelConfigStatus400Schema as eT, createAiGatewayVirtualModelConfigStatus401Schema as eU, createAiGatewayVirtualModelConfigStatus403Schema as eV, createAiGatewayVirtualModelConfigStatus409Schema as eW, createAiGatewayVirtualModelConfigStatus410Schema as eX, createAiGatewayVirtualModelConfigStatus429Schema as eY, createAiGatewayVirtualModelConfigStatus500Schema as eZ, createApiKeysErrorSchema as e_, countPageviewsResponseSchema as ea, countPageviewsStatus200Schema as eb, countPageviewsStatus400Schema as ec, countPageviewsStatus401Schema as ed, countPageviewsStatus402Schema as ee, countPageviewsStatus403Schema as ef, countPageviewsStatus404Schema as eg, countPageviewsStatus410Schema as eh, countPageviewsStatus503Schema as ei, countryCodeSchema as ej, createAccessGroupErrorSchema as ek, createAccessGroupProjectErrorSchema as el, createAccessGroupProjectPathAccessGroupIdOrNameSchema as em, createAccessGroupProjectQuerySlugSchema as en, createAccessGroupProjectQueryTeamIdSchema as eo, createAccessGroupProjectResponseSchema as ep, createAccessGroupProjectStatus200Schema as eq, createAccessGroupProjectStatus400Schema as er, createAccessGroupProjectStatus401Schema as es, createAccessGroupProjectStatus403Schema as et, createAccessGroupProjectStatus410Schema as eu, createAccessGroupQuerySlugSchema as ev, createAccessGroupQueryTeamIdSchema as ew, createAccessGroupResponseSchema as ex, createAccessGroupStatus200Schema as ey, createAccessGroupStatus400Schema as ez, acceptProjectTransferRequestQuerySlugSchema as f, createConnectorQueryTeamIdSchema as f$, createApiKeysStatus200Schema as f0, createApiKeysStatus400Schema as f1, createApiKeysStatus401Schema as f2, createApiKeysStatus403Schema as f3, createApiKeysStatus409Schema as f4, createApiKeysStatus410Schema as f5, createApiKeysStatus429Schema as f6, createApiKeysStatus500Schema as f7, createAuthTokenErrorSchema as f8, createAuthTokenQuerySlugSchema as f9, createCheckResponseSchema as fA, createCheckStatus200Schema as fB, createCheckStatus400Schema as fC, createCheckStatus401Schema as fD, createCheckStatus403Schema as fE, createCheckStatus404Schema as fF, createCheckStatus410Schema as fG, createConfigurableLogDrainErrorSchema as fH, createConfigurableLogDrainQuerySlugSchema as fI, createConfigurableLogDrainQueryTeamIdSchema as fJ, createConfigurableLogDrainResponseSchema as fK, createConfigurableLogDrainStatus200Schema as fL, createConfigurableLogDrainStatus400Schema as fM, createConfigurableLogDrainStatus401Schema as fN, createConfigurableLogDrainStatus403Schema as fO, createConfigurableLogDrainStatus410Schema as fP, createConnectorAuthorizationRequestErrorSchema as fQ, createConnectorAuthorizationRequestPathConnectorSchema as fR, createConnectorAuthorizationRequestResponseSchema as fS, createConnectorAuthorizationRequestStatus200Schema as fT, createConnectorAuthorizationRequestStatus400Schema as fU, createConnectorAuthorizationRequestStatus401Schema as fV, createConnectorAuthorizationRequestStatus403Schema as fW, createConnectorAuthorizationRequestStatus404Schema as fX, createConnectorAuthorizationRequestStatus410Schema as fY, createConnectorErrorSchema as fZ, createConnectorQuerySlugSchema as f_, createAuthTokenQueryTeamIdSchema as fa, createAuthTokenResponseSchema as fb, createAuthTokenStatus200Schema as fc, createAuthTokenStatus400Schema as fd, createAuthTokenStatus401Schema as fe, createAuthTokenStatus403Schema as ff, createAuthTokenStatus404Schema as fg, createAuthTokenStatus410Schema as fh, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsErrorSchema as fi, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema as fj, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema as fk, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema as fl, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema as fm, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema as fn, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema as fo, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema as fp, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema as fq, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema as fr, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema as fs, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema as ft, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema as fu, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema as fv, createCheckErrorSchema as fw, createCheckPathDeploymentIdSchema as fx, createCheckQuerySlugSchema as fy, createCheckQueryTeamIdSchema as fz, acceptProjectTransferRequestQueryTeamIdSchema as g, createEdgeConfigErrorSchema as g$, createConnectorResponseSchema as g0, createConnectorStatus201Schema as g1, createConnectorStatus400Schema as g2, createConnectorStatus401Schema as g3, createConnectorStatus403Schema as g4, createConnectorStatus404Schema as g5, createConnectorStatus409Schema as g6, createConnectorStatus410Schema as g7, createConnectorStatus422Schema as g8, createConnectorStatus500Schema as g9, createDeploymentQueryForceNewSchema as gA, createDeploymentQuerySkipAutoDetectionConfirmationSchema as gB, createDeploymentQuerySlugSchema as gC, createDeploymentQueryTeamIdSchema as gD, createDeploymentResponseSchema as gE, createDeploymentStatus200Schema as gF, createDeploymentStatus400Schema as gG, createDeploymentStatus401Schema as gH, createDeploymentStatus402Schema as gI, createDeploymentStatus403Schema as gJ, createDeploymentStatus404Schema as gK, createDeploymentStatus409Schema as gL, createDeploymentStatus410Schema as gM, createDeploymentStatus426Schema as gN, createDeploymentStatus429Schema as gO, createDeploymentStatus500Schema as gP, createDeploymentStatus503Schema as gQ, createDrainErrorSchema as gR, createDrainQuerySlugSchema as gS, createDrainQueryTeamIdSchema as gT, createDrainResponseSchema as gU, createDrainStatus200Schema as gV, createDrainStatus400Schema as gW, createDrainStatus401Schema as gX, createDrainStatus402Schema as gY, createDrainStatus403Schema as gZ, createDrainStatus410Schema as g_, createConnectorStatus502Schema as ga, createCustomEnvironmentErrorSchema as gb, createCustomEnvironmentPathIdOrNameSchema as gc, createCustomEnvironmentQuerySlugSchema as gd, createCustomEnvironmentQueryTeamIdSchema as ge, createCustomEnvironmentResponseSchema as gf, createCustomEnvironmentStatus201Schema as gg, createCustomEnvironmentStatus400Schema as gh, createCustomEnvironmentStatus401Schema as gi, createCustomEnvironmentStatus402Schema as gj, createCustomEnvironmentStatus403Schema as gk, createCustomEnvironmentStatus410Schema as gl, createCustomEnvironmentStatus500Schema as gm, createDeploymentCheckRunErrorSchema as gn, createDeploymentCheckRunPathDeploymentIdSchema as go, createDeploymentCheckRunQuerySlugSchema as gp, createDeploymentCheckRunQueryTeamIdSchema as gq, createDeploymentCheckRunResponseSchema as gr, createDeploymentCheckRunStatus200Schema as gs, createDeploymentCheckRunStatus400Schema as gt, createDeploymentCheckRunStatus401Schema as gu, createDeploymentCheckRunStatus403Schema as gv, createDeploymentCheckRunStatus404Schema as gw, createDeploymentCheckRunStatus410Schema as gx, createDeploymentCheckRunStatus500Schema as gy, createDeploymentErrorSchema as gz, acceptProjectTransferRequestResponseSchema as h, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema as h$, createEdgeConfigQuerySlugSchema as h0, createEdgeConfigQueryTeamIdSchema as h1, createEdgeConfigResponseSchema as h2, createEdgeConfigStatus201Schema as h3, createEdgeConfigStatus400Schema as h4, createEdgeConfigStatus401Schema as h5, createEdgeConfigStatus402Schema as h6, createEdgeConfigStatus403Schema as h7, createEdgeConfigStatus410Schema as h8, createEdgeConfigTokenErrorSchema as h9, createFlagSegmentErrorSchema as hA, createFlagSegmentPathProjectIdOrNameSchema as hB, createFlagSegmentQuerySlugSchema as hC, createFlagSegmentQueryTeamIdSchema as hD, createFlagSegmentResponseSchema as hE, createFlagSegmentStatus201Schema as hF, createFlagSegmentStatus400Schema as hG, createFlagSegmentStatus401Schema as hH, createFlagSegmentStatus402Schema as hI, createFlagSegmentStatus403Schema as hJ, createFlagSegmentStatus404Schema as hK, createFlagSegmentStatus409Schema as hL, createFlagSegmentStatus410Schema as hM, createFlagStatus201Schema as hN, createFlagStatus400Schema as hO, createFlagStatus401Schema as hP, createFlagStatus402Schema as hQ, createFlagStatus403Schema as hR, createFlagStatus404Schema as hS, createFlagStatus409Schema as hT, createFlagStatus410Schema as hU, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsErrorSchema as hV, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema as hW, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema as hX, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema as hY, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema as hZ, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema as h_, createEdgeConfigTokenPathEdgeConfigIdSchema as ha, createEdgeConfigTokenQuerySlugSchema as hb, createEdgeConfigTokenQueryTeamIdSchema as hc, createEdgeConfigTokenResponseSchema as hd, createEdgeConfigTokenStatus201Schema as he, createEdgeConfigTokenStatus400Schema as hf, createEdgeConfigTokenStatus401Schema as hg, createEdgeConfigTokenStatus402Schema as hh, createEdgeConfigTokenStatus403Schema as hi, createEdgeConfigTokenStatus404Schema as hj, createEdgeConfigTokenStatus409Schema as hk, createEdgeConfigTokenStatus410Schema as hl, createEventErrorSchema as hm, createEventPathIntegrationConfigurationIdSchema as hn, createEventResponseSchema as ho, createEventStatus201Schema as hp, createEventStatus400Schema as hq, createEventStatus401Schema as hr, createEventStatus403Schema as hs, createEventStatus404Schema as ht, createEventStatus410Schema as hu, createFlagErrorSchema as hv, createFlagPathProjectIdOrNameSchema as hw, createFlagQuerySlugSchema as hx, createFlagQueryTeamIdSchema as hy, createFlagResponseSchema as hz, acceptProjectTransferRequestStatus202Schema as i, createMicrofrontendsGroupWithApplicationsResponseSchema as i$, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema as i0, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema as i1, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema as i2, createIntegrationStoreDirectErrorSchema as i3, createIntegrationStoreDirectQuerySlugSchema as i4, createIntegrationStoreDirectQueryTeamIdSchema as i5, createIntegrationStoreDirectResponseSchema as i6, createIntegrationStoreDirectStatus200Schema as i7, createIntegrationStoreDirectStatus400Schema as i8, createIntegrationStoreDirectStatus401Schema as i9, createKmsIssuerStatus403Schema as iA, createKmsIssuerStatus404Schema as iB, createKmsIssuerStatus410Schema as iC, createKmsSigningKeyErrorSchema as iD, createKmsSigningKeyPathIssuerIdSchema as iE, createKmsSigningKeyQuerySlugSchema as iF, createKmsSigningKeyQueryTeamIdSchema as iG, createKmsSigningKeyResponseSchema as iH, createKmsSigningKeyStatus200Schema as iI, createKmsSigningKeyStatus400Schema as iJ, createKmsSigningKeyStatus401Schema as iK, createKmsSigningKeyStatus403Schema as iL, createKmsSigningKeyStatus404Schema as iM, createKmsSigningKeyStatus409Schema as iN, createKmsSigningKeyStatus410Schema as iO, createLogDrainErrorSchema as iP, createLogDrainQuerySlugSchema as iQ, createLogDrainQueryTeamIdSchema as iR, createLogDrainResponseSchema as iS, createLogDrainStatus200Schema as iT, createLogDrainStatus400Schema as iU, createLogDrainStatus401Schema as iV, createLogDrainStatus403Schema as iW, createLogDrainStatus410Schema as iX, createMicrofrontendsGroupWithApplicationsErrorSchema as iY, createMicrofrontendsGroupWithApplicationsQuerySlugSchema as iZ, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema as i_, createIntegrationStoreDirectStatus402Schema as ia, createIntegrationStoreDirectStatus403Schema as ib, createIntegrationStoreDirectStatus404Schema as ic, createIntegrationStoreDirectStatus409Schema as id, createIntegrationStoreDirectStatus410Schema as ie, createIntegrationStoreDirectStatus500Schema as ig, createKmsIssuerErrorSchema as ih, createKmsIssuerPolicyErrorSchema as ii, createKmsIssuerPolicyPathIssuerIdSchema as ij, createKmsIssuerPolicyQuerySlugSchema as ik, createKmsIssuerPolicyQueryTeamIdSchema as il, createKmsIssuerPolicyResponseSchema as im, createKmsIssuerPolicyStatus201Schema as io, createKmsIssuerPolicyStatus400Schema as ip, createKmsIssuerPolicyStatus401Schema as iq, createKmsIssuerPolicyStatus403Schema as ir, createKmsIssuerPolicyStatus404Schema as is, createKmsIssuerPolicyStatus410Schema as it, createKmsIssuerQuerySlugSchema as iu, createKmsIssuerQueryTeamIdSchema as iv, createKmsIssuerResponseSchema as iw, createKmsIssuerStatus201Schema as ix, createKmsIssuerStatus400Schema as iy, createKmsIssuerStatus401Schema as iz, acceptProjectTransferRequestStatus400Schema as j, createProjectCheckStatus500Schema as j$, createMicrofrontendsGroupWithApplicationsStatus200Schema as j0, createMicrofrontendsGroupWithApplicationsStatus400Schema as j1, createMicrofrontendsGroupWithApplicationsStatus401Schema as j2, createMicrofrontendsGroupWithApplicationsStatus403Schema as j3, createMicrofrontendsGroupWithApplicationsStatus410Schema as j4, createMicrofrontendsGroupWithApplicationsStatus500Schema as j5, createNetworkErrorSchema as j6, createNetworkQuerySlugSchema as j7, createNetworkQueryTeamIdSchema as j8, createNetworkResponseSchema as j9, createOrTransferDomainStatus401Schema as jA, createOrTransferDomainStatus402Schema as jB, createOrTransferDomainStatus403Schema as jC, createOrTransferDomainStatus404Schema as jD, createOrTransferDomainStatus409Schema as jE, createOrTransferDomainStatus410Schema as jF, createPrivateLinkEndpointErrorSchema as jG, createPrivateLinkEndpointQuerySlugSchema as jH, createPrivateLinkEndpointQueryTeamIdSchema as jI, createPrivateLinkEndpointResponseSchema as jJ, createPrivateLinkEndpointStatus201Schema as jK, createPrivateLinkEndpointStatus400Schema as jL, createPrivateLinkEndpointStatus401Schema as jM, createPrivateLinkEndpointStatus403Schema as jN, createPrivateLinkEndpointStatus404Schema as jO, createPrivateLinkEndpointStatus409Schema as jP, createPrivateLinkEndpointStatus410Schema as jQ, createProjectCheckErrorSchema as jR, createProjectCheckPathProjectIdOrNameSchema as jS, createProjectCheckQuerySlugSchema as jT, createProjectCheckQueryTeamIdSchema as jU, createProjectCheckResponseSchema as jV, createProjectCheckStatus200Schema as jW, createProjectCheckStatus400Schema as jX, createProjectCheckStatus401Schema as jY, createProjectCheckStatus403Schema as jZ, createProjectCheckStatus410Schema as j_, createNetworkStatus201Schema as ja, createNetworkStatus400Schema as jb, createNetworkStatus401Schema as jc, createNetworkStatus402Schema as jd, createNetworkStatus403Schema as je, createNetworkStatus409Schema as jf, createNetworkStatus410Schema as jg, createObservabilityQueryErrorSchema as jh, createObservabilityQueryResponseSchema as ji, createObservabilityQueryStatus200Schema as jj, createObservabilityQueryStatus400Schema as jk, createObservabilityQueryStatus401Schema as jl, createObservabilityQueryStatus402Schema as jm, createObservabilityQueryStatus403Schema as jn, createObservabilityQueryStatus408Schema as jo, createObservabilityQueryStatus410Schema as jp, createObservabilityQueryStatus413Schema as jq, createObservabilityQueryStatus422Schema as jr, createObservabilityQueryStatus500Schema as js, createObservabilityQueryStatus503Schema as jt, createOrTransferDomainErrorSchema as ju, createOrTransferDomainQuerySlugSchema as jv, createOrTransferDomainQueryTeamIdSchema as jw, createOrTransferDomainResponseSchema as jx, createOrTransferDomainStatus200Schema as jy, createOrTransferDomainStatus400Schema as jz, acceptProjectTransferRequestStatus401Schema as k, createRepositoryStatus403Schema as k$, createProjectEnvErrorSchema as k0, createProjectEnvPathIdOrNameSchema as k1, createProjectEnvQuerySlugSchema as k2, createProjectEnvQueryTeamIdSchema as k3, createProjectEnvQueryUpsertSchema as k4, createProjectEnvResponseSchema as k5, createProjectEnvStatus201Schema as k6, createProjectEnvStatus400Schema as k7, createProjectEnvStatus401Schema as k8, createProjectEnvStatus402Schema as k9, createProjectTransferRequestStatus200Schema as kA, createProjectTransferRequestStatus400Schema as kB, createProjectTransferRequestStatus401Schema as kC, createProjectTransferRequestStatus403Schema as kD, createProjectTransferRequestStatus409Schema as kE, createProjectTransferRequestStatus410Schema as kF, createRecordErrorSchema as kG, createRecordPathDomainSchema as kH, createRecordQuerySlugSchema as kI, createRecordQueryTeamIdSchema as kJ, createRecordResponseSchema as kK, createRecordStatus200Schema as kL, createRecordStatus400Schema as kM, createRecordStatus401Schema as kN, createRecordStatus402Schema as kO, createRecordStatus403Schema as kP, createRecordStatus404Schema as kQ, createRecordStatus409Schema as kR, createRecordStatus410Schema as kS, createRepositoryErrorSchema as kT, createRepositoryQuerySlugSchema as kU, createRepositoryQueryTeamIdSchema as kV, createRepositoryResponseSchema as kW, createRepositoryStatus200Schema as kX, createRepositoryStatus400Schema as kY, createRepositoryStatus401Schema as kZ, createRepositoryStatus402Schema as k_, createProjectEnvStatus403Schema as ka, createProjectEnvStatus404Schema as kb, createProjectEnvStatus409Schema as kc, createProjectEnvStatus410Schema as kd, createProjectEnvStatus429Schema as ke, createProjectEnvStatus500Schema as kf, createProjectErrorSchema as kg, createProjectQuerySlugSchema as kh, createProjectQueryTeamIdSchema as ki, createProjectResponseSchema as kj, createProjectStatus200Schema as kk, createProjectStatus400Schema as kl, createProjectStatus401Schema as km, createProjectStatus402Schema as kn, createProjectStatus403Schema as ko, createProjectStatus404Schema as kp, createProjectStatus409Schema as kq, createProjectStatus410Schema as kr, createProjectStatus428Schema as ks, createProjectStatus429Schema as kt, createProjectStatus500Schema as ku, createProjectTransferRequestErrorSchema as kv, createProjectTransferRequestPathIdOrNameSchema as kw, createProjectTransferRequestQuerySlugSchema as kx, createProjectTransferRequestQueryTeamIdSchema as ky, createProjectTransferRequestResponseSchema as kz, acceptProjectTransferRequestStatus403Schema as l, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema as l$, createRepositoryStatus404Schema as l0, createRepositoryStatus409Schema as l1, createRepositoryStatus410Schema as l2, createSandboxesByNameForkV2ErrorSchema as l3, createSandboxesByNameForkV2PathNameSchema as l4, createSandboxesByNameForkV2QueryProjectIdSchema as l5, createSandboxesByNameForkV2QuerySlugSchema as l6, createSandboxesByNameForkV2QueryTeamIdSchema as l7, createSandboxesByNameForkV2ResponseSchema as l8, createSandboxesByNameForkV2Status200Schema as l9, createSandboxesByNameForkV3Status500Schema as lA, createSandboxesSessionsBySessionIdSnapshotV2ErrorSchema as lB, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema as lC, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema as lD, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema as lE, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema as lF, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema as lG, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema as lH, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema as lI, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema as lJ, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema as lK, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema as lL, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema as lM, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema as lN, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema as lO, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema as lP, createSandboxesSessionsBySessionIdSnapshotV3ErrorSchema as lQ, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema as lR, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema as lS, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema as lT, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema as lU, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema as lV, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema as lW, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema as lX, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema as lY, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema as lZ, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema as l_, createSandboxesByNameForkV2Status400Schema as la, createSandboxesByNameForkV2Status401Schema as lb, createSandboxesByNameForkV2Status402Schema as lc, createSandboxesByNameForkV2Status403Schema as ld, createSandboxesByNameForkV2Status404Schema as le, createSandboxesByNameForkV2Status409Schema as lf, createSandboxesByNameForkV2Status410Schema as lg, createSandboxesByNameForkV2Status422Schema as lh, createSandboxesByNameForkV2Status429Schema as li, createSandboxesByNameForkV2Status500Schema as lj, createSandboxesByNameForkV3ErrorSchema as lk, createSandboxesByNameForkV3PathNameSchema as ll, createSandboxesByNameForkV3QueryProjectIdSchema as lm, createSandboxesByNameForkV3QuerySlugSchema as ln, createSandboxesByNameForkV3QueryTeamIdSchema as lo, createSandboxesByNameForkV3ResponseSchema as lp, createSandboxesByNameForkV3Status200Schema as lq, createSandboxesByNameForkV3Status400Schema as lr, createSandboxesByNameForkV3Status401Schema as ls, createSandboxesByNameForkV3Status402Schema as lt, createSandboxesByNameForkV3Status403Schema as lu, createSandboxesByNameForkV3Status404Schema as lv, createSandboxesByNameForkV3Status409Schema as lw, createSandboxesByNameForkV3Status410Schema as lx, createSandboxesByNameForkV3Status422Schema as ly, createSandboxesByNameForkV3Status429Schema as lz, acceptProjectTransferRequestStatus404Schema as m, createSecurityFirewallConfigByConfigVersionActivateResponseSchema as m$, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema as m0, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema as m1, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema as m2, createSandboxesV2ErrorSchema as m3, createSandboxesV2QuerySlugSchema as m4, createSandboxesV2QueryTeamIdSchema as m5, createSandboxesV2ResponseSchema as m6, createSandboxesV2Status200Schema as m7, createSandboxesV2Status400Schema as m8, createSandboxesV2Status401Schema as m9, createSandboxesV4ResponseSchema as mA, createSandboxesV4Status200Schema as mB, createSandboxesV4Status400Schema as mC, createSandboxesV4Status401Schema as mD, createSandboxesV4Status402Schema as mE, createSandboxesV4Status403Schema as mF, createSandboxesV4Status404Schema as mG, createSandboxesV4Status409Schema as mH, createSandboxesV4Status410Schema as mI, createSandboxesV4Status422Schema as mJ, createSandboxesV4Status429Schema as mK, createSandboxesV4Status500Schema as mL, createSdkKeyErrorSchema as mM, createSdkKeyPathProjectIdOrNameSchema as mN, createSdkKeyQuerySlugSchema as mO, createSdkKeyQueryTeamIdSchema as mP, createSdkKeyResponseSchema as mQ, createSdkKeyStatus200Schema as mR, createSdkKeyStatus400Schema as mS, createSdkKeyStatus401Schema as mT, createSdkKeyStatus402Schema as mU, createSdkKeyStatus403Schema as mV, createSdkKeyStatus404Schema as mW, createSdkKeyStatus409Schema as mX, createSdkKeyStatus410Schema as mY, createSecurityFirewallConfigByConfigVersionActivateErrorSchema as mZ, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema as m_, createSandboxesV2Status402Schema as ma, createSandboxesV2Status403Schema as mb, createSandboxesV2Status404Schema as mc, createSandboxesV2Status409Schema as md, createSandboxesV2Status410Schema as me, createSandboxesV2Status422Schema as mf, createSandboxesV2Status429Schema as mg, createSandboxesV2Status500Schema as mh, createSandboxesV3ErrorSchema as mi, createSandboxesV3QuerySlugSchema as mj, createSandboxesV3QueryTeamIdSchema as mk, createSandboxesV3ResponseSchema as ml, createSandboxesV3Status200Schema as mm, createSandboxesV3Status400Schema as mn, createSandboxesV3Status401Schema as mo, createSandboxesV3Status402Schema as mp, createSandboxesV3Status403Schema as mq, createSandboxesV3Status404Schema as mr, createSandboxesV3Status409Schema as ms, createSandboxesV3Status410Schema as mt, createSandboxesV3Status422Schema as mu, createSandboxesV3Status429Schema as mv, createSandboxesV3Status500Schema as mw, createSandboxesV4ErrorSchema as mx, createSandboxesV4QuerySlugSchema as my, createSandboxesV4QueryTeamIdSchema as mz, acceptProjectTransferRequestStatus410Schema as n, createTraceSessionQueryTeamIdSchema as n$, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema as n0, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema as n1, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema as n2, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema as n3, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema as n4, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema as n5, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema as n6, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema as n7, createSessionDirectoryErrorSchema as n8, createSessionDirectoryPathSessionIdSchema as n9, createSpeedInsightsToggleStatus400Schema as nA, createSpeedInsightsToggleStatus401Schema as nB, createSpeedInsightsToggleStatus402Schema as nC, createSpeedInsightsToggleStatus403Schema as nD, createSpeedInsightsToggleStatus410Schema as nE, createStorageStoresBlobErrorSchema as nF, createStorageStoresBlobResponseSchema as nG, createStorageStoresBlobStatus200Schema as nH, createStorageStoresBlobStatus400Schema as nI, createStorageStoresBlobStatus401Schema as nJ, createStorageStoresBlobStatus402Schema as nK, createStorageStoresBlobStatus403Schema as nL, createStorageStoresBlobStatus404Schema as nM, createStorageStoresBlobStatus409Schema as nN, createStorageStoresBlobStatus410Schema as nO, createStorageStoresBlobStatus429Schema as nP, createTeamErrorSchema as nQ, createTeamResponseSchema as nR, createTeamStatus200Schema as nS, createTeamStatus400Schema as nT, createTeamStatus401Schema as nU, createTeamStatus403Schema as nV, createTeamStatus404Schema as nW, createTeamStatus409Schema as nX, createTeamStatus410Schema as nY, createTraceSessionErrorSchema as nZ, createTraceSessionQuerySlugSchema as n_, createSessionDirectoryQuerySlugSchema as na, createSessionDirectoryQueryTeamIdSchema as nb, createSessionDirectoryResponseSchema as nc, createSessionDirectoryStatus200Schema as nd, createSessionDirectoryStatus400Schema as ne, createSessionDirectoryStatus401Schema as nf, createSessionDirectoryStatus403Schema as ng, createSessionDirectoryStatus404Schema as nh, createSessionDirectoryStatus410Schema as ni, createSessionDirectoryStatus422Schema as nj, createSessionDirectoryStatus429Schema as nk, createSessionDirectoryStatus500Schema as nl, createSharedEnvVariableErrorSchema as nm, createSharedEnvVariableQuerySlugSchema as nn, createSharedEnvVariableQueryTeamIdSchema as no, createSharedEnvVariableResponseSchema as np, createSharedEnvVariableStatus201Schema as nq, createSharedEnvVariableStatus400Schema as nr, createSharedEnvVariableStatus401Schema as ns, createSharedEnvVariableStatus402Schema as nt, createSharedEnvVariableStatus403Schema as nu, createSharedEnvVariableStatus410Schema as nv, createSpeedInsightsToggleErrorSchema as nw, createSpeedInsightsToggleQueryProjectIdSchema as nx, createSpeedInsightsToggleResponseSchema as ny, createSpeedInsightsToggleStatus200Schema as nz, acceptProjectTransferRequestStatus422Schema as o, deleteAccessGroupQueryTeamIdSchema as o$, createTraceSessionResponseSchema as o0, createTraceSessionStatus200Schema as o1, createTraceSessionStatus400Schema as o2, createTraceSessionStatus401Schema as o3, createTraceSessionStatus403Schema as o4, createTraceSessionStatus410Schema as o5, createTraceSessionStatus422Schema as o6, createWebInsightsToggleErrorSchema as o7, createWebInsightsToggleQueryProjectIdSchema as o8, createWebInsightsToggleResponseSchema as o9, dangerouslyDeleteBySrcImagesStatus410Schema as oA, dangerouslyDeleteByTagsErrorSchema as oB, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema as oC, dangerouslyDeleteByTagsQuerySlugSchema as oD, dangerouslyDeleteByTagsQueryTeamIdSchema as oE, dangerouslyDeleteByTagsResponseSchema as oF, dangerouslyDeleteByTagsStatus200Schema as oG, dangerouslyDeleteByTagsStatus400Schema as oH, dangerouslyDeleteByTagsStatus401Schema as oI, dangerouslyDeleteByTagsStatus403Schema as oJ, dangerouslyDeleteByTagsStatus404Schema as oK, dangerouslyDeleteByTagsStatus410Schema as oL, dateFromStringSchema as oM, deleteAccessGroupErrorSchema as oN, deleteAccessGroupPathIdOrNameSchema as oO, deleteAccessGroupProjectErrorSchema as oP, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema as oQ, deleteAccessGroupProjectPathProjectIdSchema as oR, deleteAccessGroupProjectQuerySlugSchema as oS, deleteAccessGroupProjectQueryTeamIdSchema as oT, deleteAccessGroupProjectResponseSchema as oU, deleteAccessGroupProjectStatus200Schema as oV, deleteAccessGroupProjectStatus400Schema as oW, deleteAccessGroupProjectStatus401Schema as oX, deleteAccessGroupProjectStatus403Schema as oY, deleteAccessGroupProjectStatus410Schema as oZ, deleteAccessGroupQuerySlugSchema as o_, createWebInsightsToggleStatus200Schema as oa, createWebInsightsToggleStatus400Schema as ob, createWebInsightsToggleStatus401Schema as oc, createWebInsightsToggleStatus403Schema as od, createWebInsightsToggleStatus410Schema as oe, createWebhookErrorSchema as of, createWebhookQuerySlugSchema as og, createWebhookQueryTeamIdSchema as oh, createWebhookResponseSchema as oi, createWebhookStatus200Schema as oj, createWebhookStatus400Schema as ok, createWebhookStatus401Schema as ol, createWebhookStatus403Schema as om, createWebhookStatus410Schema as on, dNSSECEnabledSchema as oo, dangerouslyDeleteBySrcImagesErrorSchema as op, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema as oq, dangerouslyDeleteBySrcImagesQuerySlugSchema as or, dangerouslyDeleteBySrcImagesQueryTeamIdSchema as os, dangerouslyDeleteBySrcImagesResponseSchema as ot, dangerouslyDeleteBySrcImagesStatus200Schema as ou, dangerouslyDeleteBySrcImagesStatus400Schema as ov, dangerouslyDeleteBySrcImagesStatus401Schema as ow, dangerouslyDeleteBySrcImagesStatus402Schema as ox, dangerouslyDeleteBySrcImagesStatus403Schema as oy, dangerouslyDeleteBySrcImagesStatus404Schema as oz, activateKmsSigningKeyErrorSchema as p, deleteAllArtifactsQueryTeamIdSchema as p$, deleteAccessGroupResponseSchema as p0, deleteAccessGroupStatus200Schema as p1, deleteAccessGroupStatus400Schema as p2, deleteAccessGroupStatus401Schema as p3, deleteAccessGroupStatus403Schema as p4, deleteAccessGroupStatus410Schema as p5, deleteAiGatewayRuleErrorSchema as p6, deleteAiGatewayRuleQueryRuleIdSchema as p7, deleteAiGatewayRuleQuerySlugSchema as p8, deleteAiGatewayRuleQueryTeamIdSchema as p9, deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema as pA, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema as pB, deleteAiGatewayVirtualModelConfigQuerySlugSchema as pC, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema as pD, deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema as pE, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema as pF, deleteAiGatewayVirtualModelConfigResponseSchema as pG, deleteAiGatewayVirtualModelConfigStatus204Schema as pH, deleteAiGatewayVirtualModelConfigStatus400Schema as pI, deleteAiGatewayVirtualModelConfigStatus401Schema as pJ, deleteAiGatewayVirtualModelConfigStatus403Schema as pK, deleteAiGatewayVirtualModelConfigStatus404Schema as pL, deleteAiGatewayVirtualModelConfigStatus410Schema as pM, deleteAiGatewayVirtualModelConfigStatus500Schema as pN, deleteAliasErrorSchema as pO, deleteAliasPathAliasIdSchema as pP, deleteAliasQuerySlugSchema as pQ, deleteAliasQueryTeamIdSchema as pR, deleteAliasResponseSchema as pS, deleteAliasStatus200Schema as pT, deleteAliasStatus400Schema as pU, deleteAliasStatus401Schema as pV, deleteAliasStatus403Schema as pW, deleteAliasStatus404Schema as pX, deleteAliasStatus410Schema as pY, deleteAllArtifactsErrorSchema as pZ, deleteAllArtifactsQuerySlugSchema as p_, deleteAiGatewayRuleResponseSchema as pa, deleteAiGatewayRuleStatus204Schema as pb, deleteAiGatewayRuleStatus400Schema as pc, deleteAiGatewayRuleStatus401Schema as pd, deleteAiGatewayRuleStatus403Schema as pe, deleteAiGatewayRuleStatus404Schema as pf, deleteAiGatewayRuleStatus410Schema as pg, deleteAiGatewayRuleStatus500Schema as ph, deleteAiGatewayVirtualModelConfigBySlugErrorSchema as pi, deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema as pj, deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema as pk, deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema as pl, deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema as pm, deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema as pn, deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema as po, deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema as pp, deleteAiGatewayVirtualModelConfigBySlugResponseSchema as pq, deleteAiGatewayVirtualModelConfigBySlugStatus204Schema as pr, deleteAiGatewayVirtualModelConfigBySlugStatus400Schema as ps, deleteAiGatewayVirtualModelConfigBySlugStatus401Schema as pt, deleteAiGatewayVirtualModelConfigBySlugStatus403Schema as pu, deleteAiGatewayVirtualModelConfigBySlugStatus404Schema as pv, deleteAiGatewayVirtualModelConfigBySlugStatus410Schema as pw, deleteAiGatewayVirtualModelConfigBySlugStatus500Schema as px, deleteAiGatewayVirtualModelConfigErrorSchema as py, deleteAiGatewayVirtualModelConfigQueryActingIpSchema as pz, activateKmsSigningKeyPathIssuerIdSchema as q, deleteConfigurableLogDrainStatus404Schema as q$, deleteAllArtifactsResponseSchema as q0, deleteAllArtifactsStatus200Schema as q1, deleteAllArtifactsStatus400Schema as q2, deleteAllArtifactsStatus401Schema as q3, deleteAllArtifactsStatus403Schema as q4, deleteAllArtifactsStatus410Schema as q5, deleteAuthTokenErrorSchema as q6, deleteAuthTokenPathTokenIdSchema as q7, deleteAuthTokenResponseSchema as q8, deleteAuthTokenStatus200Schema as q9, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema as qA, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema as qB, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema as qC, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema as qD, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema as qE, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema as qF, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema as qG, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema as qH, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema as qI, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema as qJ, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema as qK, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema as qL, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema as qM, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema as qN, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema as qO, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema as qP, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema as qQ, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema as qR, deleteConfigurableLogDrainErrorSchema as qS, deleteConfigurableLogDrainPathIdSchema as qT, deleteConfigurableLogDrainQuerySlugSchema as qU, deleteConfigurableLogDrainQueryTeamIdSchema as qV, deleteConfigurableLogDrainResponseSchema as qW, deleteConfigurableLogDrainStatus204Schema as qX, deleteConfigurableLogDrainStatus400Schema as qY, deleteConfigurableLogDrainStatus401Schema as qZ, deleteConfigurableLogDrainStatus403Schema as q_, deleteAuthTokenStatus400Schema as qa, deleteAuthTokenStatus401Schema as qb, deleteAuthTokenStatus403Schema as qc, deleteAuthTokenStatus404Schema as qd, deleteAuthTokenStatus410Schema as qe, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema as qf, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema as qg, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema as qh, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema as qi, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema as qj, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema as qk, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema as ql, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema as qm, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema as qn, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema as qo, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema as qp, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema as qq, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema as qr, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema as qs, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema as qt, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema as qu, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema as qv, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema as qw, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema as qx, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema as qy, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema as qz, activateKmsSigningKeyPathKeyIdSchema as r, deleteDrainPathIdSchema as r$, deleteConfigurableLogDrainStatus410Schema as r0, deleteConfigurationErrorSchema as r1, deleteConfigurationPathIdSchema as r2, deleteConfigurationQuerySlugSchema as r3, deleteConfigurationQueryTeamIdSchema as r4, deleteConfigurationResponseSchema as r5, deleteConfigurationStatus204Schema as r6, deleteConfigurationStatus400Schema as r7, deleteConfigurationStatus401Schema as r8, deleteConfigurationStatus403Schema as r9, deleteConnectorStatus422Schema as rA, deleteConnectorStatus502Schema as rB, deleteDeploymentErrorSchema as rC, deleteDeploymentPathIdSchema as rD, deleteDeploymentQuerySlugSchema as rE, deleteDeploymentQueryTeamIdSchema as rF, deleteDeploymentQueryUrlSchema as rG, deleteDeploymentResponseSchema as rH, deleteDeploymentStatus200Schema as rI, deleteDeploymentStatus400Schema as rJ, deleteDeploymentStatus401Schema as rK, deleteDeploymentStatus403Schema as rL, deleteDeploymentStatus404Schema as rM, deleteDeploymentStatus410Schema as rN, deleteDomainErrorSchema as rO, deleteDomainPathDomainSchema as rP, deleteDomainQuerySlugSchema as rQ, deleteDomainQueryTeamIdSchema as rR, deleteDomainResponseSchema as rS, deleteDomainStatus200Schema as rT, deleteDomainStatus400Schema as rU, deleteDomainStatus401Schema as rV, deleteDomainStatus403Schema as rW, deleteDomainStatus404Schema as rX, deleteDomainStatus409Schema as rY, deleteDomainStatus410Schema as rZ, deleteDrainErrorSchema as r_, deleteConfigurationStatus404Schema as ra, deleteConfigurationStatus410Schema as rb, deleteConnectorErrorSchema as rc, deleteConnectorPathConnectorSchema as rd, deleteConnectorProjectConnectionErrorSchema as re, deleteConnectorProjectConnectionPathConnectorSchema as rf, deleteConnectorProjectConnectionPathProjectIdSchema as rg, deleteConnectorProjectConnectionQuerySlugSchema as rh, deleteConnectorProjectConnectionQueryTeamIdSchema as ri, deleteConnectorProjectConnectionResponseSchema as rj, deleteConnectorProjectConnectionStatus204Schema as rk, deleteConnectorProjectConnectionStatus400Schema as rl, deleteConnectorProjectConnectionStatus401Schema as rm, deleteConnectorProjectConnectionStatus403Schema as rn, deleteConnectorProjectConnectionStatus404Schema as ro, deleteConnectorProjectConnectionStatus410Schema as rp, deleteConnectorQuerySlugSchema as rq, deleteConnectorQueryTeamIdSchema as rr, deleteConnectorResponseSchema as rs, deleteConnectorStatus204Schema as rt, deleteConnectorStatus400Schema as ru, deleteConnectorStatus401Schema as rv, deleteConnectorStatus403Schema as rw, deleteConnectorStatus404Schema as rx, deleteConnectorStatus409Schema as ry, deleteConnectorStatus410Schema as rz, activateKmsSigningKeyQuerySlugSchema as s, deleteFlagPathProjectIdOrNameSchema as s$, deleteDrainQuerySlugSchema as s0, deleteDrainQueryTeamIdSchema as s1, deleteDrainResponseSchema as s2, deleteDrainStatus204Schema as s3, deleteDrainStatus400Schema as s4, deleteDrainStatus401Schema as s5, deleteDrainStatus403Schema as s6, deleteDrainStatus404Schema as s7, deleteDrainStatus410Schema as s8, deleteDriveErrorSchema as s9, deleteEdgeConfigSchemaStatus402Schema as sA, deleteEdgeConfigSchemaStatus403Schema as sB, deleteEdgeConfigSchemaStatus404Schema as sC, deleteEdgeConfigSchemaStatus409Schema as sD, deleteEdgeConfigSchemaStatus410Schema as sE, deleteEdgeConfigStatus204Schema as sF, deleteEdgeConfigStatus400Schema as sG, deleteEdgeConfigStatus401Schema as sH, deleteEdgeConfigStatus403Schema as sI, deleteEdgeConfigStatus404Schema as sJ, deleteEdgeConfigStatus409Schema as sK, deleteEdgeConfigStatus410Schema as sL, deleteEdgeConfigTokensErrorSchema as sM, deleteEdgeConfigTokensPathEdgeConfigIdSchema as sN, deleteEdgeConfigTokensQuerySlugSchema as sO, deleteEdgeConfigTokensQueryTeamIdSchema as sP, deleteEdgeConfigTokensResponseSchema as sQ, deleteEdgeConfigTokensStatus204Schema as sR, deleteEdgeConfigTokensStatus400Schema as sS, deleteEdgeConfigTokensStatus401Schema as sT, deleteEdgeConfigTokensStatus402Schema as sU, deleteEdgeConfigTokensStatus403Schema as sV, deleteEdgeConfigTokensStatus404Schema as sW, deleteEdgeConfigTokensStatus409Schema as sX, deleteEdgeConfigTokensStatus410Schema as sY, deleteFlagErrorSchema as sZ, deleteFlagPathFlagIdOrSlugSchema as s_, deleteDrivePathNameSchema as sa, deleteDriveQueryProjectIdSchema as sb, deleteDriveQuerySlugSchema as sc, deleteDriveQueryTeamIdSchema as sd, deleteDriveResponseSchema as se, deleteDriveStatus200Schema as sf, deleteDriveStatus400Schema as sg, deleteDriveStatus401Schema as sh, deleteDriveStatus403Schema as si, deleteDriveStatus404Schema as sj, deleteDriveStatus409Schema as sk, deleteDriveStatus410Schema as sl, deleteDriveStatus429Schema as sm, deleteEdgeConfigErrorSchema as sn, deleteEdgeConfigPathEdgeConfigIdSchema as so, deleteEdgeConfigQuerySlugSchema as sp, deleteEdgeConfigQueryTeamIdSchema as sq, deleteEdgeConfigResponseSchema as sr, deleteEdgeConfigSchemaErrorSchema as ss, deleteEdgeConfigSchemaPathEdgeConfigIdSchema as st, deleteEdgeConfigSchemaQuerySlugSchema as su, deleteEdgeConfigSchemaQueryTeamIdSchema as sv, deleteEdgeConfigSchemaResponseSchema as sw, deleteEdgeConfigSchemaStatus204Schema as sx, deleteEdgeConfigSchemaStatus400Schema as sy, deleteEdgeConfigSchemaStatus401Schema as sz, activateKmsSigningKeyQueryTeamIdSchema as t, deleteKmsIssuerPathIssuerIdSchema as t$, deleteFlagQueryIfMatchSchema as t0, deleteFlagQuerySlugSchema as t1, deleteFlagQueryTeamIdSchema as t2, deleteFlagQueryWithMetadataSchema as t3, deleteFlagResponseSchema as t4, deleteFlagSegmentErrorSchema as t5, deleteFlagSegmentPathProjectIdOrNameSchema as t6, deleteFlagSegmentPathSegmentIdOrSlugSchema as t7, deleteFlagSegmentQuerySlugSchema as t8, deleteFlagSegmentQueryTeamIdSchema as t9, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema as tA, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema as tB, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema as tC, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema as tD, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema as tE, deleteIntegrationLogDrainErrorSchema as tF, deleteIntegrationLogDrainPathIdSchema as tG, deleteIntegrationLogDrainQuerySlugSchema as tH, deleteIntegrationLogDrainQueryTeamIdSchema as tI, deleteIntegrationLogDrainResponseSchema as tJ, deleteIntegrationLogDrainStatus204Schema as tK, deleteIntegrationLogDrainStatus400Schema as tL, deleteIntegrationLogDrainStatus401Schema as tM, deleteIntegrationLogDrainStatus403Schema as tN, deleteIntegrationLogDrainStatus404Schema as tO, deleteIntegrationLogDrainStatus410Schema as tP, deleteIntegrationResourceErrorSchema as tQ, deleteIntegrationResourcePathIntegrationConfigurationIdSchema as tR, deleteIntegrationResourcePathResourceIdSchema as tS, deleteIntegrationResourceResponseSchema as tT, deleteIntegrationResourceStatus204Schema as tU, deleteIntegrationResourceStatus400Schema as tV, deleteIntegrationResourceStatus401Schema as tW, deleteIntegrationResourceStatus403Schema as tX, deleteIntegrationResourceStatus404Schema as tY, deleteIntegrationResourceStatus410Schema as tZ, deleteKmsIssuerErrorSchema as t_, deleteFlagSegmentQueryWithMetadataSchema as ta, deleteFlagSegmentResponseSchema as tb, deleteFlagSegmentStatus204Schema as tc, deleteFlagSegmentStatus304Schema as td, deleteFlagSegmentStatus400Schema as te, deleteFlagSegmentStatus401Schema as tf, deleteFlagSegmentStatus402Schema as tg, deleteFlagSegmentStatus403Schema as th, deleteFlagSegmentStatus404Schema as ti, deleteFlagSegmentStatus409Schema as tj, deleteFlagSegmentStatus410Schema as tk, deleteFlagStatus204Schema as tl, deleteFlagStatus304Schema as tm, deleteFlagStatus400Schema as tn, deleteFlagStatus401Schema as to, deleteFlagStatus402Schema as tp, deleteFlagStatus403Schema as tq, deleteFlagStatus404Schema as tr, deleteFlagStatus409Schema as ts, deleteFlagStatus410Schema as tt, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema as tu, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema as tv, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema as tw, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema as tx, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema as ty, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema as tz, activateKmsSigningKeyResponseSchema as u, deleteProjectCheckQueryTeamIdSchema as u$, deleteKmsIssuerPolicyErrorSchema as u0, deleteKmsIssuerPolicyPathIssuerIdSchema as u1, deleteKmsIssuerPolicyPathKindSchema as u2, deleteKmsIssuerPolicyPathPolicyKeySchema as u3, deleteKmsIssuerPolicyQuerySlugSchema as u4, deleteKmsIssuerPolicyQueryTeamIdSchema as u5, deleteKmsIssuerPolicyResponseSchema as u6, deleteKmsIssuerPolicyStatus204Schema as u7, deleteKmsIssuerPolicyStatus400Schema as u8, deleteKmsIssuerPolicyStatus401Schema as u9, deleteNetworkQuerySlugSchema as uA, deleteNetworkQueryTeamIdSchema as uB, deleteNetworkResponseSchema as uC, deleteNetworkStatus204Schema as uD, deleteNetworkStatus400Schema as uE, deleteNetworkStatus401Schema as uF, deleteNetworkStatus402Schema as uG, deleteNetworkStatus403Schema as uH, deleteNetworkStatus409Schema as uI, deleteNetworkStatus410Schema as uJ, deletePrivateLinkEndpointErrorSchema as uK, deletePrivateLinkEndpointPathEndpointIdSchema as uL, deletePrivateLinkEndpointQueryProjectIdSchema as uM, deletePrivateLinkEndpointQuerySlugSchema as uN, deletePrivateLinkEndpointQueryTeamIdSchema as uO, deletePrivateLinkEndpointResponseSchema as uP, deletePrivateLinkEndpointStatus204Schema as uQ, deletePrivateLinkEndpointStatus400Schema as uR, deletePrivateLinkEndpointStatus401Schema as uS, deletePrivateLinkEndpointStatus403Schema as uT, deletePrivateLinkEndpointStatus404Schema as uU, deletePrivateLinkEndpointStatus409Schema as uV, deletePrivateLinkEndpointStatus410Schema as uW, deleteProjectCheckErrorSchema as uX, deleteProjectCheckPathCheckIdSchema as uY, deleteProjectCheckPathProjectIdOrNameSchema as uZ, deleteProjectCheckQuerySlugSchema as u_, deleteKmsIssuerPolicyStatus403Schema as ua, deleteKmsIssuerPolicyStatus404Schema as ub, deleteKmsIssuerPolicyStatus410Schema as uc, deleteKmsIssuerQuerySlugSchema as ud, deleteKmsIssuerQueryTeamIdSchema as ue, deleteKmsIssuerResponseSchema as uf, deleteKmsIssuerStatus204Schema as ug, deleteKmsIssuerStatus400Schema as uh, deleteKmsIssuerStatus401Schema as ui, deleteKmsIssuerStatus403Schema as uj, deleteKmsIssuerStatus404Schema as uk, deleteKmsIssuerStatus410Schema as ul, deleteMicrofrontendsGroupErrorSchema as um, deleteMicrofrontendsGroupPathGroupIdSchema as un, deleteMicrofrontendsGroupPathTeamIdSchema as uo, deleteMicrofrontendsGroupQuerySlugSchema as up, deleteMicrofrontendsGroupResponseSchema as uq, deleteMicrofrontendsGroupStatus200Schema as ur, deleteMicrofrontendsGroupStatus400Schema as us, deleteMicrofrontendsGroupStatus401Schema as ut, deleteMicrofrontendsGroupStatus403Schema as uu, deleteMicrofrontendsGroupStatus404Schema as uv, deleteMicrofrontendsGroupStatus410Schema as uw, deleteMicrofrontendsGroupStatus500Schema as ux, deleteNetworkErrorSchema as uy, deleteNetworkPathNetworkIdSchema as uz, activateKmsSigningKeyStatus200Schema as v, deleteRollingReleaseConfigStatus401Schema as v$, deleteProjectCheckResponseSchema as v0, deleteProjectCheckStatus200Schema as v1, deleteProjectCheckStatus400Schema as v2, deleteProjectCheckStatus401Schema as v3, deleteProjectCheckStatus403Schema as v4, deleteProjectCheckStatus404Schema as v5, deleteProjectCheckStatus410Schema as v6, deleteProjectCheckStatus500Schema as v7, deleteProjectErrorSchema as v8, deleteProjectPathIdOrNameSchema as v9, deleteRepositoryImageQuerySlugSchema as vA, deleteRepositoryImageQueryTeamIdSchema as vB, deleteRepositoryImageResponseSchema as vC, deleteRepositoryImageStatus202Schema as vD, deleteRepositoryImageStatus400Schema as vE, deleteRepositoryImageStatus401Schema as vF, deleteRepositoryImageStatus403Schema as vG, deleteRepositoryImageStatus404Schema as vH, deleteRepositoryImageStatus410Schema as vI, deleteRepositoryPathIdOrNameSchema as vJ, deleteRepositoryQueryProjectIdSchema as vK, deleteRepositoryQuerySlugSchema as vL, deleteRepositoryQueryTeamIdSchema as vM, deleteRepositoryResponseSchema as vN, deleteRepositoryStatus202Schema as vO, deleteRepositoryStatus400Schema as vP, deleteRepositoryStatus401Schema as vQ, deleteRepositoryStatus403Schema as vR, deleteRepositoryStatus404Schema as vS, deleteRepositoryStatus410Schema as vT, deleteRollingReleaseConfigErrorSchema as vU, deleteRollingReleaseConfigPathIdOrNameSchema as vV, deleteRollingReleaseConfigQuerySlugSchema as vW, deleteRollingReleaseConfigQueryTeamIdSchema as vX, deleteRollingReleaseConfigResponseSchema as vY, deleteRollingReleaseConfigStatus200Schema as vZ, deleteRollingReleaseConfigStatus400Schema as v_, deleteProjectQuerySlugSchema as va, deleteProjectQueryTeamIdSchema as vb, deleteProjectResponseSchema as vc, deleteProjectStatus204Schema as vd, deleteProjectStatus400Schema as ve, deleteProjectStatus401Schema as vf, deleteProjectStatus403Schema as vg, deleteProjectStatus409Schema as vh, deleteProjectStatus410Schema as vi, deleteRedirectsErrorSchema as vj, deleteRedirectsQueryProjectIdSchema as vk, deleteRedirectsQuerySlugSchema as vl, deleteRedirectsQueryTeamIdSchema as vm, deleteRedirectsResponseSchema as vn, deleteRedirectsStatus200Schema as vo, deleteRedirectsStatus400Schema as vp, deleteRedirectsStatus401Schema as vq, deleteRedirectsStatus403Schema as vr, deleteRedirectsStatus404Schema as vs, deleteRedirectsStatus410Schema as vt, deleteRedirectsStatus500Schema as vu, deleteRepositoryErrorSchema as vv, deleteRepositoryImageErrorSchema as vw, deleteRepositoryImagePathIdOrNameSchema as vx, deleteRepositoryImagePathImageIdSchema as vy, deleteRepositoryImageQueryProjectIdSchema as vz, activateKmsSigningKeyStatus400Schema as w, deleteSessionSnapshotStatus404Schema as w$, deleteRollingReleaseConfigStatus403Schema as w0, deleteRollingReleaseConfigStatus404Schema as w1, deleteRollingReleaseConfigStatus410Schema as w2, deleteRoutesErrorSchema as w3, deleteRoutesPathProjectIdSchema as w4, deleteRoutesQuerySlugSchema as w5, deleteRoutesQueryTeamIdSchema as w6, deleteRoutesResponseSchema as w7, deleteRoutesStatus200Schema as w8, deleteRoutesStatus400Schema as w9, deleteSdkKeyStatus204Schema as wA, deleteSdkKeyStatus400Schema as wB, deleteSdkKeyStatus401Schema as wC, deleteSdkKeyStatus402Schema as wD, deleteSdkKeyStatus403Schema as wE, deleteSdkKeyStatus404Schema as wF, deleteSdkKeyStatus409Schema as wG, deleteSdkKeyStatus410Schema as wH, deleteSecurityFirewallConfigByConfigVersionErrorSchema as wI, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema as wJ, deleteSecurityFirewallConfigByConfigVersionResponseSchema as wK, deleteSecurityFirewallConfigByConfigVersionStatus204Schema as wL, deleteSecurityFirewallConfigByConfigVersionStatus400Schema as wM, deleteSecurityFirewallConfigByConfigVersionStatus401Schema as wN, deleteSecurityFirewallConfigByConfigVersionStatus403Schema as wO, deleteSecurityFirewallConfigByConfigVersionStatus404Schema as wP, deleteSecurityFirewallConfigByConfigVersionStatus410Schema as wQ, deleteSecurityFirewallConfigByConfigVersionStatus500Schema as wR, deleteSessionSnapshotErrorSchema as wS, deleteSessionSnapshotPathSnapshotIdSchema as wT, deleteSessionSnapshotQuerySlugSchema as wU, deleteSessionSnapshotQueryTeamIdSchema as wV, deleteSessionSnapshotResponseSchema as wW, deleteSessionSnapshotStatus200Schema as wX, deleteSessionSnapshotStatus400Schema as wY, deleteSessionSnapshotStatus401Schema as wZ, deleteSessionSnapshotStatus403Schema as w_, deleteRoutesStatus401Schema as wa, deleteRoutesStatus403Schema as wb, deleteRoutesStatus404Schema as wc, deleteRoutesStatus409Schema as wd, deleteRoutesStatus410Schema as we, deleteRoutesStatus500Schema as wf, deleteSandboxErrorSchema as wg, deleteSandboxPathNameSchema as wh, deleteSandboxQueryDeleteOrphanSnapshotsSchema as wi, deleteSandboxQueryProjectIdSchema as wj, deleteSandboxQuerySlugSchema as wk, deleteSandboxQueryTeamIdSchema as wl, deleteSandboxResponseSchema as wm, deleteSandboxStatus200Schema as wn, deleteSandboxStatus400Schema as wo, deleteSandboxStatus401Schema as wp, deleteSandboxStatus403Schema as wq, deleteSandboxStatus404Schema as wr, deleteSandboxStatus410Schema as ws, deleteSandboxStatus429Schema as wt, deleteSdkKeyErrorSchema as wu, deleteSdkKeyPathHashKeySchema as wv, deleteSdkKeyPathProjectIdOrNameSchema as ww, deleteSdkKeyQuerySlugSchema as wx, deleteSdkKeyQueryTeamIdSchema as wy, deleteSdkKeyResponseSchema as wz, activateKmsSigningKeyStatus401Schema as x, domainTooShortSchema as x$, deleteSessionSnapshotStatus410Schema as x0, deleteSessionSnapshotStatus429Schema as x1, deleteSharedEnvVariableErrorSchema as x2, deleteSharedEnvVariableQuerySlugSchema as x3, deleteSharedEnvVariableQueryTeamIdSchema as x4, deleteSharedEnvVariableResponseSchema as x5, deleteSharedEnvVariableStatus200Schema as x6, deleteSharedEnvVariableStatus400Schema as x7, deleteSharedEnvVariableStatus401Schema as x8, deleteSharedEnvVariableStatus402Schema as x9, deleteTeamResponseSchema as xA, deleteTeamStatus200Schema as xB, deleteTeamStatus400Schema as xC, deleteTeamStatus401Schema as xD, deleteTeamStatus402Schema as xE, deleteTeamStatus403Schema as xF, deleteTeamStatus409Schema as xG, deleteTeamStatus410Schema as xH, deleteTeamStatus503Schema as xI, deleteWebhookErrorSchema as xJ, deleteWebhookPathIdSchema as xK, deleteWebhookQuerySlugSchema as xL, deleteWebhookQueryTeamIdSchema as xM, deleteWebhookResponseSchema as xN, deleteWebhookStatus204Schema as xO, deleteWebhookStatus400Schema as xP, deleteWebhookStatus401Schema as xQ, deleteWebhookStatus403Schema as xR, deleteWebhookStatus410Schema as xS, domainAlreadyOwnedSchema as xT, domainAlreadyRenewingSchema as xU, domainCannotBeTransferedOutUntilSchema as xV, domainNameSchema as xW, domainNotAvailableSchema as xX, domainNotFoundSchema as xY, domainNotRegisteredSchema as xZ, domainNotRenewableSchema as x_, deleteSharedEnvVariableStatus403Schema as xa, deleteSharedEnvVariableStatus410Schema as xb, deleteStorageStoresBlobByIdErrorSchema as xc, deleteStorageStoresBlobByIdPathIdSchema as xd, deleteStorageStoresBlobByIdResponseSchema as xe, deleteStorageStoresBlobByIdStatus200Schema as xf, deleteStorageStoresBlobByIdStatus400Schema as xg, deleteStorageStoresBlobByIdStatus401Schema as xh, deleteStorageStoresBlobByIdStatus403Schema as xi, deleteStorageStoresBlobByIdStatus404Schema as xj, deleteStorageStoresBlobByIdStatus409Schema as xk, deleteStorageStoresBlobByIdStatus410Schema as xl, deleteTeamErrorSchema as xm, deleteTeamInviteCodeErrorSchema as xn, deleteTeamInviteCodePathInviteIdSchema as xo, deleteTeamInviteCodePathTeamIdSchema as xp, deleteTeamInviteCodeResponseSchema as xq, deleteTeamInviteCodeStatus200Schema as xr, deleteTeamInviteCodeStatus400Schema as xs, deleteTeamInviteCodeStatus401Schema as xt, deleteTeamInviteCodeStatus403Schema as xu, deleteTeamInviteCodeStatus404Schema as xv, deleteTeamInviteCodeStatus410Schema as xw, deleteTeamPathTeamIdSchema as xx, deleteTeamQueryNewDefaultTeamIdSchema as xy, deleteTeamQuerySlugSchema as xz, activateKmsSigningKeyStatus403Schema as y, exchangeSsoTokenStatus403Schema as y$, downloadArtifactErrorSchema as y0, downloadArtifactHeaderXArtifactClientCiSchema as y1, downloadArtifactHeaderXArtifactClientInteractiveSchema as y2, downloadArtifactPathHashSchema as y3, downloadArtifactQuerySlugSchema as y4, downloadArtifactQueryTeamIdSchema as y5, downloadArtifactResponseSchema as y6, downloadArtifactStatus200Schema as y7, downloadArtifactStatus400Schema as y8, downloadArtifactStatus401Schema as y9, editRedirectResponseSchema as yA, editRedirectStatus200Schema as yB, editRedirectStatus400Schema as yC, editRedirectStatus401Schema as yD, editRedirectStatus403Schema as yE, editRedirectStatus404Schema as yF, editRedirectStatus410Schema as yG, editRedirectStatus500Schema as yH, editRouteErrorSchema as yI, editRoutePathProjectIdSchema as yJ, editRoutePathRouteIdSchema as yK, editRouteQuerySlugSchema as yL, editRouteQueryTeamIdSchema as yM, editRouteResponseSchema as yN, editRouteStatus200Schema as yO, editRouteStatus400Schema as yP, editRouteStatus401Schema as yQ, editRouteStatus403Schema as yR, editRouteStatus404Schema as yS, editRouteStatus409Schema as yT, editRouteStatus410Schema as yU, editRouteStatus500Schema as yV, emailAddressSchema as yW, exchangeSsoTokenErrorSchema as yX, exchangeSsoTokenResponseSchema as yY, exchangeSsoTokenStatus200Schema as yZ, exchangeSsoTokenStatus400Schema as y_, downloadArtifactStatus402Schema as ya, downloadArtifactStatus403Schema as yb, downloadArtifactStatus404Schema as yc, downloadArtifactStatus410Schema as yd, driveSchema as ye, duplicateDomainsSchema as yf, e164PhoneNumberSchema as yg, editProjectEnvErrorSchema as yh, editProjectEnvPathIdOrNameSchema as yi, editProjectEnvPathIdSchema as yj, editProjectEnvQuerySlugSchema as yk, editProjectEnvQueryTeamIdSchema as yl, editProjectEnvResponseSchema as ym, editProjectEnvStatus200Schema as yn, editProjectEnvStatus400Schema as yo, editProjectEnvStatus401Schema as yp, editProjectEnvStatus403Schema as yq, editProjectEnvStatus404Schema as yr, editProjectEnvStatus409Schema as ys, editProjectEnvStatus410Schema as yt, editProjectEnvStatus429Schema as yu, editProjectEnvStatus500Schema as yv, editRedirectErrorSchema as yw, editRedirectQueryProjectIdSchema as yx, editRedirectQuerySlugSchema as yy, editRedirectQueryTeamIdSchema as yz, activateKmsSigningKeyStatus404Schema as z, generateRouteStatus200Schema as z$, exchangeSsoTokenStatus500Schema as z0, expectedPriceMismatchSchema as z1, extendSessionTimeoutErrorSchema as z2, extendSessionTimeoutPathSessionIdSchema as z3, extendSessionTimeoutQuerySlugSchema as z4, extendSessionTimeoutQueryTeamIdSchema as z5, extendSessionTimeoutResponseSchema as z6, extendSessionTimeoutStatus200Schema as z7, extendSessionTimeoutStatus400Schema as z8, extendSessionTimeoutStatus401Schema as z9, finalizeInstallationStatus400Schema as zA, finalizeInstallationStatus401Schema as zB, finalizeInstallationStatus403Schema as zC, finalizeInstallationStatus404Schema as zD, finalizeInstallationStatus410Schema as zE, flagJSONValueSchema as zF, flagSchema as zG, flagsSdkKeyWithSecretsSchema as zH, forbiddenSchema as zI, generateFirewallRuleErrorSchema as zJ, generateFirewallRuleQueryProjectIdSchema as zK, generateFirewallRuleQuerySlugSchema as zL, generateFirewallRuleQueryTeamIdSchema as zM, generateFirewallRuleResponseSchema as zN, generateFirewallRuleStatus200Schema as zO, generateFirewallRuleStatus400Schema as zP, generateFirewallRuleStatus401Schema as zQ, generateFirewallRuleStatus403Schema as zR, generateFirewallRuleStatus404Schema as zS, generateFirewallRuleStatus408Schema as zT, generateFirewallRuleStatus410Schema as zU, generateFirewallRuleStatus500Schema as zV, generateRouteErrorSchema as zW, generateRoutePathProjectIdSchema as zX, generateRouteQuerySlugSchema as zY, generateRouteQueryTeamIdSchema as zZ, generateRouteResponseSchema as z_, extendSessionTimeoutStatus403Schema as za, extendSessionTimeoutStatus404Schema as zb, extendSessionTimeoutStatus410Schema as zc, extendSessionTimeoutStatus422Schema as zd, extendSessionTimeoutStatus429Schema as ze, extendSessionTimeoutStatus500Schema as zf, fileTreeSchema as zg, filterProjectEnvsErrorSchema as zh, filterProjectEnvsPathIdOrNameSchema as zi, filterProjectEnvsQueryCustomEnvironmentIdSchema as zj, filterProjectEnvsQueryCustomEnvironmentSlugSchema as zk, filterProjectEnvsQueryDecryptSchema as zl, filterProjectEnvsQueryGitBranchSchema as zm, filterProjectEnvsQuerySlugSchema as zn, filterProjectEnvsQuerySourceSchema as zo, filterProjectEnvsQueryTeamIdSchema as zp, filterProjectEnvsResponseSchema as zq, filterProjectEnvsStatus200Schema as zr, filterProjectEnvsStatus400Schema as zs, filterProjectEnvsStatus401Schema as zt, filterProjectEnvsStatus403Schema as zu, filterProjectEnvsStatus410Schema as zv, finalizeInstallationErrorSchema as zw, finalizeInstallationPathIntegrationConfigurationIdSchema as zx, finalizeInstallationResponseSchema as zy, finalizeInstallationStatus204Schema as zz };
|