vercel-api-js 1.15.0 → 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 +378 -14
- 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 +311 -28
- package/dist/index.d.ts +4625 -591
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-k96frmq7.cjs → schemas-csiv5yep.cjs} +1821 -272
- package/dist/{schemas-f3m4uoi5.js → schemas-lm0wg73i.js} +1532 -252
- package/dist/schemas.cjs +291 -22
- package/dist/schemas.d.mts +993 -187
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +208 -115
- package/dist/types.d.mts +3237 -391
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +190 -111
- package/package.json +5 -5
package/dist/schemas.d.mts
CHANGED
|
@@ -136,6 +136,29 @@ declare const networkSchema: z.ZodObject<{
|
|
|
136
136
|
teamId: z.ZodString;
|
|
137
137
|
vpcId: z.ZodOptional<z.ZodString>;
|
|
138
138
|
}, z.core.$strip>;
|
|
139
|
+
declare const privateLinkEndpointSchema: z.ZodObject<{
|
|
140
|
+
endpointId: z.ZodString;
|
|
141
|
+
name: z.ZodString;
|
|
142
|
+
teamId: z.ZodString;
|
|
143
|
+
projectId: z.ZodString;
|
|
144
|
+
vercelRegion: z.ZodString;
|
|
145
|
+
awsServiceName: z.ZodString;
|
|
146
|
+
vpcEndpointId: z.ZodOptional<z.ZodString>;
|
|
147
|
+
awsDnsEntries: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
148
|
+
privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
149
|
+
status: z.ZodEnum<{
|
|
150
|
+
provisioning: "provisioning";
|
|
151
|
+
available: "available";
|
|
152
|
+
creating: "creating";
|
|
153
|
+
deleting: "deleting";
|
|
154
|
+
failed: "failed";
|
|
155
|
+
"pending-acceptance": "pending-acceptance";
|
|
156
|
+
rejected: "rejected";
|
|
157
|
+
}>;
|
|
158
|
+
statusMessage: z.ZodOptional<z.ZodString>;
|
|
159
|
+
createdAt: z.ZodNumber;
|
|
160
|
+
updatedAt: z.ZodNumber;
|
|
161
|
+
}, z.core.$strip>;
|
|
139
162
|
declare const connectTriggerConfigurationSchema: z.ZodObject<{
|
|
140
163
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
141
164
|
}, z.core.$strip>;
|
|
@@ -145,6 +168,110 @@ declare const connectTriggerDestinationSchema: z.ZodObject<{
|
|
|
145
168
|
branch: z.ZodOptional<z.ZodString>;
|
|
146
169
|
path: z.ZodOptional<z.ZodString>;
|
|
147
170
|
}, z.core.$strip>;
|
|
171
|
+
declare const connectConnectorSchema: z.ZodObject<{
|
|
172
|
+
id: z.ZodString;
|
|
173
|
+
uid: z.ZodString;
|
|
174
|
+
defaultInstallationId: z.ZodOptional<z.ZodString>;
|
|
175
|
+
createdAt: z.ZodNumber;
|
|
176
|
+
updatedAt: z.ZodNumber;
|
|
177
|
+
reinstallAt: z.ZodOptional<z.ZodNumber>;
|
|
178
|
+
createdBy: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
179
|
+
type: z.ZodEnum<{
|
|
180
|
+
user: "user";
|
|
181
|
+
}>;
|
|
182
|
+
id: z.ZodString;
|
|
183
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
184
|
+
type: z.ZodEnum<{
|
|
185
|
+
project: "project";
|
|
186
|
+
}>;
|
|
187
|
+
id: z.ZodString;
|
|
188
|
+
environment: z.ZodString;
|
|
189
|
+
}, z.core.$strict>], "type">>;
|
|
190
|
+
updatedBy: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
191
|
+
type: z.ZodEnum<{
|
|
192
|
+
user: "user";
|
|
193
|
+
}>;
|
|
194
|
+
id: z.ZodString;
|
|
195
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
196
|
+
type: z.ZodEnum<{
|
|
197
|
+
project: "project";
|
|
198
|
+
}>;
|
|
199
|
+
id: z.ZodString;
|
|
200
|
+
environment: z.ZodString;
|
|
201
|
+
}, z.core.$strict>], "type">>;
|
|
202
|
+
creationMode: z.ZodOptional<z.ZodEnum<{
|
|
203
|
+
managed: "managed";
|
|
204
|
+
manual: "manual";
|
|
205
|
+
}>>;
|
|
206
|
+
managed: z.ZodOptional<z.ZodObject<{
|
|
207
|
+
sync: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
208
|
+
}, z.core.$strip>>;
|
|
209
|
+
type: z.ZodEnum<{
|
|
210
|
+
github: "github";
|
|
211
|
+
oauth: "oauth";
|
|
212
|
+
custom: "custom";
|
|
213
|
+
"api-key": "api-key";
|
|
214
|
+
"aws-alpha": "aws-alpha";
|
|
215
|
+
discord: "discord";
|
|
216
|
+
linear: "linear";
|
|
217
|
+
linq: "linq";
|
|
218
|
+
"microsoft-entra": "microsoft-entra";
|
|
219
|
+
"microsoft-teams": "microsoft-teams";
|
|
220
|
+
photon: "photon";
|
|
221
|
+
salesforce: "salesforce";
|
|
222
|
+
sendblue: "sendblue";
|
|
223
|
+
slack: "slack";
|
|
224
|
+
snowflake: "snowflake";
|
|
225
|
+
"snowflake-wif": "snowflake-wif";
|
|
226
|
+
}>;
|
|
227
|
+
service: z.ZodString;
|
|
228
|
+
connectionMethod: z.ZodOptional<z.ZodString>;
|
|
229
|
+
target: z.ZodOptional<z.ZodString>;
|
|
230
|
+
name: z.ZodString;
|
|
231
|
+
displayName: z.ZodString;
|
|
232
|
+
clientUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
233
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
|
234
|
+
typeName: z.ZodString;
|
|
235
|
+
typeIcon: z.ZodOptional<z.ZodString>;
|
|
236
|
+
website: z.ZodOptional<z.ZodString>;
|
|
237
|
+
devsite: z.ZodOptional<z.ZodString>;
|
|
238
|
+
docsite: z.ZodOptional<z.ZodString>;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
240
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
241
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
242
|
+
supportedSubjectTypes: z.ZodArray<z.ZodString>;
|
|
243
|
+
appTokens: z.ZodOptional<z.ZodObject<{
|
|
244
|
+
crossInstallation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
245
|
+
supportsRefinement: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
246
|
+
supportsResources: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
247
|
+
requiresReinstallation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
248
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
249
|
+
supportedAuthorizationDetails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
250
|
+
permissionsUrl: z.ZodOptional<z.ZodString>;
|
|
251
|
+
}, z.core.$strip>>;
|
|
252
|
+
userTokens: z.ZodOptional<z.ZodObject<{
|
|
253
|
+
crossInstallation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
254
|
+
supportsRefinement: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
255
|
+
supportsResources: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
256
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
257
|
+
supportedAuthorizationDetails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
258
|
+
manualCredentialInput: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
259
|
+
}, z.core.$strip>>;
|
|
260
|
+
supportsInstallation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
261
|
+
supportsRevocation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
262
|
+
supportsTriggers: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
263
|
+
supportsIcon: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<"maybe">, z.ZodLiteral<true>]>;
|
|
264
|
+
triggers: z.ZodOptional<z.ZodUnknown>;
|
|
265
|
+
events: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
266
|
+
triggerDestinations: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
267
|
+
}, z.core.$strip>;
|
|
268
|
+
declare const connectPaginationSchema: z.ZodObject<{
|
|
269
|
+
next: z.ZodNullable<z.ZodString>;
|
|
270
|
+
}, z.core.$strip>;
|
|
271
|
+
declare const connectConnectorListSchema: z.ZodObject<{
|
|
272
|
+
connectors: z.ZodArray<z.ZodUnknown>;
|
|
273
|
+
pagination: z.ZodUnknown;
|
|
274
|
+
}, z.core.$strip>;
|
|
148
275
|
declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
149
276
|
id: z.ZodString;
|
|
150
277
|
uid: z.ZodString;
|
|
@@ -152,7 +279,7 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
152
279
|
createdAt: z.ZodNumber;
|
|
153
280
|
updatedAt: z.ZodNumber;
|
|
154
281
|
reinstallAt: z.ZodOptional<z.ZodNumber>;
|
|
155
|
-
createdBy: z.ZodOptional<z.
|
|
282
|
+
createdBy: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
156
283
|
type: z.ZodEnum<{
|
|
157
284
|
user: "user";
|
|
158
285
|
}>;
|
|
@@ -163,8 +290,8 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
163
290
|
}>;
|
|
164
291
|
id: z.ZodString;
|
|
165
292
|
environment: z.ZodString;
|
|
166
|
-
}, z.core.$strict>]>>;
|
|
167
|
-
updatedBy: z.ZodOptional<z.
|
|
293
|
+
}, z.core.$strict>], "type">>;
|
|
294
|
+
updatedBy: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
168
295
|
type: z.ZodEnum<{
|
|
169
296
|
user: "user";
|
|
170
297
|
}>;
|
|
@@ -175,7 +302,7 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
175
302
|
}>;
|
|
176
303
|
id: z.ZodString;
|
|
177
304
|
environment: z.ZodString;
|
|
178
|
-
}, z.core.$strict>]>>;
|
|
305
|
+
}, z.core.$strict>], "type">>;
|
|
179
306
|
creationMode: z.ZodOptional<z.ZodEnum<{
|
|
180
307
|
managed: "managed";
|
|
181
308
|
manual: "manual";
|
|
@@ -188,6 +315,7 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
188
315
|
oauth: "oauth";
|
|
189
316
|
custom: "custom";
|
|
190
317
|
"api-key": "api-key";
|
|
318
|
+
"aws-alpha": "aws-alpha";
|
|
191
319
|
discord: "discord";
|
|
192
320
|
linear: "linear";
|
|
193
321
|
linq: "linq";
|
|
@@ -219,6 +347,7 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
219
347
|
appTokens: z.ZodOptional<z.ZodObject<{
|
|
220
348
|
crossInstallation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
221
349
|
supportsRefinement: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
350
|
+
supportsResources: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
222
351
|
requiresReinstallation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
223
352
|
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
224
353
|
supportedAuthorizationDetails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -227,6 +356,7 @@ declare const connectConnectorCreateResultSchema: z.ZodObject<{
|
|
|
227
356
|
userTokens: z.ZodOptional<z.ZodObject<{
|
|
228
357
|
crossInstallation: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
229
358
|
supportsRefinement: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
359
|
+
supportsResources: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
230
360
|
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
231
361
|
supportedAuthorizationDetails: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
232
362
|
manualCredentialInput: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
@@ -339,6 +469,7 @@ declare const connectConnectorCreateDataSchema: z.ZodUnion<readonly [z.ZodObject
|
|
|
339
469
|
expiresAt: z.ZodOptional<z.ZodInt>;
|
|
340
470
|
}, z.core.$strict>>>;
|
|
341
471
|
serviceUrls: z.ZodOptional<z.ZodArray<z.ZodURL>>;
|
|
472
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
342
473
|
}, z.core.$strict>, z.ZodObject<{
|
|
343
474
|
appId: z.ZodInt;
|
|
344
475
|
appSlug: z.ZodString;
|
|
@@ -415,6 +546,21 @@ declare const connectConnectorCreateDataSchema: z.ZodUnion<readonly [z.ZodObject
|
|
|
415
546
|
verificationToken: z.ZodOptional<z.ZodString>;
|
|
416
547
|
botScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
417
548
|
userScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
549
|
+
slashCommands: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
550
|
+
command: z.ZodString;
|
|
551
|
+
description: z.ZodString;
|
|
552
|
+
usageHint: z.ZodOptional<z.ZodString>;
|
|
553
|
+
shouldEscape: z.ZodOptional<z.ZodBoolean>;
|
|
554
|
+
}, z.core.$strict>>>;
|
|
555
|
+
shortcuts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
556
|
+
type: z.ZodEnum<{
|
|
557
|
+
global: "global";
|
|
558
|
+
message: "message";
|
|
559
|
+
}>;
|
|
560
|
+
name: z.ZodString;
|
|
561
|
+
callbackId: z.ZodString;
|
|
562
|
+
description: z.ZodString;
|
|
563
|
+
}, z.core.$strict>>>;
|
|
418
564
|
extras: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
419
565
|
}, z.core.$strict>, z.ZodObject<{
|
|
420
566
|
clientName: z.ZodOptional<z.ZodString>;
|
|
@@ -459,6 +605,284 @@ declare const connectCreateConnectorRequestSchema: z.ZodIntersection<z.ZodUnion<
|
|
|
459
605
|
}, z.core.$strict>]>>;
|
|
460
606
|
events: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
461
607
|
}, z.core.$strip>>;
|
|
608
|
+
declare const connectReconsentSchema: z.ZodObject<{
|
|
609
|
+
scope: z.ZodEnum<{
|
|
610
|
+
user: "user";
|
|
611
|
+
}>;
|
|
612
|
+
}, z.core.$strip>;
|
|
613
|
+
declare const connectServiceSyncErrorSchema: z.ZodObject<{
|
|
614
|
+
message: z.ZodString;
|
|
615
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
616
|
+
vendor: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
617
|
+
}, z.core.$strip>;
|
|
618
|
+
declare const connectServiceSyncSchema: z.ZodObject<{
|
|
619
|
+
status: z.ZodEnum<{
|
|
620
|
+
done: "done";
|
|
621
|
+
required: "required";
|
|
622
|
+
}>;
|
|
623
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
624
|
+
}, z.core.$strip>;
|
|
625
|
+
declare const connectConnectorUpdateResultSchema: z.ZodObject<{
|
|
626
|
+
connector: z.ZodUnknown;
|
|
627
|
+
reinstallNeeded: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
628
|
+
reconsentNeeded: z.ZodOptional<z.ZodUnknown>;
|
|
629
|
+
serviceSync: z.ZodOptional<z.ZodUnknown>;
|
|
630
|
+
}, z.core.$strip>;
|
|
631
|
+
declare const connectConnectorUpdateDataSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
632
|
+
serverUrl: z.ZodOptional<z.ZodString>;
|
|
633
|
+
serverConfig: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
634
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
635
|
+
authorizationEndpoint: z.ZodOptional<z.ZodString>;
|
|
636
|
+
tokenEndpoint: z.ZodOptional<z.ZodString>;
|
|
637
|
+
userinfoEndpoint: z.ZodOptional<z.ZodString>;
|
|
638
|
+
jwksUri: z.ZodOptional<z.ZodString>;
|
|
639
|
+
jwks: z.ZodOptional<z.ZodObject<{
|
|
640
|
+
keys: z.ZodArray<z.ZodObject<{
|
|
641
|
+
kty: z.ZodString;
|
|
642
|
+
kid: z.ZodOptional<z.ZodString>;
|
|
643
|
+
use: z.ZodOptional<z.ZodEnum<{
|
|
644
|
+
sig: "sig";
|
|
645
|
+
enc: "enc";
|
|
646
|
+
}>>;
|
|
647
|
+
keyOps: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
648
|
+
alg: z.ZodOptional<z.ZodString>;
|
|
649
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
650
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
651
|
+
revocationEndpoint: z.ZodOptional<z.ZodString>;
|
|
652
|
+
introspectionEndpoint: z.ZodOptional<z.ZodString>;
|
|
653
|
+
endSessionEndpoint: z.ZodOptional<z.ZodString>;
|
|
654
|
+
deviceAuthorizationEndpoint: z.ZodOptional<z.ZodString>;
|
|
655
|
+
registrationEndpoint: z.ZodOptional<z.ZodString>;
|
|
656
|
+
responseTypesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
657
|
+
tokenEndpointAuthMethodsSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
658
|
+
tokenEndpointAuthSigningAlgValuesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
659
|
+
scopesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
660
|
+
grantTypesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
661
|
+
responseModesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
662
|
+
subjectTypesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
663
|
+
idTokenSigningAlgValuesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
664
|
+
idTokenEncryptionAlgValuesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
665
|
+
idTokenEncryptionEncValuesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
666
|
+
claimTypesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
667
|
+
claimsSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
668
|
+
codeChallengeMethodsSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
669
|
+
promptValuesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
670
|
+
claimsParameterSupported: z.ZodOptional<z.ZodBoolean>;
|
|
671
|
+
requestParameterSupported: z.ZodOptional<z.ZodBoolean>;
|
|
672
|
+
requestUriParameterSupported: z.ZodOptional<z.ZodBoolean>;
|
|
673
|
+
requireRequestUriRegistration: z.ZodOptional<z.ZodBoolean>;
|
|
674
|
+
serviceDocumentation: z.ZodOptional<z.ZodString>;
|
|
675
|
+
opPolicyUri: z.ZodOptional<z.ZodString>;
|
|
676
|
+
opTosUri: z.ZodOptional<z.ZodString>;
|
|
677
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
678
|
+
clientIdMetadataDocumentSupported: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
authorizationDetailsTypesSupported: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
680
|
+
}, z.core.$catchall<z.ZodUnknown>>>>;
|
|
681
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
682
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
683
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
684
|
+
tokenEndpointAuthMethod: z.ZodOptional<z.ZodString>;
|
|
685
|
+
responseType: z.ZodOptional<z.ZodString>;
|
|
686
|
+
pkceRequired: z.ZodOptional<z.ZodBoolean>;
|
|
687
|
+
codeChallengeMethod: z.ZodOptional<z.ZodString>;
|
|
688
|
+
userAuthorization: z.ZodOptional<z.ZodObject<{
|
|
689
|
+
enabled: z.ZodBoolean;
|
|
690
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
691
|
+
}, z.core.$strict>>;
|
|
692
|
+
refreshTokens: z.ZodOptional<z.ZodObject<{
|
|
693
|
+
enabled: z.ZodBoolean;
|
|
694
|
+
}, z.core.$strict>>;
|
|
695
|
+
clientCredentials: z.ZodOptional<z.ZodObject<{
|
|
696
|
+
enabled: z.ZodBoolean;
|
|
697
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
698
|
+
}, z.core.$strict>>;
|
|
699
|
+
forwardedClaims: z.ZodOptional<z.ZodObject<{
|
|
700
|
+
idToken: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
701
|
+
}, z.core.$strict>>;
|
|
702
|
+
defaultAudience: z.ZodOptional<z.ZodString>;
|
|
703
|
+
defaultTokenExpiresIn: z.ZodOptional<z.ZodNumber>;
|
|
704
|
+
authorizationUrlParams: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>;
|
|
705
|
+
jwtBearer: z.ZodOptional<z.ZodObject<{
|
|
706
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
707
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
708
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
709
|
+
iss: z.ZodOptional<z.ZodString>;
|
|
710
|
+
aud: z.ZodOptional<z.ZodString>;
|
|
711
|
+
additionalClaims: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
712
|
+
ttl: z.ZodOptional<z.ZodNumber>;
|
|
713
|
+
useClientCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
714
|
+
}, z.core.$strict>>;
|
|
715
|
+
clientAssertion: z.ZodOptional<z.ZodObject<{
|
|
716
|
+
type: z.ZodOptional<z.ZodString>;
|
|
717
|
+
ttl: z.ZodOptional<z.ZodNumber>;
|
|
718
|
+
claims: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
719
|
+
}, z.core.$strict>>;
|
|
720
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
721
|
+
toDelete: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
722
|
+
toAdd: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
723
|
+
value: z.ZodString;
|
|
724
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
725
|
+
expiresAt: z.ZodOptional<z.ZodInt>;
|
|
726
|
+
}, z.core.$strict>>>;
|
|
727
|
+
toUpdate: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
728
|
+
id: z.ZodString;
|
|
729
|
+
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
730
|
+
scope: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
731
|
+
expiresAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodInt, z.ZodString]>>;
|
|
732
|
+
}, z.core.$strict>>>;
|
|
733
|
+
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
734
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
735
|
+
appId: z.ZodOptional<z.ZodInt>;
|
|
736
|
+
appSlug: z.ZodOptional<z.ZodString>;
|
|
737
|
+
appName: z.ZodOptional<z.ZodString>;
|
|
738
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
739
|
+
owner: z.ZodOptional<z.ZodObject<{
|
|
740
|
+
type: z.ZodEnum<{
|
|
741
|
+
user: "user";
|
|
742
|
+
organization: "organization";
|
|
743
|
+
User: "User";
|
|
744
|
+
Organization: "Organization";
|
|
745
|
+
}>;
|
|
746
|
+
id: z.ZodInt;
|
|
747
|
+
slug: z.ZodString;
|
|
748
|
+
name: z.ZodOptional<z.ZodString>;
|
|
749
|
+
}, z.core.$strict>>;
|
|
750
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
751
|
+
privateKeyPem: z.ZodOptional<z.ZodString>;
|
|
752
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
753
|
+
extras: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
754
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
755
|
+
appId: z.ZodOptional<z.ZodString>;
|
|
756
|
+
appName: z.ZodOptional<z.ZodString>;
|
|
757
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
758
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
759
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
760
|
+
appScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
761
|
+
userScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
762
|
+
ownerOrganization: z.ZodOptional<z.ZodObject<{
|
|
763
|
+
id: z.ZodString;
|
|
764
|
+
slug: z.ZodString;
|
|
765
|
+
name: z.ZodString;
|
|
766
|
+
logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
767
|
+
}, z.core.$strict>>;
|
|
768
|
+
application: z.ZodOptional<z.ZodObject<{
|
|
769
|
+
id: z.ZodString;
|
|
770
|
+
clientId: z.ZodString;
|
|
771
|
+
name: z.ZodString;
|
|
772
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
773
|
+
developer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
774
|
+
developerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
775
|
+
imageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
776
|
+
redirectUris: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
777
|
+
distribution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
778
|
+
webhookResourceTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
779
|
+
webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
780
|
+
webhookEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
781
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
782
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
783
|
+
}, z.core.$strict>>;
|
|
784
|
+
extras: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
785
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
786
|
+
consumerKey: z.ZodOptional<z.ZodString>;
|
|
787
|
+
consumerSecret: z.ZodOptional<z.ZodString>;
|
|
788
|
+
loginHost: z.ZodOptional<z.ZodString>;
|
|
789
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
790
|
+
appId: z.ZodOptional<z.ZodString>;
|
|
791
|
+
appName: z.ZodOptional<z.ZodString>;
|
|
792
|
+
clientId: z.ZodOptional<z.ZodString>;
|
|
793
|
+
clientSecret: z.ZodOptional<z.ZodString>;
|
|
794
|
+
slackTeam: z.ZodOptional<z.ZodObject<{
|
|
795
|
+
id: z.ZodString;
|
|
796
|
+
name: z.ZodOptional<z.ZodString>;
|
|
797
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
798
|
+
}, z.core.$strict>>;
|
|
799
|
+
signingSecret: z.ZodOptional<z.ZodString>;
|
|
800
|
+
verificationToken: z.ZodOptional<z.ZodString>;
|
|
801
|
+
botScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
802
|
+
userScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
803
|
+
slashCommands: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
804
|
+
command: z.ZodString;
|
|
805
|
+
description: z.ZodString;
|
|
806
|
+
usageHint: z.ZodOptional<z.ZodString>;
|
|
807
|
+
shouldEscape: z.ZodOptional<z.ZodBoolean>;
|
|
808
|
+
}, z.core.$strict>>>;
|
|
809
|
+
shortcuts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
810
|
+
type: z.ZodEnum<{
|
|
811
|
+
global: "global";
|
|
812
|
+
message: "message";
|
|
813
|
+
}>;
|
|
814
|
+
name: z.ZodString;
|
|
815
|
+
callbackId: z.ZodString;
|
|
816
|
+
description: z.ZodString;
|
|
817
|
+
}, z.core.$strict>>>;
|
|
818
|
+
extras: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
819
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
820
|
+
accountIdentifier: z.ZodOptional<z.ZodString>;
|
|
821
|
+
defaultSessionRole: z.ZodOptional<z.ZodString>;
|
|
822
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
823
|
+
accountIdentifier: z.ZodOptional<z.ZodString>;
|
|
824
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
825
|
+
apiToken: z.ZodOptional<z.ZodString>;
|
|
826
|
+
phoneNumbers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
827
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
828
|
+
apiKeyId: z.ZodOptional<z.ZodString>;
|
|
829
|
+
apiSecretKey: z.ZodOptional<z.ZodString>;
|
|
830
|
+
phoneNumbers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
831
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
832
|
+
projectSecret: z.ZodOptional<z.ZodString>;
|
|
833
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
834
|
+
repairWebhook: z.ZodOptional<z.ZodBoolean>;
|
|
835
|
+
}, z.core.$strict>, z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>]>;
|
|
836
|
+
declare const connectUpdateConnectorRequestSchema: z.ZodObject<{
|
|
837
|
+
triggers: z.ZodOptional<z.ZodBoolean>;
|
|
838
|
+
events: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
839
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
840
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
841
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
842
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
843
|
+
uid: z.ZodOptional<z.ZodString>;
|
|
844
|
+
name: z.ZodOptional<z.ZodString>;
|
|
845
|
+
}, z.core.$strict>;
|
|
846
|
+
declare const connectTriggerDestinationInputSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
847
|
+
projectId: z.ZodString;
|
|
848
|
+
path: z.ZodOptional<z.ZodString>;
|
|
849
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
850
|
+
projectId: z.ZodString;
|
|
851
|
+
branch: z.ZodString;
|
|
852
|
+
path: z.ZodOptional<z.ZodString>;
|
|
853
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
854
|
+
projectId: z.ZodString;
|
|
855
|
+
customEnvironmentId: z.ZodString;
|
|
856
|
+
path: z.ZodOptional<z.ZodString>;
|
|
857
|
+
}, z.core.$strict>]>;
|
|
858
|
+
declare const connectReplaceTriggerDestinationsRequestSchema: z.ZodObject<{
|
|
859
|
+
destinations: z.ZodArray<z.ZodUnknown>;
|
|
860
|
+
}, z.core.$strict>;
|
|
861
|
+
declare const connectProjectConnectionSchema: z.ZodObject<{
|
|
862
|
+
connectorId: z.ZodString;
|
|
863
|
+
project: z.ZodObject<{
|
|
864
|
+
id: z.ZodString;
|
|
865
|
+
name: z.ZodString;
|
|
866
|
+
customEnvironments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
867
|
+
id: z.ZodString;
|
|
868
|
+
slug: z.ZodString;
|
|
869
|
+
}, z.core.$strip>>>;
|
|
870
|
+
}, z.core.$strip>;
|
|
871
|
+
enabledEnvironments: z.ZodArray<z.ZodString>;
|
|
872
|
+
createdAt: z.ZodNumber;
|
|
873
|
+
updatedAt: z.ZodNumber;
|
|
874
|
+
}, z.core.$strip>;
|
|
875
|
+
declare const connectConnectorProjectConnectionListSchema: z.ZodObject<{
|
|
876
|
+
projects: z.ZodArray<z.ZodUnknown>;
|
|
877
|
+
pagination: z.ZodUnknown;
|
|
878
|
+
}, z.core.$strip>;
|
|
879
|
+
declare const connectUpsertProjectConnectionRequestSchema: z.ZodObject<{
|
|
880
|
+
environments: z.ZodArray<z.ZodString>;
|
|
881
|
+
}, z.core.$strip>;
|
|
882
|
+
declare const connectProjectConnectorConnectionListSchema: z.ZodObject<{
|
|
883
|
+
connectors: z.ZodArray<z.ZodUnknown>;
|
|
884
|
+
pagination: z.ZodUnknown;
|
|
885
|
+
}, z.core.$strip>;
|
|
462
886
|
declare const connectErrorSchema: z.ZodObject<{
|
|
463
887
|
error: z.ZodObject<{
|
|
464
888
|
code: z.ZodString;
|
|
@@ -688,7 +1112,7 @@ declare const boughtTooRecentlySchema: z.ZodObject<{
|
|
|
688
1112
|
}>;
|
|
689
1113
|
message: z.ZodString;
|
|
690
1114
|
}, z.core.$strict>;
|
|
691
|
-
declare const registrantFieldSchema: z.
|
|
1115
|
+
declare const registrantFieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
692
1116
|
description: z.ZodString;
|
|
693
1117
|
required: z.ZodBoolean;
|
|
694
1118
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -745,7 +1169,7 @@ declare const registrantFieldSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
745
1169
|
type: z.ZodEnum<{
|
|
746
1170
|
notice: "notice";
|
|
747
1171
|
}>;
|
|
748
|
-
}, z.core.$strict>]>;
|
|
1172
|
+
}, z.core.$strict>], "type">;
|
|
749
1173
|
declare const globalConfigItemValueSchema: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>, z.ZodArray<z.ZodUnknown>, z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>]>>;
|
|
750
1174
|
declare const globalConfigItemSchema: z.ZodObject<{
|
|
751
1175
|
key: z.ZodString;
|
|
@@ -833,8 +1257,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
833
1257
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
834
1258
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
835
1259
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
1260
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
|
|
836
1261
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
837
1262
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
1263
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
|
|
838
1264
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
|
|
839
1265
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
840
1266
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -844,6 +1270,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
844
1270
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
|
|
845
1271
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
|
|
846
1272
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
|
|
1273
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
|
|
847
1274
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
|
|
848
1275
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
|
|
849
1276
|
"ai-gateway-rule-created": "ai-gateway-rule-created";
|
|
@@ -857,8 +1284,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
857
1284
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
|
|
858
1285
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
|
|
859
1286
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
|
|
1287
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
|
|
860
1288
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
|
|
861
1289
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
|
|
1290
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
|
|
862
1291
|
"ai-omniagent": "ai-omniagent";
|
|
863
1292
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
|
|
864
1293
|
"alert-rule-created": "alert-rule-created";
|
|
@@ -1043,6 +1472,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1043
1472
|
"flags-sdk-key-deleted": "flags-sdk-key-deleted";
|
|
1044
1473
|
"flags-sdk-key-read": "flags-sdk-key-read";
|
|
1045
1474
|
"flags-transferred": "flags-transferred";
|
|
1475
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
|
|
1046
1476
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
1047
1477
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
1048
1478
|
"global-config-backup-restored": "global-config-backup-restored";
|
|
@@ -1127,6 +1557,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1127
1557
|
"organization-team-add": "organization-team-add";
|
|
1128
1558
|
"organization-team-create": "organization-team-create";
|
|
1129
1559
|
"organization-team-delete": "organization-team-delete";
|
|
1560
|
+
"organization-team-sso-update": "organization-team-sso-update";
|
|
1130
1561
|
"owner-blocked": "owner-blocked";
|
|
1131
1562
|
"owner-soft-blocked": "owner-soft-blocked";
|
|
1132
1563
|
"owner-soft-unblocked": "owner-soft-unblocked";
|
|
@@ -1206,6 +1637,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1206
1637
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
|
|
1207
1638
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled";
|
|
1208
1639
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
|
|
1640
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created";
|
|
1641
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
|
|
1642
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated";
|
|
1643
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created";
|
|
1644
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
|
|
1645
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated";
|
|
1209
1646
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated";
|
|
1210
1647
|
"project-git-lfs-toggled": "project-git-lfs-toggled";
|
|
1211
1648
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
|
|
@@ -1298,6 +1735,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1298
1735
|
"shared-env-variable-create": "shared-env-variable-create";
|
|
1299
1736
|
"shared-env-variable-delete": "shared-env-variable-delete";
|
|
1300
1737
|
"shared-env-variable-read": "shared-env-variable-read";
|
|
1738
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link";
|
|
1739
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
|
|
1301
1740
|
"shared-env-variable-update": "shared-env-variable-update";
|
|
1302
1741
|
"show-ip-addresses": "show-ip-addresses";
|
|
1303
1742
|
signup: "signup";
|
|
@@ -1328,6 +1767,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1328
1767
|
"storage-update-project-connection": "storage-update-project-connection";
|
|
1329
1768
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
|
|
1330
1769
|
"storage-view-secret": "storage-view-secret";
|
|
1770
|
+
"strict-connectors": "strict-connectors";
|
|
1331
1771
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings";
|
|
1332
1772
|
"strict-password-protection-settings": "strict-password-protection-settings";
|
|
1333
1773
|
"strict-shareable-links": "strict-shareable-links";
|
|
@@ -1489,7 +1929,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1489
1929
|
username: z.ZodString;
|
|
1490
1930
|
uid: z.ZodString;
|
|
1491
1931
|
}, z.core.$strip>>;
|
|
1492
|
-
principal: z.ZodOptional<z.
|
|
1932
|
+
principal: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1493
1933
|
type: z.ZodOptional<z.ZodEnum<{
|
|
1494
1934
|
user: "user";
|
|
1495
1935
|
}>>;
|
|
@@ -1516,8 +1956,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1516
1956
|
type: z.ZodEnum<{
|
|
1517
1957
|
system: "system";
|
|
1518
1958
|
}>;
|
|
1519
|
-
}, z.core.$strict>]>>;
|
|
1520
|
-
via: z.ZodOptional<z.ZodArray<z.
|
|
1959
|
+
}, z.core.$strict>], "type">>;
|
|
1960
|
+
via: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1521
1961
|
type: z.ZodOptional<z.ZodEnum<{
|
|
1522
1962
|
user: "user";
|
|
1523
1963
|
}>>;
|
|
@@ -1544,10 +1984,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1544
1984
|
type: z.ZodEnum<{
|
|
1545
1985
|
system: "system";
|
|
1546
1986
|
}>;
|
|
1547
|
-
}, z.core.$strict>]>>>;
|
|
1987
|
+
}, z.core.$strict>], "type">>>;
|
|
1548
1988
|
userId: z.ZodOptional<z.ZodString>;
|
|
1549
1989
|
principalId: z.ZodString;
|
|
1550
1990
|
viaIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1991
|
+
tokenId: z.ZodOptional<z.ZodString>;
|
|
1992
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
1993
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1551
1994
|
payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$strict>, z.ZodObject<{
|
|
1552
1995
|
action: z.ZodEnum<{
|
|
1553
1996
|
archived: "archived";
|
|
@@ -1590,6 +2033,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1590
2033
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1591
2034
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1592
2035
|
environment: z.ZodArray<z.ZodString>;
|
|
2036
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2037
|
+
projectId: z.ZodString;
|
|
2038
|
+
projectName: z.ZodString;
|
|
2039
|
+
policyId: z.ZodString;
|
|
1593
2040
|
}, z.core.$strict>, z.ZodObject<{
|
|
1594
2041
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
1595
2042
|
chatgpt: "chatgpt";
|
|
@@ -1791,10 +2238,19 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1791
2238
|
providerSlug: z.ZodString;
|
|
1792
2239
|
}, z.core.$strip>;
|
|
1793
2240
|
}, z.core.$strict>, z.ZodObject<{
|
|
1794
|
-
|
|
1795
|
-
|
|
2241
|
+
credential: z.ZodObject<{
|
|
2242
|
+
id: z.ZodString;
|
|
2243
|
+
name: z.ZodString;
|
|
2244
|
+
providerSlug: z.ZodString;
|
|
2245
|
+
}, z.core.$strip>;
|
|
2246
|
+
added: z.ZodArray<z.ZodString>;
|
|
2247
|
+
removed: z.ZodArray<z.ZodString>;
|
|
2248
|
+
changed: z.ZodArray<z.ZodString>;
|
|
1796
2249
|
}, z.core.$strict>, z.ZodObject<{
|
|
1797
2250
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
2251
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2252
|
+
amount: z.ZodString;
|
|
2253
|
+
purchaseIntentId: z.ZodString;
|
|
1798
2254
|
}, z.core.$strict>, z.ZodObject<{
|
|
1799
2255
|
added: z.ZodArray<z.ZodString>;
|
|
1800
2256
|
removed: z.ZodArray<z.ZodString>;
|
|
@@ -2031,6 +2487,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2031
2487
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
|
|
2032
2488
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
|
|
2033
2489
|
"read-write:alerts": "read-write:alerts";
|
|
2490
|
+
"read-write:automations": "read-write:automations";
|
|
2034
2491
|
"read-write:billing": "read-write:billing";
|
|
2035
2492
|
"read-write:blob": "read-write:blob";
|
|
2036
2493
|
"read-write:connect": "read-write:connect";
|
|
@@ -2061,7 +2518,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2061
2518
|
"read:ai-gateway-rules": "read:ai-gateway-rules";
|
|
2062
2519
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
|
|
2063
2520
|
"read:alerts": "read:alerts";
|
|
2521
|
+
"read:automations": "read:automations";
|
|
2064
2522
|
"read:billing": "read:billing";
|
|
2523
|
+
"read:connect": "read:connect";
|
|
2065
2524
|
"read:deployment": "read:deployment";
|
|
2066
2525
|
"read:domain": "read:domain";
|
|
2067
2526
|
"read:event": "read:event";
|
|
@@ -2081,6 +2540,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2081
2540
|
"read:user": "read:user";
|
|
2082
2541
|
"read:vcr": "read:vcr";
|
|
2083
2542
|
"read:web-analytics": "read:web-analytics";
|
|
2543
|
+
"read:webhooks": "read:webhooks";
|
|
2084
2544
|
"use:ai-gateway": "use:ai-gateway";
|
|
2085
2545
|
}>>>;
|
|
2086
2546
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2104,6 +2564,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2104
2564
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
|
|
2105
2565
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
|
|
2106
2566
|
"read-write:alerts": "read-write:alerts";
|
|
2567
|
+
"read-write:automations": "read-write:automations";
|
|
2107
2568
|
"read-write:billing": "read-write:billing";
|
|
2108
2569
|
"read-write:blob": "read-write:blob";
|
|
2109
2570
|
"read-write:connect": "read-write:connect";
|
|
@@ -2134,7 +2595,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2134
2595
|
"read:ai-gateway-rules": "read:ai-gateway-rules";
|
|
2135
2596
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
|
|
2136
2597
|
"read:alerts": "read:alerts";
|
|
2598
|
+
"read:automations": "read:automations";
|
|
2137
2599
|
"read:billing": "read:billing";
|
|
2600
|
+
"read:connect": "read:connect";
|
|
2138
2601
|
"read:deployment": "read:deployment";
|
|
2139
2602
|
"read:domain": "read:domain";
|
|
2140
2603
|
"read:event": "read:event";
|
|
@@ -2154,6 +2617,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2154
2617
|
"read:user": "read:user";
|
|
2155
2618
|
"read:vcr": "read:vcr";
|
|
2156
2619
|
"read:web-analytics": "read:web-analytics";
|
|
2620
|
+
"read:webhooks": "read:webhooks";
|
|
2157
2621
|
"use:ai-gateway": "use:ai-gateway";
|
|
2158
2622
|
}>>>;
|
|
2159
2623
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2183,6 +2647,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2183
2647
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
|
|
2184
2648
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
|
|
2185
2649
|
"read-write:alerts": "read-write:alerts";
|
|
2650
|
+
"read-write:automations": "read-write:automations";
|
|
2186
2651
|
"read-write:billing": "read-write:billing";
|
|
2187
2652
|
"read-write:blob": "read-write:blob";
|
|
2188
2653
|
"read-write:connect": "read-write:connect";
|
|
@@ -2213,7 +2678,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2213
2678
|
"read:ai-gateway-rules": "read:ai-gateway-rules";
|
|
2214
2679
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
|
|
2215
2680
|
"read:alerts": "read:alerts";
|
|
2681
|
+
"read:automations": "read:automations";
|
|
2216
2682
|
"read:billing": "read:billing";
|
|
2683
|
+
"read:connect": "read:connect";
|
|
2217
2684
|
"read:deployment": "read:deployment";
|
|
2218
2685
|
"read:domain": "read:domain";
|
|
2219
2686
|
"read:event": "read:event";
|
|
@@ -2232,6 +2699,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2232
2699
|
"read:team": "read:team";
|
|
2233
2700
|
"read:vcr": "read:vcr";
|
|
2234
2701
|
"read:web-analytics": "read:web-analytics";
|
|
2702
|
+
"read:webhooks": "read:webhooks";
|
|
2235
2703
|
"use:ai-gateway": "use:ai-gateway";
|
|
2236
2704
|
}>>>;
|
|
2237
2705
|
}, z.core.$strip>>;
|
|
@@ -2258,6 +2726,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2258
2726
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
|
|
2259
2727
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
|
|
2260
2728
|
"read-write:alerts": "read-write:alerts";
|
|
2729
|
+
"read-write:automations": "read-write:automations";
|
|
2261
2730
|
"read-write:billing": "read-write:billing";
|
|
2262
2731
|
"read-write:blob": "read-write:blob";
|
|
2263
2732
|
"read-write:connect": "read-write:connect";
|
|
@@ -2288,7 +2757,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2288
2757
|
"read:ai-gateway-rules": "read:ai-gateway-rules";
|
|
2289
2758
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
|
|
2290
2759
|
"read:alerts": "read:alerts";
|
|
2760
|
+
"read:automations": "read:automations";
|
|
2291
2761
|
"read:billing": "read:billing";
|
|
2762
|
+
"read:connect": "read:connect";
|
|
2292
2763
|
"read:deployment": "read:deployment";
|
|
2293
2764
|
"read:domain": "read:domain";
|
|
2294
2765
|
"read:event": "read:event";
|
|
@@ -2307,6 +2778,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2307
2778
|
"read:team": "read:team";
|
|
2308
2779
|
"read:vcr": "read:vcr";
|
|
2309
2780
|
"read:web-analytics": "read:web-analytics";
|
|
2781
|
+
"read:webhooks": "read:webhooks";
|
|
2310
2782
|
"use:ai-gateway": "use:ai-gateway";
|
|
2311
2783
|
}>>>;
|
|
2312
2784
|
}, z.core.$strip>>;
|
|
@@ -2335,6 +2807,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2335
2807
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
|
|
2336
2808
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
|
|
2337
2809
|
"read-write:alerts": "read-write:alerts";
|
|
2810
|
+
"read-write:automations": "read-write:automations";
|
|
2338
2811
|
"read-write:billing": "read-write:billing";
|
|
2339
2812
|
"read-write:blob": "read-write:blob";
|
|
2340
2813
|
"read-write:connect": "read-write:connect";
|
|
@@ -2365,7 +2838,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2365
2838
|
"read:ai-gateway-rules": "read:ai-gateway-rules";
|
|
2366
2839
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
|
|
2367
2840
|
"read:alerts": "read:alerts";
|
|
2841
|
+
"read:automations": "read:automations";
|
|
2368
2842
|
"read:billing": "read:billing";
|
|
2843
|
+
"read:connect": "read:connect";
|
|
2369
2844
|
"read:deployment": "read:deployment";
|
|
2370
2845
|
"read:domain": "read:domain";
|
|
2371
2846
|
"read:event": "read:event";
|
|
@@ -2384,6 +2859,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2384
2859
|
"read:team": "read:team";
|
|
2385
2860
|
"read:vcr": "read:vcr";
|
|
2386
2861
|
"read:web-analytics": "read:web-analytics";
|
|
2862
|
+
"read:webhooks": "read:webhooks";
|
|
2387
2863
|
"use:ai-gateway": "use:ai-gateway";
|
|
2388
2864
|
}>>>;
|
|
2389
2865
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2629,6 +3105,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2629
3105
|
clientUid: z.ZodOptional<z.ZodString>;
|
|
2630
3106
|
clientName: z.ZodOptional<z.ZodString>;
|
|
2631
3107
|
projectId: z.ZodOptional<z.ZodString>;
|
|
3108
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
2632
3109
|
installationId: z.ZodOptional<z.ZodString>;
|
|
2633
3110
|
subjectType: z.ZodOptional<z.ZodEnum<{
|
|
2634
3111
|
user: "user";
|
|
@@ -2711,7 +3188,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2711
3188
|
regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2712
3189
|
type: z.ZodOptional<z.ZodString>;
|
|
2713
3190
|
}, z.core.$strict>, z.ZodObject<{
|
|
2714
|
-
job: z.
|
|
3191
|
+
job: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2715
3192
|
type: z.ZodEnum<{
|
|
2716
3193
|
"bitbucket-push": "bitbucket-push";
|
|
2717
3194
|
}>;
|
|
@@ -3255,7 +3732,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3255
3732
|
provider: z.ZodEnum<{
|
|
3256
3733
|
"cursor-origin": "cursor-origin";
|
|
3257
3734
|
}>;
|
|
3258
|
-
}, z.core.$strict>]>;
|
|
3735
|
+
}, z.core.$strict>], "type">;
|
|
3259
3736
|
}, z.core.$strict>, z.ZodObject<{
|
|
3260
3737
|
url: z.ZodString;
|
|
3261
3738
|
oldTeam: z.ZodOptional<z.ZodObject<{
|
|
@@ -3582,6 +4059,17 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3582
4059
|
lastEditedByDisplayName: z.ZodOptional<z.ZodString>;
|
|
3583
4060
|
projectNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3584
4061
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
4062
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4063
|
+
envId: z.ZodString;
|
|
4064
|
+
envKey: z.ZodString;
|
|
4065
|
+
provider: z.ZodString;
|
|
4066
|
+
organizationId: z.ZodString;
|
|
4067
|
+
repository: z.ZodString;
|
|
4068
|
+
target: z.ZodArray<z.ZodEnum<{
|
|
4069
|
+
production: "production";
|
|
4070
|
+
preview: "preview";
|
|
4071
|
+
development: "development";
|
|
4072
|
+
}>>;
|
|
3585
4073
|
}, z.core.$strict>, z.ZodObject<{
|
|
3586
4074
|
oldEnvVar: z.ZodOptional<z.ZodObject<{
|
|
3587
4075
|
created: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -3719,6 +4207,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3719
4207
|
}>>;
|
|
3720
4208
|
}, z.core.$strict>, z.ZodObject<{
|
|
3721
4209
|
projectId: z.ZodString;
|
|
4210
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
3722
4211
|
previousOwnerId: z.ZodString;
|
|
3723
4212
|
newOwnerId: z.ZodString;
|
|
3724
4213
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -3726,6 +4215,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3726
4215
|
disable: "disable";
|
|
3727
4216
|
enable: "enable";
|
|
3728
4217
|
}>;
|
|
4218
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4219
|
+
source: z.ZodEnum<{
|
|
4220
|
+
enable: "enable";
|
|
4221
|
+
create: "create";
|
|
4222
|
+
upgrade: "upgrade";
|
|
4223
|
+
}>;
|
|
3729
4224
|
}, z.core.$strict>, z.ZodObject<{
|
|
3730
4225
|
provider: z.ZodEnum<{
|
|
3731
4226
|
github: "github";
|
|
@@ -3903,10 +4398,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3903
4398
|
"observability-edge-requests": "observability-edge-requests";
|
|
3904
4399
|
"observability-error-rate": "observability-error-rate";
|
|
3905
4400
|
"observability-function-invocations": "observability-function-invocations";
|
|
4401
|
+
shortcut: "shortcut";
|
|
3906
4402
|
"speed-insights-cls": "speed-insights-cls";
|
|
3907
4403
|
"speed-insights-lcp": "speed-insights-lcp";
|
|
3908
4404
|
"speed-insights-res": "speed-insights-res";
|
|
3909
4405
|
}>;
|
|
4406
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
4407
|
+
url: z.ZodString;
|
|
4408
|
+
}, z.core.$strip>>;
|
|
3910
4409
|
}, z.core.$strip>>>;
|
|
3911
4410
|
remoteCaching: z.ZodOptional<z.ZodObject<{
|
|
3912
4411
|
enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
@@ -3955,10 +4454,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3955
4454
|
flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3956
4455
|
customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
|
|
3957
4456
|
security: z.ZodOptional<z.ZodObject<{
|
|
4457
|
+
rateLimit: z.ZodOptional<z.ZodNumber>;
|
|
3958
4458
|
customRules: z.ZodOptional<z.ZodNumber>;
|
|
3959
4459
|
ipBlocks: z.ZodOptional<z.ZodNumber>;
|
|
3960
4460
|
ipBypass: z.ZodOptional<z.ZodNumber>;
|
|
3961
|
-
rateLimit: z.ZodOptional<z.ZodNumber>;
|
|
3962
4461
|
}, z.core.$strip>>;
|
|
3963
4462
|
bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
|
|
3964
4463
|
buildMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -4027,7 +4526,6 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4027
4526
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
|
|
4028
4527
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
|
|
4029
4528
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
|
|
4030
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
|
|
4031
4529
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
|
|
4032
4530
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
|
|
4033
4531
|
UNPAID_INVOICE: "UNPAID_INVOICE";
|
|
@@ -4073,55 +4571,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4073
4571
|
wafRateLimitRequest: "wafRateLimitRequest";
|
|
4074
4572
|
webAnalyticsEvent: "webAnalyticsEvent";
|
|
4075
4573
|
}>>;
|
|
4076
|
-
|
|
4077
|
-
pausedUntil: z.ZodNumber;
|
|
4078
|
-
pausedAt: z.ZodNumber;
|
|
4079
|
-
triggers: z.ZodArray<z.ZodObject<{
|
|
4080
|
-
allocation: z.ZodEnum<{
|
|
4081
|
-
artifacts: "artifacts";
|
|
4082
|
-
analyticsUsage: "analyticsUsage";
|
|
4083
|
-
bandwidth: "bandwidth";
|
|
4084
|
-
blobDataTransfer: "blobDataTransfer";
|
|
4085
|
-
blobTotalAdvancedRequests: "blobTotalAdvancedRequests";
|
|
4086
|
-
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes";
|
|
4087
|
-
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes";
|
|
4088
|
-
blobTotalSimpleRequests: "blobTotalSimpleRequests";
|
|
4089
|
-
connectDataTransfer: "connectDataTransfer";
|
|
4090
|
-
dataCacheRead: "dataCacheRead";
|
|
4091
|
-
dataCacheWrite: "dataCacheWrite";
|
|
4092
|
-
edgeConfigRead: "edgeConfigRead";
|
|
4093
|
-
edgeConfigWrite: "edgeConfigWrite";
|
|
4094
|
-
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits";
|
|
4095
|
-
edgeMiddlewareInvocations: "edgeMiddlewareInvocations";
|
|
4096
|
-
edgeRequest: "edgeRequest";
|
|
4097
|
-
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration";
|
|
4098
|
-
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots";
|
|
4099
|
-
fastDataTransfer: "fastDataTransfer";
|
|
4100
|
-
fastOriginTransfer: "fastOriginTransfer";
|
|
4101
|
-
fluidCpuDuration: "fluidCpuDuration";
|
|
4102
|
-
fluidDuration: "fluidDuration";
|
|
4103
|
-
functionDuration: "functionDuration";
|
|
4104
|
-
functionInvocation: "functionInvocation";
|
|
4105
|
-
imageOptimizationCacheRead: "imageOptimizationCacheRead";
|
|
4106
|
-
imageOptimizationCacheWrite: "imageOptimizationCacheWrite";
|
|
4107
|
-
imageOptimizationTransformation: "imageOptimizationTransformation";
|
|
4108
|
-
logDrainsVolume: "logDrainsVolume";
|
|
4109
|
-
monitoringMetric: "monitoringMetric";
|
|
4110
|
-
observabilityEvent: "observabilityEvent";
|
|
4111
|
-
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes";
|
|
4112
|
-
runtimeCacheRead: "runtimeCacheRead";
|
|
4113
|
-
runtimeCacheWrite: "runtimeCacheWrite";
|
|
4114
|
-
serverlessFunctionExecution: "serverlessFunctionExecution";
|
|
4115
|
-
sourceImages: "sourceImages";
|
|
4116
|
-
wafOwaspExcessBytes: "wafOwaspExcessBytes";
|
|
4117
|
-
wafOwaspRequests: "wafOwaspRequests";
|
|
4118
|
-
wafRateLimitRequest: "wafRateLimitRequest";
|
|
4119
|
-
webAnalyticsEvent: "webAnalyticsEvent";
|
|
4120
|
-
}>;
|
|
4121
|
-
usage: z.ZodNumber;
|
|
4122
|
-
}, z.core.$strip>>;
|
|
4123
|
-
cohort: z.ZodString;
|
|
4124
|
-
}, z.core.$strip>>;
|
|
4574
|
+
unpauseAt: z.ZodOptional<z.ZodNumber>;
|
|
4125
4575
|
}, z.core.$strip>>>;
|
|
4126
4576
|
stagingPrefix: z.ZodString;
|
|
4127
4577
|
sysToken: z.ZodString;
|
|
@@ -4222,196 +4672,235 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4222
4672
|
currentThreshold: z.ZodNumber;
|
|
4223
4673
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4224
4674
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4675
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4225
4676
|
}, z.core.$strip>>;
|
|
4226
4677
|
artifacts: z.ZodOptional<z.ZodObject<{
|
|
4227
4678
|
currentThreshold: z.ZodNumber;
|
|
4228
4679
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4229
4680
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4681
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4230
4682
|
}, z.core.$strip>>;
|
|
4231
4683
|
bandwidth: z.ZodOptional<z.ZodObject<{
|
|
4232
4684
|
currentThreshold: z.ZodNumber;
|
|
4233
4685
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4234
4686
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4687
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4235
4688
|
}, z.core.$strip>>;
|
|
4236
4689
|
blobTotalAdvancedRequests: z.ZodOptional<z.ZodObject<{
|
|
4237
4690
|
currentThreshold: z.ZodNumber;
|
|
4238
4691
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4239
4692
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4693
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4240
4694
|
}, z.core.$strip>>;
|
|
4241
4695
|
blobTotalAvgSizeInBytes: z.ZodOptional<z.ZodObject<{
|
|
4242
4696
|
currentThreshold: z.ZodNumber;
|
|
4243
4697
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4244
4698
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4699
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4245
4700
|
}, z.core.$strip>>;
|
|
4246
4701
|
blobTotalGetResponseObjectSizeInBytes: z.ZodOptional<z.ZodObject<{
|
|
4247
4702
|
currentThreshold: z.ZodNumber;
|
|
4248
4703
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4249
4704
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4705
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4250
4706
|
}, z.core.$strip>>;
|
|
4251
4707
|
blobTotalSimpleRequests: z.ZodOptional<z.ZodObject<{
|
|
4252
4708
|
currentThreshold: z.ZodNumber;
|
|
4253
4709
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4254
4710
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4711
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4255
4712
|
}, z.core.$strip>>;
|
|
4256
4713
|
connectDataTransfer: z.ZodOptional<z.ZodObject<{
|
|
4257
4714
|
currentThreshold: z.ZodNumber;
|
|
4258
4715
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4259
4716
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4717
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4260
4718
|
}, z.core.$strip>>;
|
|
4261
4719
|
dataCacheRead: z.ZodOptional<z.ZodObject<{
|
|
4262
4720
|
currentThreshold: z.ZodNumber;
|
|
4263
4721
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4264
4722
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4723
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4265
4724
|
}, z.core.$strip>>;
|
|
4266
4725
|
dataCacheWrite: z.ZodOptional<z.ZodObject<{
|
|
4267
4726
|
currentThreshold: z.ZodNumber;
|
|
4268
4727
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4269
4728
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4729
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4270
4730
|
}, z.core.$strip>>;
|
|
4271
4731
|
edgeConfigRead: z.ZodOptional<z.ZodObject<{
|
|
4272
4732
|
currentThreshold: z.ZodNumber;
|
|
4273
4733
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4274
4734
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4735
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4275
4736
|
}, z.core.$strip>>;
|
|
4276
4737
|
edgeConfigWrite: z.ZodOptional<z.ZodObject<{
|
|
4277
4738
|
currentThreshold: z.ZodNumber;
|
|
4278
4739
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4279
4740
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4741
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4280
4742
|
}, z.core.$strip>>;
|
|
4281
4743
|
edgeFunctionExecutionUnits: z.ZodOptional<z.ZodObject<{
|
|
4282
4744
|
currentThreshold: z.ZodNumber;
|
|
4283
4745
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4284
4746
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4747
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4285
4748
|
}, z.core.$strip>>;
|
|
4286
4749
|
edgeMiddlewareInvocations: z.ZodOptional<z.ZodObject<{
|
|
4287
4750
|
currentThreshold: z.ZodNumber;
|
|
4288
4751
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4289
4752
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4753
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4290
4754
|
}, z.core.$strip>>;
|
|
4291
4755
|
edgeRequestAdditionalCpuDuration: z.ZodOptional<z.ZodObject<{
|
|
4292
4756
|
currentThreshold: z.ZodNumber;
|
|
4293
4757
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4294
4758
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4759
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4295
4760
|
}, z.core.$strip>>;
|
|
4296
4761
|
edgeRequest: z.ZodOptional<z.ZodObject<{
|
|
4297
4762
|
currentThreshold: z.ZodNumber;
|
|
4298
4763
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4299
4764
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4765
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4300
4766
|
}, z.core.$strip>>;
|
|
4301
4767
|
elasticConcurrencyBuildSlots: z.ZodOptional<z.ZodObject<{
|
|
4302
4768
|
currentThreshold: z.ZodNumber;
|
|
4303
4769
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4304
4770
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4771
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4305
4772
|
}, z.core.$strip>>;
|
|
4306
4773
|
fastDataTransfer: z.ZodOptional<z.ZodObject<{
|
|
4307
4774
|
currentThreshold: z.ZodNumber;
|
|
4308
4775
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4309
4776
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4777
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4310
4778
|
}, z.core.$strip>>;
|
|
4311
4779
|
fastOriginTransfer: z.ZodOptional<z.ZodObject<{
|
|
4312
4780
|
currentThreshold: z.ZodNumber;
|
|
4313
4781
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4314
4782
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4783
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4315
4784
|
}, z.core.$strip>>;
|
|
4316
4785
|
fluidCpuDuration: z.ZodOptional<z.ZodObject<{
|
|
4317
4786
|
currentThreshold: z.ZodNumber;
|
|
4318
4787
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4319
4788
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4789
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4320
4790
|
}, z.core.$strip>>;
|
|
4321
4791
|
fluidDuration: z.ZodOptional<z.ZodObject<{
|
|
4322
4792
|
currentThreshold: z.ZodNumber;
|
|
4323
4793
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4324
4794
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4795
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4325
4796
|
}, z.core.$strip>>;
|
|
4326
4797
|
functionDuration: z.ZodOptional<z.ZodObject<{
|
|
4327
4798
|
currentThreshold: z.ZodNumber;
|
|
4328
4799
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4329
4800
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4801
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4330
4802
|
}, z.core.$strip>>;
|
|
4331
4803
|
functionInvocation: z.ZodOptional<z.ZodObject<{
|
|
4332
4804
|
currentThreshold: z.ZodNumber;
|
|
4333
4805
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4334
4806
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4807
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4335
4808
|
}, z.core.$strip>>;
|
|
4336
4809
|
imageOptimizationCacheRead: z.ZodOptional<z.ZodObject<{
|
|
4337
4810
|
currentThreshold: z.ZodNumber;
|
|
4338
4811
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4339
4812
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4813
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4340
4814
|
}, z.core.$strip>>;
|
|
4341
4815
|
imageOptimizationCacheWrite: z.ZodOptional<z.ZodObject<{
|
|
4342
4816
|
currentThreshold: z.ZodNumber;
|
|
4343
4817
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4344
4818
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4819
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4345
4820
|
}, z.core.$strip>>;
|
|
4346
4821
|
imageOptimizationTransformation: z.ZodOptional<z.ZodObject<{
|
|
4347
4822
|
currentThreshold: z.ZodNumber;
|
|
4348
4823
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4349
4824
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4825
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4350
4826
|
}, z.core.$strip>>;
|
|
4351
4827
|
logDrainsVolume: z.ZodOptional<z.ZodObject<{
|
|
4352
4828
|
currentThreshold: z.ZodNumber;
|
|
4353
4829
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4354
4830
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4831
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4355
4832
|
}, z.core.$strip>>;
|
|
4356
4833
|
monitoringMetric: z.ZodOptional<z.ZodObject<{
|
|
4357
4834
|
currentThreshold: z.ZodNumber;
|
|
4358
4835
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4359
4836
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4837
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4360
4838
|
}, z.core.$strip>>;
|
|
4361
4839
|
blobDataTransfer: z.ZodOptional<z.ZodObject<{
|
|
4362
4840
|
currentThreshold: z.ZodNumber;
|
|
4363
4841
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4364
4842
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4843
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4365
4844
|
}, z.core.$strip>>;
|
|
4366
4845
|
observabilityEvent: z.ZodOptional<z.ZodObject<{
|
|
4367
4846
|
currentThreshold: z.ZodNumber;
|
|
4368
4847
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4369
4848
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4849
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4370
4850
|
}, z.core.$strip>>;
|
|
4371
4851
|
onDemandConcurrencyMinutes: z.ZodOptional<z.ZodObject<{
|
|
4372
4852
|
currentThreshold: z.ZodNumber;
|
|
4373
4853
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4374
4854
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4855
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4375
4856
|
}, z.core.$strip>>;
|
|
4376
4857
|
runtimeCacheRead: z.ZodOptional<z.ZodObject<{
|
|
4377
4858
|
currentThreshold: z.ZodNumber;
|
|
4378
4859
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4379
4860
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4861
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4380
4862
|
}, z.core.$strip>>;
|
|
4381
4863
|
runtimeCacheWrite: z.ZodOptional<z.ZodObject<{
|
|
4382
4864
|
currentThreshold: z.ZodNumber;
|
|
4383
4865
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4384
4866
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4867
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4385
4868
|
}, z.core.$strip>>;
|
|
4386
4869
|
serverlessFunctionExecution: z.ZodOptional<z.ZodObject<{
|
|
4387
4870
|
currentThreshold: z.ZodNumber;
|
|
4388
4871
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4389
4872
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4873
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4390
4874
|
}, z.core.$strip>>;
|
|
4391
4875
|
sourceImages: z.ZodOptional<z.ZodObject<{
|
|
4392
4876
|
currentThreshold: z.ZodNumber;
|
|
4393
4877
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4394
4878
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4879
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4395
4880
|
}, z.core.$strip>>;
|
|
4396
4881
|
wafOwaspExcessBytes: z.ZodOptional<z.ZodObject<{
|
|
4397
4882
|
currentThreshold: z.ZodNumber;
|
|
4398
4883
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4399
4884
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4885
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4400
4886
|
}, z.core.$strip>>;
|
|
4401
4887
|
wafOwaspRequests: z.ZodOptional<z.ZodObject<{
|
|
4402
4888
|
currentThreshold: z.ZodNumber;
|
|
4403
4889
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4404
4890
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4891
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4405
4892
|
}, z.core.$strip>>;
|
|
4406
4893
|
wafRateLimitRequest: z.ZodOptional<z.ZodObject<{
|
|
4407
4894
|
currentThreshold: z.ZodNumber;
|
|
4408
4895
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4409
4896
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4897
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4410
4898
|
}, z.core.$strip>>;
|
|
4411
4899
|
webAnalyticsEvent: z.ZodOptional<z.ZodObject<{
|
|
4412
4900
|
currentThreshold: z.ZodNumber;
|
|
4413
4901
|
warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4414
4902
|
blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4903
|
+
blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4415
4904
|
}, z.core.$strip>>;
|
|
4416
4905
|
}, z.core.$strip>>;
|
|
4417
4906
|
overageMetadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -4421,11 +4910,6 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4421
4910
|
overageSummaryExpiresAt: z.ZodOptional<z.ZodNumber>;
|
|
4422
4911
|
increasedOnDemandEmailSentAt: z.ZodOptional<z.ZodNumber>;
|
|
4423
4912
|
increasedOnDemandEmailAttemptedAt: z.ZodOptional<z.ZodNumber>;
|
|
4424
|
-
hobbyPolicyNoticeSlackSentAt: z.ZodOptional<z.ZodNumber>;
|
|
4425
|
-
hobbyWarningV2SlackSentAt: z.ZodOptional<z.ZodNumber>;
|
|
4426
|
-
hobbyWarningV2At100SlackSentAt: z.ZodOptional<z.ZodNumber>;
|
|
4427
|
-
hobbyPauseNoticeSlackSentAt: z.ZodOptional<z.ZodNumber>;
|
|
4428
|
-
hobbyPolicySlackThreadTs: z.ZodOptional<z.ZodString>;
|
|
4429
4913
|
}, z.core.$strip>>;
|
|
4430
4914
|
speedInsightsFreeUsageAlert: z.ZodOptional<z.ZodObject<{
|
|
4431
4915
|
currentThreshold: z.ZodNumber;
|
|
@@ -4914,20 +5398,23 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4914
5398
|
integrationSlug: z.ZodString;
|
|
4915
5399
|
integrationProductSlug: z.ZodString;
|
|
4916
5400
|
configurationId: z.ZodString;
|
|
4917
|
-
|
|
5401
|
+
errorCode: z.ZodOptional<z.ZodString>;
|
|
4918
5402
|
requestKind: z.ZodEnum<{
|
|
4919
5403
|
raw_commands: "raw_commands";
|
|
4920
5404
|
}>;
|
|
4921
5405
|
readonly: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4922
|
-
commands: z.ZodArray<z.
|
|
4923
|
-
|
|
5406
|
+
commands: z.ZodArray<z.ZodObject<{
|
|
5407
|
+
command: z.ZodString;
|
|
5408
|
+
errorCode: z.ZodOptional<z.ZodString>;
|
|
5409
|
+
}, z.core.$strip>>;
|
|
5410
|
+
errorIndex: z.ZodOptional<z.ZodNumber>;
|
|
4924
5411
|
}, z.core.$strict>, z.ZodObject<{
|
|
4925
5412
|
resourceId: z.ZodString;
|
|
4926
5413
|
integrationId: z.ZodString;
|
|
4927
5414
|
integrationSlug: z.ZodString;
|
|
4928
5415
|
integrationProductSlug: z.ZodString;
|
|
4929
5416
|
configurationId: z.ZodString;
|
|
4930
|
-
|
|
5417
|
+
errorCode: z.ZodOptional<z.ZodString>;
|
|
4931
5418
|
requestKind: z.ZodEnum<{
|
|
4932
5419
|
list_keys: "list_keys";
|
|
4933
5420
|
}>;
|
|
@@ -4939,7 +5426,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4939
5426
|
integrationSlug: z.ZodString;
|
|
4940
5427
|
integrationProductSlug: z.ZodString;
|
|
4941
5428
|
configurationId: z.ZodString;
|
|
4942
|
-
|
|
5429
|
+
errorCode: z.ZodOptional<z.ZodString>;
|
|
4943
5430
|
requestKind: z.ZodEnum<{
|
|
4944
5431
|
get_keys_metadata: "get_keys_metadata";
|
|
4945
5432
|
}>;
|
|
@@ -4950,7 +5437,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4950
5437
|
integrationSlug: z.ZodString;
|
|
4951
5438
|
integrationProductSlug: z.ZodString;
|
|
4952
5439
|
configurationId: z.ZodString;
|
|
4953
|
-
|
|
5440
|
+
errorCode: z.ZodOptional<z.ZodString>;
|
|
4954
5441
|
requestKind: z.ZodEnum<{
|
|
4955
5442
|
get_key_data: "get_key_data";
|
|
4956
5443
|
}>;
|
|
@@ -5249,6 +5736,18 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5249
5736
|
enterprise: "enterprise";
|
|
5250
5737
|
platform: "platform";
|
|
5251
5738
|
}>;
|
|
5739
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5740
|
+
organizationId: z.ZodString;
|
|
5741
|
+
teamId: z.ZodString;
|
|
5742
|
+
teamName: z.ZodString;
|
|
5743
|
+
previousMode: z.ZodEnum<{
|
|
5744
|
+
organization: "organization";
|
|
5745
|
+
team: "team";
|
|
5746
|
+
}>;
|
|
5747
|
+
mode: z.ZodEnum<{
|
|
5748
|
+
organization: "organization";
|
|
5749
|
+
team: "team";
|
|
5750
|
+
}>;
|
|
5252
5751
|
}, z.core.$strict>, z.ZodObject<{
|
|
5253
5752
|
ownerId: z.ZodString;
|
|
5254
5753
|
source: z.ZodString;
|
|
@@ -5574,6 +6073,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5574
6073
|
previewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5575
6074
|
previousPreviewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5576
6075
|
}, z.core.$strict>, z.ZodObject<{
|
|
6076
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
5577
6077
|
endpoint: z.ZodObject<{
|
|
5578
6078
|
id: z.ZodString;
|
|
5579
6079
|
name: z.ZodString;
|
|
@@ -5583,12 +6083,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5583
6083
|
privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5584
6084
|
}, z.core.$strip>;
|
|
5585
6085
|
}, z.core.$strict>, z.ZodObject<{
|
|
6086
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
5586
6087
|
privateLinkEndpoint: z.ZodObject<{
|
|
5587
6088
|
id: z.ZodString;
|
|
5588
6089
|
name: z.ZodString;
|
|
5589
6090
|
}, z.core.$strip>;
|
|
5590
6091
|
projectId: z.ZodString;
|
|
5591
6092
|
}, z.core.$strict>, z.ZodObject<{
|
|
6093
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
5592
6094
|
prev: z.ZodObject<{
|
|
5593
6095
|
id: z.ZodString;
|
|
5594
6096
|
name: z.ZodString;
|
|
@@ -5606,6 +6108,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5606
6108
|
privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5607
6109
|
}, z.core.$strip>;
|
|
5608
6110
|
}, z.core.$strict>, z.ZodObject<{
|
|
6111
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
5609
6112
|
privateLinkEndpoint: z.ZodObject<{
|
|
5610
6113
|
id: z.ZodString;
|
|
5611
6114
|
name: z.ZodString;
|
|
@@ -5711,6 +6214,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5711
6214
|
"observability-edge-requests": "observability-edge-requests";
|
|
5712
6215
|
"observability-error-rate": "observability-error-rate";
|
|
5713
6216
|
"observability-function-invocations": "observability-function-invocations";
|
|
6217
|
+
shortcut: "shortcut";
|
|
5714
6218
|
"speed-insights-cls": "speed-insights-cls";
|
|
5715
6219
|
"speed-insights-lcp": "speed-insights-lcp";
|
|
5716
6220
|
"speed-insights-res": "speed-insights-res";
|
|
@@ -5886,6 +6390,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5886
6390
|
gitlab: "gitlab";
|
|
5887
6391
|
bitbucket: "bitbucket";
|
|
5888
6392
|
"cursor-origin": "cursor-origin";
|
|
6393
|
+
v0: "v0";
|
|
5889
6394
|
vercel: "vercel";
|
|
5890
6395
|
}>;
|
|
5891
6396
|
gitRepoId: z.ZodString;
|
|
@@ -5899,6 +6404,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5899
6404
|
gitlab: "gitlab";
|
|
5900
6405
|
bitbucket: "bitbucket";
|
|
5901
6406
|
"cursor-origin": "cursor-origin";
|
|
6407
|
+
v0: "v0";
|
|
5902
6408
|
vercel: "vercel";
|
|
5903
6409
|
}>;
|
|
5904
6410
|
gitRepoId: z.ZodString;
|
|
@@ -5914,6 +6420,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5914
6420
|
gitlab: "gitlab";
|
|
5915
6421
|
bitbucket: "bitbucket";
|
|
5916
6422
|
"cursor-origin": "cursor-origin";
|
|
6423
|
+
v0: "v0";
|
|
5917
6424
|
vercel: "vercel";
|
|
5918
6425
|
}>;
|
|
5919
6426
|
gitRepoId: z.ZodString;
|
|
@@ -6207,8 +6714,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6207
6714
|
}, z.core.$strict>, z.ZodObject<{
|
|
6208
6715
|
projectId: z.ZodString;
|
|
6209
6716
|
projectName: z.ZodString;
|
|
6210
|
-
previous: z.ZodNullable<z.ZodObject<{
|
|
6211
|
-
|
|
6717
|
+
previous: z.ZodNullable<z.ZodObject<{
|
|
6718
|
+
gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6719
|
+
deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6720
|
+
}, z.core.$strip>>;
|
|
6721
|
+
next: z.ZodNullable<z.ZodObject<{
|
|
6722
|
+
gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6723
|
+
deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6724
|
+
}, z.core.$strip>>;
|
|
6212
6725
|
}, z.core.$strict>, z.ZodObject<{
|
|
6213
6726
|
projectId: z.ZodString;
|
|
6214
6727
|
projectName: z.ZodString;
|
|
@@ -6391,6 +6904,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6391
6904
|
}, z.core.$strict>, z.ZodObject<{
|
|
6392
6905
|
projectId: z.ZodString;
|
|
6393
6906
|
projectName: z.ZodString;
|
|
6907
|
+
enableVercelCiSameRepository: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
6394
6908
|
addedProjects: z.ZodArray<z.ZodObject<{
|
|
6395
6909
|
id: z.ZodString;
|
|
6396
6910
|
name: z.ZodString;
|
|
@@ -6588,6 +7102,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6588
7102
|
plus: "plus";
|
|
6589
7103
|
unbundled: "unbundled";
|
|
6590
7104
|
}>>;
|
|
7105
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
7106
|
+
organization: "organization";
|
|
7107
|
+
project: "project";
|
|
7108
|
+
team: "team";
|
|
7109
|
+
}>>;
|
|
7110
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
6591
7111
|
teamId: z.ZodString;
|
|
6592
7112
|
id: z.ZodString;
|
|
6593
7113
|
}, z.core.$strip>;
|
|
@@ -6613,6 +7133,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6613
7133
|
plus: "plus";
|
|
6614
7134
|
unbundled: "unbundled";
|
|
6615
7135
|
}>>;
|
|
7136
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
7137
|
+
organization: "organization";
|
|
7138
|
+
project: "project";
|
|
7139
|
+
team: "team";
|
|
7140
|
+
}>>;
|
|
7141
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
6616
7142
|
teamId: z.ZodString;
|
|
6617
7143
|
id: z.ZodString;
|
|
6618
7144
|
}, z.core.$strip>;
|
|
@@ -6637,6 +7163,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6637
7163
|
plus: "plus";
|
|
6638
7164
|
unbundled: "unbundled";
|
|
6639
7165
|
}>>;
|
|
7166
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
7167
|
+
organization: "organization";
|
|
7168
|
+
project: "project";
|
|
7169
|
+
team: "team";
|
|
7170
|
+
}>>;
|
|
7171
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
6640
7172
|
teamId: z.ZodString;
|
|
6641
7173
|
id: z.ZodString;
|
|
6642
7174
|
}, z.core.$strip>;
|
|
@@ -6662,6 +7194,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6662
7194
|
plus: "plus";
|
|
6663
7195
|
unbundled: "unbundled";
|
|
6664
7196
|
}>>;
|
|
7197
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
7198
|
+
organization: "organization";
|
|
7199
|
+
project: "project";
|
|
7200
|
+
team: "team";
|
|
7201
|
+
}>>;
|
|
7202
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
6665
7203
|
teamId: z.ZodString;
|
|
6666
7204
|
id: z.ZodString;
|
|
6667
7205
|
}, z.core.$strip>;
|
|
@@ -6685,6 +7223,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6685
7223
|
plus: "plus";
|
|
6686
7224
|
unbundled: "unbundled";
|
|
6687
7225
|
}>>;
|
|
7226
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
7227
|
+
organization: "organization";
|
|
7228
|
+
project: "project";
|
|
7229
|
+
team: "team";
|
|
7230
|
+
}>>;
|
|
7231
|
+
scopeId: z.ZodOptional<z.ZodString>;
|
|
6688
7232
|
teamId: z.ZodString;
|
|
6689
7233
|
id: z.ZodString;
|
|
6690
7234
|
}, z.core.$strip>>;
|
|
@@ -6879,6 +7423,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6879
7423
|
"long-build-duration": "long-build-duration";
|
|
6880
7424
|
"oom-failure": "oom-failure";
|
|
6881
7425
|
"plan-change": "plan-change";
|
|
7426
|
+
"project-transfer": "project-transfer";
|
|
6882
7427
|
"short-build-duration": "short-build-duration";
|
|
6883
7428
|
"sustained-high-cpu": "sustained-high-cpu";
|
|
6884
7429
|
}>>;
|
|
@@ -6908,8 +7453,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6908
7453
|
removedMemberCount: z.ZodOptional<z.ZodNumber>;
|
|
6909
7454
|
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
6910
7455
|
}, z.core.$strict>, z.ZodObject<{
|
|
6911
|
-
previous: z.ZodNullable<z.ZodObject<{
|
|
6912
|
-
|
|
7456
|
+
previous: z.ZodNullable<z.ZodObject<{
|
|
7457
|
+
gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7458
|
+
deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7459
|
+
}, z.core.$strip>>;
|
|
7460
|
+
next: z.ZodNullable<z.ZodObject<{
|
|
7461
|
+
gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7462
|
+
deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7463
|
+
}, z.core.$strip>>;
|
|
6913
7464
|
}, z.core.$strict>, z.ZodObject<{
|
|
6914
7465
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6915
7466
|
domain: z.ZodOptional<z.ZodString>;
|
|
@@ -7568,6 +8119,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7568
8119
|
}, z.core.$strict>, z.ZodObject<{
|
|
7569
8120
|
deploymentId: z.ZodString;
|
|
7570
8121
|
projectId: z.ZodString;
|
|
8122
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
7571
8123
|
runId: z.ZodString;
|
|
7572
8124
|
}, z.core.$strict>, z.ZodObject<{
|
|
7573
8125
|
grantType: z.ZodEnum<{
|
|
@@ -7746,6 +8298,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7746
8298
|
teamId: z.ZodOptional<z.ZodString>;
|
|
7747
8299
|
teamSlug: z.ZodOptional<z.ZodString>;
|
|
7748
8300
|
projectId: z.ZodOptional<z.ZodString>;
|
|
8301
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
7749
8302
|
projectScope: z.ZodOptional<z.ZodEnum<{
|
|
7750
8303
|
account: "account";
|
|
7751
8304
|
"project-only": "project-only";
|
|
@@ -7890,8 +8443,10 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7890
8443
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
7891
8444
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
7892
8445
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
8446
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
|
|
7893
8447
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
7894
8448
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
8449
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
|
|
7895
8450
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
|
|
7896
8451
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
7897
8452
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -7901,6 +8456,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7901
8456
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
|
|
7902
8457
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
|
|
7903
8458
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
|
|
8459
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
|
|
7904
8460
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
|
|
7905
8461
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
|
|
7906
8462
|
"ai-gateway-rule-created": "ai-gateway-rule-created";
|
|
@@ -7914,8 +8470,10 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7914
8470
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
|
|
7915
8471
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
|
|
7916
8472
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
|
|
8473
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
|
|
7917
8474
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
|
|
7918
8475
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
|
|
8476
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
|
|
7919
8477
|
"ai-omniagent": "ai-omniagent";
|
|
7920
8478
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
|
|
7921
8479
|
"alert-rule-created": "alert-rule-created";
|
|
@@ -8100,6 +8658,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8100
8658
|
"flags-sdk-key-deleted": "flags-sdk-key-deleted";
|
|
8101
8659
|
"flags-sdk-key-read": "flags-sdk-key-read";
|
|
8102
8660
|
"flags-transferred": "flags-transferred";
|
|
8661
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
|
|
8103
8662
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
8104
8663
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
8105
8664
|
"global-config-backup-restored": "global-config-backup-restored";
|
|
@@ -8184,6 +8743,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8184
8743
|
"organization-team-add": "organization-team-add";
|
|
8185
8744
|
"organization-team-create": "organization-team-create";
|
|
8186
8745
|
"organization-team-delete": "organization-team-delete";
|
|
8746
|
+
"organization-team-sso-update": "organization-team-sso-update";
|
|
8187
8747
|
"owner-blocked": "owner-blocked";
|
|
8188
8748
|
"owner-soft-blocked": "owner-soft-blocked";
|
|
8189
8749
|
"owner-soft-unblocked": "owner-soft-unblocked";
|
|
@@ -8263,6 +8823,12 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8263
8823
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
|
|
8264
8824
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled";
|
|
8265
8825
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
|
|
8826
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created";
|
|
8827
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
|
|
8828
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated";
|
|
8829
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created";
|
|
8830
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
|
|
8831
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated";
|
|
8266
8832
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated";
|
|
8267
8833
|
"project-git-lfs-toggled": "project-git-lfs-toggled";
|
|
8268
8834
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
|
|
@@ -8355,6 +8921,8 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8355
8921
|
"shared-env-variable-create": "shared-env-variable-create";
|
|
8356
8922
|
"shared-env-variable-delete": "shared-env-variable-delete";
|
|
8357
8923
|
"shared-env-variable-read": "shared-env-variable-read";
|
|
8924
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link";
|
|
8925
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
|
|
8358
8926
|
"shared-env-variable-update": "shared-env-variable-update";
|
|
8359
8927
|
"show-ip-addresses": "show-ip-addresses";
|
|
8360
8928
|
signup: "signup";
|
|
@@ -8385,6 +8953,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8385
8953
|
"storage-update-project-connection": "storage-update-project-connection";
|
|
8386
8954
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
|
|
8387
8955
|
"storage-view-secret": "storage-view-secret";
|
|
8956
|
+
"strict-connectors": "strict-connectors";
|
|
8388
8957
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings";
|
|
8389
8958
|
"strict-password-protection-settings": "strict-password-protection-settings";
|
|
8390
8959
|
"strict-shareable-links": "strict-shareable-links";
|
|
@@ -8578,8 +9147,10 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8578
9147
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
8579
9148
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
8580
9149
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
9150
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
|
|
8581
9151
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
8582
9152
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
9153
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
|
|
8583
9154
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
|
|
8584
9155
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
8585
9156
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -8589,6 +9160,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8589
9160
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
|
|
8590
9161
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
|
|
8591
9162
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
|
|
9163
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
|
|
8592
9164
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
|
|
8593
9165
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
|
|
8594
9166
|
"ai-gateway-rule-created": "ai-gateway-rule-created";
|
|
@@ -8602,8 +9174,10 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8602
9174
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
|
|
8603
9175
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
|
|
8604
9176
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
|
|
9177
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
|
|
8605
9178
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
|
|
8606
9179
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
|
|
9180
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
|
|
8607
9181
|
"ai-omniagent": "ai-omniagent";
|
|
8608
9182
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
|
|
8609
9183
|
"alert-rule-created": "alert-rule-created";
|
|
@@ -8788,6 +9362,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8788
9362
|
"flags-sdk-key-deleted": "flags-sdk-key-deleted";
|
|
8789
9363
|
"flags-sdk-key-read": "flags-sdk-key-read";
|
|
8790
9364
|
"flags-transferred": "flags-transferred";
|
|
9365
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
|
|
8791
9366
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
8792
9367
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
8793
9368
|
"global-config-backup-restored": "global-config-backup-restored";
|
|
@@ -8872,6 +9447,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8872
9447
|
"organization-team-add": "organization-team-add";
|
|
8873
9448
|
"organization-team-create": "organization-team-create";
|
|
8874
9449
|
"organization-team-delete": "organization-team-delete";
|
|
9450
|
+
"organization-team-sso-update": "organization-team-sso-update";
|
|
8875
9451
|
"owner-blocked": "owner-blocked";
|
|
8876
9452
|
"owner-soft-blocked": "owner-soft-blocked";
|
|
8877
9453
|
"owner-soft-unblocked": "owner-soft-unblocked";
|
|
@@ -8951,6 +9527,12 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8951
9527
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
|
|
8952
9528
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled";
|
|
8953
9529
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
|
|
9530
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created";
|
|
9531
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
|
|
9532
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated";
|
|
9533
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created";
|
|
9534
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
|
|
9535
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated";
|
|
8954
9536
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated";
|
|
8955
9537
|
"project-git-lfs-toggled": "project-git-lfs-toggled";
|
|
8956
9538
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
|
|
@@ -9043,6 +9625,8 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
9043
9625
|
"shared-env-variable-create": "shared-env-variable-create";
|
|
9044
9626
|
"shared-env-variable-delete": "shared-env-variable-delete";
|
|
9045
9627
|
"shared-env-variable-read": "shared-env-variable-read";
|
|
9628
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link";
|
|
9629
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
|
|
9046
9630
|
"shared-env-variable-update": "shared-env-variable-update";
|
|
9047
9631
|
"show-ip-addresses": "show-ip-addresses";
|
|
9048
9632
|
signup: "signup";
|
|
@@ -9073,6 +9657,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
9073
9657
|
"storage-update-project-connection": "storage-update-project-connection";
|
|
9074
9658
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
|
|
9075
9659
|
"storage-view-secret": "storage-view-secret";
|
|
9660
|
+
"strict-connectors": "strict-connectors";
|
|
9076
9661
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings";
|
|
9077
9662
|
"strict-password-protection-settings": "strict-password-protection-settings";
|
|
9078
9663
|
"strict-shareable-links": "strict-shareable-links";
|
|
@@ -9235,7 +9820,12 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
9235
9820
|
}, z.core.$strip>;
|
|
9236
9821
|
declare const flagSchema: z.ZodObject<{
|
|
9237
9822
|
description: z.ZodOptional<z.ZodString>;
|
|
9238
|
-
variants: z.ZodArray<z.ZodObject<{
|
|
9823
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
9824
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9825
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9826
|
+
value: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>, z.ZodArray<z.ZodString>, z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>]>>;
|
|
9827
|
+
id: z.ZodString;
|
|
9828
|
+
}, z.core.$strip>>;
|
|
9239
9829
|
id: z.ZodString;
|
|
9240
9830
|
environments: z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
9241
9831
|
reuse: z.ZodOptional<z.ZodObject<{
|
|
@@ -9253,7 +9843,7 @@ declare const flagSchema: z.ZodObject<{
|
|
|
9253
9843
|
}>;
|
|
9254
9844
|
variantId: z.ZodString;
|
|
9255
9845
|
}, z.core.$strip>;
|
|
9256
|
-
fallthrough: z.
|
|
9846
|
+
fallthrough: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9257
9847
|
type: z.ZodEnum<{
|
|
9258
9848
|
variant: "variant";
|
|
9259
9849
|
}>;
|
|
@@ -9294,11 +9884,11 @@ declare const flagSchema: z.ZodObject<{
|
|
|
9294
9884
|
type: z.ZodEnum<{
|
|
9295
9885
|
experiment: "experiment";
|
|
9296
9886
|
}>;
|
|
9297
|
-
}, z.core.$strict>]>;
|
|
9887
|
+
}, z.core.$strict>], "type">;
|
|
9298
9888
|
active: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
9299
9889
|
rules: z.ZodArray<z.ZodObject<{
|
|
9300
9890
|
id: z.ZodString;
|
|
9301
|
-
outcome: z.
|
|
9891
|
+
outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9302
9892
|
type: z.ZodEnum<{
|
|
9303
9893
|
variant: "variant";
|
|
9304
9894
|
}>;
|
|
@@ -9339,7 +9929,7 @@ declare const flagSchema: z.ZodObject<{
|
|
|
9339
9929
|
type: z.ZodEnum<{
|
|
9340
9930
|
experiment: "experiment";
|
|
9341
9931
|
}>;
|
|
9342
|
-
}, z.core.$strict>]>;
|
|
9932
|
+
}, z.core.$strict>], "type">;
|
|
9343
9933
|
conditions: z.ZodArray<z.ZodObject<{
|
|
9344
9934
|
rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
9345
9935
|
type: z.ZodEnum<{
|
|
@@ -9365,7 +9955,7 @@ declare const flagSchema: z.ZodObject<{
|
|
|
9365
9955
|
cmpOptions: z.ZodOptional<z.ZodObject<{
|
|
9366
9956
|
ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
9367
9957
|
}, z.core.$strip>>;
|
|
9368
|
-
lhs: z.
|
|
9958
|
+
lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9369
9959
|
type: z.ZodEnum<{
|
|
9370
9960
|
segment: "segment";
|
|
9371
9961
|
}>;
|
|
@@ -9375,7 +9965,7 @@ declare const flagSchema: z.ZodObject<{
|
|
|
9375
9965
|
}>;
|
|
9376
9966
|
kind: z.ZodString;
|
|
9377
9967
|
attribute: z.ZodString;
|
|
9378
|
-
}, z.core.$strict>]>;
|
|
9968
|
+
}, z.core.$strict>], "type">;
|
|
9379
9969
|
cmp: z.ZodEnum<{
|
|
9380
9970
|
before: "before";
|
|
9381
9971
|
after: "after";
|
|
@@ -9462,7 +10052,7 @@ declare const segmentSchema: z.ZodObject<{
|
|
|
9462
10052
|
data: z.ZodObject<{
|
|
9463
10053
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9464
10054
|
id: z.ZodString;
|
|
9465
|
-
outcome: z.
|
|
10055
|
+
outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9466
10056
|
type: z.ZodEnum<{
|
|
9467
10057
|
all: "all";
|
|
9468
10058
|
}>;
|
|
@@ -9478,7 +10068,7 @@ declare const segmentSchema: z.ZodObject<{
|
|
|
9478
10068
|
attribute: z.ZodString;
|
|
9479
10069
|
}, z.core.$strip>;
|
|
9480
10070
|
passPromille: z.ZodNumber;
|
|
9481
|
-
}, z.core.$strict>]>;
|
|
10071
|
+
}, z.core.$strict>], "type">;
|
|
9482
10072
|
conditions: z.ZodArray<z.ZodObject<{
|
|
9483
10073
|
rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
9484
10074
|
type: z.ZodEnum<{
|
|
@@ -9504,7 +10094,7 @@ declare const segmentSchema: z.ZodObject<{
|
|
|
9504
10094
|
cmpOptions: z.ZodOptional<z.ZodObject<{
|
|
9505
10095
|
ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
9506
10096
|
}, z.core.$strip>>;
|
|
9507
|
-
lhs: z.
|
|
10097
|
+
lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9508
10098
|
type: z.ZodEnum<{
|
|
9509
10099
|
segment: "segment";
|
|
9510
10100
|
}>;
|
|
@@ -9514,7 +10104,7 @@ declare const segmentSchema: z.ZodObject<{
|
|
|
9514
10104
|
}>;
|
|
9515
10105
|
kind: z.ZodString;
|
|
9516
10106
|
attribute: z.ZodString;
|
|
9517
|
-
}, z.core.$strict>]>;
|
|
10107
|
+
}, z.core.$strict>], "type">;
|
|
9518
10108
|
cmp: z.ZodEnum<{
|
|
9519
10109
|
before: "before";
|
|
9520
10110
|
after: "after";
|
|
@@ -9673,6 +10263,7 @@ declare const namedSandboxSchema: z.ZodObject<{
|
|
|
9673
10263
|
deniedCIDRs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9674
10264
|
s3Key: z.ZodOptional<z.ZodString>;
|
|
9675
10265
|
}, z.core.$strip>>;
|
|
10266
|
+
networkId: z.ZodOptional<z.ZodString>;
|
|
9676
10267
|
totalEgressBytes: z.ZodOptional<z.ZodNumber>;
|
|
9677
10268
|
totalIngressBytes: z.ZodOptional<z.ZodNumber>;
|
|
9678
10269
|
totalActiveCpuDurationMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9684,6 +10275,7 @@ declare const namedSandboxSchema: z.ZodObject<{
|
|
|
9684
10275
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
9685
10276
|
"read-only": "read-only";
|
|
9686
10277
|
"read-write": "read-write";
|
|
10278
|
+
snapshot: "snapshot";
|
|
9687
10279
|
}>>;
|
|
9688
10280
|
}, z.core.$strip>>>>;
|
|
9689
10281
|
createdAt: z.ZodNumber;
|
|
@@ -9718,8 +10310,8 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
9718
10310
|
running: "running";
|
|
9719
10311
|
stopping: "stopping";
|
|
9720
10312
|
stopped: "stopped";
|
|
9721
|
-
aborted: "aborted";
|
|
9722
10313
|
failed: "failed";
|
|
10314
|
+
aborted: "aborted";
|
|
9723
10315
|
pending: "pending";
|
|
9724
10316
|
snapshotting: "snapshotting";
|
|
9725
10317
|
}>;
|
|
@@ -9748,6 +10340,7 @@ declare const sandboxPublicRouteSchema: z.ZodObject<{
|
|
|
9748
10340
|
system: z.ZodOptional<z.ZodLiteral<true>>;
|
|
9749
10341
|
}, z.core.$strip>;
|
|
9750
10342
|
declare const driveSchema: z.ZodObject<{
|
|
10343
|
+
id: z.ZodString;
|
|
9751
10344
|
name: z.ZodString;
|
|
9752
10345
|
projectId: z.ZodString;
|
|
9753
10346
|
maxSizeBytes: z.ZodNumber;
|
|
@@ -9764,8 +10357,8 @@ declare const snapshotSchema: z.ZodObject<{
|
|
|
9764
10357
|
regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9765
10358
|
status: z.ZodEnum<{
|
|
9766
10359
|
deleted: "deleted";
|
|
9767
|
-
created: "created";
|
|
9768
10360
|
failed: "failed";
|
|
10361
|
+
created: "created";
|
|
9769
10362
|
}>;
|
|
9770
10363
|
sizeBytes: z.ZodNumber;
|
|
9771
10364
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10043,6 +10636,10 @@ declare const teamSchema: z.ZodObject<{
|
|
|
10043
10636
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
10044
10637
|
updatedAt: z.ZodNumber;
|
|
10045
10638
|
}, z.core.$strip>>;
|
|
10639
|
+
strictConnectors: z.ZodOptional<z.ZodObject<{
|
|
10640
|
+
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
10641
|
+
updatedAt: z.ZodNumber;
|
|
10642
|
+
}, z.core.$strip>>;
|
|
10046
10643
|
nsnbConfig: z.ZodOptional<z.ZodObject<{
|
|
10047
10644
|
preference: z.ZodEnum<{
|
|
10048
10645
|
block: "block";
|
|
@@ -10067,7 +10664,7 @@ declare const teamSchema: z.ZodObject<{
|
|
|
10067
10664
|
project: z.ZodOptional<z.ZodString>;
|
|
10068
10665
|
}, z.core.$strict>]>>;
|
|
10069
10666
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
10070
|
-
environments: z.ZodArray<z.
|
|
10667
|
+
environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10071
10668
|
type: z.ZodEnum<{
|
|
10072
10669
|
system: "system";
|
|
10073
10670
|
}>;
|
|
@@ -10080,7 +10677,7 @@ declare const teamSchema: z.ZodObject<{
|
|
|
10080
10677
|
custom: "custom";
|
|
10081
10678
|
}>;
|
|
10082
10679
|
environmentId: z.ZodString;
|
|
10083
|
-
}, z.core.$strict>]>>;
|
|
10680
|
+
}, z.core.$strict>], "type">>;
|
|
10084
10681
|
}, z.core.$strip>>>;
|
|
10085
10682
|
deploymentSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10086
10683
|
sources: z.ZodArray<z.ZodEnum<{
|
|
@@ -10092,7 +10689,7 @@ declare const teamSchema: z.ZodObject<{
|
|
|
10092
10689
|
"rest-api": "rest-api";
|
|
10093
10690
|
}>>;
|
|
10094
10691
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
10095
|
-
environments: z.ZodArray<z.
|
|
10692
|
+
environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10096
10693
|
type: z.ZodEnum<{
|
|
10097
10694
|
system: "system";
|
|
10098
10695
|
}>;
|
|
@@ -10105,7 +10702,7 @@ declare const teamSchema: z.ZodObject<{
|
|
|
10105
10702
|
custom: "custom";
|
|
10106
10703
|
}>;
|
|
10107
10704
|
environmentId: z.ZodString;
|
|
10108
|
-
}, z.core.$strict>]>>;
|
|
10705
|
+
}, z.core.$strict>], "type">>;
|
|
10109
10706
|
}, z.core.$strip>>>;
|
|
10110
10707
|
}, z.core.$strip>>;
|
|
10111
10708
|
personalAccessTokensInvalidatedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10338,7 +10935,7 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
10338
10935
|
prefix: z.ZodOptional<z.ZodString>;
|
|
10339
10936
|
suffix: z.ZodOptional<z.ZodString>;
|
|
10340
10937
|
origin: z.ZodOptional<z.ZodString>;
|
|
10341
|
-
scopes: z.ZodOptional<z.ZodArray<z.
|
|
10938
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
10342
10939
|
type: z.ZodEnum<{
|
|
10343
10940
|
user: "user";
|
|
10344
10941
|
}>;
|
|
@@ -10400,7 +10997,7 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
10400
10997
|
}>>;
|
|
10401
10998
|
createdAt: z.ZodNumber;
|
|
10402
10999
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
10403
|
-
}, z.core.$strict>]>>>;
|
|
11000
|
+
}, z.core.$strict>], "type">>>;
|
|
10404
11001
|
createdAt: z.ZodNumber;
|
|
10405
11002
|
activeAt: z.ZodNumber;
|
|
10406
11003
|
expiresAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10419,7 +11016,6 @@ declare const authUserSchema: z.ZodObject<{
|
|
|
10419
11016
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
|
|
10420
11017
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
|
|
10421
11018
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
|
|
10422
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
|
|
10423
11019
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
|
|
10424
11020
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
|
|
10425
11021
|
UNPAID_INVOICE: "UNPAID_INVOICE";
|
|
@@ -10465,55 +11061,7 @@ declare const authUserSchema: z.ZodObject<{
|
|
|
10465
11061
|
wafRateLimitRequest: "wafRateLimitRequest";
|
|
10466
11062
|
webAnalyticsEvent: "webAnalyticsEvent";
|
|
10467
11063
|
}>>;
|
|
10468
|
-
|
|
10469
|
-
pausedUntil: z.ZodNumber;
|
|
10470
|
-
pausedAt: z.ZodNumber;
|
|
10471
|
-
triggers: z.ZodArray<z.ZodObject<{
|
|
10472
|
-
allocation: z.ZodEnum<{
|
|
10473
|
-
artifacts: "artifacts";
|
|
10474
|
-
analyticsUsage: "analyticsUsage";
|
|
10475
|
-
bandwidth: "bandwidth";
|
|
10476
|
-
blobDataTransfer: "blobDataTransfer";
|
|
10477
|
-
blobTotalAdvancedRequests: "blobTotalAdvancedRequests";
|
|
10478
|
-
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes";
|
|
10479
|
-
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes";
|
|
10480
|
-
blobTotalSimpleRequests: "blobTotalSimpleRequests";
|
|
10481
|
-
connectDataTransfer: "connectDataTransfer";
|
|
10482
|
-
dataCacheRead: "dataCacheRead";
|
|
10483
|
-
dataCacheWrite: "dataCacheWrite";
|
|
10484
|
-
edgeConfigRead: "edgeConfigRead";
|
|
10485
|
-
edgeConfigWrite: "edgeConfigWrite";
|
|
10486
|
-
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits";
|
|
10487
|
-
edgeMiddlewareInvocations: "edgeMiddlewareInvocations";
|
|
10488
|
-
edgeRequest: "edgeRequest";
|
|
10489
|
-
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration";
|
|
10490
|
-
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots";
|
|
10491
|
-
fastDataTransfer: "fastDataTransfer";
|
|
10492
|
-
fastOriginTransfer: "fastOriginTransfer";
|
|
10493
|
-
fluidCpuDuration: "fluidCpuDuration";
|
|
10494
|
-
fluidDuration: "fluidDuration";
|
|
10495
|
-
functionDuration: "functionDuration";
|
|
10496
|
-
functionInvocation: "functionInvocation";
|
|
10497
|
-
imageOptimizationCacheRead: "imageOptimizationCacheRead";
|
|
10498
|
-
imageOptimizationCacheWrite: "imageOptimizationCacheWrite";
|
|
10499
|
-
imageOptimizationTransformation: "imageOptimizationTransformation";
|
|
10500
|
-
logDrainsVolume: "logDrainsVolume";
|
|
10501
|
-
monitoringMetric: "monitoringMetric";
|
|
10502
|
-
observabilityEvent: "observabilityEvent";
|
|
10503
|
-
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes";
|
|
10504
|
-
runtimeCacheRead: "runtimeCacheRead";
|
|
10505
|
-
runtimeCacheWrite: "runtimeCacheWrite";
|
|
10506
|
-
serverlessFunctionExecution: "serverlessFunctionExecution";
|
|
10507
|
-
sourceImages: "sourceImages";
|
|
10508
|
-
wafOwaspExcessBytes: "wafOwaspExcessBytes";
|
|
10509
|
-
wafOwaspRequests: "wafOwaspRequests";
|
|
10510
|
-
wafRateLimitRequest: "wafRateLimitRequest";
|
|
10511
|
-
webAnalyticsEvent: "webAnalyticsEvent";
|
|
10512
|
-
}>;
|
|
10513
|
-
usage: z.ZodNumber;
|
|
10514
|
-
}, z.core.$strip>>;
|
|
10515
|
-
cohort: z.ZodString;
|
|
10516
|
-
}, z.core.$strip>>;
|
|
11064
|
+
unpauseAt: z.ZodOptional<z.ZodNumber>;
|
|
10517
11065
|
}, z.core.$strip>>;
|
|
10518
11066
|
billing: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
|
|
10519
11067
|
resourceConfig: z.ZodObject<{
|
|
@@ -10550,10 +11098,10 @@ declare const authUserSchema: z.ZodObject<{
|
|
|
10550
11098
|
flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
10551
11099
|
customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
|
|
10552
11100
|
security: z.ZodOptional<z.ZodObject<{
|
|
11101
|
+
rateLimit: z.ZodOptional<z.ZodNumber>;
|
|
10553
11102
|
customRules: z.ZodOptional<z.ZodNumber>;
|
|
10554
11103
|
ipBlocks: z.ZodOptional<z.ZodNumber>;
|
|
10555
11104
|
ipBypass: z.ZodOptional<z.ZodNumber>;
|
|
10556
|
-
rateLimit: z.ZodOptional<z.ZodNumber>;
|
|
10557
11105
|
}, z.core.$strip>>;
|
|
10558
11106
|
bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
|
|
10559
11107
|
}, z.core.$strip>;
|
|
@@ -11062,7 +11610,9 @@ declare const createAiGatewayVirtualModelConfigStatus500Schema: z.ZodUnknown;
|
|
|
11062
11610
|
declare const createAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
|
|
11063
11611
|
declare const createAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11064
11612
|
declare const getAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
|
|
11065
|
-
declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString
|
|
11613
|
+
declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodOptional<z.ZodString>;
|
|
11614
|
+
declare const getAiGatewayVirtualModelConfigQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
11615
|
+
declare const getAiGatewayVirtualModelConfigQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
11066
11616
|
declare const getAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11067
11617
|
declare const getAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11068
11618
|
declare const getAiGatewayVirtualModelConfigStatus200Schema: z.ZodUnknown;
|
|
@@ -11087,6 +11637,9 @@ declare const updateAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
|
|
|
11087
11637
|
declare const updateAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11088
11638
|
declare const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
|
|
11089
11639
|
declare const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString;
|
|
11640
|
+
declare const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
|
|
11641
|
+
declare const deleteAiGatewayVirtualModelConfigQueryActingIpSchema: z.ZodOptional<z.ZodString>;
|
|
11642
|
+
declare const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
|
|
11090
11643
|
declare const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11091
11644
|
declare const deleteAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11092
11645
|
declare const deleteAiGatewayVirtualModelConfigStatus204Schema: z.ZodUnknown;
|
|
@@ -11111,6 +11664,47 @@ declare const listAiGatewayVirtualModelConfigsStatus410Schema: z.ZodUnknown;
|
|
|
11111
11664
|
declare const listAiGatewayVirtualModelConfigsStatus500Schema: z.ZodUnknown;
|
|
11112
11665
|
declare const listAiGatewayVirtualModelConfigsResponseSchema: z.ZodUnknown;
|
|
11113
11666
|
declare const listAiGatewayVirtualModelConfigsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11667
|
+
declare const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
|
|
11668
|
+
declare const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
|
|
11669
|
+
declare const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11670
|
+
declare const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11671
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
|
|
11672
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
|
|
11673
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
|
|
11674
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
|
|
11675
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
|
|
11676
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
|
|
11677
|
+
declare const getAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
|
|
11678
|
+
declare const getAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
|
|
11679
|
+
declare const getAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11680
|
+
declare const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
|
|
11681
|
+
declare const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11682
|
+
declare const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11683
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
|
|
11684
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
|
|
11685
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
|
|
11686
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
|
|
11687
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
|
|
11688
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
|
|
11689
|
+
declare const updateAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
|
|
11690
|
+
declare const updateAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
|
|
11691
|
+
declare const updateAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11692
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
|
|
11693
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
|
|
11694
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
|
|
11695
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema: z.ZodOptional<z.ZodString>;
|
|
11696
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
|
|
11697
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11698
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11699
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema: z.ZodUnknown;
|
|
11700
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
|
|
11701
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
|
|
11702
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
|
|
11703
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
|
|
11704
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
|
|
11705
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
|
|
11706
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
|
|
11707
|
+
declare const deleteAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11114
11708
|
declare const createAiGatewayRuleQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11115
11709
|
declare const createAiGatewayRuleQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11116
11710
|
declare const createAiGatewayRuleStatus201Schema: z.ZodUnknown;
|
|
@@ -11610,6 +12204,113 @@ declare const readNetworkStatus403Schema: z.ZodUnknown;
|
|
|
11610
12204
|
declare const readNetworkStatus410Schema: z.ZodUnknown;
|
|
11611
12205
|
declare const readNetworkResponseSchema: z.ZodUnknown;
|
|
11612
12206
|
declare const readNetworkErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12207
|
+
declare const createPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12208
|
+
declare const createPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12209
|
+
declare const createPrivateLinkEndpointStatus201Schema: z.ZodUnknown;
|
|
12210
|
+
declare const createPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
|
|
12211
|
+
declare const createPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
|
|
12212
|
+
declare const createPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
|
|
12213
|
+
declare const createPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
|
|
12214
|
+
declare const createPrivateLinkEndpointStatus409Schema: z.ZodUnknown;
|
|
12215
|
+
declare const createPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
|
|
12216
|
+
declare const createPrivateLinkEndpointResponseSchema: z.ZodUnknown;
|
|
12217
|
+
declare const createPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12218
|
+
declare const listPrivateLinkEndpointsQueryProjectIdSchema: z.ZodString;
|
|
12219
|
+
declare const listPrivateLinkEndpointsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12220
|
+
declare const listPrivateLinkEndpointsQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12221
|
+
declare const listPrivateLinkEndpointsStatus200Schema: z.ZodUnknown;
|
|
12222
|
+
declare const listPrivateLinkEndpointsStatus400Schema: z.ZodUnknown;
|
|
12223
|
+
declare const listPrivateLinkEndpointsStatus401Schema: z.ZodUnknown;
|
|
12224
|
+
declare const listPrivateLinkEndpointsStatus403Schema: z.ZodUnknown;
|
|
12225
|
+
declare const listPrivateLinkEndpointsStatus404Schema: z.ZodUnknown;
|
|
12226
|
+
declare const listPrivateLinkEndpointsStatus410Schema: z.ZodUnknown;
|
|
12227
|
+
declare const listPrivateLinkEndpointsResponseSchema: z.ZodUnknown;
|
|
12228
|
+
declare const listPrivateLinkEndpointsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12229
|
+
declare const readPrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
|
|
12230
|
+
declare const readPrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
|
|
12231
|
+
declare const readPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12232
|
+
declare const readPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12233
|
+
declare const readPrivateLinkEndpointStatus200Schema: z.ZodUnknown;
|
|
12234
|
+
declare const readPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
|
|
12235
|
+
declare const readPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
|
|
12236
|
+
declare const readPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
|
|
12237
|
+
declare const readPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
|
|
12238
|
+
declare const readPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
|
|
12239
|
+
declare const readPrivateLinkEndpointResponseSchema: z.ZodUnknown;
|
|
12240
|
+
declare const readPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12241
|
+
declare const deletePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
|
|
12242
|
+
declare const deletePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
|
|
12243
|
+
declare const deletePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12244
|
+
declare const deletePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12245
|
+
declare const deletePrivateLinkEndpointStatus204Schema: z.ZodUnknown;
|
|
12246
|
+
declare const deletePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
|
|
12247
|
+
declare const deletePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
|
|
12248
|
+
declare const deletePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
|
|
12249
|
+
declare const deletePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
|
|
12250
|
+
declare const deletePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
|
|
12251
|
+
declare const deletePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
|
|
12252
|
+
declare const deletePrivateLinkEndpointResponseSchema: z.ZodUnknown;
|
|
12253
|
+
declare const deletePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12254
|
+
declare const updatePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
|
|
12255
|
+
declare const updatePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
|
|
12256
|
+
declare const updatePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12257
|
+
declare const updatePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12258
|
+
declare const updatePrivateLinkEndpointStatus200Schema: z.ZodUnknown;
|
|
12259
|
+
declare const updatePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
|
|
12260
|
+
declare const updatePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
|
|
12261
|
+
declare const updatePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
|
|
12262
|
+
declare const updatePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
|
|
12263
|
+
declare const updatePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
|
|
12264
|
+
declare const updatePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
|
|
12265
|
+
declare const updatePrivateLinkEndpointResponseSchema: z.ZodUnknown;
|
|
12266
|
+
declare const updatePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12267
|
+
declare const listConnectorsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
12268
|
+
declare const listConnectorsQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
12269
|
+
declare const listConnectorsQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
|
|
12270
|
+
declare const listConnectorsQuerySearchSchema: z.ZodOptional<z.ZodString>;
|
|
12271
|
+
declare const listConnectorsQueryTypeSchema: z.ZodOptional<z.ZodString>;
|
|
12272
|
+
declare const listConnectorsQueryServiceSchema: z.ZodOptional<z.ZodString>;
|
|
12273
|
+
declare const listConnectorsQuerySortSchema: z.ZodOptional<z.ZodEnum<{
|
|
12274
|
+
name: "name";
|
|
12275
|
+
createdAt: "createdAt";
|
|
12276
|
+
updatedAt: "updatedAt";
|
|
12277
|
+
}>>;
|
|
12278
|
+
declare const listConnectorsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12279
|
+
declare const listConnectorsQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12280
|
+
declare const listConnectorsStatus200Schema: z.ZodUnknown;
|
|
12281
|
+
declare const listConnectorsStatus400Schema: z.ZodUnknown;
|
|
12282
|
+
declare const listConnectorsStatus401Schema: z.ZodUnknown;
|
|
12283
|
+
declare const listConnectorsStatus403Schema: z.ZodUnknown;
|
|
12284
|
+
declare const listConnectorsStatus410Schema: z.ZodUnknown;
|
|
12285
|
+
declare const listConnectorsStatus422Schema: z.ZodUnknown;
|
|
12286
|
+
declare const listConnectorsResponseSchema: z.ZodUnknown;
|
|
12287
|
+
declare const listConnectorsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12288
|
+
declare const getConnectorPathConnectorSchema: z.ZodString;
|
|
12289
|
+
declare const getConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12290
|
+
declare const getConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12291
|
+
declare const getConnectorStatus200Schema: z.ZodUnknown;
|
|
12292
|
+
declare const getConnectorStatus400Schema: z.ZodUnknown;
|
|
12293
|
+
declare const getConnectorStatus401Schema: z.ZodUnknown;
|
|
12294
|
+
declare const getConnectorStatus403Schema: z.ZodUnknown;
|
|
12295
|
+
declare const getConnectorStatus404Schema: z.ZodUnknown;
|
|
12296
|
+
declare const getConnectorStatus410Schema: z.ZodUnknown;
|
|
12297
|
+
declare const getConnectorStatus422Schema: z.ZodUnknown;
|
|
12298
|
+
declare const getConnectorResponseSchema: z.ZodUnknown;
|
|
12299
|
+
declare const getConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12300
|
+
declare const deleteConnectorPathConnectorSchema: z.ZodString;
|
|
12301
|
+
declare const deleteConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12302
|
+
declare const deleteConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12303
|
+
declare const deleteConnectorStatus204Schema: z.ZodUnknown;
|
|
12304
|
+
declare const deleteConnectorStatus400Schema: z.ZodUnknown;
|
|
12305
|
+
declare const deleteConnectorStatus401Schema: z.ZodUnknown;
|
|
12306
|
+
declare const deleteConnectorStatus403Schema: z.ZodUnknown;
|
|
12307
|
+
declare const deleteConnectorStatus404Schema: z.ZodUnknown;
|
|
12308
|
+
declare const deleteConnectorStatus409Schema: z.ZodUnknown;
|
|
12309
|
+
declare const deleteConnectorStatus410Schema: z.ZodUnknown;
|
|
12310
|
+
declare const deleteConnectorStatus422Schema: z.ZodUnknown;
|
|
12311
|
+
declare const deleteConnectorStatus502Schema: z.ZodUnknown;
|
|
12312
|
+
declare const deleteConnectorResponseSchema: z.ZodUnknown;
|
|
12313
|
+
declare const deleteConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11613
12314
|
declare const createConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
11614
12315
|
declare const createConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
11615
12316
|
declare const createConnectorStatus201Schema: z.ZodUnknown;
|
|
@@ -11624,6 +12325,95 @@ declare const createConnectorStatus500Schema: z.ZodUnknown;
|
|
|
11624
12325
|
declare const createConnectorStatus502Schema: z.ZodUnknown;
|
|
11625
12326
|
declare const createConnectorResponseSchema: z.ZodUnknown;
|
|
11626
12327
|
declare const createConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12328
|
+
declare const updateConnectorPathConnectorSchema: z.ZodString;
|
|
12329
|
+
declare const updateConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12330
|
+
declare const updateConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12331
|
+
declare const updateConnectorStatus200Schema: z.ZodUnknown;
|
|
12332
|
+
declare const updateConnectorStatus400Schema: z.ZodUnknown;
|
|
12333
|
+
declare const updateConnectorStatus401Schema: z.ZodUnknown;
|
|
12334
|
+
declare const updateConnectorStatus403Schema: z.ZodUnknown;
|
|
12335
|
+
declare const updateConnectorStatus404Schema: z.ZodUnknown;
|
|
12336
|
+
declare const updateConnectorStatus409Schema: z.ZodUnknown;
|
|
12337
|
+
declare const updateConnectorStatus410Schema: z.ZodUnknown;
|
|
12338
|
+
declare const updateConnectorStatus422Schema: z.ZodUnknown;
|
|
12339
|
+
declare const updateConnectorStatus502Schema: z.ZodUnknown;
|
|
12340
|
+
declare const updateConnectorResponseSchema: z.ZodUnknown;
|
|
12341
|
+
declare const updateConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12342
|
+
declare const replaceConnectorTriggerDestinationsPathConnectorSchema: z.ZodString;
|
|
12343
|
+
declare const replaceConnectorTriggerDestinationsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12344
|
+
declare const replaceConnectorTriggerDestinationsQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12345
|
+
declare const replaceConnectorTriggerDestinationsStatus200Schema: z.ZodUnknown;
|
|
12346
|
+
declare const replaceConnectorTriggerDestinationsStatus400Schema: z.ZodUnknown;
|
|
12347
|
+
declare const replaceConnectorTriggerDestinationsStatus401Schema: z.ZodUnknown;
|
|
12348
|
+
declare const replaceConnectorTriggerDestinationsStatus403Schema: z.ZodUnknown;
|
|
12349
|
+
declare const replaceConnectorTriggerDestinationsStatus404Schema: z.ZodUnknown;
|
|
12350
|
+
declare const replaceConnectorTriggerDestinationsStatus410Schema: z.ZodUnknown;
|
|
12351
|
+
declare const replaceConnectorTriggerDestinationsStatus422Schema: z.ZodUnknown;
|
|
12352
|
+
declare const replaceConnectorTriggerDestinationsResponseSchema: z.ZodUnknown;
|
|
12353
|
+
declare const replaceConnectorTriggerDestinationsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12354
|
+
declare const listConnectorProjectConnectionsPathConnectorSchema: z.ZodString;
|
|
12355
|
+
declare const listConnectorProjectConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
12356
|
+
declare const listConnectorProjectConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
12357
|
+
declare const listConnectorProjectConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12358
|
+
declare const listConnectorProjectConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12359
|
+
declare const listConnectorProjectConnectionsStatus200Schema: z.ZodUnknown;
|
|
12360
|
+
declare const listConnectorProjectConnectionsStatus400Schema: z.ZodUnknown;
|
|
12361
|
+
declare const listConnectorProjectConnectionsStatus401Schema: z.ZodUnknown;
|
|
12362
|
+
declare const listConnectorProjectConnectionsStatus403Schema: z.ZodUnknown;
|
|
12363
|
+
declare const listConnectorProjectConnectionsStatus404Schema: z.ZodUnknown;
|
|
12364
|
+
declare const listConnectorProjectConnectionsStatus410Schema: z.ZodUnknown;
|
|
12365
|
+
declare const listConnectorProjectConnectionsStatus422Schema: z.ZodUnknown;
|
|
12366
|
+
declare const listConnectorProjectConnectionsResponseSchema: z.ZodUnknown;
|
|
12367
|
+
declare const listConnectorProjectConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12368
|
+
declare const getConnectorProjectConnectionPathConnectorSchema: z.ZodString;
|
|
12369
|
+
declare const getConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
|
|
12370
|
+
declare const getConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12371
|
+
declare const getConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12372
|
+
declare const getConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
|
|
12373
|
+
declare const getConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
|
|
12374
|
+
declare const getConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
|
|
12375
|
+
declare const getConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
|
|
12376
|
+
declare const getConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
|
|
12377
|
+
declare const getConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
|
|
12378
|
+
declare const getConnectorProjectConnectionResponseSchema: z.ZodUnknown;
|
|
12379
|
+
declare const getConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12380
|
+
declare const upsertConnectorProjectConnectionPathConnectorSchema: z.ZodString;
|
|
12381
|
+
declare const upsertConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
|
|
12382
|
+
declare const upsertConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12383
|
+
declare const upsertConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12384
|
+
declare const upsertConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
|
|
12385
|
+
declare const upsertConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
|
|
12386
|
+
declare const upsertConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
|
|
12387
|
+
declare const upsertConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
|
|
12388
|
+
declare const upsertConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
|
|
12389
|
+
declare const upsertConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
|
|
12390
|
+
declare const upsertConnectorProjectConnectionResponseSchema: z.ZodUnknown;
|
|
12391
|
+
declare const upsertConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12392
|
+
declare const deleteConnectorProjectConnectionPathConnectorSchema: z.ZodString;
|
|
12393
|
+
declare const deleteConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
|
|
12394
|
+
declare const deleteConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12395
|
+
declare const deleteConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12396
|
+
declare const deleteConnectorProjectConnectionStatus204Schema: z.ZodUnknown;
|
|
12397
|
+
declare const deleteConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
|
|
12398
|
+
declare const deleteConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
|
|
12399
|
+
declare const deleteConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
|
|
12400
|
+
declare const deleteConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
|
|
12401
|
+
declare const deleteConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
|
|
12402
|
+
declare const deleteConnectorProjectConnectionResponseSchema: z.ZodUnknown;
|
|
12403
|
+
declare const deleteConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12404
|
+
declare const listProjectConnectorConnectionsPathProjectIdSchema: z.ZodString;
|
|
12405
|
+
declare const listProjectConnectorConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
12406
|
+
declare const listProjectConnectorConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
12407
|
+
declare const listProjectConnectorConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12408
|
+
declare const listProjectConnectorConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
12409
|
+
declare const listProjectConnectorConnectionsStatus200Schema: z.ZodUnknown;
|
|
12410
|
+
declare const listProjectConnectorConnectionsStatus400Schema: z.ZodUnknown;
|
|
12411
|
+
declare const listProjectConnectorConnectionsStatus401Schema: z.ZodUnknown;
|
|
12412
|
+
declare const listProjectConnectorConnectionsStatus403Schema: z.ZodUnknown;
|
|
12413
|
+
declare const listProjectConnectorConnectionsStatus404Schema: z.ZodUnknown;
|
|
12414
|
+
declare const listProjectConnectorConnectionsStatus410Schema: z.ZodUnknown;
|
|
12415
|
+
declare const listProjectConnectorConnectionsResponseSchema: z.ZodUnknown;
|
|
12416
|
+
declare const listProjectConnectorConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11627
12417
|
declare const getConnectorTokenPathConnectorSchema: z.ZodString;
|
|
11628
12418
|
declare const getConnectorTokenStatus200Schema: z.ZodUnknown;
|
|
11629
12419
|
declare const getConnectorTokenStatus400Schema: z.ZodUnknown;
|
|
@@ -12940,6 +13730,7 @@ declare const getBillingPlansQuerySourceSchema: z.ZodOptional<z.ZodEnum<{
|
|
|
12940
13730
|
oauth: "oauth";
|
|
12941
13731
|
backoffice: "backoffice";
|
|
12942
13732
|
"import-recommended-integrations": "import-recommended-integrations";
|
|
13733
|
+
organization: "organization";
|
|
12943
13734
|
}>>;
|
|
12944
13735
|
declare const getBillingPlansQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
12945
13736
|
declare const getBillingPlansQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13059,9 +13850,8 @@ declare const importResourceStatus404Schema: z.ZodUnknown;
|
|
|
13059
13850
|
declare const importResourceStatus409Schema: z.ZodUnknown;
|
|
13060
13851
|
declare const importResourceStatus410Schema: z.ZodUnknown;
|
|
13061
13852
|
declare const importResourceStatus422Schema: z.ZodUnknown;
|
|
13062
|
-
declare const importResourceStatus429Schema: z.ZodUnknown;
|
|
13063
13853
|
declare const importResourceResponseSchema: z.ZodUnknown;
|
|
13064
|
-
declare const importResourceErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown
|
|
13854
|
+
declare const importResourceErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13065
13855
|
declare const updateResourcePathIntegrationConfigurationIdSchema: z.ZodString;
|
|
13066
13856
|
declare const updateResourcePathResourceIdSchema: z.ZodString;
|
|
13067
13857
|
declare const updateResourceStatus200Schema: z.ZodUnknown;
|
|
@@ -13557,8 +14347,12 @@ declare const createObservabilityQueryStatus402Schema: z.ZodUnknown;
|
|
|
13557
14347
|
declare const createObservabilityQueryStatus403Schema: z.ZodUnknown;
|
|
13558
14348
|
declare const createObservabilityQueryStatus408Schema: z.ZodUnknown;
|
|
13559
14349
|
declare const createObservabilityQueryStatus410Schema: z.ZodUnknown;
|
|
14350
|
+
declare const createObservabilityQueryStatus413Schema: z.ZodUnknown;
|
|
14351
|
+
declare const createObservabilityQueryStatus422Schema: z.ZodUnknown;
|
|
14352
|
+
declare const createObservabilityQueryStatus500Schema: z.ZodUnknown;
|
|
14353
|
+
declare const createObservabilityQueryStatus503Schema: z.ZodUnknown;
|
|
13560
14354
|
declare const createObservabilityQueryResponseSchema: z.ZodUnknown;
|
|
13561
|
-
declare const createObservabilityQueryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14355
|
+
declare const createObservabilityQueryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13562
14356
|
declare const getObservabilitySchemaStatus200Schema: z.ZodUnknown;
|
|
13563
14357
|
declare const getObservabilitySchemaStatus400Schema: z.ZodUnknown;
|
|
13564
14358
|
declare const getObservabilitySchemaStatus401Schema: z.ZodUnknown;
|
|
@@ -13815,8 +14609,9 @@ declare const updateProjectStatus404Schema: z.ZodUnknown;
|
|
|
13815
14609
|
declare const updateProjectStatus409Schema: z.ZodUnknown;
|
|
13816
14610
|
declare const updateProjectStatus410Schema: z.ZodUnknown;
|
|
13817
14611
|
declare const updateProjectStatus428Schema: z.ZodUnknown;
|
|
14612
|
+
declare const updateProjectStatus429Schema: z.ZodUnknown;
|
|
13818
14613
|
declare const updateProjectResponseSchema: z.ZodUnknown;
|
|
13819
|
-
declare const updateProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14614
|
+
declare const updateProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13820
14615
|
declare const deleteProjectPathIdOrNameSchema: z.ZodString;
|
|
13821
14616
|
declare const deleteProjectQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13822
14617
|
declare const deleteProjectQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -14209,9 +15004,10 @@ declare const createProjectTransferRequestStatus200Schema: z.ZodUnknown;
|
|
|
14209
15004
|
declare const createProjectTransferRequestStatus400Schema: z.ZodUnknown;
|
|
14210
15005
|
declare const createProjectTransferRequestStatus401Schema: z.ZodUnknown;
|
|
14211
15006
|
declare const createProjectTransferRequestStatus403Schema: z.ZodUnknown;
|
|
15007
|
+
declare const createProjectTransferRequestStatus409Schema: z.ZodUnknown;
|
|
14212
15008
|
declare const createProjectTransferRequestStatus410Schema: z.ZodUnknown;
|
|
14213
15009
|
declare const createProjectTransferRequestResponseSchema: z.ZodUnknown;
|
|
14214
|
-
declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15010
|
+
declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14215
15011
|
declare const acceptProjectTransferRequestPathCodeSchema: z.ZodString;
|
|
14216
15012
|
declare const acceptProjectTransferRequestQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
14217
15013
|
declare const acceptProjectTransferRequestQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -14325,37 +15121,37 @@ declare const unpauseProjectStatus410Schema: z.ZodUnknown;
|
|
|
14325
15121
|
declare const unpauseProjectStatus500Schema: z.ZodUnknown;
|
|
14326
15122
|
declare const unpauseProjectResponseSchema: z.ZodUnknown;
|
|
14327
15123
|
declare const unpauseProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14328
|
-
declare const
|
|
14329
|
-
declare const
|
|
14330
|
-
declare const
|
|
14331
|
-
createdAt: "createdAt";
|
|
15124
|
+
declare const listNamedSandboxesQueryProjectSchema: z.ZodOptional<z.ZodString>;
|
|
15125
|
+
declare const listNamedSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
15126
|
+
declare const listNamedSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
14332
15127
|
name: "name";
|
|
15128
|
+
createdAt: "createdAt";
|
|
14333
15129
|
statusUpdatedAt: "statusUpdatedAt";
|
|
14334
15130
|
currentSnapshotId: "currentSnapshotId";
|
|
14335
15131
|
}>>>;
|
|
14336
|
-
declare const
|
|
14337
|
-
declare const
|
|
14338
|
-
declare const
|
|
15132
|
+
declare const listNamedSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
15133
|
+
declare const listNamedSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
15134
|
+
declare const listNamedSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
14339
15135
|
asc: "asc";
|
|
14340
15136
|
desc: "desc";
|
|
14341
15137
|
}>>>;
|
|
14342
|
-
declare const
|
|
15138
|
+
declare const listNamedSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
|
|
14343
15139
|
running: "running";
|
|
14344
15140
|
stopping: "stopping";
|
|
14345
15141
|
stopped: "stopped";
|
|
14346
15142
|
}>>;
|
|
14347
|
-
declare const
|
|
14348
|
-
declare const
|
|
14349
|
-
declare const
|
|
14350
|
-
declare const
|
|
14351
|
-
declare const
|
|
14352
|
-
declare const
|
|
14353
|
-
declare const
|
|
14354
|
-
declare const
|
|
14355
|
-
declare const
|
|
14356
|
-
declare const
|
|
14357
|
-
declare const
|
|
14358
|
-
declare const
|
|
15143
|
+
declare const listNamedSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
15144
|
+
declare const listNamedSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
15145
|
+
declare const listNamedSandboxesQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
15146
|
+
declare const listNamedSandboxesStatus200Schema: z.ZodUnknown;
|
|
15147
|
+
declare const listNamedSandboxesStatus400Schema: z.ZodUnknown;
|
|
15148
|
+
declare const listNamedSandboxesStatus401Schema: z.ZodUnknown;
|
|
15149
|
+
declare const listNamedSandboxesStatus403Schema: z.ZodUnknown;
|
|
15150
|
+
declare const listNamedSandboxesStatus404Schema: z.ZodUnknown;
|
|
15151
|
+
declare const listNamedSandboxesStatus410Schema: z.ZodUnknown;
|
|
15152
|
+
declare const listNamedSandboxesStatus429Schema: z.ZodUnknown;
|
|
15153
|
+
declare const listNamedSandboxesResponseSchema: z.ZodUnknown;
|
|
15154
|
+
declare const listNamedSandboxesErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14359
15155
|
declare const createSandboxesV2QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
14360
15156
|
declare const createSandboxesV2QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
14361
15157
|
declare const createSandboxesV2Status200Schema: z.ZodUnknown;
|
|
@@ -14375,8 +15171,8 @@ declare const listDrivesQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
|
|
|
14375
15171
|
declare const listDrivesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
14376
15172
|
declare const listDrivesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
14377
15173
|
declare const listDrivesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
14378
|
-
createdAt: "createdAt";
|
|
14379
15174
|
name: "name";
|
|
15175
|
+
createdAt: "createdAt";
|
|
14380
15176
|
updatedAt: "updatedAt";
|
|
14381
15177
|
}>>>;
|
|
14382
15178
|
declare const listDrivesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -14904,36 +15700,39 @@ declare const getBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
|
14904
15700
|
declare const getBypassIpStatus200Schema: z.ZodUnknown;
|
|
14905
15701
|
declare const getBypassIpStatus400Schema: z.ZodUnknown;
|
|
14906
15702
|
declare const getBypassIpStatus401Schema: z.ZodUnknown;
|
|
15703
|
+
declare const getBypassIpStatus402Schema: z.ZodUnknown;
|
|
14907
15704
|
declare const getBypassIpStatus403Schema: z.ZodUnknown;
|
|
14908
15705
|
declare const getBypassIpStatus404Schema: z.ZodUnknown;
|
|
14909
15706
|
declare const getBypassIpStatus410Schema: z.ZodUnknown;
|
|
14910
15707
|
declare const getBypassIpStatus500Schema: z.ZodUnknown;
|
|
14911
15708
|
declare const getBypassIpResponseSchema: z.ZodUnknown;
|
|
14912
|
-
declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15709
|
+
declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14913
15710
|
declare const addBypassIpQueryProjectIdSchema: z.ZodString;
|
|
14914
15711
|
declare const addBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
14915
15712
|
declare const addBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
14916
15713
|
declare const addBypassIpStatus200Schema: z.ZodUnknown;
|
|
14917
15714
|
declare const addBypassIpStatus400Schema: z.ZodUnknown;
|
|
14918
15715
|
declare const addBypassIpStatus401Schema: z.ZodUnknown;
|
|
15716
|
+
declare const addBypassIpStatus402Schema: z.ZodUnknown;
|
|
14919
15717
|
declare const addBypassIpStatus403Schema: z.ZodUnknown;
|
|
14920
15718
|
declare const addBypassIpStatus404Schema: z.ZodUnknown;
|
|
14921
15719
|
declare const addBypassIpStatus410Schema: z.ZodUnknown;
|
|
14922
15720
|
declare const addBypassIpStatus500Schema: z.ZodUnknown;
|
|
14923
15721
|
declare const addBypassIpResponseSchema: z.ZodUnknown;
|
|
14924
|
-
declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15722
|
+
declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14925
15723
|
declare const removeBypassIpQueryProjectIdSchema: z.ZodString;
|
|
14926
15724
|
declare const removeBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
14927
15725
|
declare const removeBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
14928
15726
|
declare const removeBypassIpStatus200Schema: z.ZodUnknown;
|
|
14929
15727
|
declare const removeBypassIpStatus400Schema: z.ZodUnknown;
|
|
14930
15728
|
declare const removeBypassIpStatus401Schema: z.ZodUnknown;
|
|
15729
|
+
declare const removeBypassIpStatus402Schema: z.ZodUnknown;
|
|
14931
15730
|
declare const removeBypassIpStatus403Schema: z.ZodUnknown;
|
|
14932
15731
|
declare const removeBypassIpStatus404Schema: z.ZodUnknown;
|
|
14933
15732
|
declare const removeBypassIpStatus410Schema: z.ZodUnknown;
|
|
14934
15733
|
declare const removeBypassIpStatus500Schema: z.ZodUnknown;
|
|
14935
15734
|
declare const removeBypassIpResponseSchema: z.ZodUnknown;
|
|
14936
|
-
declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15735
|
+
declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14937
15736
|
declare const getSecurityFirewallEventsQueryProjectIdSchema: z.ZodString;
|
|
14938
15737
|
declare const getSecurityFirewallEventsQueryStartTimestampSchema: z.ZodOptional<z.ZodNumber>;
|
|
14939
15738
|
declare const getSecurityFirewallEventsQueryEndTimestampSchema: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15014,10 +15813,9 @@ declare const createIntegrationStoreDirectStatus403Schema: z.ZodUnknown;
|
|
|
15014
15813
|
declare const createIntegrationStoreDirectStatus404Schema: z.ZodUnknown;
|
|
15015
15814
|
declare const createIntegrationStoreDirectStatus409Schema: z.ZodUnknown;
|
|
15016
15815
|
declare const createIntegrationStoreDirectStatus410Schema: z.ZodUnknown;
|
|
15017
|
-
declare const createIntegrationStoreDirectStatus429Schema: z.ZodUnknown;
|
|
15018
15816
|
declare const createIntegrationStoreDirectStatus500Schema: z.ZodUnknown;
|
|
15019
15817
|
declare const createIntegrationStoreDirectResponseSchema: z.ZodUnknown;
|
|
15020
|
-
declare const createIntegrationStoreDirectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown
|
|
15818
|
+
declare const createIntegrationStoreDirectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15021
15819
|
declare const getTeamMembersQueryLimitSchema: z.ZodOptional<z.ZodNumber>;
|
|
15022
15820
|
declare const getTeamMembersQuerySinceSchema: z.ZodOptional<z.ZodNumber>;
|
|
15023
15821
|
declare const getTeamMembersQueryUntilSchema: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15626,9 +16424,11 @@ declare const aggregatePageviewsStatus400Schema: z.ZodUnknown;
|
|
|
15626
16424
|
declare const aggregatePageviewsStatus401Schema: z.ZodUnknown;
|
|
15627
16425
|
declare const aggregatePageviewsStatus402Schema: z.ZodUnknown;
|
|
15628
16426
|
declare const aggregatePageviewsStatus403Schema: z.ZodUnknown;
|
|
16427
|
+
declare const aggregatePageviewsStatus404Schema: z.ZodUnknown;
|
|
15629
16428
|
declare const aggregatePageviewsStatus410Schema: z.ZodUnknown;
|
|
16429
|
+
declare const aggregatePageviewsStatus503Schema: z.ZodUnknown;
|
|
15630
16430
|
declare const aggregatePageviewsResponseSchema: z.ZodUnknown;
|
|
15631
|
-
declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
16431
|
+
declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15632
16432
|
declare const aggregateEventsQueryProjectIdSchema: z.ZodString;
|
|
15633
16433
|
declare const aggregateEventsQueryBySchema: z.ZodArray<z.ZodString>;
|
|
15634
16434
|
declare const aggregateEventsQuerySinceSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
@@ -15642,9 +16442,11 @@ declare const aggregateEventsStatus400Schema: z.ZodUnknown;
|
|
|
15642
16442
|
declare const aggregateEventsStatus401Schema: z.ZodUnknown;
|
|
15643
16443
|
declare const aggregateEventsStatus402Schema: z.ZodUnknown;
|
|
15644
16444
|
declare const aggregateEventsStatus403Schema: z.ZodUnknown;
|
|
16445
|
+
declare const aggregateEventsStatus404Schema: z.ZodUnknown;
|
|
15645
16446
|
declare const aggregateEventsStatus410Schema: z.ZodUnknown;
|
|
16447
|
+
declare const aggregateEventsStatus503Schema: z.ZodUnknown;
|
|
15646
16448
|
declare const aggregateEventsResponseSchema: z.ZodUnknown;
|
|
15647
|
-
declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
16449
|
+
declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15648
16450
|
declare const countPageviewsQueryProjectIdSchema: z.ZodString;
|
|
15649
16451
|
declare const countPageviewsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
15650
16452
|
declare const countPageviewsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
@@ -15656,9 +16458,11 @@ declare const countPageviewsStatus400Schema: z.ZodUnknown;
|
|
|
15656
16458
|
declare const countPageviewsStatus401Schema: z.ZodUnknown;
|
|
15657
16459
|
declare const countPageviewsStatus402Schema: z.ZodUnknown;
|
|
15658
16460
|
declare const countPageviewsStatus403Schema: z.ZodUnknown;
|
|
16461
|
+
declare const countPageviewsStatus404Schema: z.ZodUnknown;
|
|
15659
16462
|
declare const countPageviewsStatus410Schema: z.ZodUnknown;
|
|
16463
|
+
declare const countPageviewsStatus503Schema: z.ZodUnknown;
|
|
15660
16464
|
declare const countPageviewsResponseSchema: z.ZodUnknown;
|
|
15661
|
-
declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
16465
|
+
declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15662
16466
|
declare const countEventsQueryProjectIdSchema: z.ZodString;
|
|
15663
16467
|
declare const countEventsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
15664
16468
|
declare const countEventsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
@@ -15670,9 +16474,11 @@ declare const countEventsStatus400Schema: z.ZodUnknown;
|
|
|
15670
16474
|
declare const countEventsStatus401Schema: z.ZodUnknown;
|
|
15671
16475
|
declare const countEventsStatus402Schema: z.ZodUnknown;
|
|
15672
16476
|
declare const countEventsStatus403Schema: z.ZodUnknown;
|
|
16477
|
+
declare const countEventsStatus404Schema: z.ZodUnknown;
|
|
15673
16478
|
declare const countEventsStatus410Schema: z.ZodUnknown;
|
|
16479
|
+
declare const countEventsStatus503Schema: z.ZodUnknown;
|
|
15674
16480
|
declare const countEventsResponseSchema: z.ZodUnknown;
|
|
15675
|
-
declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
16481
|
+
declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15676
16482
|
declare const createWebhookQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
15677
16483
|
declare const createWebhookQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
15678
16484
|
declare const createWebhookStatus200Schema: z.ZodUnknown;
|
|
@@ -15907,5 +16713,5 @@ declare const deleteDeploymentStatus410Schema: z.ZodUnknown;
|
|
|
15907
16713
|
declare const deleteDeploymentResponseSchema: z.ZodUnknown;
|
|
15908
16714
|
declare const deleteDeploymentErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
15909
16715
|
|
|
15910
|
-
export { aCLActionSchema, aPIKeyQuotaSchema, aPIKeySchema, acceptProjectTransferRequestErrorSchema, acceptProjectTransferRequestPathCodeSchema, acceptProjectTransferRequestQuerySlugSchema, acceptProjectTransferRequestQueryTeamIdSchema, acceptProjectTransferRequestResponseSchema, acceptProjectTransferRequestStatus202Schema, acceptProjectTransferRequestStatus400Schema, acceptProjectTransferRequestStatus401Schema, acceptProjectTransferRequestStatus403Schema, acceptProjectTransferRequestStatus404Schema, acceptProjectTransferRequestStatus410Schema, acceptProjectTransferRequestStatus422Schema, activateKmsSigningKeyErrorSchema, activateKmsSigningKeyPathIssuerIdSchema, activateKmsSigningKeyPathKeyIdSchema, activateKmsSigningKeyQuerySlugSchema, activateKmsSigningKeyQueryTeamIdSchema, activateKmsSigningKeyResponseSchema, activateKmsSigningKeyStatus200Schema, activateKmsSigningKeyStatus400Schema, activateKmsSigningKeyStatus401Schema, activateKmsSigningKeyStatus403Schema, activateKmsSigningKeyStatus404Schema, activateKmsSigningKeyStatus409Schema, activateKmsSigningKeyStatus410Schema, addBypassIpErrorSchema, addBypassIpQueryProjectIdSchema, addBypassIpQuerySlugSchema, addBypassIpQueryTeamIdSchema, addBypassIpResponseSchema, addBypassIpStatus200Schema, addBypassIpStatus400Schema, addBypassIpStatus401Schema, addBypassIpStatus403Schema, addBypassIpStatus404Schema, addBypassIpStatus410Schema, addBypassIpStatus500Schema, addProjectDomainErrorSchema, addProjectDomainPathIdOrNameSchema, addProjectDomainQuerySlugSchema, addProjectDomainQueryTeamIdSchema, addProjectDomainResponseSchema, addProjectDomainStatus200Schema, addProjectDomainStatus400Schema, addProjectDomainStatus401Schema, addProjectDomainStatus402Schema, addProjectDomainStatus403Schema, addProjectDomainStatus409Schema, addProjectDomainStatus410Schema, addProjectMemberErrorSchema, addProjectMemberPathIdOrNameSchema, addProjectMemberQuerySlugSchema, addProjectMemberQueryTeamIdSchema, addProjectMemberResponseSchema, addProjectMemberStatus200Schema, addProjectMemberStatus400Schema, addProjectMemberStatus401Schema, addProjectMemberStatus403Schema, addProjectMemberStatus410Schema, addProjectMemberStatus500Schema, addRepositoryPermissionErrorSchema, addRepositoryPermissionPathIdOrNameSchema, addRepositoryPermissionQueryProjectIdSchema, addRepositoryPermissionQuerySlugSchema, addRepositoryPermissionQueryTeamIdSchema, addRepositoryPermissionResponseSchema, addRepositoryPermissionStatus200Schema, addRepositoryPermissionStatus400Schema, addRepositoryPermissionStatus401Schema, addRepositoryPermissionStatus403Schema, addRepositoryPermissionStatus404Schema, addRepositoryPermissionStatus410Schema, addRouteErrorSchema, addRoutePathProjectIdSchema, addRouteQuerySlugSchema, addRouteQueryTeamIdSchema, addRouteResponseSchema, addRouteStatus200Schema, addRouteStatus400Schema, addRouteStatus401Schema, addRouteStatus403Schema, addRouteStatus409Schema, addRouteStatus410Schema, addRouteStatus500Schema, additionalContactInfoRequiredSchema, aggregateEventsErrorSchema, aggregateEventsQueryBySchema, aggregateEventsQueryFilterSchema, aggregateEventsQueryLimitSchema, aggregateEventsQueryProjectIdSchema, aggregateEventsQuerySinceSchema, aggregateEventsQuerySlugSchema, aggregateEventsQueryTeamIdSchema, aggregateEventsQueryUntilSchema, aggregateEventsResponseSchema, aggregateEventsStatus200Schema, aggregateEventsStatus400Schema, aggregateEventsStatus401Schema, aggregateEventsStatus402Schema, aggregateEventsStatus403Schema, aggregateEventsStatus410Schema, aggregatePageviewsErrorSchema, aggregatePageviewsQueryBySchema, aggregatePageviewsQueryFilterSchema, aggregatePageviewsQueryLimitSchema, aggregatePageviewsQueryProjectIdSchema, aggregatePageviewsQuerySinceSchema, aggregatePageviewsQuerySlugSchema, aggregatePageviewsQueryTeamIdSchema, aggregatePageviewsQueryUntilSchema, aggregatePageviewsResponseSchema, aggregatePageviewsStatus200Schema, aggregatePageviewsStatus400Schema, aggregatePageviewsStatus401Schema, aggregatePageviewsStatus402Schema, aggregatePageviewsStatus403Schema, aggregatePageviewsStatus410Schema, aiGatewayProviderOptionBagSchema, aiGatewayRuleListSchema, aiGatewayRuleSchema, aiGatewayVirtualModelConfigListSchema, aiGatewayVirtualModelConfigSchema, approveRollingReleaseStageErrorSchema, approveRollingReleaseStagePathIdOrNameSchema, approveRollingReleaseStageQuerySlugSchema, approveRollingReleaseStageQueryTeamIdSchema, approveRollingReleaseStageResponseSchema, approveRollingReleaseStageStatus200Schema, approveRollingReleaseStageStatus400Schema, approveRollingReleaseStageStatus401Schema, approveRollingReleaseStageStatus403Schema, approveRollingReleaseStageStatus404Schema, approveRollingReleaseStageStatus410Schema, approveRollingReleaseStageStatus500Schema, artifactQueryErrorSchema, artifactQueryQuerySlugSchema, artifactQueryQueryTeamIdSchema, artifactQueryResponseSchema, artifactQueryStatus200Schema, artifactQueryStatus400Schema, artifactQueryStatus401Schema, artifactQueryStatus402Schema, artifactQueryStatus403Schema, artifactQueryStatus410Schema, assignAliasErrorSchema, assignAliasPathIdSchema, assignAliasQuerySlugSchema, assignAliasQueryTeamIdSchema, assignAliasResponseSchema, assignAliasStatus200Schema, assignAliasStatus400Schema, assignAliasStatus401Schema, assignAliasStatus402Schema, assignAliasStatus403Schema, assignAliasStatus404Schema, assignAliasStatus409Schema, assignAliasStatus410Schema, authTokenSchema, authUserLimitedSchema, authUserSchema, badRequestSchema, batchRemoveProjectEnvErrorSchema, batchRemoveProjectEnvPathIdOrNameSchema, batchRemoveProjectEnvQuerySlugSchema, batchRemoveProjectEnvQueryTeamIdSchema, batchRemoveProjectEnvResponseSchema, batchRemoveProjectEnvStatus200Schema, batchRemoveProjectEnvStatus400Schema, batchRemoveProjectEnvStatus401Schema, batchRemoveProjectEnvStatus403Schema, batchRemoveProjectEnvStatus404Schema, batchRemoveProjectEnvStatus409Schema, batchRemoveProjectEnvStatus410Schema, boughtTooRecentlySchema, buyCreditsErrorSchema, buyCreditsQuerySlugSchema, buyCreditsQuerySourceSchema, buyCreditsQueryTeamIdSchema, buyCreditsResponseSchema, buyCreditsStatus200Schema, buyCreditsStatus400Schema, buyCreditsStatus401Schema, buyCreditsStatus402Schema, buyCreditsStatus403Schema, buyCreditsStatus404Schema, buyCreditsStatus409Schema, buyCreditsStatus410Schema, buyCreditsStatus500Schema, buyDomainsErrorSchema, buyDomainsQueryTeamIdSchema, buyDomainsResponseSchema, buyDomainsStatus200Schema, buyDomainsStatus400Schema, buyDomainsStatus401Schema, buyDomainsStatus403Schema, buyDomainsStatus429Schema, buyDomainsStatus500Schema, buySingleDomainErrorSchema, buySingleDomainPathDomainSchema, buySingleDomainQueryTeamIdSchema, buySingleDomainResponseSchema, buySingleDomainStatus200Schema, buySingleDomainStatus400Schema, buySingleDomainStatus401Schema, buySingleDomainStatus403Schema, buySingleDomainStatus429Schema, buySingleDomainStatus500Schema, cancelDeploymentErrorSchema, cancelDeploymentPathIdSchema, cancelDeploymentQuerySlugSchema, cancelDeploymentQueryTeamIdSchema, cancelDeploymentResponseSchema, cancelDeploymentStatus200Schema, cancelDeploymentStatus400Schema, cancelDeploymentStatus401Schema, cancelDeploymentStatus403Schema, cancelDeploymentStatus404Schema, cancelDeploymentStatus410Schema, claimDomainOwnershipErrorSchema, claimDomainOwnershipPathDomainSchema, claimDomainOwnershipQuerySlugSchema, claimDomainOwnershipQueryTeamIdSchema, claimDomainOwnershipResponseSchema, claimDomainOwnershipStatus200Schema, claimDomainOwnershipStatus400Schema, claimDomainOwnershipStatus401Schema, claimDomainOwnershipStatus403Schema, claimDomainOwnershipStatus404Schema, claimDomainOwnershipStatus410Schema, clearRepositoryPermissionsErrorSchema, clearRepositoryPermissionsPathIdOrNameSchema, clearRepositoryPermissionsQueryProjectIdSchema, clearRepositoryPermissionsQuerySlugSchema, clearRepositoryPermissionsQueryTeamIdSchema, clearRepositoryPermissionsResponseSchema, clearRepositoryPermissionsStatus204Schema, clearRepositoryPermissionsStatus400Schema, clearRepositoryPermissionsStatus401Schema, clearRepositoryPermissionsStatus403Schema, clearRepositoryPermissionsStatus404Schema, clearRepositoryPermissionsStatus410Schema, completeRollingReleaseErrorSchema, completeRollingReleasePathIdOrNameSchema, completeRollingReleaseQuerySlugSchema, completeRollingReleaseQueryTeamIdSchema, completeRollingReleaseResponseSchema, completeRollingReleaseStatus200Schema, completeRollingReleaseStatus400Schema, completeRollingReleaseStatus401Schema, completeRollingReleaseStatus403Schema, completeRollingReleaseStatus404Schema, completeRollingReleaseStatus410Schema, connectConnectorCreateDataSchema, connectConnectorCreateResultSchema, connectCreateConnectorRequestSchema, connectEnvironmentSchema, connectErrorSchema, connectIntegrationResourceToProjectErrorSchema, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema, connectIntegrationResourceToProjectPathResourceIdSchema, connectIntegrationResourceToProjectQuerySlugSchema, connectIntegrationResourceToProjectQueryTeamIdSchema, connectIntegrationResourceToProjectResponseSchema, connectIntegrationResourceToProjectStatus201Schema, connectIntegrationResourceToProjectStatus400Schema, connectIntegrationResourceToProjectStatus401Schema, connectIntegrationResourceToProjectStatus403Schema, connectIntegrationResourceToProjectStatus404Schema, connectIntegrationResourceToProjectStatus410Schema, connectTriggerConfigurationSchema, connectTriggerDestinationSchema, contactPendingVerificationSchema, contactVerifiedSchema, countEventsErrorSchema, countEventsQueryFilterSchema, countEventsQueryProjectIdSchema, countEventsQuerySinceSchema, countEventsQuerySlugSchema, countEventsQueryTeamIdSchema, countEventsQueryUntilSchema, countEventsResponseSchema, countEventsStatus200Schema, countEventsStatus400Schema, countEventsStatus401Schema, countEventsStatus402Schema, countEventsStatus403Schema, countEventsStatus410Schema, countPageviewsErrorSchema, countPageviewsQueryFilterSchema, countPageviewsQueryProjectIdSchema, countPageviewsQuerySinceSchema, countPageviewsQuerySlugSchema, countPageviewsQueryTeamIdSchema, countPageviewsQueryUntilSchema, countPageviewsResponseSchema, countPageviewsStatus200Schema, countPageviewsStatus400Schema, countPageviewsStatus401Schema, countPageviewsStatus402Schema, countPageviewsStatus403Schema, countPageviewsStatus410Schema, countryCodeSchema, createAccessGroupErrorSchema, createAccessGroupProjectErrorSchema, createAccessGroupProjectPathAccessGroupIdOrNameSchema, createAccessGroupProjectQuerySlugSchema, createAccessGroupProjectQueryTeamIdSchema, createAccessGroupProjectResponseSchema, createAccessGroupProjectStatus200Schema, createAccessGroupProjectStatus400Schema, createAccessGroupProjectStatus401Schema, createAccessGroupProjectStatus403Schema, createAccessGroupProjectStatus410Schema, createAccessGroupQuerySlugSchema, createAccessGroupQueryTeamIdSchema, createAccessGroupResponseSchema, createAccessGroupStatus200Schema, createAccessGroupStatus400Schema, createAccessGroupStatus401Schema, createAccessGroupStatus403Schema, createAccessGroupStatus410Schema, createAiGatewayRuleErrorSchema, createAiGatewayRuleQuerySlugSchema, createAiGatewayRuleQueryTeamIdSchema, createAiGatewayRuleResponseSchema, createAiGatewayRuleStatus201Schema, createAiGatewayRuleStatus400Schema, createAiGatewayRuleStatus401Schema, createAiGatewayRuleStatus403Schema, createAiGatewayRuleStatus409Schema, createAiGatewayRuleStatus410Schema, createAiGatewayRuleStatus500Schema, createAiGatewayVirtualModelConfigErrorSchema, createAiGatewayVirtualModelConfigQuerySlugSchema, createAiGatewayVirtualModelConfigQueryTeamIdSchema, createAiGatewayVirtualModelConfigResponseSchema, createAiGatewayVirtualModelConfigStatus201Schema, createAiGatewayVirtualModelConfigStatus400Schema, createAiGatewayVirtualModelConfigStatus401Schema, createAiGatewayVirtualModelConfigStatus403Schema, createAiGatewayVirtualModelConfigStatus409Schema, createAiGatewayVirtualModelConfigStatus410Schema, createAiGatewayVirtualModelConfigStatus429Schema, createAiGatewayVirtualModelConfigStatus500Schema, createApiKeysErrorSchema, createApiKeysResponseSchema, createApiKeysStatus200Schema, createApiKeysStatus400Schema, createApiKeysStatus401Schema, createApiKeysStatus403Schema, createApiKeysStatus409Schema, createApiKeysStatus410Schema, createApiKeysStatus429Schema, createApiKeysStatus500Schema, createAuthTokenErrorSchema, createAuthTokenQuerySlugSchema, createAuthTokenQueryTeamIdSchema, createAuthTokenResponseSchema, createAuthTokenStatus200Schema, createAuthTokenStatus400Schema, createAuthTokenStatus401Schema, createAuthTokenStatus403Schema, createAuthTokenStatus404Schema, createAuthTokenStatus410Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsErrorSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema, createCheckErrorSchema, createCheckPathDeploymentIdSchema, createCheckQuerySlugSchema, createCheckQueryTeamIdSchema, createCheckResponseSchema, createCheckStatus200Schema, createCheckStatus400Schema, createCheckStatus401Schema, createCheckStatus403Schema, createCheckStatus404Schema, createCheckStatus410Schema, createConfigurableLogDrainErrorSchema, createConfigurableLogDrainQuerySlugSchema, createConfigurableLogDrainQueryTeamIdSchema, createConfigurableLogDrainResponseSchema, createConfigurableLogDrainStatus200Schema, createConfigurableLogDrainStatus400Schema, createConfigurableLogDrainStatus401Schema, createConfigurableLogDrainStatus403Schema, createConfigurableLogDrainStatus410Schema, createConnectorAuthorizationRequestErrorSchema, createConnectorAuthorizationRequestPathConnectorSchema, createConnectorAuthorizationRequestResponseSchema, createConnectorAuthorizationRequestStatus200Schema, createConnectorAuthorizationRequestStatus400Schema, createConnectorAuthorizationRequestStatus401Schema, createConnectorAuthorizationRequestStatus403Schema, createConnectorAuthorizationRequestStatus404Schema, createConnectorAuthorizationRequestStatus410Schema, createConnectorErrorSchema, createConnectorQuerySlugSchema, createConnectorQueryTeamIdSchema, createConnectorResponseSchema, createConnectorStatus201Schema, createConnectorStatus400Schema, createConnectorStatus401Schema, createConnectorStatus403Schema, createConnectorStatus404Schema, createConnectorStatus409Schema, createConnectorStatus410Schema, createConnectorStatus422Schema, createConnectorStatus500Schema, createConnectorStatus502Schema, createCustomEnvironmentErrorSchema, createCustomEnvironmentPathIdOrNameSchema, createCustomEnvironmentQuerySlugSchema, createCustomEnvironmentQueryTeamIdSchema, createCustomEnvironmentResponseSchema, createCustomEnvironmentStatus201Schema, createCustomEnvironmentStatus400Schema, createCustomEnvironmentStatus401Schema, createCustomEnvironmentStatus402Schema, createCustomEnvironmentStatus403Schema, createCustomEnvironmentStatus410Schema, createCustomEnvironmentStatus500Schema, createDeploymentCheckRunErrorSchema, createDeploymentCheckRunPathDeploymentIdSchema, createDeploymentCheckRunQuerySlugSchema, createDeploymentCheckRunQueryTeamIdSchema, createDeploymentCheckRunResponseSchema, createDeploymentCheckRunStatus200Schema, createDeploymentCheckRunStatus400Schema, createDeploymentCheckRunStatus401Schema, createDeploymentCheckRunStatus403Schema, createDeploymentCheckRunStatus404Schema, createDeploymentCheckRunStatus410Schema, createDeploymentCheckRunStatus500Schema, createDeploymentErrorSchema, createDeploymentQueryForceNewSchema, createDeploymentQuerySkipAutoDetectionConfirmationSchema, createDeploymentQuerySlugSchema, createDeploymentQueryTeamIdSchema, createDeploymentResponseSchema, createDeploymentStatus200Schema, createDeploymentStatus400Schema, createDeploymentStatus401Schema, createDeploymentStatus402Schema, createDeploymentStatus403Schema, createDeploymentStatus404Schema, createDeploymentStatus409Schema, createDeploymentStatus410Schema, createDeploymentStatus426Schema, createDeploymentStatus429Schema, createDeploymentStatus500Schema, createDeploymentStatus503Schema, createDrainErrorSchema, createDrainQuerySlugSchema, createDrainQueryTeamIdSchema, createDrainResponseSchema, createDrainStatus200Schema, createDrainStatus400Schema, createDrainStatus401Schema, createDrainStatus402Schema, createDrainStatus403Schema, createDrainStatus410Schema, createEdgeConfigErrorSchema, createEdgeConfigQuerySlugSchema, createEdgeConfigQueryTeamIdSchema, createEdgeConfigResponseSchema, createEdgeConfigStatus201Schema, createEdgeConfigStatus400Schema, createEdgeConfigStatus401Schema, createEdgeConfigStatus402Schema, createEdgeConfigStatus403Schema, createEdgeConfigStatus410Schema, createEdgeConfigTokenErrorSchema, createEdgeConfigTokenPathEdgeConfigIdSchema, createEdgeConfigTokenQuerySlugSchema, createEdgeConfigTokenQueryTeamIdSchema, createEdgeConfigTokenResponseSchema, createEdgeConfigTokenStatus201Schema, createEdgeConfigTokenStatus400Schema, createEdgeConfigTokenStatus401Schema, createEdgeConfigTokenStatus402Schema, createEdgeConfigTokenStatus403Schema, createEdgeConfigTokenStatus404Schema, createEdgeConfigTokenStatus409Schema, createEdgeConfigTokenStatus410Schema, createEventErrorSchema, createEventPathIntegrationConfigurationIdSchema, createEventResponseSchema, createEventStatus201Schema, createEventStatus400Schema, createEventStatus401Schema, createEventStatus403Schema, createEventStatus404Schema, createEventStatus410Schema, createFlagErrorSchema, createFlagPathProjectIdOrNameSchema, createFlagQuerySlugSchema, createFlagQueryTeamIdSchema, createFlagResponseSchema, createFlagSegmentErrorSchema, createFlagSegmentPathProjectIdOrNameSchema, createFlagSegmentQuerySlugSchema, createFlagSegmentQueryTeamIdSchema, createFlagSegmentResponseSchema, createFlagSegmentStatus201Schema, createFlagSegmentStatus400Schema, createFlagSegmentStatus401Schema, createFlagSegmentStatus402Schema, createFlagSegmentStatus403Schema, createFlagSegmentStatus404Schema, createFlagSegmentStatus409Schema, createFlagSegmentStatus410Schema, createFlagStatus201Schema, createFlagStatus400Schema, createFlagStatus401Schema, createFlagStatus402Schema, createFlagStatus403Schema, createFlagStatus404Schema, createFlagStatus409Schema, createFlagStatus410Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsErrorSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema, createIntegrationStoreDirectErrorSchema, createIntegrationStoreDirectQuerySlugSchema, createIntegrationStoreDirectQueryTeamIdSchema, createIntegrationStoreDirectResponseSchema, createIntegrationStoreDirectStatus200Schema, createIntegrationStoreDirectStatus400Schema, createIntegrationStoreDirectStatus401Schema, createIntegrationStoreDirectStatus402Schema, createIntegrationStoreDirectStatus403Schema, createIntegrationStoreDirectStatus404Schema, createIntegrationStoreDirectStatus409Schema, createIntegrationStoreDirectStatus410Schema, createIntegrationStoreDirectStatus429Schema, createIntegrationStoreDirectStatus500Schema, createKmsIssuerErrorSchema, createKmsIssuerPolicyErrorSchema, createKmsIssuerPolicyPathIssuerIdSchema, createKmsIssuerPolicyQuerySlugSchema, createKmsIssuerPolicyQueryTeamIdSchema, createKmsIssuerPolicyResponseSchema, createKmsIssuerPolicyStatus201Schema, createKmsIssuerPolicyStatus400Schema, createKmsIssuerPolicyStatus401Schema, createKmsIssuerPolicyStatus403Schema, createKmsIssuerPolicyStatus404Schema, createKmsIssuerPolicyStatus410Schema, createKmsIssuerQuerySlugSchema, createKmsIssuerQueryTeamIdSchema, createKmsIssuerResponseSchema, createKmsIssuerStatus201Schema, createKmsIssuerStatus400Schema, createKmsIssuerStatus401Schema, createKmsIssuerStatus403Schema, createKmsIssuerStatus404Schema, createKmsIssuerStatus410Schema, createKmsSigningKeyErrorSchema, createKmsSigningKeyPathIssuerIdSchema, createKmsSigningKeyQuerySlugSchema, createKmsSigningKeyQueryTeamIdSchema, createKmsSigningKeyResponseSchema, createKmsSigningKeyStatus200Schema, createKmsSigningKeyStatus400Schema, createKmsSigningKeyStatus401Schema, createKmsSigningKeyStatus403Schema, createKmsSigningKeyStatus404Schema, createKmsSigningKeyStatus409Schema, createKmsSigningKeyStatus410Schema, createLogDrainErrorSchema, createLogDrainQuerySlugSchema, createLogDrainQueryTeamIdSchema, createLogDrainResponseSchema, createLogDrainStatus200Schema, createLogDrainStatus400Schema, createLogDrainStatus401Schema, createLogDrainStatus403Schema, createLogDrainStatus410Schema, createMicrofrontendsGroupWithApplicationsErrorSchema, createMicrofrontendsGroupWithApplicationsQuerySlugSchema, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema, createMicrofrontendsGroupWithApplicationsResponseSchema, createMicrofrontendsGroupWithApplicationsStatus200Schema, createMicrofrontendsGroupWithApplicationsStatus400Schema, createMicrofrontendsGroupWithApplicationsStatus401Schema, createMicrofrontendsGroupWithApplicationsStatus403Schema, createMicrofrontendsGroupWithApplicationsStatus410Schema, createMicrofrontendsGroupWithApplicationsStatus500Schema, createNetworkErrorSchema, createNetworkQuerySlugSchema, createNetworkQueryTeamIdSchema, createNetworkResponseSchema, createNetworkStatus201Schema, createNetworkStatus400Schema, createNetworkStatus401Schema, createNetworkStatus402Schema, createNetworkStatus403Schema, createNetworkStatus409Schema, createNetworkStatus410Schema, createObservabilityQueryErrorSchema, createObservabilityQueryResponseSchema, createObservabilityQueryStatus200Schema, createObservabilityQueryStatus400Schema, createObservabilityQueryStatus401Schema, createObservabilityQueryStatus402Schema, createObservabilityQueryStatus403Schema, createObservabilityQueryStatus408Schema, createObservabilityQueryStatus410Schema, createOrTransferDomainErrorSchema, createOrTransferDomainQuerySlugSchema, createOrTransferDomainQueryTeamIdSchema, createOrTransferDomainResponseSchema, createOrTransferDomainStatus200Schema, createOrTransferDomainStatus400Schema, createOrTransferDomainStatus401Schema, createOrTransferDomainStatus402Schema, createOrTransferDomainStatus403Schema, createOrTransferDomainStatus404Schema, createOrTransferDomainStatus409Schema, createOrTransferDomainStatus410Schema, createProjectCheckErrorSchema, createProjectCheckPathProjectIdOrNameSchema, createProjectCheckQuerySlugSchema, createProjectCheckQueryTeamIdSchema, createProjectCheckResponseSchema, createProjectCheckStatus200Schema, createProjectCheckStatus400Schema, createProjectCheckStatus401Schema, createProjectCheckStatus403Schema, createProjectCheckStatus410Schema, createProjectCheckStatus500Schema, createProjectEnvErrorSchema, createProjectEnvPathIdOrNameSchema, createProjectEnvQuerySlugSchema, createProjectEnvQueryTeamIdSchema, createProjectEnvQueryUpsertSchema, createProjectEnvResponseSchema, createProjectEnvStatus201Schema, createProjectEnvStatus400Schema, createProjectEnvStatus401Schema, createProjectEnvStatus402Schema, createProjectEnvStatus403Schema, createProjectEnvStatus404Schema, createProjectEnvStatus409Schema, createProjectEnvStatus410Schema, createProjectEnvStatus429Schema, createProjectEnvStatus500Schema, createProjectErrorSchema, createProjectQuerySlugSchema, createProjectQueryTeamIdSchema, createProjectResponseSchema, createProjectStatus200Schema, createProjectStatus400Schema, createProjectStatus401Schema, createProjectStatus402Schema, createProjectStatus403Schema, createProjectStatus404Schema, createProjectStatus409Schema, createProjectStatus410Schema, createProjectStatus428Schema, createProjectStatus429Schema, createProjectStatus500Schema, createProjectTransferRequestErrorSchema, createProjectTransferRequestPathIdOrNameSchema, createProjectTransferRequestQuerySlugSchema, createProjectTransferRequestQueryTeamIdSchema, createProjectTransferRequestResponseSchema, createProjectTransferRequestStatus200Schema, createProjectTransferRequestStatus400Schema, createProjectTransferRequestStatus401Schema, createProjectTransferRequestStatus403Schema, createProjectTransferRequestStatus410Schema, createRecordErrorSchema, createRecordPathDomainSchema, createRecordQuerySlugSchema, createRecordQueryTeamIdSchema, createRecordResponseSchema, createRecordStatus200Schema, createRecordStatus400Schema, createRecordStatus401Schema, createRecordStatus402Schema, createRecordStatus403Schema, createRecordStatus404Schema, createRecordStatus409Schema, createRecordStatus410Schema, createRepositoryErrorSchema, createRepositoryQuerySlugSchema, createRepositoryQueryTeamIdSchema, createRepositoryResponseSchema, createRepositoryStatus200Schema, createRepositoryStatus400Schema, createRepositoryStatus401Schema, createRepositoryStatus402Schema, createRepositoryStatus403Schema, createRepositoryStatus404Schema, createRepositoryStatus409Schema, createRepositoryStatus410Schema, createSandboxesByNameForkV2ErrorSchema, createSandboxesByNameForkV2PathNameSchema, createSandboxesByNameForkV2QueryProjectIdSchema, createSandboxesByNameForkV2QuerySlugSchema, createSandboxesByNameForkV2QueryTeamIdSchema, createSandboxesByNameForkV2ResponseSchema, createSandboxesByNameForkV2Status200Schema, createSandboxesByNameForkV2Status400Schema, createSandboxesByNameForkV2Status401Schema, createSandboxesByNameForkV2Status402Schema, createSandboxesByNameForkV2Status403Schema, createSandboxesByNameForkV2Status404Schema, createSandboxesByNameForkV2Status409Schema, createSandboxesByNameForkV2Status410Schema, createSandboxesByNameForkV2Status422Schema, createSandboxesByNameForkV2Status429Schema, createSandboxesByNameForkV2Status500Schema, createSandboxesByNameForkV3ErrorSchema, createSandboxesByNameForkV3PathNameSchema, createSandboxesByNameForkV3QueryProjectIdSchema, createSandboxesByNameForkV3QuerySlugSchema, createSandboxesByNameForkV3QueryTeamIdSchema, createSandboxesByNameForkV3ResponseSchema, createSandboxesByNameForkV3Status200Schema, createSandboxesByNameForkV3Status400Schema, createSandboxesByNameForkV3Status401Schema, createSandboxesByNameForkV3Status402Schema, createSandboxesByNameForkV3Status403Schema, createSandboxesByNameForkV3Status404Schema, createSandboxesByNameForkV3Status409Schema, createSandboxesByNameForkV3Status410Schema, createSandboxesByNameForkV3Status422Schema, createSandboxesByNameForkV3Status429Schema, createSandboxesByNameForkV3Status500Schema, createSandboxesSessionsBySessionIdSnapshotV2ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema, createSandboxesSessionsBySessionIdSnapshotV3ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema, createSandboxesV2ErrorSchema, createSandboxesV2QuerySlugSchema, createSandboxesV2QueryTeamIdSchema, createSandboxesV2ResponseSchema, createSandboxesV2Status200Schema, createSandboxesV2Status400Schema, createSandboxesV2Status401Schema, createSandboxesV2Status402Schema, createSandboxesV2Status403Schema, createSandboxesV2Status404Schema, createSandboxesV2Status409Schema, createSandboxesV2Status410Schema, createSandboxesV2Status422Schema, createSandboxesV2Status429Schema, createSandboxesV2Status500Schema, createSandboxesV3ErrorSchema, createSandboxesV3QuerySlugSchema, createSandboxesV3QueryTeamIdSchema, createSandboxesV3ResponseSchema, createSandboxesV3Status200Schema, createSandboxesV3Status400Schema, createSandboxesV3Status401Schema, createSandboxesV3Status402Schema, createSandboxesV3Status403Schema, createSandboxesV3Status404Schema, createSandboxesV3Status409Schema, createSandboxesV3Status410Schema, createSandboxesV3Status422Schema, createSandboxesV3Status429Schema, createSandboxesV3Status500Schema, createSandboxesV4ErrorSchema, createSandboxesV4QuerySlugSchema, createSandboxesV4QueryTeamIdSchema, createSandboxesV4ResponseSchema, createSandboxesV4Status200Schema, createSandboxesV4Status400Schema, createSandboxesV4Status401Schema, createSandboxesV4Status402Schema, createSandboxesV4Status403Schema, createSandboxesV4Status404Schema, createSandboxesV4Status409Schema, createSandboxesV4Status410Schema, createSandboxesV4Status422Schema, createSandboxesV4Status429Schema, createSandboxesV4Status500Schema, createSdkKeyErrorSchema, createSdkKeyPathProjectIdOrNameSchema, createSdkKeyQuerySlugSchema, createSdkKeyQueryTeamIdSchema, createSdkKeyResponseSchema, createSdkKeyStatus200Schema, createSdkKeyStatus400Schema, createSdkKeyStatus401Schema, createSdkKeyStatus402Schema, createSdkKeyStatus403Schema, createSdkKeyStatus404Schema, createSdkKeyStatus409Schema, createSdkKeyStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateErrorSchema, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema, createSecurityFirewallConfigByConfigVersionActivateResponseSchema, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema, createSessionDirectoryErrorSchema, createSessionDirectoryPathSessionIdSchema, createSessionDirectoryQuerySlugSchema, createSessionDirectoryQueryTeamIdSchema, createSessionDirectoryResponseSchema, createSessionDirectoryStatus200Schema, createSessionDirectoryStatus400Schema, createSessionDirectoryStatus401Schema, createSessionDirectoryStatus403Schema, createSessionDirectoryStatus404Schema, createSessionDirectoryStatus410Schema, createSessionDirectoryStatus422Schema, createSessionDirectoryStatus429Schema, createSessionDirectoryStatus500Schema, createSharedEnvVariableErrorSchema, createSharedEnvVariableQuerySlugSchema, createSharedEnvVariableQueryTeamIdSchema, createSharedEnvVariableResponseSchema, createSharedEnvVariableStatus201Schema, createSharedEnvVariableStatus400Schema, createSharedEnvVariableStatus401Schema, createSharedEnvVariableStatus402Schema, createSharedEnvVariableStatus403Schema, createSharedEnvVariableStatus410Schema, createSpeedInsightsToggleErrorSchema, createSpeedInsightsToggleQueryProjectIdSchema, createSpeedInsightsToggleResponseSchema, createSpeedInsightsToggleStatus200Schema, createSpeedInsightsToggleStatus400Schema, createSpeedInsightsToggleStatus401Schema, createSpeedInsightsToggleStatus402Schema, createSpeedInsightsToggleStatus403Schema, createSpeedInsightsToggleStatus410Schema, createStorageStoresBlobErrorSchema, createStorageStoresBlobResponseSchema, createStorageStoresBlobStatus200Schema, createStorageStoresBlobStatus400Schema, createStorageStoresBlobStatus401Schema, createStorageStoresBlobStatus402Schema, createStorageStoresBlobStatus403Schema, createStorageStoresBlobStatus404Schema, createStorageStoresBlobStatus409Schema, createStorageStoresBlobStatus410Schema, createStorageStoresBlobStatus429Schema, createTeamErrorSchema, createTeamResponseSchema, createTeamStatus200Schema, createTeamStatus400Schema, createTeamStatus401Schema, createTeamStatus403Schema, createTeamStatus404Schema, createTeamStatus409Schema, createTeamStatus410Schema, createTraceSessionErrorSchema, createTraceSessionQuerySlugSchema, createTraceSessionQueryTeamIdSchema, createTraceSessionResponseSchema, createTraceSessionStatus200Schema, createTraceSessionStatus400Schema, createTraceSessionStatus401Schema, createTraceSessionStatus403Schema, createTraceSessionStatus410Schema, createTraceSessionStatus422Schema, createWebInsightsToggleErrorSchema, createWebInsightsToggleQueryProjectIdSchema, createWebInsightsToggleResponseSchema, createWebInsightsToggleStatus200Schema, createWebInsightsToggleStatus400Schema, createWebInsightsToggleStatus401Schema, createWebInsightsToggleStatus403Schema, createWebInsightsToggleStatus410Schema, createWebhookErrorSchema, createWebhookQuerySlugSchema, createWebhookQueryTeamIdSchema, createWebhookResponseSchema, createWebhookStatus200Schema, createWebhookStatus400Schema, createWebhookStatus401Schema, createWebhookStatus403Schema, createWebhookStatus410Schema, dNSSECEnabledSchema, dangerouslyDeleteBySrcImagesErrorSchema, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema, dangerouslyDeleteBySrcImagesQuerySlugSchema, dangerouslyDeleteBySrcImagesQueryTeamIdSchema, dangerouslyDeleteBySrcImagesResponseSchema, dangerouslyDeleteBySrcImagesStatus200Schema, dangerouslyDeleteBySrcImagesStatus400Schema, dangerouslyDeleteBySrcImagesStatus401Schema, dangerouslyDeleteBySrcImagesStatus402Schema, dangerouslyDeleteBySrcImagesStatus403Schema, dangerouslyDeleteBySrcImagesStatus404Schema, dangerouslyDeleteBySrcImagesStatus410Schema, dangerouslyDeleteByTagsErrorSchema, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema, dangerouslyDeleteByTagsQuerySlugSchema, dangerouslyDeleteByTagsQueryTeamIdSchema, dangerouslyDeleteByTagsResponseSchema, dangerouslyDeleteByTagsStatus200Schema, dangerouslyDeleteByTagsStatus400Schema, dangerouslyDeleteByTagsStatus401Schema, dangerouslyDeleteByTagsStatus403Schema, dangerouslyDeleteByTagsStatus404Schema, dangerouslyDeleteByTagsStatus410Schema, dateFromStringSchema, deleteAccessGroupErrorSchema, deleteAccessGroupPathIdOrNameSchema, deleteAccessGroupProjectErrorSchema, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema, deleteAccessGroupProjectPathProjectIdSchema, deleteAccessGroupProjectQuerySlugSchema, deleteAccessGroupProjectQueryTeamIdSchema, deleteAccessGroupProjectResponseSchema, deleteAccessGroupProjectStatus200Schema, deleteAccessGroupProjectStatus400Schema, deleteAccessGroupProjectStatus401Schema, deleteAccessGroupProjectStatus403Schema, deleteAccessGroupProjectStatus410Schema, deleteAccessGroupQuerySlugSchema, deleteAccessGroupQueryTeamIdSchema, deleteAccessGroupResponseSchema, deleteAccessGroupStatus200Schema, deleteAccessGroupStatus400Schema, deleteAccessGroupStatus401Schema, deleteAccessGroupStatus403Schema, deleteAccessGroupStatus410Schema, deleteAiGatewayRuleErrorSchema, deleteAiGatewayRuleQueryRuleIdSchema, deleteAiGatewayRuleQuerySlugSchema, deleteAiGatewayRuleQueryTeamIdSchema, deleteAiGatewayRuleResponseSchema, deleteAiGatewayRuleStatus204Schema, deleteAiGatewayRuleStatus400Schema, deleteAiGatewayRuleStatus401Schema, deleteAiGatewayRuleStatus403Schema, deleteAiGatewayRuleStatus404Schema, deleteAiGatewayRuleStatus410Schema, deleteAiGatewayRuleStatus500Schema, deleteAiGatewayVirtualModelConfigErrorSchema, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigQuerySlugSchema, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, deleteAiGatewayVirtualModelConfigResponseSchema, deleteAiGatewayVirtualModelConfigStatus204Schema, deleteAiGatewayVirtualModelConfigStatus400Schema, deleteAiGatewayVirtualModelConfigStatus401Schema, deleteAiGatewayVirtualModelConfigStatus403Schema, deleteAiGatewayVirtualModelConfigStatus404Schema, deleteAiGatewayVirtualModelConfigStatus410Schema, deleteAiGatewayVirtualModelConfigStatus500Schema, deleteAliasErrorSchema, deleteAliasPathAliasIdSchema, deleteAliasQuerySlugSchema, deleteAliasQueryTeamIdSchema, deleteAliasResponseSchema, deleteAliasStatus200Schema, deleteAliasStatus400Schema, deleteAliasStatus401Schema, deleteAliasStatus403Schema, deleteAliasStatus404Schema, deleteAliasStatus410Schema, deleteAllArtifactsErrorSchema, deleteAllArtifactsQuerySlugSchema, deleteAllArtifactsQueryTeamIdSchema, deleteAllArtifactsResponseSchema, deleteAllArtifactsStatus200Schema, deleteAllArtifactsStatus400Schema, deleteAllArtifactsStatus401Schema, deleteAllArtifactsStatus403Schema, deleteAllArtifactsStatus410Schema, deleteAuthTokenErrorSchema, deleteAuthTokenPathTokenIdSchema, deleteAuthTokenResponseSchema, deleteAuthTokenStatus200Schema, deleteAuthTokenStatus400Schema, deleteAuthTokenStatus401Schema, deleteAuthTokenStatus403Schema, deleteAuthTokenStatus404Schema, deleteAuthTokenStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, deleteConfigurableLogDrainErrorSchema, deleteConfigurableLogDrainPathIdSchema, deleteConfigurableLogDrainQuerySlugSchema, deleteConfigurableLogDrainQueryTeamIdSchema, deleteConfigurableLogDrainResponseSchema, deleteConfigurableLogDrainStatus204Schema, deleteConfigurableLogDrainStatus400Schema, deleteConfigurableLogDrainStatus401Schema, deleteConfigurableLogDrainStatus403Schema, deleteConfigurableLogDrainStatus404Schema, deleteConfigurableLogDrainStatus410Schema, deleteConfigurationErrorSchema, deleteConfigurationPathIdSchema, deleteConfigurationQuerySlugSchema, deleteConfigurationQueryTeamIdSchema, deleteConfigurationResponseSchema, deleteConfigurationStatus204Schema, deleteConfigurationStatus400Schema, deleteConfigurationStatus401Schema, deleteConfigurationStatus403Schema, deleteConfigurationStatus404Schema, deleteConfigurationStatus410Schema, deleteDeploymentErrorSchema, deleteDeploymentPathIdSchema, deleteDeploymentQuerySlugSchema, deleteDeploymentQueryTeamIdSchema, deleteDeploymentQueryUrlSchema, deleteDeploymentResponseSchema, deleteDeploymentStatus200Schema, deleteDeploymentStatus400Schema, deleteDeploymentStatus401Schema, deleteDeploymentStatus403Schema, deleteDeploymentStatus404Schema, deleteDeploymentStatus410Schema, deleteDomainErrorSchema, deleteDomainPathDomainSchema, deleteDomainQuerySlugSchema, deleteDomainQueryTeamIdSchema, deleteDomainResponseSchema, deleteDomainStatus200Schema, deleteDomainStatus400Schema, deleteDomainStatus401Schema, deleteDomainStatus403Schema, deleteDomainStatus404Schema, deleteDomainStatus409Schema, deleteDomainStatus410Schema, deleteDrainErrorSchema, deleteDrainPathIdSchema, deleteDrainQuerySlugSchema, deleteDrainQueryTeamIdSchema, deleteDrainResponseSchema, deleteDrainStatus204Schema, deleteDrainStatus400Schema, deleteDrainStatus401Schema, deleteDrainStatus403Schema, deleteDrainStatus404Schema, deleteDrainStatus410Schema, deleteDriveErrorSchema, deleteDrivePathNameSchema, deleteDriveQueryProjectIdSchema, deleteDriveQuerySlugSchema, deleteDriveQueryTeamIdSchema, deleteDriveResponseSchema, deleteDriveStatus200Schema, deleteDriveStatus400Schema, deleteDriveStatus401Schema, deleteDriveStatus403Schema, deleteDriveStatus404Schema, deleteDriveStatus409Schema, deleteDriveStatus410Schema, deleteDriveStatus429Schema, deleteEdgeConfigErrorSchema, deleteEdgeConfigPathEdgeConfigIdSchema, deleteEdgeConfigQuerySlugSchema, deleteEdgeConfigQueryTeamIdSchema, deleteEdgeConfigResponseSchema, deleteEdgeConfigSchemaErrorSchema, deleteEdgeConfigSchemaPathEdgeConfigIdSchema, deleteEdgeConfigSchemaQuerySlugSchema, deleteEdgeConfigSchemaQueryTeamIdSchema, deleteEdgeConfigSchemaResponseSchema, deleteEdgeConfigSchemaStatus204Schema, deleteEdgeConfigSchemaStatus400Schema, deleteEdgeConfigSchemaStatus401Schema, deleteEdgeConfigSchemaStatus402Schema, deleteEdgeConfigSchemaStatus403Schema, deleteEdgeConfigSchemaStatus404Schema, deleteEdgeConfigSchemaStatus409Schema, deleteEdgeConfigSchemaStatus410Schema, deleteEdgeConfigStatus204Schema, deleteEdgeConfigStatus400Schema, deleteEdgeConfigStatus401Schema, deleteEdgeConfigStatus403Schema, deleteEdgeConfigStatus404Schema, deleteEdgeConfigStatus409Schema, deleteEdgeConfigStatus410Schema, deleteEdgeConfigTokensErrorSchema, deleteEdgeConfigTokensPathEdgeConfigIdSchema, deleteEdgeConfigTokensQuerySlugSchema, deleteEdgeConfigTokensQueryTeamIdSchema, deleteEdgeConfigTokensResponseSchema, deleteEdgeConfigTokensStatus204Schema, deleteEdgeConfigTokensStatus400Schema, deleteEdgeConfigTokensStatus401Schema, deleteEdgeConfigTokensStatus402Schema, deleteEdgeConfigTokensStatus403Schema, deleteEdgeConfigTokensStatus404Schema, deleteEdgeConfigTokensStatus409Schema, deleteEdgeConfigTokensStatus410Schema, deleteFlagErrorSchema, deleteFlagPathFlagIdOrSlugSchema, deleteFlagPathProjectIdOrNameSchema, deleteFlagQueryIfMatchSchema, deleteFlagQuerySlugSchema, deleteFlagQueryTeamIdSchema, deleteFlagQueryWithMetadataSchema, deleteFlagResponseSchema, deleteFlagSegmentErrorSchema, deleteFlagSegmentPathProjectIdOrNameSchema, deleteFlagSegmentPathSegmentIdOrSlugSchema, deleteFlagSegmentQuerySlugSchema, deleteFlagSegmentQueryTeamIdSchema, deleteFlagSegmentQueryWithMetadataSchema, deleteFlagSegmentResponseSchema, deleteFlagSegmentStatus204Schema, deleteFlagSegmentStatus304Schema, deleteFlagSegmentStatus400Schema, deleteFlagSegmentStatus401Schema, deleteFlagSegmentStatus402Schema, deleteFlagSegmentStatus403Schema, deleteFlagSegmentStatus404Schema, deleteFlagSegmentStatus409Schema, deleteFlagSegmentStatus410Schema, deleteFlagStatus204Schema, deleteFlagStatus304Schema, deleteFlagStatus400Schema, deleteFlagStatus401Schema, deleteFlagStatus402Schema, deleteFlagStatus403Schema, deleteFlagStatus404Schema, deleteFlagStatus409Schema, deleteFlagStatus410Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, deleteIntegrationLogDrainErrorSchema, deleteIntegrationLogDrainPathIdSchema, deleteIntegrationLogDrainQuerySlugSchema, deleteIntegrationLogDrainQueryTeamIdSchema, deleteIntegrationLogDrainResponseSchema, deleteIntegrationLogDrainStatus204Schema, deleteIntegrationLogDrainStatus400Schema, deleteIntegrationLogDrainStatus401Schema, deleteIntegrationLogDrainStatus403Schema, deleteIntegrationLogDrainStatus404Schema, deleteIntegrationLogDrainStatus410Schema, deleteIntegrationResourceErrorSchema, deleteIntegrationResourcePathIntegrationConfigurationIdSchema, deleteIntegrationResourcePathResourceIdSchema, deleteIntegrationResourceResponseSchema, deleteIntegrationResourceStatus204Schema, deleteIntegrationResourceStatus400Schema, deleteIntegrationResourceStatus401Schema, deleteIntegrationResourceStatus403Schema, deleteIntegrationResourceStatus404Schema, deleteIntegrationResourceStatus410Schema, deleteKmsIssuerErrorSchema, deleteKmsIssuerPathIssuerIdSchema, deleteKmsIssuerPolicyErrorSchema, deleteKmsIssuerPolicyPathIssuerIdSchema, deleteKmsIssuerPolicyPathKindSchema, deleteKmsIssuerPolicyPathPolicyKeySchema, deleteKmsIssuerPolicyQuerySlugSchema, deleteKmsIssuerPolicyQueryTeamIdSchema, deleteKmsIssuerPolicyResponseSchema, deleteKmsIssuerPolicyStatus204Schema, deleteKmsIssuerPolicyStatus400Schema, deleteKmsIssuerPolicyStatus401Schema, deleteKmsIssuerPolicyStatus403Schema, deleteKmsIssuerPolicyStatus404Schema, deleteKmsIssuerPolicyStatus410Schema, deleteKmsIssuerQuerySlugSchema, deleteKmsIssuerQueryTeamIdSchema, deleteKmsIssuerResponseSchema, deleteKmsIssuerStatus204Schema, deleteKmsIssuerStatus400Schema, deleteKmsIssuerStatus401Schema, deleteKmsIssuerStatus403Schema, deleteKmsIssuerStatus404Schema, deleteKmsIssuerStatus410Schema, deleteMicrofrontendsGroupErrorSchema, deleteMicrofrontendsGroupPathGroupIdSchema, deleteMicrofrontendsGroupPathTeamIdSchema, deleteMicrofrontendsGroupQuerySlugSchema, deleteMicrofrontendsGroupResponseSchema, deleteMicrofrontendsGroupStatus200Schema, deleteMicrofrontendsGroupStatus400Schema, deleteMicrofrontendsGroupStatus401Schema, deleteMicrofrontendsGroupStatus403Schema, deleteMicrofrontendsGroupStatus404Schema, deleteMicrofrontendsGroupStatus410Schema, deleteMicrofrontendsGroupStatus500Schema, deleteNetworkErrorSchema, deleteNetworkPathNetworkIdSchema, deleteNetworkQuerySlugSchema, deleteNetworkQueryTeamIdSchema, deleteNetworkResponseSchema, deleteNetworkStatus204Schema, deleteNetworkStatus400Schema, deleteNetworkStatus401Schema, deleteNetworkStatus402Schema, deleteNetworkStatus403Schema, deleteNetworkStatus409Schema, deleteNetworkStatus410Schema, deleteProjectCheckErrorSchema, deleteProjectCheckPathCheckIdSchema, deleteProjectCheckPathProjectIdOrNameSchema, deleteProjectCheckQuerySlugSchema, deleteProjectCheckQueryTeamIdSchema, deleteProjectCheckResponseSchema, deleteProjectCheckStatus200Schema, deleteProjectCheckStatus400Schema, deleteProjectCheckStatus401Schema, deleteProjectCheckStatus403Schema, deleteProjectCheckStatus404Schema, deleteProjectCheckStatus410Schema, deleteProjectCheckStatus500Schema, deleteProjectErrorSchema, deleteProjectPathIdOrNameSchema, deleteProjectQuerySlugSchema, deleteProjectQueryTeamIdSchema, deleteProjectResponseSchema, deleteProjectStatus204Schema, deleteProjectStatus400Schema, deleteProjectStatus401Schema, deleteProjectStatus403Schema, deleteProjectStatus409Schema, deleteProjectStatus410Schema, deleteRedirectsErrorSchema, deleteRedirectsQueryProjectIdSchema, deleteRedirectsQuerySlugSchema, deleteRedirectsQueryTeamIdSchema, deleteRedirectsResponseSchema, deleteRedirectsStatus200Schema, deleteRedirectsStatus400Schema, deleteRedirectsStatus401Schema, deleteRedirectsStatus403Schema, deleteRedirectsStatus404Schema, deleteRedirectsStatus410Schema, deleteRedirectsStatus500Schema, deleteRepositoryErrorSchema, deleteRepositoryImageErrorSchema, deleteRepositoryImagePathIdOrNameSchema, deleteRepositoryImagePathImageIdSchema, deleteRepositoryImageQueryProjectIdSchema, deleteRepositoryImageQuerySlugSchema, deleteRepositoryImageQueryTeamIdSchema, deleteRepositoryImageResponseSchema, deleteRepositoryImageStatus202Schema, deleteRepositoryImageStatus400Schema, deleteRepositoryImageStatus401Schema, deleteRepositoryImageStatus403Schema, deleteRepositoryImageStatus404Schema, deleteRepositoryImageStatus410Schema, deleteRepositoryPathIdOrNameSchema, deleteRepositoryQueryProjectIdSchema, deleteRepositoryQuerySlugSchema, deleteRepositoryQueryTeamIdSchema, deleteRepositoryResponseSchema, deleteRepositoryStatus202Schema, deleteRepositoryStatus400Schema, deleteRepositoryStatus401Schema, deleteRepositoryStatus403Schema, deleteRepositoryStatus404Schema, deleteRepositoryStatus410Schema, deleteRollingReleaseConfigErrorSchema, deleteRollingReleaseConfigPathIdOrNameSchema, deleteRollingReleaseConfigQuerySlugSchema, deleteRollingReleaseConfigQueryTeamIdSchema, deleteRollingReleaseConfigResponseSchema, deleteRollingReleaseConfigStatus200Schema, deleteRollingReleaseConfigStatus400Schema, deleteRollingReleaseConfigStatus401Schema, deleteRollingReleaseConfigStatus403Schema, deleteRollingReleaseConfigStatus404Schema, deleteRollingReleaseConfigStatus410Schema, deleteRoutesErrorSchema, deleteRoutesPathProjectIdSchema, deleteRoutesQuerySlugSchema, deleteRoutesQueryTeamIdSchema, deleteRoutesResponseSchema, deleteRoutesStatus200Schema, deleteRoutesStatus400Schema, deleteRoutesStatus401Schema, deleteRoutesStatus403Schema, deleteRoutesStatus404Schema, deleteRoutesStatus409Schema, deleteRoutesStatus410Schema, deleteRoutesStatus500Schema, deleteSandboxErrorSchema, deleteSandboxPathNameSchema, deleteSandboxQueryDeleteOrphanSnapshotsSchema, deleteSandboxQueryProjectIdSchema, deleteSandboxQuerySlugSchema, deleteSandboxQueryTeamIdSchema, deleteSandboxResponseSchema, deleteSandboxStatus200Schema, deleteSandboxStatus400Schema, deleteSandboxStatus401Schema, deleteSandboxStatus403Schema, deleteSandboxStatus404Schema, deleteSandboxStatus410Schema, deleteSandboxStatus429Schema, deleteSdkKeyErrorSchema, deleteSdkKeyPathHashKeySchema, deleteSdkKeyPathProjectIdOrNameSchema, deleteSdkKeyQuerySlugSchema, deleteSdkKeyQueryTeamIdSchema, deleteSdkKeyResponseSchema, deleteSdkKeyStatus204Schema, deleteSdkKeyStatus400Schema, deleteSdkKeyStatus401Schema, deleteSdkKeyStatus402Schema, deleteSdkKeyStatus403Schema, deleteSdkKeyStatus404Schema, deleteSdkKeyStatus409Schema, deleteSdkKeyStatus410Schema, deleteSecurityFirewallConfigByConfigVersionErrorSchema, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema, deleteSecurityFirewallConfigByConfigVersionResponseSchema, deleteSecurityFirewallConfigByConfigVersionStatus204Schema, deleteSecurityFirewallConfigByConfigVersionStatus400Schema, deleteSecurityFirewallConfigByConfigVersionStatus401Schema, deleteSecurityFirewallConfigByConfigVersionStatus403Schema, deleteSecurityFirewallConfigByConfigVersionStatus404Schema, deleteSecurityFirewallConfigByConfigVersionStatus410Schema, deleteSecurityFirewallConfigByConfigVersionStatus500Schema, deleteSessionSnapshotErrorSchema, deleteSessionSnapshotPathSnapshotIdSchema, deleteSessionSnapshotQuerySlugSchema, deleteSessionSnapshotQueryTeamIdSchema, deleteSessionSnapshotResponseSchema, deleteSessionSnapshotStatus200Schema, deleteSessionSnapshotStatus400Schema, deleteSessionSnapshotStatus401Schema, deleteSessionSnapshotStatus403Schema, deleteSessionSnapshotStatus404Schema, deleteSessionSnapshotStatus410Schema, deleteSessionSnapshotStatus429Schema, deleteSharedEnvVariableErrorSchema, deleteSharedEnvVariableQuerySlugSchema, deleteSharedEnvVariableQueryTeamIdSchema, deleteSharedEnvVariableResponseSchema, deleteSharedEnvVariableStatus200Schema, deleteSharedEnvVariableStatus400Schema, deleteSharedEnvVariableStatus401Schema, deleteSharedEnvVariableStatus402Schema, deleteSharedEnvVariableStatus403Schema, deleteSharedEnvVariableStatus410Schema, deleteStorageStoresBlobByIdErrorSchema, deleteStorageStoresBlobByIdPathIdSchema, deleteStorageStoresBlobByIdResponseSchema, deleteStorageStoresBlobByIdStatus200Schema, deleteStorageStoresBlobByIdStatus400Schema, deleteStorageStoresBlobByIdStatus401Schema, deleteStorageStoresBlobByIdStatus403Schema, deleteStorageStoresBlobByIdStatus404Schema, deleteStorageStoresBlobByIdStatus409Schema, deleteStorageStoresBlobByIdStatus410Schema, deleteTeamErrorSchema, deleteTeamInviteCodeErrorSchema, deleteTeamInviteCodePathInviteIdSchema, deleteTeamInviteCodePathTeamIdSchema, deleteTeamInviteCodeResponseSchema, deleteTeamInviteCodeStatus200Schema, deleteTeamInviteCodeStatus400Schema, deleteTeamInviteCodeStatus401Schema, deleteTeamInviteCodeStatus403Schema, deleteTeamInviteCodeStatus404Schema, deleteTeamInviteCodeStatus410Schema, deleteTeamPathTeamIdSchema, deleteTeamQueryNewDefaultTeamIdSchema, deleteTeamQuerySlugSchema, deleteTeamResponseSchema, deleteTeamStatus200Schema, deleteTeamStatus400Schema, deleteTeamStatus401Schema, deleteTeamStatus402Schema, deleteTeamStatus403Schema, deleteTeamStatus409Schema, deleteTeamStatus410Schema, deleteTeamStatus503Schema, deleteWebhookErrorSchema, deleteWebhookPathIdSchema, deleteWebhookQuerySlugSchema, deleteWebhookQueryTeamIdSchema, deleteWebhookResponseSchema, deleteWebhookStatus204Schema, deleteWebhookStatus400Schema, deleteWebhookStatus401Schema, deleteWebhookStatus403Schema, deleteWebhookStatus410Schema, domainAlreadyOwnedSchema, domainAlreadyRenewingSchema, domainCannotBeTransferedOutUntilSchema, domainNameSchema, domainNotAvailableSchema, domainNotFoundSchema, domainNotRegisteredSchema, domainNotRenewableSchema, domainTooShortSchema, downloadArtifactErrorSchema, downloadArtifactHeaderXArtifactClientCiSchema, downloadArtifactHeaderXArtifactClientInteractiveSchema, downloadArtifactPathHashSchema, downloadArtifactQuerySlugSchema, downloadArtifactQueryTeamIdSchema, downloadArtifactResponseSchema, downloadArtifactStatus200Schema, downloadArtifactStatus400Schema, downloadArtifactStatus401Schema, downloadArtifactStatus402Schema, downloadArtifactStatus403Schema, downloadArtifactStatus404Schema, downloadArtifactStatus410Schema, driveSchema, duplicateDomainsSchema, e164PhoneNumberSchema, editProjectEnvErrorSchema, editProjectEnvPathIdOrNameSchema, editProjectEnvPathIdSchema, editProjectEnvQuerySlugSchema, editProjectEnvQueryTeamIdSchema, editProjectEnvResponseSchema, editProjectEnvStatus200Schema, editProjectEnvStatus400Schema, editProjectEnvStatus401Schema, editProjectEnvStatus403Schema, editProjectEnvStatus404Schema, editProjectEnvStatus409Schema, editProjectEnvStatus410Schema, editProjectEnvStatus429Schema, editProjectEnvStatus500Schema, editRedirectErrorSchema, editRedirectQueryProjectIdSchema, editRedirectQuerySlugSchema, editRedirectQueryTeamIdSchema, editRedirectResponseSchema, editRedirectStatus200Schema, editRedirectStatus400Schema, editRedirectStatus401Schema, editRedirectStatus403Schema, editRedirectStatus404Schema, editRedirectStatus410Schema, editRedirectStatus500Schema, editRouteErrorSchema, editRoutePathProjectIdSchema, editRoutePathRouteIdSchema, editRouteQuerySlugSchema, editRouteQueryTeamIdSchema, editRouteResponseSchema, editRouteStatus200Schema, editRouteStatus400Schema, editRouteStatus401Schema, editRouteStatus403Schema, editRouteStatus404Schema, editRouteStatus409Schema, editRouteStatus410Schema, editRouteStatus500Schema, emailAddressSchema, exchangeSsoTokenErrorSchema, exchangeSsoTokenResponseSchema, exchangeSsoTokenStatus200Schema, exchangeSsoTokenStatus400Schema, exchangeSsoTokenStatus403Schema, exchangeSsoTokenStatus500Schema, expectedPriceMismatchSchema, extendSessionTimeoutErrorSchema, extendSessionTimeoutPathSessionIdSchema, extendSessionTimeoutQuerySlugSchema, extendSessionTimeoutQueryTeamIdSchema, extendSessionTimeoutResponseSchema, extendSessionTimeoutStatus200Schema, extendSessionTimeoutStatus400Schema, extendSessionTimeoutStatus401Schema, extendSessionTimeoutStatus403Schema, extendSessionTimeoutStatus404Schema, extendSessionTimeoutStatus410Schema, extendSessionTimeoutStatus422Schema, extendSessionTimeoutStatus429Schema, extendSessionTimeoutStatus500Schema, fileTreeSchema, filterProjectEnvsErrorSchema, filterProjectEnvsPathIdOrNameSchema, filterProjectEnvsQueryCustomEnvironmentIdSchema, filterProjectEnvsQueryCustomEnvironmentSlugSchema, filterProjectEnvsQueryDecryptSchema, filterProjectEnvsQueryGitBranchSchema, filterProjectEnvsQuerySlugSchema, filterProjectEnvsQuerySourceSchema, filterProjectEnvsQueryTeamIdSchema, filterProjectEnvsResponseSchema, filterProjectEnvsStatus200Schema, filterProjectEnvsStatus400Schema, filterProjectEnvsStatus401Schema, filterProjectEnvsStatus403Schema, filterProjectEnvsStatus410Schema, finalizeInstallationErrorSchema, finalizeInstallationPathIntegrationConfigurationIdSchema, finalizeInstallationResponseSchema, finalizeInstallationStatus204Schema, finalizeInstallationStatus400Schema, finalizeInstallationStatus401Schema, finalizeInstallationStatus403Schema, finalizeInstallationStatus404Schema, finalizeInstallationStatus410Schema, flagJSONValueSchema, flagSchema, flagsSdkKeyWithSecretsSchema, forbiddenSchema, generateFirewallRuleErrorSchema, generateFirewallRuleQueryProjectIdSchema, generateFirewallRuleQuerySlugSchema, generateFirewallRuleQueryTeamIdSchema, generateFirewallRuleResponseSchema, generateFirewallRuleStatus200Schema, generateFirewallRuleStatus400Schema, generateFirewallRuleStatus401Schema, generateFirewallRuleStatus403Schema, generateFirewallRuleStatus404Schema, generateFirewallRuleStatus408Schema, generateFirewallRuleStatus410Schema, generateFirewallRuleStatus500Schema, generateRouteErrorSchema, generateRoutePathProjectIdSchema, generateRouteQuerySlugSchema, generateRouteQueryTeamIdSchema, generateRouteResponseSchema, generateRouteStatus200Schema, generateRouteStatus400Schema, generateRouteStatus401Schema, generateRouteStatus403Schema, generateRouteStatus408Schema, generateRouteStatus410Schema, generateRouteStatus500Schema, getAccountInfoErrorSchema, getAccountInfoPathIntegrationConfigurationIdSchema, getAccountInfoResponseSchema, getAccountInfoStatus200Schema, getAccountInfoStatus400Schema, getAccountInfoStatus401Schema, getAccountInfoStatus403Schema, getAccountInfoStatus404Schema, getAccountInfoStatus410Schema, getActiveAttackStatusErrorSchema, getActiveAttackStatusQueryProjectIdSchema, getActiveAttackStatusQuerySinceSchema, getActiveAttackStatusQuerySlugSchema, getActiveAttackStatusQueryTeamIdSchema, getActiveAttackStatusResponseSchema, getActiveAttackStatusStatus200Schema, getActiveAttackStatusStatus400Schema, getActiveAttackStatusStatus401Schema, getActiveAttackStatusStatus403Schema, getActiveAttackStatusStatus404Schema, getActiveAttackStatusStatus410Schema, getAiGatewayVirtualModelConfigErrorSchema, getAiGatewayVirtualModelConfigQueryOwnerIdSchema, getAiGatewayVirtualModelConfigQuerySlugSchema, getAiGatewayVirtualModelConfigQueryTeamIdSchema, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, getAiGatewayVirtualModelConfigResponseSchema, getAiGatewayVirtualModelConfigStatus200Schema, getAiGatewayVirtualModelConfigStatus400Schema, getAiGatewayVirtualModelConfigStatus401Schema, getAiGatewayVirtualModelConfigStatus403Schema, getAiGatewayVirtualModelConfigStatus404Schema, getAiGatewayVirtualModelConfigStatus410Schema, getAiGatewayVirtualModelConfigStatus500Schema, getAliasErrorSchema, getAliasPathIdOrAliasSchema, getAliasQueryFromSchema, getAliasQueryProjectIdSchema, getAliasQuerySinceSchema, getAliasQuerySlugSchema, getAliasQueryTeamIdSchema, getAliasQueryUntilSchema, getAliasResponseSchema, getAliasStatus200Schema, getAliasStatus400Schema, getAliasStatus401Schema, getAliasStatus403Schema, getAliasStatus404Schema, getAliasStatus410Schema, getAllChecksErrorSchema, getAllChecksPathDeploymentIdSchema, getAllChecksQuerySlugSchema, getAllChecksQueryTeamIdSchema, getAllChecksResponseSchema, getAllChecksStatus200Schema, getAllChecksStatus400Schema, getAllChecksStatus401Schema, getAllChecksStatus403Schema, getAllChecksStatus404Schema, getAllChecksStatus410Schema, getAllLogDrainsErrorSchema, getAllLogDrainsQueryIncludeMetadataSchema, getAllLogDrainsQueryProjectIdOrNameSchema, getAllLogDrainsQueryProjectIdSchema, getAllLogDrainsQuerySlugSchema, getAllLogDrainsQueryTeamIdSchema, getAllLogDrainsResponseSchema, getAllLogDrainsStatus200Schema, getAllLogDrainsStatus400Schema, getAllLogDrainsStatus401Schema, getAllLogDrainsStatus403Schema, getAllLogDrainsStatus404Schema, getAllLogDrainsStatus410Schema, getAuthTokenErrorSchema, getAuthTokenPathTokenIdSchema, getAuthTokenResponseSchema, getAuthTokenStatus200Schema, getAuthTokenStatus400Schema, getAuthTokenStatus401Schema, getAuthTokenStatus403Schema, getAuthTokenStatus404Schema, getAuthTokenStatus410Schema, getAuthUserErrorSchema, getAuthUserResponseSchema, getAuthUserStatus200Schema, getAuthUserStatus302Schema, getAuthUserStatus400Schema, getAuthUserStatus401Schema, getAuthUserStatus403Schema, getAuthUserStatus409Schema, getAuthUserStatus410Schema, getBillingPlansErrorSchema, getBillingPlansPathIntegrationIdOrSlugSchema, getBillingPlansPathProductIdOrSlugSchema, getBillingPlansQueryIntegrationConfigurationIdSchema, getBillingPlansQueryMetadataSchema, getBillingPlansQuerySlugSchema, getBillingPlansQuerySourceSchema, getBillingPlansQueryTeamIdSchema, getBillingPlansResponseSchema, getBillingPlansStatus200Schema, getBillingPlansStatus400Schema, getBillingPlansStatus401Schema, getBillingPlansStatus403Schema, getBillingPlansStatus404Schema, getBillingPlansStatus410Schema, getBulkAvailabilityErrorSchema, getBulkAvailabilityQueryTeamIdSchema, getBulkAvailabilityResponseSchema, getBulkAvailabilityStatus200Schema, getBulkAvailabilityStatus400Schema, getBulkAvailabilityStatus401Schema, getBulkAvailabilityStatus403Schema, getBulkAvailabilityStatus429Schema, getBulkAvailabilityStatus500Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema, getBypassIpErrorSchema, getBypassIpQueryDomainSchema, getBypassIpQueryLimitSchema, getBypassIpQueryOffsetSchema, getBypassIpQueryProjectIdSchema, getBypassIpQueryProjectScopeSchema, getBypassIpQuerySlugSchema, getBypassIpQuerySourceIpSchema, getBypassIpQueryTeamIdSchema, getBypassIpResponseSchema, getBypassIpStatus200Schema, getBypassIpStatus400Schema, getBypassIpStatus401Schema, getBypassIpStatus403Schema, getBypassIpStatus404Schema, getBypassIpStatus410Schema, getBypassIpStatus500Schema, getCertByIdErrorSchema, getCertByIdPathIdSchema, getCertByIdQuerySlugSchema, getCertByIdQueryTeamIdSchema, getCertByIdResponseSchema, getCertByIdStatus200Schema, getCertByIdStatus400Schema, getCertByIdStatus401Schema, getCertByIdStatus403Schema, getCertByIdStatus404Schema, getCertByIdStatus410Schema, getCertsErrorSchema, getCertsQuerySlugSchema, getCertsQueryTeamIdSchema, getCertsResponseSchema, getCertsStatus200Schema, getCertsStatus400Schema, getCertsStatus401Schema, getCertsStatus403Schema, getCertsStatus410Schema, getCheckErrorSchema, getCheckPathCheckIdSchema, getCheckPathDeploymentIdSchema, getCheckQuerySlugSchema, getCheckQueryTeamIdSchema, getCheckResponseSchema, getCheckStatus200Schema, getCheckStatus400Schema, getCheckStatus401Schema, getCheckStatus403Schema, getCheckStatus404Schema, getCheckStatus410Schema, getConfigurableLogDrainErrorSchema, getConfigurableLogDrainPathIdSchema, getConfigurableLogDrainQuerySlugSchema, getConfigurableLogDrainQueryTeamIdSchema, getConfigurableLogDrainResponseSchema, getConfigurableLogDrainStatus200Schema, getConfigurableLogDrainStatus400Schema, getConfigurableLogDrainStatus401Schema, getConfigurableLogDrainStatus403Schema, getConfigurableLogDrainStatus404Schema, getConfigurableLogDrainStatus410Schema, getConfigurationErrorSchema, getConfigurationPathIdSchema, getConfigurationProductsErrorSchema, getConfigurationProductsPathIdSchema, getConfigurationProductsQuerySlugSchema, getConfigurationProductsQueryTeamIdSchema, getConfigurationProductsResponseSchema, getConfigurationProductsStatus200Schema, getConfigurationProductsStatus400Schema, getConfigurationProductsStatus401Schema, getConfigurationProductsStatus403Schema, getConfigurationProductsStatus404Schema, getConfigurationProductsStatus410Schema, getConfigurationProductsStatus500Schema, getConfigurationQuerySlugSchema, getConfigurationQueryTeamIdSchema, getConfigurationResponseSchema, getConfigurationStatus200Schema, getConfigurationStatus400Schema, getConfigurationStatus401Schema, getConfigurationStatus403Schema, getConfigurationStatus404Schema, getConfigurationStatus410Schema, getConfigurationsErrorSchema, getConfigurationsQueryInstallationTypeSchema, getConfigurationsQueryIntegrationIdOrSlugSchema, getConfigurationsQuerySlugSchema, getConfigurationsQueryTeamIdSchema, getConfigurationsQueryViewSchema, getConfigurationsResponseSchema, getConfigurationsStatus200Schema, getConfigurationsStatus400Schema, getConfigurationsStatus401Schema, getConfigurationsStatus403Schema, getConfigurationsStatus410Schema, getConnectorTokenErrorSchema, getConnectorTokenPathConnectorSchema, getConnectorTokenResponseSchema, getConnectorTokenStatus200Schema, getConnectorTokenStatus400Schema, getConnectorTokenStatus401Schema, getConnectorTokenStatus403Schema, getConnectorTokenStatus404Schema, getConnectorTokenStatus410Schema, getConnectorTokenStatus422Schema, getConnectorTokenStatus429Schema, getContactInfoSchemaErrorSchema, getContactInfoSchemaPathDomainSchema, getContactInfoSchemaQueryTeamIdSchema, getContactInfoSchemaResponseSchema, getContactInfoSchemaStatus200Schema, getContactInfoSchemaStatus400Schema, getContactInfoSchemaStatus401Schema, getContactInfoSchemaStatus403Schema, getContactInfoSchemaStatus429Schema, getContactInfoSchemaStatus500Schema, getCustomEnvironmentErrorSchema, getCustomEnvironmentPathEnvironmentSlugOrIdSchema, getCustomEnvironmentPathIdOrNameSchema, getCustomEnvironmentQuerySlugSchema, getCustomEnvironmentQueryTeamIdSchema, getCustomEnvironmentResponseSchema, getCustomEnvironmentStatus200Schema, getCustomEnvironmentStatus400Schema, getCustomEnvironmentStatus401Schema, getCustomEnvironmentStatus403Schema, getCustomEnvironmentStatus404Schema, getCustomEnvironmentStatus410Schema, getDeploymentCheckRunErrorSchema, getDeploymentCheckRunPathCheckRunIdSchema, getDeploymentCheckRunPathDeploymentIdSchema, getDeploymentCheckRunQuerySlugSchema, getDeploymentCheckRunQueryTeamIdSchema, getDeploymentCheckRunResponseSchema, getDeploymentCheckRunStatus200Schema, getDeploymentCheckRunStatus400Schema, getDeploymentCheckRunStatus401Schema, getDeploymentCheckRunStatus403Schema, getDeploymentCheckRunStatus404Schema, getDeploymentCheckRunStatus410Schema, getDeploymentCheckRunStatus500Schema, getDeploymentErrorSchema, getDeploymentEventsErrorSchema, getDeploymentEventsPathIdOrUrlSchema, getDeploymentEventsQueryBuildsSchema, getDeploymentEventsQueryDelimiterSchema, getDeploymentEventsQueryDirectionSchema, getDeploymentEventsQueryFollowSchema, getDeploymentEventsQueryLimitSchema, getDeploymentEventsQueryNameSchema, getDeploymentEventsQuerySinceSchema, getDeploymentEventsQuerySlugSchema, getDeploymentEventsQueryStatusCodeSchema, getDeploymentEventsQueryTeamIdSchema, getDeploymentEventsQueryUntilSchema, getDeploymentEventsResponseSchema, getDeploymentEventsStatus200Schema, getDeploymentEventsStatus400Schema, getDeploymentEventsStatus401Schema, getDeploymentEventsStatus403Schema, getDeploymentEventsStatus410Schema, getDeploymentEventsStatus500Schema, getDeploymentFeatureFlagsErrorSchema, getDeploymentFeatureFlagsPathDeploymentIdSchema, getDeploymentFeatureFlagsQuerySlugSchema, getDeploymentFeatureFlagsQueryTeamIdSchema, getDeploymentFeatureFlagsResponseSchema, getDeploymentFeatureFlagsStatus200Schema, getDeploymentFeatureFlagsStatus400Schema, getDeploymentFeatureFlagsStatus401Schema, getDeploymentFeatureFlagsStatus403Schema, getDeploymentFeatureFlagsStatus404Schema, getDeploymentFeatureFlagsStatus410Schema, getDeploymentFileContentsErrorSchema, getDeploymentFileContentsPathFileIdSchema, getDeploymentFileContentsPathIdSchema, getDeploymentFileContentsQueryPathSchema, getDeploymentFileContentsQuerySlugSchema, getDeploymentFileContentsQueryTeamIdSchema, getDeploymentFileContentsResponseSchema, getDeploymentFileContentsStatus400Schema, getDeploymentFileContentsStatus401Schema, getDeploymentFileContentsStatus403Schema, getDeploymentFileContentsStatus404Schema, getDeploymentFileContentsStatus410Schema, getDeploymentPathIdOrUrlSchema, getDeploymentQuerySlugSchema, getDeploymentQueryTeamIdSchema, getDeploymentQueryWithGitRepoInfoSchema, getDeploymentResponseSchema, getDeploymentStatus200Schema, getDeploymentStatus400Schema, getDeploymentStatus403Schema, getDeploymentStatus404Schema, getDeploymentStatus410Schema, getDeploymentStatus429Schema, getDeploymentsErrorSchema, getDeploymentsQueryAppSchema, getDeploymentsQueryBranchSchema, getDeploymentsQueryFromSchema, getDeploymentsQueryLimitSchema, getDeploymentsQueryProjectIdSchema, getDeploymentsQueryProjectIdsSchema, getDeploymentsQueryRollbackCandidateSchema, getDeploymentsQueryShaSchema, getDeploymentsQuerySinceSchema, getDeploymentsQuerySlugSchema, getDeploymentsQueryStateSchema, getDeploymentsQueryTargetSchema, getDeploymentsQueryTeamIdSchema, getDeploymentsQueryToSchema, getDeploymentsQueryUntilSchema, getDeploymentsQueryUsersSchema, getDeploymentsResponseSchema, getDeploymentsStatus200Schema, getDeploymentsStatus400Schema, getDeploymentsStatus401Schema, getDeploymentsStatus403Schema, getDeploymentsStatus404Schema, getDeploymentsStatus410Schema, getDeploymentsStatus422Schema, getDomainAuthCodeErrorSchema, getDomainAuthCodePathDomainSchema, getDomainAuthCodeQueryTeamIdSchema, getDomainAuthCodeResponseSchema, getDomainAuthCodeStatus200Schema, getDomainAuthCodeStatus400Schema, getDomainAuthCodeStatus401Schema, getDomainAuthCodeStatus403Schema, getDomainAuthCodeStatus404Schema, getDomainAuthCodeStatus409Schema, getDomainAuthCodeStatus429Schema, getDomainAuthCodeStatus500Schema, getDomainAvailabilityErrorSchema, getDomainAvailabilityPathDomainSchema, getDomainAvailabilityQueryTeamIdSchema, getDomainAvailabilityResponseSchema, getDomainAvailabilityStatus200Schema, getDomainAvailabilityStatus400Schema, getDomainAvailabilityStatus401Schema, getDomainAvailabilityStatus403Schema, getDomainAvailabilityStatus404Schema, getDomainAvailabilityStatus429Schema, getDomainAvailabilityStatus500Schema, getDomainConfigErrorSchema, getDomainConfigPathDomainSchema, getDomainConfigQueryProjectIdOrNameSchema, getDomainConfigQuerySlugSchema, getDomainConfigQueryStrictSchema, getDomainConfigQueryTeamIdSchema, getDomainConfigResponseSchema, getDomainConfigStatus200Schema, getDomainConfigStatus400Schema, getDomainConfigStatus401Schema, getDomainConfigStatus403Schema, getDomainConfigStatus410Schema, getDomainContactVerificationErrorSchema, getDomainContactVerificationPathDomainSchema, getDomainContactVerificationQueryTeamIdSchema, getDomainContactVerificationResponseSchema, getDomainContactVerificationStatus200Schema, getDomainContactVerificationStatus400Schema, getDomainContactVerificationStatus401Schema, getDomainContactVerificationStatus403Schema, getDomainContactVerificationStatus404Schema, getDomainContactVerificationStatus429Schema, getDomainContactVerificationStatus500Schema, getDomainErrorSchema, getDomainPathDomainSchema, getDomainPriceErrorSchema, getDomainPricePathDomainSchema, getDomainPriceQueryTeamIdSchema, getDomainPriceQueryYearsSchema, getDomainPriceResponseSchema, getDomainPriceStatus200Schema, getDomainPriceStatus400Schema, getDomainPriceStatus401Schema, getDomainPriceStatus403Schema, getDomainPriceStatus429Schema, getDomainPriceStatus500Schema, getDomainProjectDomainsErrorSchema, getDomainProjectDomainsPathDomainSchema, getDomainProjectDomainsQueryLimitSchema, getDomainProjectDomainsQuerySinceSchema, getDomainProjectDomainsQuerySlugSchema, getDomainProjectDomainsQueryTeamIdSchema, getDomainProjectDomainsQueryUntilSchema, getDomainProjectDomainsResponseSchema, getDomainProjectDomainsStatus200Schema, getDomainProjectDomainsStatus400Schema, getDomainProjectDomainsStatus401Schema, getDomainProjectDomainsStatus403Schema, getDomainProjectDomainsStatus404Schema, getDomainProjectDomainsStatus410Schema, getDomainQuerySlugSchema, getDomainQueryTeamIdSchema, getDomainResponseSchema, getDomainStatus200Schema, getDomainStatus400Schema, getDomainStatus401Schema, getDomainStatus403Schema, getDomainStatus404Schema, getDomainStatus410Schema, getDomainTransferInErrorSchema, getDomainTransferInPathDomainSchema, getDomainTransferInQueryTeamIdSchema, getDomainTransferInResponseSchema, getDomainTransferInStatus200Schema, getDomainTransferInStatus400Schema, getDomainTransferInStatus401Schema, getDomainTransferInStatus403Schema, getDomainTransferInStatus404Schema, getDomainTransferInStatus429Schema, getDomainTransferInStatus500Schema, getDomainVerificationRecordErrorSchema, getDomainVerificationRecordPathDomainSchema, getDomainVerificationRecordQuerySlugSchema, getDomainVerificationRecordQueryTeamIdSchema, getDomainVerificationRecordResponseSchema, getDomainVerificationRecordStatus200Schema, getDomainVerificationRecordStatus400Schema, getDomainVerificationRecordStatus401Schema, getDomainVerificationRecordStatus403Schema, getDomainVerificationRecordStatus404Schema, getDomainVerificationRecordStatus410Schema, getDomainsErrorSchema, getDomainsQueryLimitSchema, getDomainsQuerySinceSchema, getDomainsQuerySlugSchema, getDomainsQueryTeamIdSchema, getDomainsQueryUntilSchema, getDomainsRecordsByRecordIdErrorSchema, getDomainsRecordsByRecordIdPathRecordIdSchema, getDomainsRecordsByRecordIdResponseSchema, getDomainsRecordsByRecordIdStatus200Schema, getDomainsRecordsByRecordIdStatus400Schema, getDomainsRecordsByRecordIdStatus401Schema, getDomainsRecordsByRecordIdStatus403Schema, getDomainsRecordsByRecordIdStatus404Schema, getDomainsRecordsByRecordIdStatus410Schema, getDomainsResponseSchema, getDomainsStatus200Schema, getDomainsStatus400Schema, getDomainsStatus401Schema, getDomainsStatus403Schema, getDomainsStatus409Schema, getDomainsStatus410Schema, getDrainErrorSchema, getDrainPathIdSchema, getDrainQuerySlugSchema, getDrainQueryTeamIdSchema, getDrainResponseSchema, getDrainStatus200Schema, getDrainStatus400Schema, getDrainStatus401Schema, getDrainStatus403Schema, getDrainStatus404Schema, getDrainStatus410Schema, getDrainsErrorSchema, getDrainsQueryIncludeMetadataSchema, getDrainsQueryProjectIdSchema, getDrainsQuerySlugSchema, getDrainsQueryTeamIdSchema, getDrainsResponseSchema, getDrainsStatus200Schema, getDrainsStatus400Schema, getDrainsStatus401Schema, getDrainsStatus403Schema, getDrainsStatus404Schema, getDrainsStatus410Schema, getEdgeConfigBackupErrorSchema, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, getEdgeConfigBackupPathEdgeConfigIdSchema, getEdgeConfigBackupQuerySlugSchema, getEdgeConfigBackupQueryTeamIdSchema, getEdgeConfigBackupResponseSchema, getEdgeConfigBackupStatus200Schema, getEdgeConfigBackupStatus400Schema, getEdgeConfigBackupStatus401Schema, getEdgeConfigBackupStatus403Schema, getEdgeConfigBackupStatus404Schema, getEdgeConfigBackupStatus410Schema, getEdgeConfigBackupsErrorSchema, getEdgeConfigBackupsPathEdgeConfigIdSchema, getEdgeConfigBackupsQueryLimitSchema, getEdgeConfigBackupsQueryMetadataSchema, getEdgeConfigBackupsQueryNextSchema, getEdgeConfigBackupsQuerySlugSchema, getEdgeConfigBackupsQueryTeamIdSchema, getEdgeConfigBackupsResponseSchema, getEdgeConfigBackupsStatus200Schema, getEdgeConfigBackupsStatus400Schema, getEdgeConfigBackupsStatus401Schema, getEdgeConfigBackupsStatus403Schema, getEdgeConfigBackupsStatus404Schema, getEdgeConfigBackupsStatus410Schema, getEdgeConfigErrorSchema, getEdgeConfigItemErrorSchema, getEdgeConfigItemPathEdgeConfigIdSchema, getEdgeConfigItemPathEdgeConfigItemKeySchema, getEdgeConfigItemQuerySlugSchema, getEdgeConfigItemQueryTeamIdSchema, getEdgeConfigItemResponseSchema, getEdgeConfigItemStatus200Schema, getEdgeConfigItemStatus400Schema, getEdgeConfigItemStatus401Schema, getEdgeConfigItemStatus403Schema, getEdgeConfigItemStatus404Schema, getEdgeConfigItemStatus410Schema, getEdgeConfigItemsErrorSchema, getEdgeConfigItemsPathEdgeConfigIdSchema, getEdgeConfigItemsQuerySlugSchema, getEdgeConfigItemsQueryTeamIdSchema, getEdgeConfigItemsResponseSchema, getEdgeConfigItemsStatus200Schema, getEdgeConfigItemsStatus400Schema, getEdgeConfigItemsStatus401Schema, getEdgeConfigItemsStatus403Schema, getEdgeConfigItemsStatus404Schema, getEdgeConfigItemsStatus410Schema, getEdgeConfigPathEdgeConfigIdSchema, getEdgeConfigQuerySlugSchema, getEdgeConfigQueryTeamIdSchema, getEdgeConfigResponseSchema, getEdgeConfigSchemaErrorSchema, getEdgeConfigSchemaPathEdgeConfigIdSchema, getEdgeConfigSchemaQuerySlugSchema, getEdgeConfigSchemaQueryTeamIdSchema, getEdgeConfigSchemaResponseSchema, getEdgeConfigSchemaStatus200Schema, getEdgeConfigSchemaStatus400Schema, getEdgeConfigSchemaStatus401Schema, getEdgeConfigSchemaStatus403Schema, getEdgeConfigSchemaStatus404Schema, getEdgeConfigSchemaStatus410Schema, getEdgeConfigStatus200Schema, getEdgeConfigStatus400Schema, getEdgeConfigStatus401Schema, getEdgeConfigStatus403Schema, getEdgeConfigStatus404Schema, getEdgeConfigStatus410Schema, getEdgeConfigTokenErrorSchema, getEdgeConfigTokenPathEdgeConfigIdSchema, getEdgeConfigTokenPathTokenSchema, getEdgeConfigTokenQuerySlugSchema, getEdgeConfigTokenQueryTeamIdSchema, getEdgeConfigTokenResponseSchema, getEdgeConfigTokenStatus200Schema, getEdgeConfigTokenStatus400Schema, getEdgeConfigTokenStatus401Schema, getEdgeConfigTokenStatus403Schema, getEdgeConfigTokenStatus404Schema, getEdgeConfigTokenStatus410Schema, getEdgeConfigTokensErrorSchema, getEdgeConfigTokensPathEdgeConfigIdSchema, getEdgeConfigTokensQuerySlugSchema, getEdgeConfigTokensQueryTeamIdSchema, getEdgeConfigTokensResponseSchema, getEdgeConfigTokensStatus200Schema, getEdgeConfigTokensStatus400Schema, getEdgeConfigTokensStatus401Schema, getEdgeConfigTokensStatus403Schema, getEdgeConfigTokensStatus404Schema, getEdgeConfigTokensStatus410Schema, getEdgeConfigsErrorSchema, getEdgeConfigsQuerySlugSchema, getEdgeConfigsQueryTeamIdSchema, getEdgeConfigsResponseSchema, getEdgeConfigsStatus200Schema, getEdgeConfigsStatus400Schema, getEdgeConfigsStatus401Schema, getEdgeConfigsStatus403Schema, getEdgeConfigsStatus410Schema, getFirewallConfigErrorSchema, getFirewallConfigPathConfigVersionSchema, getFirewallConfigQueryProjectIdSchema, getFirewallConfigQuerySlugSchema, getFirewallConfigQueryTeamIdSchema, getFirewallConfigResponseSchema, getFirewallConfigStatus200Schema, getFirewallConfigStatus400Schema, getFirewallConfigStatus401Schema, getFirewallConfigStatus403Schema, getFirewallConfigStatus404Schema, getFirewallConfigStatus410Schema, getFlagErrorSchema, getFlagPathFlagIdOrSlugSchema, getFlagPathProjectIdOrNameSchema, getFlagQueryIfMatchSchema, getFlagQuerySlugSchema, getFlagQueryTeamIdSchema, getFlagQueryWithMetadataSchema, getFlagResponseSchema, getFlagSegmentErrorSchema, getFlagSegmentPathProjectIdOrNameSchema, getFlagSegmentPathSegmentIdOrSlugSchema, getFlagSegmentQuerySlugSchema, getFlagSegmentQueryTeamIdSchema, getFlagSegmentQueryWithMetadataSchema, getFlagSegmentResponseSchema, getFlagSegmentStatus200Schema, getFlagSegmentStatus400Schema, getFlagSegmentStatus401Schema, getFlagSegmentStatus402Schema, getFlagSegmentStatus403Schema, getFlagSegmentStatus404Schema, getFlagSegmentStatus410Schema, getFlagSettingsErrorSchema, getFlagSettingsPathProjectIdOrNameSchema, getFlagSettingsQuerySlugSchema, getFlagSettingsQueryTeamIdSchema, getFlagSettingsResponseSchema, getFlagSettingsStatus200Schema, getFlagSettingsStatus400Schema, getFlagSettingsStatus401Schema, getFlagSettingsStatus402Schema, getFlagSettingsStatus403Schema, getFlagSettingsStatus404Schema, getFlagSettingsStatus410Schema, getFlagStatus200Schema, getFlagStatus304Schema, getFlagStatus400Schema, getFlagStatus401Schema, getFlagStatus402Schema, getFlagStatus403Schema, getFlagStatus404Schema, getFlagStatus410Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, getIntegrationLogDrainsErrorSchema, getIntegrationLogDrainsQuerySlugSchema, getIntegrationLogDrainsQueryTeamIdSchema, getIntegrationLogDrainsResponseSchema, getIntegrationLogDrainsStatus200Schema, getIntegrationLogDrainsStatus400Schema, getIntegrationLogDrainsStatus401Schema, getIntegrationLogDrainsStatus403Schema, getIntegrationLogDrainsStatus410Schema, getIntegrationResourceErrorSchema, getIntegrationResourcePathIntegrationConfigurationIdSchema, getIntegrationResourcePathResourceIdSchema, getIntegrationResourceResponseSchema, getIntegrationResourceStatus200Schema, getIntegrationResourceStatus400Schema, getIntegrationResourceStatus401Schema, getIntegrationResourceStatus403Schema, getIntegrationResourceStatus404Schema, getIntegrationResourceStatus410Schema, getIntegrationResourcesErrorSchema, getIntegrationResourcesPathIntegrationConfigurationIdSchema, getIntegrationResourcesResponseSchema, getIntegrationResourcesStatus200Schema, getIntegrationResourcesStatus400Schema, getIntegrationResourcesStatus401Schema, getIntegrationResourcesStatus403Schema, getIntegrationResourcesStatus404Schema, getIntegrationResourcesStatus410Schema, getInvoiceErrorSchema, getInvoicePathIntegrationConfigurationIdSchema, getInvoicePathInvoiceIdSchema, getInvoiceResponseSchema, getInvoiceStatus200Schema, getInvoiceStatus400Schema, getInvoiceStatus401Schema, getInvoiceStatus403Schema, getInvoiceStatus404Schema, getInvoiceStatus410Schema, getInvoiceStatus429Schema, getKmsIssuerErrorSchema, getKmsIssuerPathIssuerIdSchema, getKmsIssuerQuerySlugSchema, getKmsIssuerQueryTeamIdSchema, getKmsIssuerResponseSchema, getKmsIssuerStatus200Schema, getKmsIssuerStatus400Schema, getKmsIssuerStatus401Schema, getKmsIssuerStatus403Schema, getKmsIssuerStatus404Schema, getKmsIssuerStatus410Schema, getMemberErrorSchema, getMemberPathIntegrationConfigurationIdSchema, getMemberPathMemberIdSchema, getMemberResponseSchema, getMemberStatus200Schema, getMemberStatus400Schema, getMemberStatus401Schema, getMemberStatus403Schema, getMemberStatus404Schema, getMemberStatus410Schema, getMicrofrontendsConfigErrorSchema, getMicrofrontendsConfigForProjectErrorSchema, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema, getMicrofrontendsConfigForProjectQuerySlugSchema, getMicrofrontendsConfigForProjectQueryTeamIdSchema, getMicrofrontendsConfigForProjectResponseSchema, getMicrofrontendsConfigForProjectStatus200Schema, getMicrofrontendsConfigForProjectStatus400Schema, getMicrofrontendsConfigForProjectStatus401Schema, getMicrofrontendsConfigForProjectStatus403Schema, getMicrofrontendsConfigForProjectStatus404Schema, getMicrofrontendsConfigForProjectStatus410Schema, getMicrofrontendsConfigForProjectStatus500Schema, getMicrofrontendsConfigPathDeploymentIdSchema, getMicrofrontendsConfigQuerySlugSchema, getMicrofrontendsConfigQueryTeamIdSchema, getMicrofrontendsConfigResponseSchema, getMicrofrontendsConfigStatus200Schema, getMicrofrontendsConfigStatus400Schema, getMicrofrontendsConfigStatus401Schema, getMicrofrontendsConfigStatus403Schema, getMicrofrontendsConfigStatus404Schema, getMicrofrontendsConfigStatus410Schema, getMicrofrontendsConfigStatus500Schema, getMicrofrontendsGroupsErrorSchema, getMicrofrontendsGroupsQuerySlugSchema, getMicrofrontendsGroupsQueryTeamIdSchema, getMicrofrontendsGroupsResponseSchema, getMicrofrontendsGroupsStatus200Schema, getMicrofrontendsGroupsStatus400Schema, getMicrofrontendsGroupsStatus401Schema, getMicrofrontendsGroupsStatus403Schema, getMicrofrontendsGroupsStatus410Schema, getMicrofrontendsGroupsStatus500Schema, getMicrofrontendsInGroupErrorSchema, getMicrofrontendsInGroupPathGroupIdSchema, getMicrofrontendsInGroupQuerySlugSchema, getMicrofrontendsInGroupQueryTeamIdSchema, getMicrofrontendsInGroupResponseSchema, getMicrofrontendsInGroupStatus200Schema, getMicrofrontendsInGroupStatus400Schema, getMicrofrontendsInGroupStatus401Schema, getMicrofrontendsInGroupStatus403Schema, getMicrofrontendsInGroupStatus410Schema, getNamedSandboxErrorSchema, getNamedSandboxPathNameSchema, getNamedSandboxQueryProjectIdSchema, getNamedSandboxQueryResumeSchema, getNamedSandboxQuerySlugSchema, getNamedSandboxQueryTeamIdSchema, getNamedSandboxResponseSchema, getNamedSandboxStatus200Schema, getNamedSandboxStatus400Schema, getNamedSandboxStatus401Schema, getNamedSandboxStatus402Schema, getNamedSandboxStatus403Schema, getNamedSandboxStatus404Schema, getNamedSandboxStatus409Schema, getNamedSandboxStatus410Schema, getNamedSandboxStatus429Schema, getNamedSandboxStatus500Schema, getObservabilityConfigurationProjectsErrorSchema, getObservabilityConfigurationProjectsQuerySlugSchema, getObservabilityConfigurationProjectsQueryTeamIdSchema, getObservabilityConfigurationProjectsResponseSchema, getObservabilityConfigurationProjectsStatus200Schema, getObservabilityConfigurationProjectsStatus400Schema, getObservabilityConfigurationProjectsStatus401Schema, getObservabilityConfigurationProjectsStatus403Schema, getObservabilityConfigurationProjectsStatus404Schema, getObservabilityConfigurationProjectsStatus410Schema, getObservabilitySchemaByMetricIdErrorSchema, getObservabilitySchemaByMetricIdPathMetricIdSchema, getObservabilitySchemaByMetricIdResponseSchema, getObservabilitySchemaByMetricIdStatus200Schema, getObservabilitySchemaByMetricIdStatus400Schema, getObservabilitySchemaByMetricIdStatus401Schema, getObservabilitySchemaByMetricIdStatus403Schema, getObservabilitySchemaByMetricIdStatus410Schema, getObservabilitySchemaErrorSchema, getObservabilitySchemaResponseSchema, getObservabilitySchemaStatus200Schema, getObservabilitySchemaStatus400Schema, getObservabilitySchemaStatus401Schema, getObservabilitySchemaStatus403Schema, getObservabilitySchemaStatus410Schema, getOrCreateDriveErrorSchema, getOrCreateDrivePathNameSchema, getOrCreateDriveQuerySlugSchema, getOrCreateDriveQueryTeamIdSchema, getOrCreateDriveResponseSchema, getOrCreateDriveStatus200Schema, getOrCreateDriveStatus201Schema, getOrCreateDriveStatus400Schema, getOrCreateDriveStatus401Schema, getOrCreateDriveStatus402Schema, getOrCreateDriveStatus403Schema, getOrCreateDriveStatus404Schema, getOrCreateDriveStatus409Schema, getOrCreateDriveStatus410Schema, getOrCreateDriveStatus429Schema, getOrderErrorSchema, getOrderPathOrderIdSchema, getOrderQueryTeamIdSchema, getOrderResponseSchema, getOrderStatus200Schema, getOrderStatus400Schema, getOrderStatus401Schema, getOrderStatus403Schema, getOrderStatus404Schema, getOrderStatus429Schema, getOrderStatus500Schema, getProjectCheckErrorSchema, getProjectCheckPathCheckIdSchema, getProjectCheckPathProjectIdOrNameSchema, getProjectCheckQuerySlugSchema, getProjectCheckQueryTeamIdSchema, getProjectCheckResponseSchema, getProjectCheckStatus200Schema, getProjectCheckStatus400Schema, getProjectCheckStatus401Schema, getProjectCheckStatus403Schema, getProjectCheckStatus410Schema, getProjectCheckStatus500Schema, getProjectDomainErrorSchema, getProjectDomainPathDomainSchema, getProjectDomainPathIdOrNameSchema, getProjectDomainQuerySlugSchema, getProjectDomainQueryTeamIdSchema, getProjectDomainResponseSchema, getProjectDomainStatus200Schema, getProjectDomainStatus400Schema, getProjectDomainStatus401Schema, getProjectDomainStatus403Schema, getProjectDomainStatus410Schema, getProjectDomainsErrorSchema, getProjectDomainsPathIdOrNameSchema, getProjectDomainsQueryCustomEnvironmentIdSchema, getProjectDomainsQueryGitBranchSchema, getProjectDomainsQueryLimitSchema, getProjectDomainsQueryOrderSchema, getProjectDomainsQueryProductionSchema, getProjectDomainsQueryRedirectSchema, getProjectDomainsQueryRedirectsSchema, getProjectDomainsQuerySinceSchema, getProjectDomainsQuerySlugSchema, getProjectDomainsQueryTargetSchema, getProjectDomainsQueryTeamIdSchema, getProjectDomainsQueryUntilSchema, getProjectDomainsQueryVerifiedSchema, getProjectDomainsResponseSchema, getProjectDomainsStatus200Schema, getProjectDomainsStatus400Schema, getProjectDomainsStatus401Schema, getProjectDomainsStatus403Schema, getProjectDomainsStatus410Schema, getProjectEnvErrorSchema, getProjectEnvPathIdOrNameSchema, getProjectEnvPathIdSchema, getProjectEnvQuerySlugSchema, getProjectEnvQueryTeamIdSchema, getProjectEnvResponseSchema, getProjectEnvStatus200Schema, getProjectEnvStatus400Schema, getProjectEnvStatus401Schema, getProjectEnvStatus403Schema, getProjectEnvStatus410Schema, getProjectErrorSchema, getProjectMembersErrorSchema, getProjectMembersPathIdOrNameSchema, getProjectMembersQueryLimitSchema, getProjectMembersQuerySearchSchema, getProjectMembersQuerySinceSchema, getProjectMembersQuerySlugSchema, getProjectMembersQueryTeamIdSchema, getProjectMembersQueryUntilSchema, getProjectMembersResponseSchema, getProjectMembersStatus200Schema, getProjectMembersStatus400Schema, getProjectMembersStatus401Schema, getProjectMembersStatus403Schema, getProjectMembersStatus410Schema, getProjectPathIdOrNameSchema, getProjectQuerySlugSchema, getProjectQueryTeamIdSchema, getProjectResponseSchema, getProjectStatus200Schema, getProjectStatus400Schema, getProjectStatus401Schema, getProjectStatus403Schema, getProjectStatus410Schema, getProjectTokenErrorSchema, getProjectTokenPathIdOrNameSchema, getProjectTokenQuerySlugSchema, getProjectTokenQueryTeamIdSchema, getProjectTokenResponseSchema, getProjectTokenStatus200Schema, getProjectTokenStatus400Schema, getProjectTokenStatus401Schema, getProjectTokenStatus403Schema, getProjectTokenStatus404Schema, getProjectTokenStatus410Schema, getProjectTraceErrorSchema, getProjectTraceQueryProjectIdSchema, getProjectTraceQueryRequestIdSchema, getProjectTraceQuerySlugSchema, getProjectTraceQueryTeamIdSchema, getProjectTraceResponseSchema, getProjectTraceStatus200Schema, getProjectTraceStatus400Schema, getProjectTraceStatus401Schema, getProjectTraceStatus403Schema, getProjectTraceStatus404Schema, getProjectTraceStatus410Schema, getProjectsByIdOrNameCustomEnvironmentsErrorSchema, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema, getProjectsByIdOrNameCustomEnvironmentsResponseSchema, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema, getProjectsErrorSchema, getProjectsQueryBuildMachineTypesSchema, getProjectsQueryBuildQueueConfigurationSchema, getProjectsQueryDeprecatedSchema, getProjectsQueryEdgeConfigIdSchema, getProjectsQueryEdgeConfigTokenIdSchema, getProjectsQueryElasticConcurrencyEnabledSchema, getProjectsQueryExcludeReposSchema, getProjectsQueryFromSchema, getProjectsQueryGitForkProtectionSchema, getProjectsQueryLimitSchema, getProjectsQueryRepoIdSchema, getProjectsQueryRepoSchema, getProjectsQueryRepoUrlSchema, getProjectsQuerySearchSchema, getProjectsQuerySlugSchema, getProjectsQueryStaticIpsEnabledSchema, getProjectsQueryTeamIdSchema, getProjectsResponseSchema, getProjectsStatus200Schema, getProjectsStatus400Schema, getProjectsStatus401Schema, getProjectsStatus403Schema, getProjectsStatus410Schema, getRecordsErrorSchema, getRecordsPathDomainSchema, getRecordsQueryLimitSchema, getRecordsQuerySinceSchema, getRecordsQuerySlugSchema, getRecordsQueryTeamIdSchema, getRecordsQueryUntilSchema, getRecordsResponseSchema, getRecordsStatus200Schema, getRecordsStatus400Schema, getRecordsStatus401Schema, getRecordsStatus403Schema, getRecordsStatus404Schema, getRecordsStatus410Schema, getRedirectsErrorSchema, getRedirectsQueryDiffSchema, getRedirectsQueryPageSchema, getRedirectsQueryPerPageSchema, getRedirectsQueryProjectIdSchema, getRedirectsQueryQSchema, getRedirectsQuerySlugSchema, getRedirectsQuerySortBySchema, getRedirectsQuerySortOrderSchema, getRedirectsQueryTeamIdSchema, getRedirectsQueryVersionIdSchema, getRedirectsResponseSchema, getRedirectsStatus200Schema, getRedirectsStatus400Schema, getRedirectsStatus401Schema, getRedirectsStatus403Schema, getRedirectsStatus404Schema, getRedirectsStatus410Schema, getRepositoryErrorSchema, getRepositoryImageErrorSchema, getRepositoryImagePathIdOrNameSchema, getRepositoryImagePathImageIdOrDigestSchema, getRepositoryImageQueryProjectIdSchema, getRepositoryImageQuerySlugSchema, getRepositoryImageQueryTeamIdSchema, getRepositoryImageResponseSchema, getRepositoryImageStatus200Schema, getRepositoryImageStatus400Schema, getRepositoryImageStatus401Schema, getRepositoryImageStatus403Schema, getRepositoryImageStatus404Schema, getRepositoryImageStatus410Schema, getRepositoryPathIdOrNameSchema, getRepositoryQueryProjectIdSchema, getRepositoryQuerySlugSchema, getRepositoryQueryTeamIdSchema, getRepositoryResponseSchema, getRepositoryStatus200Schema, getRepositoryStatus400Schema, getRepositoryStatus401Schema, getRepositoryStatus403Schema, getRepositoryStatus404Schema, getRepositoryStatus410Schema, getRepositoryTagErrorSchema, getRepositoryTagPathIdOrNameSchema, getRepositoryTagPathTagSchema, getRepositoryTagQueryProjectIdSchema, getRepositoryTagQuerySlugSchema, getRepositoryTagQueryTeamIdSchema, getRepositoryTagResponseSchema, getRepositoryTagStatus200Schema, getRepositoryTagStatus400Schema, getRepositoryTagStatus401Schema, getRepositoryTagStatus403Schema, getRepositoryTagStatus404Schema, getRepositoryTagStatus410Schema, getRollingReleaseBillingStatusErrorSchema, getRollingReleaseBillingStatusPathIdOrNameSchema, getRollingReleaseBillingStatusQuerySlugSchema, getRollingReleaseBillingStatusQueryTeamIdSchema, getRollingReleaseBillingStatusResponseSchema, getRollingReleaseBillingStatusStatus200Schema, getRollingReleaseBillingStatusStatus400Schema, getRollingReleaseBillingStatusStatus401Schema, getRollingReleaseBillingStatusStatus403Schema, getRollingReleaseBillingStatusStatus404Schema, getRollingReleaseBillingStatusStatus410Schema, getRollingReleaseConfigErrorSchema, getRollingReleaseConfigPathIdOrNameSchema, getRollingReleaseConfigQuerySlugSchema, getRollingReleaseConfigQueryTeamIdSchema, getRollingReleaseConfigResponseSchema, getRollingReleaseConfigStatus200Schema, getRollingReleaseConfigStatus400Schema, getRollingReleaseConfigStatus401Schema, getRollingReleaseConfigStatus403Schema, getRollingReleaseConfigStatus404Schema, getRollingReleaseConfigStatus410Schema, getRollingReleaseErrorSchema, getRollingReleasePathIdOrNameSchema, getRollingReleaseQuerySlugSchema, getRollingReleaseQueryStateSchema, getRollingReleaseQueryTeamIdSchema, getRollingReleaseResponseSchema, getRollingReleaseStatus200Schema, getRollingReleaseStatus400Schema, getRollingReleaseStatus401Schema, getRollingReleaseStatus403Schema, getRollingReleaseStatus404Schema, getRollingReleaseStatus410Schema, getRootErrorSchema, getRootResponseSchema, getRootStatus200Schema, getRootStatus400Schema, getRootStatus401Schema, getRootStatus402Schema, getRootStatus403Schema, getRootStatus404Schema, getRootStatus410Schema, getRouteVersionsErrorSchema, getRouteVersionsPathProjectIdSchema, getRouteVersionsQuerySlugSchema, getRouteVersionsQueryTeamIdSchema, getRouteVersionsResponseSchema, getRouteVersionsStatus200Schema, getRouteVersionsStatus400Schema, getRouteVersionsStatus401Schema, getRouteVersionsStatus403Schema, getRouteVersionsStatus410Schema, getRoutesErrorSchema, getRoutesPathProjectIdSchema, getRoutesQueryDiffSchema, getRoutesQueryFilterSchema, getRoutesQueryQSchema, getRoutesQuerySlugSchema, getRoutesQueryTeamIdSchema, getRoutesQueryVersionIdSchema, getRoutesResponseSchema, getRoutesStatus200Schema, getRoutesStatus400Schema, getRoutesStatus401Schema, getRoutesStatus403Schema, getRoutesStatus404Schema, getRoutesStatus410Schema, getRuntimeLogsErrorSchema, getRuntimeLogsPathDeploymentIdSchema, getRuntimeLogsPathProjectIdSchema, getRuntimeLogsQuerySlugSchema, getRuntimeLogsQueryTeamIdSchema, getRuntimeLogsResponseSchema, getRuntimeLogsStatus200Schema, getRuntimeLogsStatus400Schema, getRuntimeLogsStatus401Schema, getRuntimeLogsStatus403Schema, getRuntimeLogsStatus410Schema, getSdkKeysErrorSchema, getSdkKeysPathProjectIdOrNameSchema, getSdkKeysQuerySlugSchema, getSdkKeysQueryTeamIdSchema, getSdkKeysResponseSchema, getSdkKeysStatus200Schema, getSdkKeysStatus400Schema, getSdkKeysStatus401Schema, getSdkKeysStatus402Schema, getSdkKeysStatus403Schema, getSdkKeysStatus404Schema, getSdkKeysStatus410Schema, getSecurityFirewallConfigErrorSchema, getSecurityFirewallConfigResponseSchema, getSecurityFirewallConfigStatus200Schema, getSecurityFirewallConfigStatus400Schema, getSecurityFirewallConfigStatus401Schema, getSecurityFirewallConfigStatus403Schema, getSecurityFirewallConfigStatus404Schema, getSecurityFirewallConfigStatus410Schema, getSecurityFirewallEventsErrorSchema, getSecurityFirewallEventsQueryEndTimestampSchema, getSecurityFirewallEventsQueryHostsSchema, getSecurityFirewallEventsQueryProjectIdSchema, getSecurityFirewallEventsQuerySlugSchema, getSecurityFirewallEventsQueryStartTimestampSchema, getSecurityFirewallEventsQueryTeamIdSchema, getSecurityFirewallEventsResponseSchema, getSecurityFirewallEventsStatus200Schema, getSecurityFirewallEventsStatus400Schema, getSecurityFirewallEventsStatus401Schema, getSecurityFirewallEventsStatus403Schema, getSecurityFirewallEventsStatus404Schema, getSecurityFirewallEventsStatus408Schema, getSecurityFirewallEventsStatus410Schema, getSecurityFirewallEventsStatus500Schema, getSessionCommandErrorSchema, getSessionCommandLogsErrorSchema, getSessionCommandLogsPathCmdIdSchema, getSessionCommandLogsPathSessionIdSchema, getSessionCommandLogsQuerySlugSchema, getSessionCommandLogsQueryTeamIdSchema, getSessionCommandLogsResponseSchema, getSessionCommandLogsStatus200Schema, getSessionCommandLogsStatus400Schema, getSessionCommandLogsStatus401Schema, getSessionCommandLogsStatus403Schema, getSessionCommandLogsStatus404Schema, getSessionCommandLogsStatus410Schema, getSessionCommandLogsStatus422Schema, getSessionCommandLogsStatus429Schema, getSessionCommandLogsStatus500Schema, getSessionCommandPathCmdIdSchema, getSessionCommandPathSessionIdSchema, getSessionCommandQuerySlugSchema, getSessionCommandQueryTeamIdSchema, getSessionCommandQueryWaitSchema, getSessionCommandResponseSchema, getSessionCommandStatus200Schema, getSessionCommandStatus400Schema, getSessionCommandStatus401Schema, getSessionCommandStatus403Schema, getSessionCommandStatus404Schema, getSessionCommandStatus410Schema, getSessionCommandStatus422Schema, getSessionCommandStatus429Schema, getSessionCommandStatus500Schema, getSessionErrorSchema, getSessionPathSessionIdSchema, getSessionQuerySlugSchema, getSessionQueryTeamIdSchema, getSessionResponseSchema, getSessionSnapshotErrorSchema, getSessionSnapshotPathSnapshotIdSchema, getSessionSnapshotQuerySlugSchema, getSessionSnapshotQueryTeamIdSchema, getSessionSnapshotResponseSchema, getSessionSnapshotStatus200Schema, getSessionSnapshotStatus400Schema, getSessionSnapshotStatus401Schema, getSessionSnapshotStatus403Schema, getSessionSnapshotStatus404Schema, getSessionSnapshotStatus410Schema, getSessionSnapshotStatus429Schema, getSessionStatus200Schema, getSessionStatus400Schema, getSessionStatus401Schema, getSessionStatus403Schema, getSessionStatus404Schema, getSessionStatus410Schema, getSessionStatus429Schema, getSessionStatus500Schema, getSharedEnvVarErrorSchema, getSharedEnvVarPathIdSchema, getSharedEnvVarQuerySlugSchema, getSharedEnvVarQueryTeamIdSchema, getSharedEnvVarResponseSchema, getSharedEnvVarStatus200Schema, getSharedEnvVarStatus400Schema, getSharedEnvVarStatus401Schema, getSharedEnvVarStatus403Schema, getSharedEnvVarStatus410Schema, getStorageStoresByIdErrorSchema, getStorageStoresByIdPathIdSchema, getStorageStoresByIdQueryIncludeGuidesSchema, getStorageStoresByIdQuerySkipMetadataSchema, getStorageStoresByIdResponseSchema, getStorageStoresByIdStatus200Schema, getStorageStoresByIdStatus400Schema, getStorageStoresByIdStatus401Schema, getStorageStoresByIdStatus403Schema, getStorageStoresByIdStatus404Schema, getStorageStoresByIdStatus410Schema, getSupportedTldsErrorSchema, getSupportedTldsQueryTeamIdSchema, getSupportedTldsResponseSchema, getSupportedTldsStatus200Schema, getSupportedTldsStatus400Schema, getSupportedTldsStatus401Schema, getSupportedTldsStatus403Schema, getSupportedTldsStatus429Schema, getSupportedTldsStatus500Schema, getTeamAccessRequestErrorSchema, getTeamAccessRequestPathTeamIdSchema, getTeamAccessRequestPathUserIdSchema, getTeamAccessRequestResponseSchema, getTeamAccessRequestStatus200Schema, getTeamAccessRequestStatus400Schema, getTeamAccessRequestStatus401Schema, getTeamAccessRequestStatus403Schema, getTeamAccessRequestStatus404Schema, getTeamAccessRequestStatus410Schema, getTeamErrorSchema, getTeamMembersErrorSchema, getTeamMembersPathTeamIdSchema, getTeamMembersQueryEligibleMembersForProjectIdSchema, getTeamMembersQueryExcludeProjectSchema, getTeamMembersQueryLimitSchema, getTeamMembersQueryRoleSchema, getTeamMembersQuerySearchSchema, getTeamMembersQuerySinceSchema, getTeamMembersQuerySlugSchema, getTeamMembersQueryUntilSchema, getTeamMembersResponseSchema, getTeamMembersStatus200Schema, getTeamMembersStatus400Schema, getTeamMembersStatus401Schema, getTeamMembersStatus403Schema, getTeamMembersStatus404Schema, getTeamMembersStatus410Schema, getTeamPathTeamIdSchema, getTeamQuerySlugSchema, getTeamResponseSchema, getTeamStatus200Schema, getTeamStatus400Schema, getTeamStatus401Schema, getTeamStatus403Schema, getTeamStatus404Schema, getTeamStatus410Schema, getTeamsErrorSchema, getTeamsQueryLimitSchema, getTeamsQuerySinceSchema, getTeamsQueryUntilSchema, getTeamsResponseSchema, getTeamsStatus200Schema, getTeamsStatus400Schema, getTeamsStatus401Schema, getTeamsStatus403Schema, getTeamsStatus410Schema, getTeamsStatus500Schema, getTldErrorSchema, getTldPathTldSchema, getTldPriceErrorSchema, getTldPricePathTldSchema, getTldPriceQueryTeamIdSchema, getTldPriceQueryYearsSchema, getTldPriceResponseSchema, getTldPriceStatus200Schema, getTldPriceStatus400Schema, getTldPriceStatus401Schema, getTldPriceStatus403Schema, getTldPriceStatus429Schema, getTldPriceStatus500Schema, getTldQueryTeamIdSchema, getTldResponseSchema, getTldStatus200Schema, getTldStatus400Schema, getTldStatus401Schema, getTldStatus403Schema, getTldStatus429Schema, getTldStatus500Schema, getVersionsErrorSchema, getVersionsQueryProjectIdSchema, getVersionsQuerySlugSchema, getVersionsQueryTeamIdSchema, getVersionsResponseSchema, getVersionsStatus200Schema, getVersionsStatus400Schema, getVersionsStatus401Schema, getVersionsStatus403Schema, getVersionsStatus410Schema, getVersionsStatus500Schema, getWebhookErrorSchema, getWebhookPathIdSchema, getWebhookQuerySlugSchema, getWebhookQueryTeamIdSchema, getWebhookResponseSchema, getWebhookStatus200Schema, getWebhookStatus400Schema, getWebhookStatus401Schema, getWebhookStatus403Schema, getWebhookStatus410Schema, getWebhooksErrorSchema, getWebhooksQueryProjectIdSchema, getWebhooksQuerySlugSchema, getWebhooksQueryTeamIdSchema, getWebhooksResponseSchema, getWebhooksStatus200Schema, getWebhooksStatus400Schema, getWebhooksStatus401Schema, getWebhooksStatus403Schema, getWebhooksStatus410Schema, gitNamespacesErrorSchema, gitNamespacesQueryHostSchema, gitNamespacesQueryProviderSchema, gitNamespacesQueryViewerMetadataSchema, gitNamespacesResponseSchema, gitNamespacesStatus200Schema, gitNamespacesStatus400Schema, gitNamespacesStatus401Schema, gitNamespacesStatus403Schema, gitNamespacesStatus404Schema, gitNamespacesStatus410Schema, gitNamespacesStatus429Schema, gitNamespacesStatus500Schema, globalConfigItemSchema, globalConfigItemValueSchema, globalConfigTokenSchema, httpApiDecodeErrorSchema, importResourceErrorSchema, importResourcePathIntegrationConfigurationIdSchema, importResourcePathResourceIdSchema, importResourceResponseSchema, importResourceStatus200Schema, importResourceStatus400Schema, importResourceStatus401Schema, importResourceStatus403Schema, importResourceStatus404Schema, importResourceStatus409Schema, importResourceStatus410Schema, importResourceStatus422Schema, importResourceStatus429Schema, internalServerErrorSchema, invalidAdditionalContactInfoSchema, invalidateBySrcImagesErrorSchema, invalidateBySrcImagesQueryProjectIdOrNameSchema, invalidateBySrcImagesQuerySlugSchema, invalidateBySrcImagesQueryTeamIdSchema, invalidateBySrcImagesResponseSchema, invalidateBySrcImagesStatus200Schema, invalidateBySrcImagesStatus400Schema, invalidateBySrcImagesStatus401Schema, invalidateBySrcImagesStatus402Schema, invalidateBySrcImagesStatus403Schema, invalidateBySrcImagesStatus404Schema, invalidateBySrcImagesStatus410Schema, invalidateByTagsErrorSchema, invalidateByTagsQueryProjectIdOrNameSchema, invalidateByTagsQuerySlugSchema, invalidateByTagsQueryTeamIdSchema, invalidateByTagsResponseSchema, invalidateByTagsStatus200Schema, invalidateByTagsStatus400Schema, invalidateByTagsStatus401Schema, invalidateByTagsStatus403Schema, invalidateByTagsStatus404Schema, invalidateByTagsStatus410Schema, inviteUserToTeamErrorSchema, inviteUserToTeamPathTeamIdSchema, inviteUserToTeamQuerySlugSchema, inviteUserToTeamResponseSchema, inviteUserToTeamStatus200Schema, inviteUserToTeamStatus400Schema, inviteUserToTeamStatus401Schema, inviteUserToTeamStatus403Schema, inviteUserToTeamStatus410Schema, inviteUserToTeamStatus503Schema, invitedTeamMemberSchema, issueCertErrorSchema, issueCertQuerySlugSchema, issueCertQueryTeamIdSchema, issueCertResponseSchema, issueCertStatus200Schema, issueCertStatus400Schema, issueCertStatus401Schema, issueCertStatus402Schema, issueCertStatus403Schema, issueCertStatus404Schema, issueCertStatus410Schema, issueCertStatus449Schema, issueCertStatus500Schema, issueSchema, joinTeamErrorSchema, joinTeamPathTeamIdSchema, joinTeamResponseSchema, joinTeamStatus200Schema, joinTeamStatus400Schema, joinTeamStatus401Schema, joinTeamStatus402Schema, joinTeamStatus403Schema, joinTeamStatus404Schema, joinTeamStatus410Schema, joinTeamStatus503Schema, killSessionCommandErrorSchema, killSessionCommandPathCmdIdSchema, killSessionCommandPathSessionIdSchema, killSessionCommandQuerySlugSchema, killSessionCommandQueryTeamIdSchema, killSessionCommandResponseSchema, killSessionCommandStatus200Schema, killSessionCommandStatus400Schema, killSessionCommandStatus401Schema, killSessionCommandStatus403Schema, killSessionCommandStatus404Schema, killSessionCommandStatus410Schema, killSessionCommandStatus422Schema, killSessionCommandStatus429Schema, killSessionCommandStatus500Schema, languageCodeRequiredSchema, listAccessGroupMembersErrorSchema, listAccessGroupMembersPathIdOrNameSchema, listAccessGroupMembersQueryLimitSchema, listAccessGroupMembersQueryNextSchema, listAccessGroupMembersQuerySearchSchema, listAccessGroupMembersQuerySlugSchema, listAccessGroupMembersQueryTeamIdSchema, listAccessGroupMembersResponseSchema, listAccessGroupMembersStatus200Schema, listAccessGroupMembersStatus400Schema, listAccessGroupMembersStatus401Schema, listAccessGroupMembersStatus403Schema, listAccessGroupMembersStatus410Schema, listAccessGroupProjectsErrorSchema, listAccessGroupProjectsPathIdOrNameSchema, listAccessGroupProjectsQueryLimitSchema, listAccessGroupProjectsQueryNextSchema, listAccessGroupProjectsQuerySlugSchema, listAccessGroupProjectsQueryTeamIdSchema, listAccessGroupProjectsResponseSchema, listAccessGroupProjectsStatus200Schema, listAccessGroupProjectsStatus400Schema, listAccessGroupProjectsStatus401Schema, listAccessGroupProjectsStatus403Schema, listAccessGroupProjectsStatus410Schema, listAccessGroupsErrorSchema, listAccessGroupsQueryLimitSchema, listAccessGroupsQueryMembersLimitSchema, listAccessGroupsQueryNextSchema, listAccessGroupsQueryProjectIdSchema, listAccessGroupsQueryProjectsLimitSchema, listAccessGroupsQuerySearchSchema, listAccessGroupsQuerySlugSchema, listAccessGroupsQueryTeamIdSchema, listAccessGroupsResponseSchema, listAccessGroupsStatus200Schema, listAccessGroupsStatus400Schema, listAccessGroupsStatus401Schema, listAccessGroupsStatus403Schema, listAccessGroupsStatus410Schema, listAiGatewayRulesErrorSchema, listAiGatewayRulesQueryIncludeDisabledSchema, listAiGatewayRulesQuerySlugSchema, listAiGatewayRulesQueryTeamIdSchema, listAiGatewayRulesResponseSchema, listAiGatewayRulesStatus200Schema, listAiGatewayRulesStatus400Schema, listAiGatewayRulesStatus401Schema, listAiGatewayRulesStatus403Schema, listAiGatewayRulesStatus410Schema, listAiGatewayRulesStatus500Schema, listAiGatewayVirtualModelConfigsErrorSchema, listAiGatewayVirtualModelConfigsQueryCursorSchema, listAiGatewayVirtualModelConfigsQueryLimitSchema, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema, listAiGatewayVirtualModelConfigsQuerySlugSchema, listAiGatewayVirtualModelConfigsQueryTeamIdSchema, listAiGatewayVirtualModelConfigsResponseSchema, listAiGatewayVirtualModelConfigsStatus200Schema, listAiGatewayVirtualModelConfigsStatus400Schema, listAiGatewayVirtualModelConfigsStatus401Schema, listAiGatewayVirtualModelConfigsStatus403Schema, listAiGatewayVirtualModelConfigsStatus410Schema, listAiGatewayVirtualModelConfigsStatus500Schema, listAliasesErrorSchema, listAliasesQueryDomainSchema, listAliasesQueryFromSchema, listAliasesQueryLimitSchema, listAliasesQueryProjectIdSchema, listAliasesQueryRollbackDeploymentIdSchema, listAliasesQuerySinceSchema, listAliasesQuerySlugSchema, listAliasesQueryTeamIdSchema, listAliasesQueryUntilSchema, listAliasesResponseSchema, listAliasesStatus200Schema, listAliasesStatus400Schema, listAliasesStatus401Schema, listAliasesStatus403Schema, listAliasesStatus404Schema, listAliasesStatus410Schema, listAuthTokensErrorSchema, listAuthTokensResponseSchema, listAuthTokensStatus200Schema, listAuthTokensStatus400Schema, listAuthTokensStatus401Schema, listAuthTokensStatus403Schema, listAuthTokensStatus410Schema, listBillingChargesErrorSchema, listBillingChargesQueryFromSchema, listBillingChargesQuerySlugSchema, listBillingChargesQueryTeamIdSchema, listBillingChargesQueryToSchema, listBillingChargesResponseSchema, listBillingChargesStatus200Schema, listBillingChargesStatus400Schema, listBillingChargesStatus401Schema, listBillingChargesStatus403Schema, listBillingChargesStatus404Schema, listBillingChargesStatus410Schema, listBillingChargesStatus500Schema, listBillingChargesStatus503Schema, listCheckRunsErrorSchema, listCheckRunsPathCheckIdSchema, listCheckRunsPathProjectIdOrNameSchema, listCheckRunsQuerySlugSchema, listCheckRunsQueryTeamIdSchema, listCheckRunsResponseSchema, listCheckRunsStatus200Schema, listCheckRunsStatus400Schema, listCheckRunsStatus401Schema, listCheckRunsStatus403Schema, listCheckRunsStatus410Schema, listCheckRunsStatus500Schema, listContractCommitmentsErrorSchema, listContractCommitmentsQuerySlugSchema, listContractCommitmentsQueryTeamIdSchema, listContractCommitmentsResponseSchema, listContractCommitmentsStatus200Schema, listContractCommitmentsStatus400Schema, listContractCommitmentsStatus401Schema, listContractCommitmentsStatus403Schema, listContractCommitmentsStatus404Schema, listContractCommitmentsStatus410Schema, listDeploymentAliasesErrorSchema, listDeploymentAliasesPathIdSchema, listDeploymentAliasesQuerySlugSchema, listDeploymentAliasesQueryTeamIdSchema, listDeploymentAliasesResponseSchema, listDeploymentAliasesStatus200Schema, listDeploymentAliasesStatus400Schema, listDeploymentAliasesStatus401Schema, listDeploymentAliasesStatus403Schema, listDeploymentAliasesStatus404Schema, listDeploymentAliasesStatus410Schema, listDeploymentCheckRunsErrorSchema, listDeploymentCheckRunsPathDeploymentIdSchema, listDeploymentCheckRunsQuerySlugSchema, listDeploymentCheckRunsQueryTeamIdSchema, listDeploymentCheckRunsResponseSchema, listDeploymentCheckRunsStatus200Schema, listDeploymentCheckRunsStatus400Schema, listDeploymentCheckRunsStatus401Schema, listDeploymentCheckRunsStatus403Schema, listDeploymentCheckRunsStatus410Schema, listDeploymentCheckRunsStatus500Schema, listDeploymentFilesErrorSchema, listDeploymentFilesPathIdSchema, listDeploymentFilesQuerySlugSchema, listDeploymentFilesQueryTeamIdSchema, listDeploymentFilesResponseSchema, listDeploymentFilesStatus200Schema, listDeploymentFilesStatus400Schema, listDeploymentFilesStatus401Schema, listDeploymentFilesStatus403Schema, listDeploymentFilesStatus404Schema, listDeploymentFilesStatus410Schema, listDrivesErrorSchema, listDrivesQueryCursorSchema, listDrivesQueryLimitSchema, listDrivesQueryNamePrefixSchema, listDrivesQueryProjectIdSchema, listDrivesQuerySlugSchema, listDrivesQuerySortBySchema, listDrivesQuerySortOrderSchema, listDrivesQueryTeamIdSchema, listDrivesResponseSchema, listDrivesStatus200Schema, listDrivesStatus400Schema, listDrivesStatus401Schema, listDrivesStatus403Schema, listDrivesStatus404Schema, listDrivesStatus410Schema, listDrivesStatus429Schema, listEventTypeSchema, listEventTypesErrorSchema, listEventTypesQuerySlugSchema, listEventTypesQueryTeamIdSchema, listEventTypesResponseSchema, listEventTypesStatus200Schema, listEventTypesStatus400Schema, listEventTypesStatus401Schema, listEventTypesStatus403Schema, listEventTypesStatus410Schema, listFlagSegmentsErrorSchema, listFlagSegmentsPathProjectIdOrNameSchema, listFlagSegmentsQuerySlugSchema, listFlagSegmentsQueryTeamIdSchema, listFlagSegmentsQueryWithMetadataSchema, listFlagSegmentsResponseSchema, listFlagSegmentsStatus200Schema, listFlagSegmentsStatus400Schema, listFlagSegmentsStatus401Schema, listFlagSegmentsStatus402Schema, listFlagSegmentsStatus403Schema, listFlagSegmentsStatus404Schema, listFlagSegmentsStatus410Schema, listFlagVersionsErrorSchema, listFlagVersionsPathFlagIdOrSlugSchema, listFlagVersionsPathProjectIdOrNameSchema, listFlagVersionsQueryCursorSchema, listFlagVersionsQueryEnvironmentSchema, listFlagVersionsQueryLimitSchema, listFlagVersionsQuerySlugSchema, listFlagVersionsQueryTeamIdSchema, listFlagVersionsQueryWithMetadataSchema, listFlagVersionsResponseSchema, listFlagVersionsStatus200Schema, listFlagVersionsStatus304Schema, listFlagVersionsStatus400Schema, listFlagVersionsStatus401Schema, listFlagVersionsStatus402Schema, listFlagVersionsStatus403Schema, listFlagVersionsStatus404Schema, listFlagVersionsStatus410Schema, listFlagsErrorSchema, listFlagsPathProjectIdOrNameSchema, listFlagsQueryCursorSchema, listFlagsQueryLimitSchema, listFlagsQuerySearchSchema, listFlagsQuerySlugSchema, listFlagsQueryStateSchema, listFlagsQueryTagsSchema, listFlagsQueryTeamIdSchema, listFlagsQueryWithMetadataSchema, listFlagsResponseSchema, listFlagsStatus200Schema, listFlagsStatus400Schema, listFlagsStatus401Schema, listFlagsStatus402Schema, listFlagsStatus403Schema, listFlagsStatus404Schema, listFlagsStatus410Schema, listFlagsV2ErrorSchema, listFlagsV2PathProjectIdOrNameSchema, listFlagsV2QueryCreatedBySchema, listFlagsV2QueryCursorSchema, listFlagsV2QueryIncludeMarketplaceFlagsSchema, listFlagsV2QueryLimitSchema, listFlagsV2QueryMaintainerIdsSchema, listFlagsV2QuerySearchSchema, listFlagsV2QuerySlugSchema, listFlagsV2QueryStateSchema, listFlagsV2QueryTagsSchema, listFlagsV2QueryTeamIdSchema, listFlagsV2ResponseSchema, listFlagsV2Status200Schema, listFlagsV2Status400Schema, listFlagsV2Status401Schema, listFlagsV2Status402Schema, listFlagsV2Status403Schema, listFlagsV2Status404Schema, listFlagsV2Status410Schema, listKmsIssuersErrorSchema, listKmsIssuersQueryLimitSchema, listKmsIssuersQueryNextSchema, listKmsIssuersQuerySlugSchema, listKmsIssuersQueryTeamIdSchema, listKmsIssuersResponseSchema, listKmsIssuersStatus200Schema, listKmsIssuersStatus400Schema, listKmsIssuersStatus401Schema, listKmsIssuersStatus403Schema, listKmsIssuersStatus410Schema, listNetworksErrorSchema, listNetworksQueryIncludeHostedZonesSchema, listNetworksQueryIncludePeeringConnectionsSchema, listNetworksQueryIncludeProjectsSchema, listNetworksQuerySearchSchema, listNetworksQuerySlugSchema, listNetworksQueryTeamIdSchema, listNetworksResponseSchema, listNetworksStatus200Schema, listNetworksStatus400Schema, listNetworksStatus401Schema, listNetworksStatus403Schema, listNetworksStatus410Schema, listProjectChecksErrorSchema, listProjectChecksPathProjectIdOrNameSchema, listProjectChecksQueryBlocksSchema, listProjectChecksQuerySlugSchema, listProjectChecksQueryTeamIdSchema, listProjectChecksResponseSchema, listProjectChecksStatus200Schema, listProjectChecksStatus400Schema, listProjectChecksStatus401Schema, listProjectChecksStatus403Schema, listProjectChecksStatus410Schema, listProjectChecksStatus500Schema, listPromoteAliasesErrorSchema, listPromoteAliasesPathProjectIdSchema, listPromoteAliasesQueryFailedOnlySchema, listPromoteAliasesQueryLimitSchema, listPromoteAliasesQuerySinceSchema, listPromoteAliasesQuerySlugSchema, listPromoteAliasesQueryTeamIdSchema, listPromoteAliasesQueryUntilSchema, listPromoteAliasesResponseSchema, listPromoteAliasesStatus200Schema, listPromoteAliasesStatus400Schema, listPromoteAliasesStatus401Schema, listPromoteAliasesStatus403Schema, listPromoteAliasesStatus404Schema, listPromoteAliasesStatus410Schema, listRepositoriesErrorSchema, listRepositoriesQueryCursorSchema, listRepositoriesQueryLimitSchema, listRepositoriesQueryProjectIdSchema, listRepositoriesQuerySlugSchema, listRepositoriesQueryTeamIdSchema, listRepositoriesResponseSchema, listRepositoriesStatus200Schema, listRepositoriesStatus400Schema, listRepositoriesStatus401Schema, listRepositoriesStatus403Schema, listRepositoriesStatus404Schema, listRepositoriesStatus410Schema, listRepositoryImagesErrorSchema, listRepositoryImagesPathIdOrNameSchema, listRepositoryImagesQueryCursorSchema, listRepositoryImagesQueryLimitSchema, listRepositoryImagesQueryProjectIdSchema, listRepositoryImagesQuerySlugSchema, listRepositoryImagesQueryTeamIdSchema, listRepositoryImagesQueryUntaggedSchema, listRepositoryImagesResponseSchema, listRepositoryImagesStatus200Schema, listRepositoryImagesStatus400Schema, listRepositoryImagesStatus401Schema, listRepositoryImagesStatus403Schema, listRepositoryImagesStatus404Schema, listRepositoryImagesStatus410Schema, listRepositoryPermissionsErrorSchema, listRepositoryPermissionsPathIdOrNameSchema, listRepositoryPermissionsQueryCursorSchema, listRepositoryPermissionsQueryLimitSchema, listRepositoryPermissionsQueryProjectIdSchema, listRepositoryPermissionsQuerySlugSchema, listRepositoryPermissionsQueryTeamIdSchema, listRepositoryPermissionsResponseSchema, listRepositoryPermissionsStatus200Schema, listRepositoryPermissionsStatus400Schema, listRepositoryPermissionsStatus401Schema, listRepositoryPermissionsStatus403Schema, listRepositoryPermissionsStatus404Schema, listRepositoryPermissionsStatus410Schema, listRepositoryTagsErrorSchema, listRepositoryTagsPathIdOrNameSchema, listRepositoryTagsQueryCursorSchema, listRepositoryTagsQueryLimitSchema, listRepositoryTagsQueryProjectIdSchema, listRepositoryTagsQuerySlugSchema, listRepositoryTagsQuerySortBySchema, listRepositoryTagsQuerySortOrderSchema, listRepositoryTagsQueryTeamIdSchema, listRepositoryTagsResponseSchema, listRepositoryTagsStatus200Schema, listRepositoryTagsStatus400Schema, listRepositoryTagsStatus401Schema, listRepositoryTagsStatus403Schema, listRepositoryTagsStatus404Schema, listRepositoryTagsStatus410Schema, listSandboxesErrorSchema, listSandboxesQueryCursorSchema, listSandboxesQueryLimitSchema, listSandboxesQueryNamePrefixSchema, listSandboxesQueryProjectSchema, listSandboxesQuerySlugSchema, listSandboxesQuerySortBySchema, listSandboxesQuerySortOrderSchema, listSandboxesQueryStatusSchema, listSandboxesQueryTagsSchema, listSandboxesQueryTeamIdSchema, listSandboxesResponseSchema, listSandboxesStatus200Schema, listSandboxesStatus400Schema, listSandboxesStatus401Schema, listSandboxesStatus403Schema, listSandboxesStatus404Schema, listSandboxesStatus410Schema, listSandboxesStatus429Schema, listSessionCommandsErrorSchema, listSessionCommandsPathSessionIdSchema, listSessionCommandsQuerySlugSchema, listSessionCommandsQueryTeamIdSchema, listSessionCommandsResponseSchema, listSessionCommandsStatus200Schema, listSessionCommandsStatus400Schema, listSessionCommandsStatus401Schema, listSessionCommandsStatus403Schema, listSessionCommandsStatus404Schema, listSessionCommandsStatus410Schema, listSessionCommandsStatus429Schema, listSessionSnapshotsErrorSchema, listSessionSnapshotsQueryCursorSchema, listSessionSnapshotsQueryLimitSchema, listSessionSnapshotsQueryNameSchema, listSessionSnapshotsQueryProjectSchema, listSessionSnapshotsQuerySlugSchema, listSessionSnapshotsQuerySortOrderSchema, listSessionSnapshotsQueryTeamIdSchema, listSessionSnapshotsResponseSchema, listSessionSnapshotsStatus200Schema, listSessionSnapshotsStatus400Schema, listSessionSnapshotsStatus401Schema, listSessionSnapshotsStatus403Schema, listSessionSnapshotsStatus404Schema, listSessionSnapshotsStatus410Schema, listSessionSnapshotsStatus429Schema, listSessionsErrorSchema, listSessionsQueryCursorSchema, listSessionsQueryLimitSchema, listSessionsQueryNameSchema, listSessionsQueryProjectSchema, listSessionsQuerySlugSchema, listSessionsQuerySortOrderSchema, listSessionsQueryTeamIdSchema, listSessionsResponseSchema, listSessionsStatus200Schema, listSessionsStatus400Schema, listSessionsStatus401Schema, listSessionsStatus403Schema, listSessionsStatus404Schema, listSessionsStatus410Schema, listSessionsStatus429Schema, listSessionsStatus500Schema, listSharedEnvVariableErrorSchema, listSharedEnvVariableQueryExcludeIdsSchema, listSharedEnvVariableQueryExcludeProjectIdSchema, listSharedEnvVariableQueryIdsSchema, listSharedEnvVariableQueryProjectIdSchema, listSharedEnvVariableQuerySearchSchema, listSharedEnvVariableQuerySlugSchema, listSharedEnvVariableQueryTeamIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsErrorSchema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsErrorSchema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2ErrorSchema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsErrorSchema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainErrorSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainErrorSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsErrorSchema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaErrorSchema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamErrorSchema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassErrorSchema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectErrorSchema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesErrorSchema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, propertyKeySchema, putFirewallConfigErrorSchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupErrorSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectErrorSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkErrorSchema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readSessionFileErrorSchema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsErrorSchema, recordEventsHeaderXArtifactClientCiSchema, recordEventsHeaderXArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpErrorSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertErrorSchema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentErrorSchema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainErrorSchema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvErrorSchema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberErrorSchema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordErrorSchema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionErrorSchema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberErrorSchema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainErrorSchema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceDomainsByDomainRecordsErrorSchema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamErrorSchema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteErrorSchema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromoteErrorSchema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestPromoteStatus422Schema, requestRollbackErrorSchema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckErrorSchema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupErrorSchema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsErrorSchema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, revokeInstallationCredentialErrorSchema, revokeInstallationCredentialPathIntegrationConfigurationIdSchema, revokeInstallationCredentialResponseSchema, revokeInstallationCredentialStatus200Schema, revokeInstallationCredentialStatus400Schema, revokeInstallationCredentialStatus401Schema, revokeInstallationCredentialStatus403Schema, revokeInstallationCredentialStatus404Schema, revokeInstallationCredentialStatus409Schema, revokeInstallationCredentialStatus410Schema, revokeKmsSigningKeyErrorSchema, revokeKmsSigningKeyPathIssuerIdSchema, revokeKmsSigningKeyPathKeyIdSchema, revokeKmsSigningKeyQuerySlugSchema, revokeKmsSigningKeyQueryTeamIdSchema, revokeKmsSigningKeyResponseSchema, revokeKmsSigningKeyStatus200Schema, revokeKmsSigningKeyStatus400Schema, revokeKmsSigningKeyStatus401Schema, revokeKmsSigningKeyStatus403Schema, revokeKmsSigningKeyStatus404Schema, revokeKmsSigningKeyStatus409Schema, revokeKmsSigningKeyStatus410Schema, rotateInstallationCredentialErrorSchema, rotateInstallationCredentialPathIntegrationConfigurationIdSchema, rotateInstallationCredentialResponseSchema, rotateInstallationCredentialStatus200Schema, rotateInstallationCredentialStatus400Schema, rotateInstallationCredentialStatus401Schema, rotateInstallationCredentialStatus403Schema, rotateInstallationCredentialStatus404Schema, rotateInstallationCredentialStatus409Schema, rotateInstallationCredentialStatus410Schema, runSessionCommandErrorSchema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoErrorSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, signKmsMessageErrorSchema, signKmsMessagePathIssuerIdSchema, signKmsMessageResponseSchema, signKmsMessageStatus200Schema, signKmsMessageStatus400Schema, signKmsMessageStatus401Schema, signKmsMessageStatus403Schema, signKmsMessageStatus404Schema, signKmsMessageStatus429Schema, signKmsTokenErrorSchema, signKmsTokenPathIssuerIdSchema, signKmsTokenResponseSchema, signKmsTokenStatus200Schema, signKmsTokenStatus400Schema, signKmsTokenStatus401Schema, signKmsTokenStatus403Schema, signKmsTokenStatus404Schema, signKmsTokenStatus429Schema, snapshotSchema, stageRedirectsErrorSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesErrorSchema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleaseErrorSchema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusErrorSchema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionErrorSchema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataErrorSchema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoiceErrorSchema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesErrorSchema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainErrorSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainErrorSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariableErrorSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectErrorSchema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupErrorSchema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectErrorSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleErrorSchema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigErrorSchema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeErrorSchema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckErrorSchema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateCustomEnvironmentErrorSchema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunErrorSchema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewErrorSchema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversErrorSchema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainErrorSchema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigErrorSchema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigErrorSchema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagErrorSchema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentErrorSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsErrorSchema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationErrorSchema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionErrorSchema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoiceErrorSchema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateKmsIssuerErrorSchema, updateKmsIssuerPathIssuerIdSchema, updateKmsIssuerPolicyErrorSchema, updateKmsIssuerPolicyPathIssuerIdSchema, updateKmsIssuerPolicyPathKindSchema, updateKmsIssuerPolicyPathPolicyKeySchema, updateKmsIssuerPolicyQuerySlugSchema, updateKmsIssuerPolicyQueryTeamIdSchema, updateKmsIssuerPolicyResponseSchema, updateKmsIssuerPolicyStatus200Schema, updateKmsIssuerPolicyStatus400Schema, updateKmsIssuerPolicyStatus401Schema, updateKmsIssuerPolicyStatus403Schema, updateKmsIssuerPolicyStatus404Schema, updateKmsIssuerPolicyStatus410Schema, updateKmsIssuerQuerySlugSchema, updateKmsIssuerQueryTeamIdSchema, updateKmsIssuerResponseSchema, updateKmsIssuerStatus200Schema, updateKmsIssuerStatus400Schema, updateKmsIssuerStatus401Schema, updateKmsIssuerStatus403Schema, updateKmsIssuerStatus404Schema, updateKmsIssuerStatus410Schema, updateMicrofrontendsErrorSchema, updateMicrofrontendsGroupErrorSchema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkErrorSchema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectErrorSchema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updateProjectCheckErrorSchema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainErrorSchema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectErrorSchema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassErrorSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordErrorSchema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourceErrorSchema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdErrorSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsErrorSchema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigErrorSchema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsErrorSchema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxErrorSchema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyErrorSchema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableErrorSchema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsErrorSchema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberErrorSchema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionErrorSchema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactErrorSchema, uploadArtifactHeaderContentLengthSchema, uploadArtifactHeaderXArtifactClientCiSchema, uploadArtifactHeaderXArtifactClientInteractiveSchema, uploadArtifactHeaderXArtifactDirtyHashSchema, uploadArtifactHeaderXArtifactDurationSchema, uploadArtifactHeaderXArtifactShaSchema, uploadArtifactHeaderXArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertErrorSchema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileErrorSchema, uploadFileHeaderContentLengthSchema, uploadFileHeaderXNowDigestSchema, uploadFileHeaderXNowSizeSchema, uploadFileHeaderXVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarErrorSchema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesErrorSchema, writeSessionFilesHeaderXCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
|
|
16716
|
+
export { aCLActionSchema, aPIKeyQuotaSchema, aPIKeySchema, acceptProjectTransferRequestErrorSchema, acceptProjectTransferRequestPathCodeSchema, acceptProjectTransferRequestQuerySlugSchema, acceptProjectTransferRequestQueryTeamIdSchema, acceptProjectTransferRequestResponseSchema, acceptProjectTransferRequestStatus202Schema, acceptProjectTransferRequestStatus400Schema, acceptProjectTransferRequestStatus401Schema, acceptProjectTransferRequestStatus403Schema, acceptProjectTransferRequestStatus404Schema, acceptProjectTransferRequestStatus410Schema, acceptProjectTransferRequestStatus422Schema, activateKmsSigningKeyErrorSchema, activateKmsSigningKeyPathIssuerIdSchema, activateKmsSigningKeyPathKeyIdSchema, activateKmsSigningKeyQuerySlugSchema, activateKmsSigningKeyQueryTeamIdSchema, activateKmsSigningKeyResponseSchema, activateKmsSigningKeyStatus200Schema, activateKmsSigningKeyStatus400Schema, activateKmsSigningKeyStatus401Schema, activateKmsSigningKeyStatus403Schema, activateKmsSigningKeyStatus404Schema, activateKmsSigningKeyStatus409Schema, activateKmsSigningKeyStatus410Schema, addBypassIpErrorSchema, addBypassIpQueryProjectIdSchema, addBypassIpQuerySlugSchema, addBypassIpQueryTeamIdSchema, addBypassIpResponseSchema, addBypassIpStatus200Schema, addBypassIpStatus400Schema, addBypassIpStatus401Schema, addBypassIpStatus402Schema, addBypassIpStatus403Schema, addBypassIpStatus404Schema, addBypassIpStatus410Schema, addBypassIpStatus500Schema, addProjectDomainErrorSchema, addProjectDomainPathIdOrNameSchema, addProjectDomainQuerySlugSchema, addProjectDomainQueryTeamIdSchema, addProjectDomainResponseSchema, addProjectDomainStatus200Schema, addProjectDomainStatus400Schema, addProjectDomainStatus401Schema, addProjectDomainStatus402Schema, addProjectDomainStatus403Schema, addProjectDomainStatus409Schema, addProjectDomainStatus410Schema, addProjectMemberErrorSchema, addProjectMemberPathIdOrNameSchema, addProjectMemberQuerySlugSchema, addProjectMemberQueryTeamIdSchema, addProjectMemberResponseSchema, addProjectMemberStatus200Schema, addProjectMemberStatus400Schema, addProjectMemberStatus401Schema, addProjectMemberStatus403Schema, addProjectMemberStatus410Schema, addProjectMemberStatus500Schema, addRepositoryPermissionErrorSchema, addRepositoryPermissionPathIdOrNameSchema, addRepositoryPermissionQueryProjectIdSchema, addRepositoryPermissionQuerySlugSchema, addRepositoryPermissionQueryTeamIdSchema, addRepositoryPermissionResponseSchema, addRepositoryPermissionStatus200Schema, addRepositoryPermissionStatus400Schema, addRepositoryPermissionStatus401Schema, addRepositoryPermissionStatus403Schema, addRepositoryPermissionStatus404Schema, addRepositoryPermissionStatus410Schema, addRouteErrorSchema, addRoutePathProjectIdSchema, addRouteQuerySlugSchema, addRouteQueryTeamIdSchema, addRouteResponseSchema, addRouteStatus200Schema, addRouteStatus400Schema, addRouteStatus401Schema, addRouteStatus403Schema, addRouteStatus409Schema, addRouteStatus410Schema, addRouteStatus500Schema, additionalContactInfoRequiredSchema, aggregateEventsErrorSchema, aggregateEventsQueryBySchema, aggregateEventsQueryFilterSchema, aggregateEventsQueryLimitSchema, aggregateEventsQueryProjectIdSchema, aggregateEventsQuerySinceSchema, aggregateEventsQuerySlugSchema, aggregateEventsQueryTeamIdSchema, aggregateEventsQueryUntilSchema, aggregateEventsResponseSchema, aggregateEventsStatus200Schema, aggregateEventsStatus400Schema, aggregateEventsStatus401Schema, aggregateEventsStatus402Schema, aggregateEventsStatus403Schema, aggregateEventsStatus404Schema, aggregateEventsStatus410Schema, aggregateEventsStatus503Schema, aggregatePageviewsErrorSchema, aggregatePageviewsQueryBySchema, aggregatePageviewsQueryFilterSchema, aggregatePageviewsQueryLimitSchema, aggregatePageviewsQueryProjectIdSchema, aggregatePageviewsQuerySinceSchema, aggregatePageviewsQuerySlugSchema, aggregatePageviewsQueryTeamIdSchema, aggregatePageviewsQueryUntilSchema, aggregatePageviewsResponseSchema, aggregatePageviewsStatus200Schema, aggregatePageviewsStatus400Schema, aggregatePageviewsStatus401Schema, aggregatePageviewsStatus402Schema, aggregatePageviewsStatus403Schema, aggregatePageviewsStatus404Schema, aggregatePageviewsStatus410Schema, aggregatePageviewsStatus503Schema, aiGatewayProviderOptionBagSchema, aiGatewayRuleListSchema, aiGatewayRuleSchema, aiGatewayVirtualModelConfigListSchema, aiGatewayVirtualModelConfigSchema, approveRollingReleaseStageErrorSchema, approveRollingReleaseStagePathIdOrNameSchema, approveRollingReleaseStageQuerySlugSchema, approveRollingReleaseStageQueryTeamIdSchema, approveRollingReleaseStageResponseSchema, approveRollingReleaseStageStatus200Schema, approveRollingReleaseStageStatus400Schema, approveRollingReleaseStageStatus401Schema, approveRollingReleaseStageStatus403Schema, approveRollingReleaseStageStatus404Schema, approveRollingReleaseStageStatus410Schema, approveRollingReleaseStageStatus500Schema, artifactQueryErrorSchema, artifactQueryQuerySlugSchema, artifactQueryQueryTeamIdSchema, artifactQueryResponseSchema, artifactQueryStatus200Schema, artifactQueryStatus400Schema, artifactQueryStatus401Schema, artifactQueryStatus402Schema, artifactQueryStatus403Schema, artifactQueryStatus410Schema, assignAliasErrorSchema, assignAliasPathIdSchema, assignAliasQuerySlugSchema, assignAliasQueryTeamIdSchema, assignAliasResponseSchema, assignAliasStatus200Schema, assignAliasStatus400Schema, assignAliasStatus401Schema, assignAliasStatus402Schema, assignAliasStatus403Schema, assignAliasStatus404Schema, assignAliasStatus409Schema, assignAliasStatus410Schema, authTokenSchema, authUserLimitedSchema, authUserSchema, badRequestSchema, batchRemoveProjectEnvErrorSchema, batchRemoveProjectEnvPathIdOrNameSchema, batchRemoveProjectEnvQuerySlugSchema, batchRemoveProjectEnvQueryTeamIdSchema, batchRemoveProjectEnvResponseSchema, batchRemoveProjectEnvStatus200Schema, batchRemoveProjectEnvStatus400Schema, batchRemoveProjectEnvStatus401Schema, batchRemoveProjectEnvStatus403Schema, batchRemoveProjectEnvStatus404Schema, batchRemoveProjectEnvStatus409Schema, batchRemoveProjectEnvStatus410Schema, boughtTooRecentlySchema, buyCreditsErrorSchema, buyCreditsQuerySlugSchema, buyCreditsQuerySourceSchema, buyCreditsQueryTeamIdSchema, buyCreditsResponseSchema, buyCreditsStatus200Schema, buyCreditsStatus400Schema, buyCreditsStatus401Schema, buyCreditsStatus402Schema, buyCreditsStatus403Schema, buyCreditsStatus404Schema, buyCreditsStatus409Schema, buyCreditsStatus410Schema, buyCreditsStatus500Schema, buyDomainsErrorSchema, buyDomainsQueryTeamIdSchema, buyDomainsResponseSchema, buyDomainsStatus200Schema, buyDomainsStatus400Schema, buyDomainsStatus401Schema, buyDomainsStatus403Schema, buyDomainsStatus429Schema, buyDomainsStatus500Schema, buySingleDomainErrorSchema, buySingleDomainPathDomainSchema, buySingleDomainQueryTeamIdSchema, buySingleDomainResponseSchema, buySingleDomainStatus200Schema, buySingleDomainStatus400Schema, buySingleDomainStatus401Schema, buySingleDomainStatus403Schema, buySingleDomainStatus429Schema, buySingleDomainStatus500Schema, cancelDeploymentErrorSchema, cancelDeploymentPathIdSchema, cancelDeploymentQuerySlugSchema, cancelDeploymentQueryTeamIdSchema, cancelDeploymentResponseSchema, cancelDeploymentStatus200Schema, cancelDeploymentStatus400Schema, cancelDeploymentStatus401Schema, cancelDeploymentStatus403Schema, cancelDeploymentStatus404Schema, cancelDeploymentStatus410Schema, claimDomainOwnershipErrorSchema, claimDomainOwnershipPathDomainSchema, claimDomainOwnershipQuerySlugSchema, claimDomainOwnershipQueryTeamIdSchema, claimDomainOwnershipResponseSchema, claimDomainOwnershipStatus200Schema, claimDomainOwnershipStatus400Schema, claimDomainOwnershipStatus401Schema, claimDomainOwnershipStatus403Schema, claimDomainOwnershipStatus404Schema, claimDomainOwnershipStatus410Schema, clearRepositoryPermissionsErrorSchema, clearRepositoryPermissionsPathIdOrNameSchema, clearRepositoryPermissionsQueryProjectIdSchema, clearRepositoryPermissionsQuerySlugSchema, clearRepositoryPermissionsQueryTeamIdSchema, clearRepositoryPermissionsResponseSchema, clearRepositoryPermissionsStatus204Schema, clearRepositoryPermissionsStatus400Schema, clearRepositoryPermissionsStatus401Schema, clearRepositoryPermissionsStatus403Schema, clearRepositoryPermissionsStatus404Schema, clearRepositoryPermissionsStatus410Schema, completeRollingReleaseErrorSchema, completeRollingReleasePathIdOrNameSchema, completeRollingReleaseQuerySlugSchema, completeRollingReleaseQueryTeamIdSchema, completeRollingReleaseResponseSchema, completeRollingReleaseStatus200Schema, completeRollingReleaseStatus400Schema, completeRollingReleaseStatus401Schema, completeRollingReleaseStatus403Schema, completeRollingReleaseStatus404Schema, completeRollingReleaseStatus410Schema, connectConnectorCreateDataSchema, connectConnectorCreateResultSchema, connectConnectorListSchema, connectConnectorProjectConnectionListSchema, connectConnectorSchema, connectConnectorUpdateDataSchema, connectConnectorUpdateResultSchema, connectCreateConnectorRequestSchema, connectEnvironmentSchema, connectErrorSchema, connectIntegrationResourceToProjectErrorSchema, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema, connectIntegrationResourceToProjectPathResourceIdSchema, connectIntegrationResourceToProjectQuerySlugSchema, connectIntegrationResourceToProjectQueryTeamIdSchema, connectIntegrationResourceToProjectResponseSchema, connectIntegrationResourceToProjectStatus201Schema, connectIntegrationResourceToProjectStatus400Schema, connectIntegrationResourceToProjectStatus401Schema, connectIntegrationResourceToProjectStatus403Schema, connectIntegrationResourceToProjectStatus404Schema, connectIntegrationResourceToProjectStatus410Schema, connectPaginationSchema, connectProjectConnectionSchema, connectProjectConnectorConnectionListSchema, connectReconsentSchema, connectReplaceTriggerDestinationsRequestSchema, connectServiceSyncErrorSchema, connectServiceSyncSchema, connectTriggerConfigurationSchema, connectTriggerDestinationInputSchema, connectTriggerDestinationSchema, connectUpdateConnectorRequestSchema, connectUpsertProjectConnectionRequestSchema, contactPendingVerificationSchema, contactVerifiedSchema, countEventsErrorSchema, countEventsQueryFilterSchema, countEventsQueryProjectIdSchema, countEventsQuerySinceSchema, countEventsQuerySlugSchema, countEventsQueryTeamIdSchema, countEventsQueryUntilSchema, countEventsResponseSchema, countEventsStatus200Schema, countEventsStatus400Schema, countEventsStatus401Schema, countEventsStatus402Schema, countEventsStatus403Schema, countEventsStatus404Schema, countEventsStatus410Schema, countEventsStatus503Schema, countPageviewsErrorSchema, countPageviewsQueryFilterSchema, countPageviewsQueryProjectIdSchema, countPageviewsQuerySinceSchema, countPageviewsQuerySlugSchema, countPageviewsQueryTeamIdSchema, countPageviewsQueryUntilSchema, countPageviewsResponseSchema, countPageviewsStatus200Schema, countPageviewsStatus400Schema, countPageviewsStatus401Schema, countPageviewsStatus402Schema, countPageviewsStatus403Schema, countPageviewsStatus404Schema, countPageviewsStatus410Schema, countPageviewsStatus503Schema, countryCodeSchema, createAccessGroupErrorSchema, createAccessGroupProjectErrorSchema, createAccessGroupProjectPathAccessGroupIdOrNameSchema, createAccessGroupProjectQuerySlugSchema, createAccessGroupProjectQueryTeamIdSchema, createAccessGroupProjectResponseSchema, createAccessGroupProjectStatus200Schema, createAccessGroupProjectStatus400Schema, createAccessGroupProjectStatus401Schema, createAccessGroupProjectStatus403Schema, createAccessGroupProjectStatus410Schema, createAccessGroupQuerySlugSchema, createAccessGroupQueryTeamIdSchema, createAccessGroupResponseSchema, createAccessGroupStatus200Schema, createAccessGroupStatus400Schema, createAccessGroupStatus401Schema, createAccessGroupStatus403Schema, createAccessGroupStatus410Schema, createAiGatewayRuleErrorSchema, createAiGatewayRuleQuerySlugSchema, createAiGatewayRuleQueryTeamIdSchema, createAiGatewayRuleResponseSchema, createAiGatewayRuleStatus201Schema, createAiGatewayRuleStatus400Schema, createAiGatewayRuleStatus401Schema, createAiGatewayRuleStatus403Schema, createAiGatewayRuleStatus409Schema, createAiGatewayRuleStatus410Schema, createAiGatewayRuleStatus500Schema, createAiGatewayVirtualModelConfigErrorSchema, createAiGatewayVirtualModelConfigQuerySlugSchema, createAiGatewayVirtualModelConfigQueryTeamIdSchema, createAiGatewayVirtualModelConfigResponseSchema, createAiGatewayVirtualModelConfigStatus201Schema, createAiGatewayVirtualModelConfigStatus400Schema, createAiGatewayVirtualModelConfigStatus401Schema, createAiGatewayVirtualModelConfigStatus403Schema, createAiGatewayVirtualModelConfigStatus409Schema, createAiGatewayVirtualModelConfigStatus410Schema, createAiGatewayVirtualModelConfigStatus429Schema, createAiGatewayVirtualModelConfigStatus500Schema, createApiKeysErrorSchema, createApiKeysResponseSchema, createApiKeysStatus200Schema, createApiKeysStatus400Schema, createApiKeysStatus401Schema, createApiKeysStatus403Schema, createApiKeysStatus409Schema, createApiKeysStatus410Schema, createApiKeysStatus429Schema, createApiKeysStatus500Schema, createAuthTokenErrorSchema, createAuthTokenQuerySlugSchema, createAuthTokenQueryTeamIdSchema, createAuthTokenResponseSchema, createAuthTokenStatus200Schema, createAuthTokenStatus400Schema, createAuthTokenStatus401Schema, createAuthTokenStatus403Schema, createAuthTokenStatus404Schema, createAuthTokenStatus410Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsErrorSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema, createCheckErrorSchema, createCheckPathDeploymentIdSchema, createCheckQuerySlugSchema, createCheckQueryTeamIdSchema, createCheckResponseSchema, createCheckStatus200Schema, createCheckStatus400Schema, createCheckStatus401Schema, createCheckStatus403Schema, createCheckStatus404Schema, createCheckStatus410Schema, createConfigurableLogDrainErrorSchema, createConfigurableLogDrainQuerySlugSchema, createConfigurableLogDrainQueryTeamIdSchema, createConfigurableLogDrainResponseSchema, createConfigurableLogDrainStatus200Schema, createConfigurableLogDrainStatus400Schema, createConfigurableLogDrainStatus401Schema, createConfigurableLogDrainStatus403Schema, createConfigurableLogDrainStatus410Schema, createConnectorAuthorizationRequestErrorSchema, createConnectorAuthorizationRequestPathConnectorSchema, createConnectorAuthorizationRequestResponseSchema, createConnectorAuthorizationRequestStatus200Schema, createConnectorAuthorizationRequestStatus400Schema, createConnectorAuthorizationRequestStatus401Schema, createConnectorAuthorizationRequestStatus403Schema, createConnectorAuthorizationRequestStatus404Schema, createConnectorAuthorizationRequestStatus410Schema, createConnectorErrorSchema, createConnectorQuerySlugSchema, createConnectorQueryTeamIdSchema, createConnectorResponseSchema, createConnectorStatus201Schema, createConnectorStatus400Schema, createConnectorStatus401Schema, createConnectorStatus403Schema, createConnectorStatus404Schema, createConnectorStatus409Schema, createConnectorStatus410Schema, createConnectorStatus422Schema, createConnectorStatus500Schema, createConnectorStatus502Schema, createCustomEnvironmentErrorSchema, createCustomEnvironmentPathIdOrNameSchema, createCustomEnvironmentQuerySlugSchema, createCustomEnvironmentQueryTeamIdSchema, createCustomEnvironmentResponseSchema, createCustomEnvironmentStatus201Schema, createCustomEnvironmentStatus400Schema, createCustomEnvironmentStatus401Schema, createCustomEnvironmentStatus402Schema, createCustomEnvironmentStatus403Schema, createCustomEnvironmentStatus410Schema, createCustomEnvironmentStatus500Schema, createDeploymentCheckRunErrorSchema, createDeploymentCheckRunPathDeploymentIdSchema, createDeploymentCheckRunQuerySlugSchema, createDeploymentCheckRunQueryTeamIdSchema, createDeploymentCheckRunResponseSchema, createDeploymentCheckRunStatus200Schema, createDeploymentCheckRunStatus400Schema, createDeploymentCheckRunStatus401Schema, createDeploymentCheckRunStatus403Schema, createDeploymentCheckRunStatus404Schema, createDeploymentCheckRunStatus410Schema, createDeploymentCheckRunStatus500Schema, createDeploymentErrorSchema, createDeploymentQueryForceNewSchema, createDeploymentQuerySkipAutoDetectionConfirmationSchema, createDeploymentQuerySlugSchema, createDeploymentQueryTeamIdSchema, createDeploymentResponseSchema, createDeploymentStatus200Schema, createDeploymentStatus400Schema, createDeploymentStatus401Schema, createDeploymentStatus402Schema, createDeploymentStatus403Schema, createDeploymentStatus404Schema, createDeploymentStatus409Schema, createDeploymentStatus410Schema, createDeploymentStatus426Schema, createDeploymentStatus429Schema, createDeploymentStatus500Schema, createDeploymentStatus503Schema, createDrainErrorSchema, createDrainQuerySlugSchema, createDrainQueryTeamIdSchema, createDrainResponseSchema, createDrainStatus200Schema, createDrainStatus400Schema, createDrainStatus401Schema, createDrainStatus402Schema, createDrainStatus403Schema, createDrainStatus410Schema, createEdgeConfigErrorSchema, createEdgeConfigQuerySlugSchema, createEdgeConfigQueryTeamIdSchema, createEdgeConfigResponseSchema, createEdgeConfigStatus201Schema, createEdgeConfigStatus400Schema, createEdgeConfigStatus401Schema, createEdgeConfigStatus402Schema, createEdgeConfigStatus403Schema, createEdgeConfigStatus410Schema, createEdgeConfigTokenErrorSchema, createEdgeConfigTokenPathEdgeConfigIdSchema, createEdgeConfigTokenQuerySlugSchema, createEdgeConfigTokenQueryTeamIdSchema, createEdgeConfigTokenResponseSchema, createEdgeConfigTokenStatus201Schema, createEdgeConfigTokenStatus400Schema, createEdgeConfigTokenStatus401Schema, createEdgeConfigTokenStatus402Schema, createEdgeConfigTokenStatus403Schema, createEdgeConfigTokenStatus404Schema, createEdgeConfigTokenStatus409Schema, createEdgeConfigTokenStatus410Schema, createEventErrorSchema, createEventPathIntegrationConfigurationIdSchema, createEventResponseSchema, createEventStatus201Schema, createEventStatus400Schema, createEventStatus401Schema, createEventStatus403Schema, createEventStatus404Schema, createEventStatus410Schema, createFlagErrorSchema, createFlagPathProjectIdOrNameSchema, createFlagQuerySlugSchema, createFlagQueryTeamIdSchema, createFlagResponseSchema, createFlagSegmentErrorSchema, createFlagSegmentPathProjectIdOrNameSchema, createFlagSegmentQuerySlugSchema, createFlagSegmentQueryTeamIdSchema, createFlagSegmentResponseSchema, createFlagSegmentStatus201Schema, createFlagSegmentStatus400Schema, createFlagSegmentStatus401Schema, createFlagSegmentStatus402Schema, createFlagSegmentStatus403Schema, createFlagSegmentStatus404Schema, createFlagSegmentStatus409Schema, createFlagSegmentStatus410Schema, createFlagStatus201Schema, createFlagStatus400Schema, createFlagStatus401Schema, createFlagStatus402Schema, createFlagStatus403Schema, createFlagStatus404Schema, createFlagStatus409Schema, createFlagStatus410Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsErrorSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema, createIntegrationStoreDirectErrorSchema, createIntegrationStoreDirectQuerySlugSchema, createIntegrationStoreDirectQueryTeamIdSchema, createIntegrationStoreDirectResponseSchema, createIntegrationStoreDirectStatus200Schema, createIntegrationStoreDirectStatus400Schema, createIntegrationStoreDirectStatus401Schema, createIntegrationStoreDirectStatus402Schema, createIntegrationStoreDirectStatus403Schema, createIntegrationStoreDirectStatus404Schema, createIntegrationStoreDirectStatus409Schema, createIntegrationStoreDirectStatus410Schema, createIntegrationStoreDirectStatus500Schema, createKmsIssuerErrorSchema, createKmsIssuerPolicyErrorSchema, createKmsIssuerPolicyPathIssuerIdSchema, createKmsIssuerPolicyQuerySlugSchema, createKmsIssuerPolicyQueryTeamIdSchema, createKmsIssuerPolicyResponseSchema, createKmsIssuerPolicyStatus201Schema, createKmsIssuerPolicyStatus400Schema, createKmsIssuerPolicyStatus401Schema, createKmsIssuerPolicyStatus403Schema, createKmsIssuerPolicyStatus404Schema, createKmsIssuerPolicyStatus410Schema, createKmsIssuerQuerySlugSchema, createKmsIssuerQueryTeamIdSchema, createKmsIssuerResponseSchema, createKmsIssuerStatus201Schema, createKmsIssuerStatus400Schema, createKmsIssuerStatus401Schema, createKmsIssuerStatus403Schema, createKmsIssuerStatus404Schema, createKmsIssuerStatus410Schema, createKmsSigningKeyErrorSchema, createKmsSigningKeyPathIssuerIdSchema, createKmsSigningKeyQuerySlugSchema, createKmsSigningKeyQueryTeamIdSchema, createKmsSigningKeyResponseSchema, createKmsSigningKeyStatus200Schema, createKmsSigningKeyStatus400Schema, createKmsSigningKeyStatus401Schema, createKmsSigningKeyStatus403Schema, createKmsSigningKeyStatus404Schema, createKmsSigningKeyStatus409Schema, createKmsSigningKeyStatus410Schema, createLogDrainErrorSchema, createLogDrainQuerySlugSchema, createLogDrainQueryTeamIdSchema, createLogDrainResponseSchema, createLogDrainStatus200Schema, createLogDrainStatus400Schema, createLogDrainStatus401Schema, createLogDrainStatus403Schema, createLogDrainStatus410Schema, createMicrofrontendsGroupWithApplicationsErrorSchema, createMicrofrontendsGroupWithApplicationsQuerySlugSchema, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema, createMicrofrontendsGroupWithApplicationsResponseSchema, createMicrofrontendsGroupWithApplicationsStatus200Schema, createMicrofrontendsGroupWithApplicationsStatus400Schema, createMicrofrontendsGroupWithApplicationsStatus401Schema, createMicrofrontendsGroupWithApplicationsStatus403Schema, createMicrofrontendsGroupWithApplicationsStatus410Schema, createMicrofrontendsGroupWithApplicationsStatus500Schema, createNetworkErrorSchema, createNetworkQuerySlugSchema, createNetworkQueryTeamIdSchema, createNetworkResponseSchema, createNetworkStatus201Schema, createNetworkStatus400Schema, createNetworkStatus401Schema, createNetworkStatus402Schema, createNetworkStatus403Schema, createNetworkStatus409Schema, createNetworkStatus410Schema, createObservabilityQueryErrorSchema, createObservabilityQueryResponseSchema, createObservabilityQueryStatus200Schema, createObservabilityQueryStatus400Schema, createObservabilityQueryStatus401Schema, createObservabilityQueryStatus402Schema, createObservabilityQueryStatus403Schema, createObservabilityQueryStatus408Schema, createObservabilityQueryStatus410Schema, createObservabilityQueryStatus413Schema, createObservabilityQueryStatus422Schema, createObservabilityQueryStatus500Schema, createObservabilityQueryStatus503Schema, createOrTransferDomainErrorSchema, createOrTransferDomainQuerySlugSchema, createOrTransferDomainQueryTeamIdSchema, createOrTransferDomainResponseSchema, createOrTransferDomainStatus200Schema, createOrTransferDomainStatus400Schema, createOrTransferDomainStatus401Schema, createOrTransferDomainStatus402Schema, createOrTransferDomainStatus403Schema, createOrTransferDomainStatus404Schema, createOrTransferDomainStatus409Schema, createOrTransferDomainStatus410Schema, createPrivateLinkEndpointErrorSchema, createPrivateLinkEndpointQuerySlugSchema, createPrivateLinkEndpointQueryTeamIdSchema, createPrivateLinkEndpointResponseSchema, createPrivateLinkEndpointStatus201Schema, createPrivateLinkEndpointStatus400Schema, createPrivateLinkEndpointStatus401Schema, createPrivateLinkEndpointStatus403Schema, createPrivateLinkEndpointStatus404Schema, createPrivateLinkEndpointStatus409Schema, createPrivateLinkEndpointStatus410Schema, createProjectCheckErrorSchema, createProjectCheckPathProjectIdOrNameSchema, createProjectCheckQuerySlugSchema, createProjectCheckQueryTeamIdSchema, createProjectCheckResponseSchema, createProjectCheckStatus200Schema, createProjectCheckStatus400Schema, createProjectCheckStatus401Schema, createProjectCheckStatus403Schema, createProjectCheckStatus410Schema, createProjectCheckStatus500Schema, createProjectEnvErrorSchema, createProjectEnvPathIdOrNameSchema, createProjectEnvQuerySlugSchema, createProjectEnvQueryTeamIdSchema, createProjectEnvQueryUpsertSchema, createProjectEnvResponseSchema, createProjectEnvStatus201Schema, createProjectEnvStatus400Schema, createProjectEnvStatus401Schema, createProjectEnvStatus402Schema, createProjectEnvStatus403Schema, createProjectEnvStatus404Schema, createProjectEnvStatus409Schema, createProjectEnvStatus410Schema, createProjectEnvStatus429Schema, createProjectEnvStatus500Schema, createProjectErrorSchema, createProjectQuerySlugSchema, createProjectQueryTeamIdSchema, createProjectResponseSchema, createProjectStatus200Schema, createProjectStatus400Schema, createProjectStatus401Schema, createProjectStatus402Schema, createProjectStatus403Schema, createProjectStatus404Schema, createProjectStatus409Schema, createProjectStatus410Schema, createProjectStatus428Schema, createProjectStatus429Schema, createProjectStatus500Schema, createProjectTransferRequestErrorSchema, createProjectTransferRequestPathIdOrNameSchema, createProjectTransferRequestQuerySlugSchema, createProjectTransferRequestQueryTeamIdSchema, createProjectTransferRequestResponseSchema, createProjectTransferRequestStatus200Schema, createProjectTransferRequestStatus400Schema, createProjectTransferRequestStatus401Schema, createProjectTransferRequestStatus403Schema, createProjectTransferRequestStatus409Schema, createProjectTransferRequestStatus410Schema, createRecordErrorSchema, createRecordPathDomainSchema, createRecordQuerySlugSchema, createRecordQueryTeamIdSchema, createRecordResponseSchema, createRecordStatus200Schema, createRecordStatus400Schema, createRecordStatus401Schema, createRecordStatus402Schema, createRecordStatus403Schema, createRecordStatus404Schema, createRecordStatus409Schema, createRecordStatus410Schema, createRepositoryErrorSchema, createRepositoryQuerySlugSchema, createRepositoryQueryTeamIdSchema, createRepositoryResponseSchema, createRepositoryStatus200Schema, createRepositoryStatus400Schema, createRepositoryStatus401Schema, createRepositoryStatus402Schema, createRepositoryStatus403Schema, createRepositoryStatus404Schema, createRepositoryStatus409Schema, createRepositoryStatus410Schema, createSandboxesByNameForkV2ErrorSchema, createSandboxesByNameForkV2PathNameSchema, createSandboxesByNameForkV2QueryProjectIdSchema, createSandboxesByNameForkV2QuerySlugSchema, createSandboxesByNameForkV2QueryTeamIdSchema, createSandboxesByNameForkV2ResponseSchema, createSandboxesByNameForkV2Status200Schema, createSandboxesByNameForkV2Status400Schema, createSandboxesByNameForkV2Status401Schema, createSandboxesByNameForkV2Status402Schema, createSandboxesByNameForkV2Status403Schema, createSandboxesByNameForkV2Status404Schema, createSandboxesByNameForkV2Status409Schema, createSandboxesByNameForkV2Status410Schema, createSandboxesByNameForkV2Status422Schema, createSandboxesByNameForkV2Status429Schema, createSandboxesByNameForkV2Status500Schema, createSandboxesByNameForkV3ErrorSchema, createSandboxesByNameForkV3PathNameSchema, createSandboxesByNameForkV3QueryProjectIdSchema, createSandboxesByNameForkV3QuerySlugSchema, createSandboxesByNameForkV3QueryTeamIdSchema, createSandboxesByNameForkV3ResponseSchema, createSandboxesByNameForkV3Status200Schema, createSandboxesByNameForkV3Status400Schema, createSandboxesByNameForkV3Status401Schema, createSandboxesByNameForkV3Status402Schema, createSandboxesByNameForkV3Status403Schema, createSandboxesByNameForkV3Status404Schema, createSandboxesByNameForkV3Status409Schema, createSandboxesByNameForkV3Status410Schema, createSandboxesByNameForkV3Status422Schema, createSandboxesByNameForkV3Status429Schema, createSandboxesByNameForkV3Status500Schema, createSandboxesSessionsBySessionIdSnapshotV2ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema, createSandboxesSessionsBySessionIdSnapshotV3ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema, createSandboxesV2ErrorSchema, createSandboxesV2QuerySlugSchema, createSandboxesV2QueryTeamIdSchema, createSandboxesV2ResponseSchema, createSandboxesV2Status200Schema, createSandboxesV2Status400Schema, createSandboxesV2Status401Schema, createSandboxesV2Status402Schema, createSandboxesV2Status403Schema, createSandboxesV2Status404Schema, createSandboxesV2Status409Schema, createSandboxesV2Status410Schema, createSandboxesV2Status422Schema, createSandboxesV2Status429Schema, createSandboxesV2Status500Schema, createSandboxesV3ErrorSchema, createSandboxesV3QuerySlugSchema, createSandboxesV3QueryTeamIdSchema, createSandboxesV3ResponseSchema, createSandboxesV3Status200Schema, createSandboxesV3Status400Schema, createSandboxesV3Status401Schema, createSandboxesV3Status402Schema, createSandboxesV3Status403Schema, createSandboxesV3Status404Schema, createSandboxesV3Status409Schema, createSandboxesV3Status410Schema, createSandboxesV3Status422Schema, createSandboxesV3Status429Schema, createSandboxesV3Status500Schema, createSandboxesV4ErrorSchema, createSandboxesV4QuerySlugSchema, createSandboxesV4QueryTeamIdSchema, createSandboxesV4ResponseSchema, createSandboxesV4Status200Schema, createSandboxesV4Status400Schema, createSandboxesV4Status401Schema, createSandboxesV4Status402Schema, createSandboxesV4Status403Schema, createSandboxesV4Status404Schema, createSandboxesV4Status409Schema, createSandboxesV4Status410Schema, createSandboxesV4Status422Schema, createSandboxesV4Status429Schema, createSandboxesV4Status500Schema, createSdkKeyErrorSchema, createSdkKeyPathProjectIdOrNameSchema, createSdkKeyQuerySlugSchema, createSdkKeyQueryTeamIdSchema, createSdkKeyResponseSchema, createSdkKeyStatus200Schema, createSdkKeyStatus400Schema, createSdkKeyStatus401Schema, createSdkKeyStatus402Schema, createSdkKeyStatus403Schema, createSdkKeyStatus404Schema, createSdkKeyStatus409Schema, createSdkKeyStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateErrorSchema, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema, createSecurityFirewallConfigByConfigVersionActivateResponseSchema, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema, createSessionDirectoryErrorSchema, createSessionDirectoryPathSessionIdSchema, createSessionDirectoryQuerySlugSchema, createSessionDirectoryQueryTeamIdSchema, createSessionDirectoryResponseSchema, createSessionDirectoryStatus200Schema, createSessionDirectoryStatus400Schema, createSessionDirectoryStatus401Schema, createSessionDirectoryStatus403Schema, createSessionDirectoryStatus404Schema, createSessionDirectoryStatus410Schema, createSessionDirectoryStatus422Schema, createSessionDirectoryStatus429Schema, createSessionDirectoryStatus500Schema, createSharedEnvVariableErrorSchema, createSharedEnvVariableQuerySlugSchema, createSharedEnvVariableQueryTeamIdSchema, createSharedEnvVariableResponseSchema, createSharedEnvVariableStatus201Schema, createSharedEnvVariableStatus400Schema, createSharedEnvVariableStatus401Schema, createSharedEnvVariableStatus402Schema, createSharedEnvVariableStatus403Schema, createSharedEnvVariableStatus410Schema, createSpeedInsightsToggleErrorSchema, createSpeedInsightsToggleQueryProjectIdSchema, createSpeedInsightsToggleResponseSchema, createSpeedInsightsToggleStatus200Schema, createSpeedInsightsToggleStatus400Schema, createSpeedInsightsToggleStatus401Schema, createSpeedInsightsToggleStatus402Schema, createSpeedInsightsToggleStatus403Schema, createSpeedInsightsToggleStatus410Schema, createStorageStoresBlobErrorSchema, createStorageStoresBlobResponseSchema, createStorageStoresBlobStatus200Schema, createStorageStoresBlobStatus400Schema, createStorageStoresBlobStatus401Schema, createStorageStoresBlobStatus402Schema, createStorageStoresBlobStatus403Schema, createStorageStoresBlobStatus404Schema, createStorageStoresBlobStatus409Schema, createStorageStoresBlobStatus410Schema, createStorageStoresBlobStatus429Schema, createTeamErrorSchema, createTeamResponseSchema, createTeamStatus200Schema, createTeamStatus400Schema, createTeamStatus401Schema, createTeamStatus403Schema, createTeamStatus404Schema, createTeamStatus409Schema, createTeamStatus410Schema, createTraceSessionErrorSchema, createTraceSessionQuerySlugSchema, createTraceSessionQueryTeamIdSchema, createTraceSessionResponseSchema, createTraceSessionStatus200Schema, createTraceSessionStatus400Schema, createTraceSessionStatus401Schema, createTraceSessionStatus403Schema, createTraceSessionStatus410Schema, createTraceSessionStatus422Schema, createWebInsightsToggleErrorSchema, createWebInsightsToggleQueryProjectIdSchema, createWebInsightsToggleResponseSchema, createWebInsightsToggleStatus200Schema, createWebInsightsToggleStatus400Schema, createWebInsightsToggleStatus401Schema, createWebInsightsToggleStatus403Schema, createWebInsightsToggleStatus410Schema, createWebhookErrorSchema, createWebhookQuerySlugSchema, createWebhookQueryTeamIdSchema, createWebhookResponseSchema, createWebhookStatus200Schema, createWebhookStatus400Schema, createWebhookStatus401Schema, createWebhookStatus403Schema, createWebhookStatus410Schema, dNSSECEnabledSchema, dangerouslyDeleteBySrcImagesErrorSchema, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema, dangerouslyDeleteBySrcImagesQuerySlugSchema, dangerouslyDeleteBySrcImagesQueryTeamIdSchema, dangerouslyDeleteBySrcImagesResponseSchema, dangerouslyDeleteBySrcImagesStatus200Schema, dangerouslyDeleteBySrcImagesStatus400Schema, dangerouslyDeleteBySrcImagesStatus401Schema, dangerouslyDeleteBySrcImagesStatus402Schema, dangerouslyDeleteBySrcImagesStatus403Schema, dangerouslyDeleteBySrcImagesStatus404Schema, dangerouslyDeleteBySrcImagesStatus410Schema, dangerouslyDeleteByTagsErrorSchema, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema, dangerouslyDeleteByTagsQuerySlugSchema, dangerouslyDeleteByTagsQueryTeamIdSchema, dangerouslyDeleteByTagsResponseSchema, dangerouslyDeleteByTagsStatus200Schema, dangerouslyDeleteByTagsStatus400Schema, dangerouslyDeleteByTagsStatus401Schema, dangerouslyDeleteByTagsStatus403Schema, dangerouslyDeleteByTagsStatus404Schema, dangerouslyDeleteByTagsStatus410Schema, dateFromStringSchema, deleteAccessGroupErrorSchema, deleteAccessGroupPathIdOrNameSchema, deleteAccessGroupProjectErrorSchema, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema, deleteAccessGroupProjectPathProjectIdSchema, deleteAccessGroupProjectQuerySlugSchema, deleteAccessGroupProjectQueryTeamIdSchema, deleteAccessGroupProjectResponseSchema, deleteAccessGroupProjectStatus200Schema, deleteAccessGroupProjectStatus400Schema, deleteAccessGroupProjectStatus401Schema, deleteAccessGroupProjectStatus403Schema, deleteAccessGroupProjectStatus410Schema, deleteAccessGroupQuerySlugSchema, deleteAccessGroupQueryTeamIdSchema, deleteAccessGroupResponseSchema, deleteAccessGroupStatus200Schema, deleteAccessGroupStatus400Schema, deleteAccessGroupStatus401Schema, deleteAccessGroupStatus403Schema, deleteAccessGroupStatus410Schema, deleteAiGatewayRuleErrorSchema, deleteAiGatewayRuleQueryRuleIdSchema, deleteAiGatewayRuleQuerySlugSchema, deleteAiGatewayRuleQueryTeamIdSchema, deleteAiGatewayRuleResponseSchema, deleteAiGatewayRuleStatus204Schema, deleteAiGatewayRuleStatus400Schema, deleteAiGatewayRuleStatus401Schema, deleteAiGatewayRuleStatus403Schema, deleteAiGatewayRuleStatus404Schema, deleteAiGatewayRuleStatus410Schema, deleteAiGatewayRuleStatus500Schema, deleteAiGatewayVirtualModelConfigBySlugErrorSchema, deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema, deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema, deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema, deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema, deleteAiGatewayVirtualModelConfigBySlugResponseSchema, deleteAiGatewayVirtualModelConfigBySlugStatus204Schema, deleteAiGatewayVirtualModelConfigBySlugStatus400Schema, deleteAiGatewayVirtualModelConfigBySlugStatus401Schema, deleteAiGatewayVirtualModelConfigBySlugStatus403Schema, deleteAiGatewayVirtualModelConfigBySlugStatus404Schema, deleteAiGatewayVirtualModelConfigBySlugStatus410Schema, deleteAiGatewayVirtualModelConfigBySlugStatus500Schema, deleteAiGatewayVirtualModelConfigErrorSchema, deleteAiGatewayVirtualModelConfigQueryActingIpSchema, deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigQuerySlugSchema, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, deleteAiGatewayVirtualModelConfigResponseSchema, deleteAiGatewayVirtualModelConfigStatus204Schema, deleteAiGatewayVirtualModelConfigStatus400Schema, deleteAiGatewayVirtualModelConfigStatus401Schema, deleteAiGatewayVirtualModelConfigStatus403Schema, deleteAiGatewayVirtualModelConfigStatus404Schema, deleteAiGatewayVirtualModelConfigStatus410Schema, deleteAiGatewayVirtualModelConfigStatus500Schema, deleteAliasErrorSchema, deleteAliasPathAliasIdSchema, deleteAliasQuerySlugSchema, deleteAliasQueryTeamIdSchema, deleteAliasResponseSchema, deleteAliasStatus200Schema, deleteAliasStatus400Schema, deleteAliasStatus401Schema, deleteAliasStatus403Schema, deleteAliasStatus404Schema, deleteAliasStatus410Schema, deleteAllArtifactsErrorSchema, deleteAllArtifactsQuerySlugSchema, deleteAllArtifactsQueryTeamIdSchema, deleteAllArtifactsResponseSchema, deleteAllArtifactsStatus200Schema, deleteAllArtifactsStatus400Schema, deleteAllArtifactsStatus401Schema, deleteAllArtifactsStatus403Schema, deleteAllArtifactsStatus410Schema, deleteAuthTokenErrorSchema, deleteAuthTokenPathTokenIdSchema, deleteAuthTokenResponseSchema, deleteAuthTokenStatus200Schema, deleteAuthTokenStatus400Schema, deleteAuthTokenStatus401Schema, deleteAuthTokenStatus403Schema, deleteAuthTokenStatus404Schema, deleteAuthTokenStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, deleteConfigurableLogDrainErrorSchema, deleteConfigurableLogDrainPathIdSchema, deleteConfigurableLogDrainQuerySlugSchema, deleteConfigurableLogDrainQueryTeamIdSchema, deleteConfigurableLogDrainResponseSchema, deleteConfigurableLogDrainStatus204Schema, deleteConfigurableLogDrainStatus400Schema, deleteConfigurableLogDrainStatus401Schema, deleteConfigurableLogDrainStatus403Schema, deleteConfigurableLogDrainStatus404Schema, deleteConfigurableLogDrainStatus410Schema, deleteConfigurationErrorSchema, deleteConfigurationPathIdSchema, deleteConfigurationQuerySlugSchema, deleteConfigurationQueryTeamIdSchema, deleteConfigurationResponseSchema, deleteConfigurationStatus204Schema, deleteConfigurationStatus400Schema, deleteConfigurationStatus401Schema, deleteConfigurationStatus403Schema, deleteConfigurationStatus404Schema, deleteConfigurationStatus410Schema, deleteConnectorErrorSchema, deleteConnectorPathConnectorSchema, deleteConnectorProjectConnectionErrorSchema, deleteConnectorProjectConnectionPathConnectorSchema, deleteConnectorProjectConnectionPathProjectIdSchema, deleteConnectorProjectConnectionQuerySlugSchema, deleteConnectorProjectConnectionQueryTeamIdSchema, deleteConnectorProjectConnectionResponseSchema, deleteConnectorProjectConnectionStatus204Schema, deleteConnectorProjectConnectionStatus400Schema, deleteConnectorProjectConnectionStatus401Schema, deleteConnectorProjectConnectionStatus403Schema, deleteConnectorProjectConnectionStatus404Schema, deleteConnectorProjectConnectionStatus410Schema, deleteConnectorQuerySlugSchema, deleteConnectorQueryTeamIdSchema, deleteConnectorResponseSchema, deleteConnectorStatus204Schema, deleteConnectorStatus400Schema, deleteConnectorStatus401Schema, deleteConnectorStatus403Schema, deleteConnectorStatus404Schema, deleteConnectorStatus409Schema, deleteConnectorStatus410Schema, deleteConnectorStatus422Schema, deleteConnectorStatus502Schema, deleteDeploymentErrorSchema, deleteDeploymentPathIdSchema, deleteDeploymentQuerySlugSchema, deleteDeploymentQueryTeamIdSchema, deleteDeploymentQueryUrlSchema, deleteDeploymentResponseSchema, deleteDeploymentStatus200Schema, deleteDeploymentStatus400Schema, deleteDeploymentStatus401Schema, deleteDeploymentStatus403Schema, deleteDeploymentStatus404Schema, deleteDeploymentStatus410Schema, deleteDomainErrorSchema, deleteDomainPathDomainSchema, deleteDomainQuerySlugSchema, deleteDomainQueryTeamIdSchema, deleteDomainResponseSchema, deleteDomainStatus200Schema, deleteDomainStatus400Schema, deleteDomainStatus401Schema, deleteDomainStatus403Schema, deleteDomainStatus404Schema, deleteDomainStatus409Schema, deleteDomainStatus410Schema, deleteDrainErrorSchema, deleteDrainPathIdSchema, deleteDrainQuerySlugSchema, deleteDrainQueryTeamIdSchema, deleteDrainResponseSchema, deleteDrainStatus204Schema, deleteDrainStatus400Schema, deleteDrainStatus401Schema, deleteDrainStatus403Schema, deleteDrainStatus404Schema, deleteDrainStatus410Schema, deleteDriveErrorSchema, deleteDrivePathNameSchema, deleteDriveQueryProjectIdSchema, deleteDriveQuerySlugSchema, deleteDriveQueryTeamIdSchema, deleteDriveResponseSchema, deleteDriveStatus200Schema, deleteDriveStatus400Schema, deleteDriveStatus401Schema, deleteDriveStatus403Schema, deleteDriveStatus404Schema, deleteDriveStatus409Schema, deleteDriveStatus410Schema, deleteDriveStatus429Schema, deleteEdgeConfigErrorSchema, deleteEdgeConfigPathEdgeConfigIdSchema, deleteEdgeConfigQuerySlugSchema, deleteEdgeConfigQueryTeamIdSchema, deleteEdgeConfigResponseSchema, deleteEdgeConfigSchemaErrorSchema, deleteEdgeConfigSchemaPathEdgeConfigIdSchema, deleteEdgeConfigSchemaQuerySlugSchema, deleteEdgeConfigSchemaQueryTeamIdSchema, deleteEdgeConfigSchemaResponseSchema, deleteEdgeConfigSchemaStatus204Schema, deleteEdgeConfigSchemaStatus400Schema, deleteEdgeConfigSchemaStatus401Schema, deleteEdgeConfigSchemaStatus402Schema, deleteEdgeConfigSchemaStatus403Schema, deleteEdgeConfigSchemaStatus404Schema, deleteEdgeConfigSchemaStatus409Schema, deleteEdgeConfigSchemaStatus410Schema, deleteEdgeConfigStatus204Schema, deleteEdgeConfigStatus400Schema, deleteEdgeConfigStatus401Schema, deleteEdgeConfigStatus403Schema, deleteEdgeConfigStatus404Schema, deleteEdgeConfigStatus409Schema, deleteEdgeConfigStatus410Schema, deleteEdgeConfigTokensErrorSchema, deleteEdgeConfigTokensPathEdgeConfigIdSchema, deleteEdgeConfigTokensQuerySlugSchema, deleteEdgeConfigTokensQueryTeamIdSchema, deleteEdgeConfigTokensResponseSchema, deleteEdgeConfigTokensStatus204Schema, deleteEdgeConfigTokensStatus400Schema, deleteEdgeConfigTokensStatus401Schema, deleteEdgeConfigTokensStatus402Schema, deleteEdgeConfigTokensStatus403Schema, deleteEdgeConfigTokensStatus404Schema, deleteEdgeConfigTokensStatus409Schema, deleteEdgeConfigTokensStatus410Schema, deleteFlagErrorSchema, deleteFlagPathFlagIdOrSlugSchema, deleteFlagPathProjectIdOrNameSchema, deleteFlagQueryIfMatchSchema, deleteFlagQuerySlugSchema, deleteFlagQueryTeamIdSchema, deleteFlagQueryWithMetadataSchema, deleteFlagResponseSchema, deleteFlagSegmentErrorSchema, deleteFlagSegmentPathProjectIdOrNameSchema, deleteFlagSegmentPathSegmentIdOrSlugSchema, deleteFlagSegmentQuerySlugSchema, deleteFlagSegmentQueryTeamIdSchema, deleteFlagSegmentQueryWithMetadataSchema, deleteFlagSegmentResponseSchema, deleteFlagSegmentStatus204Schema, deleteFlagSegmentStatus304Schema, deleteFlagSegmentStatus400Schema, deleteFlagSegmentStatus401Schema, deleteFlagSegmentStatus402Schema, deleteFlagSegmentStatus403Schema, deleteFlagSegmentStatus404Schema, deleteFlagSegmentStatus409Schema, deleteFlagSegmentStatus410Schema, deleteFlagStatus204Schema, deleteFlagStatus304Schema, deleteFlagStatus400Schema, deleteFlagStatus401Schema, deleteFlagStatus402Schema, deleteFlagStatus403Schema, deleteFlagStatus404Schema, deleteFlagStatus409Schema, deleteFlagStatus410Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, deleteIntegrationLogDrainErrorSchema, deleteIntegrationLogDrainPathIdSchema, deleteIntegrationLogDrainQuerySlugSchema, deleteIntegrationLogDrainQueryTeamIdSchema, deleteIntegrationLogDrainResponseSchema, deleteIntegrationLogDrainStatus204Schema, deleteIntegrationLogDrainStatus400Schema, deleteIntegrationLogDrainStatus401Schema, deleteIntegrationLogDrainStatus403Schema, deleteIntegrationLogDrainStatus404Schema, deleteIntegrationLogDrainStatus410Schema, deleteIntegrationResourceErrorSchema, deleteIntegrationResourcePathIntegrationConfigurationIdSchema, deleteIntegrationResourcePathResourceIdSchema, deleteIntegrationResourceResponseSchema, deleteIntegrationResourceStatus204Schema, deleteIntegrationResourceStatus400Schema, deleteIntegrationResourceStatus401Schema, deleteIntegrationResourceStatus403Schema, deleteIntegrationResourceStatus404Schema, deleteIntegrationResourceStatus410Schema, deleteKmsIssuerErrorSchema, deleteKmsIssuerPathIssuerIdSchema, deleteKmsIssuerPolicyErrorSchema, deleteKmsIssuerPolicyPathIssuerIdSchema, deleteKmsIssuerPolicyPathKindSchema, deleteKmsIssuerPolicyPathPolicyKeySchema, deleteKmsIssuerPolicyQuerySlugSchema, deleteKmsIssuerPolicyQueryTeamIdSchema, deleteKmsIssuerPolicyResponseSchema, deleteKmsIssuerPolicyStatus204Schema, deleteKmsIssuerPolicyStatus400Schema, deleteKmsIssuerPolicyStatus401Schema, deleteKmsIssuerPolicyStatus403Schema, deleteKmsIssuerPolicyStatus404Schema, deleteKmsIssuerPolicyStatus410Schema, deleteKmsIssuerQuerySlugSchema, deleteKmsIssuerQueryTeamIdSchema, deleteKmsIssuerResponseSchema, deleteKmsIssuerStatus204Schema, deleteKmsIssuerStatus400Schema, deleteKmsIssuerStatus401Schema, deleteKmsIssuerStatus403Schema, deleteKmsIssuerStatus404Schema, deleteKmsIssuerStatus410Schema, deleteMicrofrontendsGroupErrorSchema, deleteMicrofrontendsGroupPathGroupIdSchema, deleteMicrofrontendsGroupPathTeamIdSchema, deleteMicrofrontendsGroupQuerySlugSchema, deleteMicrofrontendsGroupResponseSchema, deleteMicrofrontendsGroupStatus200Schema, deleteMicrofrontendsGroupStatus400Schema, deleteMicrofrontendsGroupStatus401Schema, deleteMicrofrontendsGroupStatus403Schema, deleteMicrofrontendsGroupStatus404Schema, deleteMicrofrontendsGroupStatus410Schema, deleteMicrofrontendsGroupStatus500Schema, deleteNetworkErrorSchema, deleteNetworkPathNetworkIdSchema, deleteNetworkQuerySlugSchema, deleteNetworkQueryTeamIdSchema, deleteNetworkResponseSchema, deleteNetworkStatus204Schema, deleteNetworkStatus400Schema, deleteNetworkStatus401Schema, deleteNetworkStatus402Schema, deleteNetworkStatus403Schema, deleteNetworkStatus409Schema, deleteNetworkStatus410Schema, deletePrivateLinkEndpointErrorSchema, deletePrivateLinkEndpointPathEndpointIdSchema, deletePrivateLinkEndpointQueryProjectIdSchema, deletePrivateLinkEndpointQuerySlugSchema, deletePrivateLinkEndpointQueryTeamIdSchema, deletePrivateLinkEndpointResponseSchema, deletePrivateLinkEndpointStatus204Schema, deletePrivateLinkEndpointStatus400Schema, deletePrivateLinkEndpointStatus401Schema, deletePrivateLinkEndpointStatus403Schema, deletePrivateLinkEndpointStatus404Schema, deletePrivateLinkEndpointStatus409Schema, deletePrivateLinkEndpointStatus410Schema, deleteProjectCheckErrorSchema, deleteProjectCheckPathCheckIdSchema, deleteProjectCheckPathProjectIdOrNameSchema, deleteProjectCheckQuerySlugSchema, deleteProjectCheckQueryTeamIdSchema, deleteProjectCheckResponseSchema, deleteProjectCheckStatus200Schema, deleteProjectCheckStatus400Schema, deleteProjectCheckStatus401Schema, deleteProjectCheckStatus403Schema, deleteProjectCheckStatus404Schema, deleteProjectCheckStatus410Schema, deleteProjectCheckStatus500Schema, deleteProjectErrorSchema, deleteProjectPathIdOrNameSchema, deleteProjectQuerySlugSchema, deleteProjectQueryTeamIdSchema, deleteProjectResponseSchema, deleteProjectStatus204Schema, deleteProjectStatus400Schema, deleteProjectStatus401Schema, deleteProjectStatus403Schema, deleteProjectStatus409Schema, deleteProjectStatus410Schema, deleteRedirectsErrorSchema, deleteRedirectsQueryProjectIdSchema, deleteRedirectsQuerySlugSchema, deleteRedirectsQueryTeamIdSchema, deleteRedirectsResponseSchema, deleteRedirectsStatus200Schema, deleteRedirectsStatus400Schema, deleteRedirectsStatus401Schema, deleteRedirectsStatus403Schema, deleteRedirectsStatus404Schema, deleteRedirectsStatus410Schema, deleteRedirectsStatus500Schema, deleteRepositoryErrorSchema, deleteRepositoryImageErrorSchema, deleteRepositoryImagePathIdOrNameSchema, deleteRepositoryImagePathImageIdSchema, deleteRepositoryImageQueryProjectIdSchema, deleteRepositoryImageQuerySlugSchema, deleteRepositoryImageQueryTeamIdSchema, deleteRepositoryImageResponseSchema, deleteRepositoryImageStatus202Schema, deleteRepositoryImageStatus400Schema, deleteRepositoryImageStatus401Schema, deleteRepositoryImageStatus403Schema, deleteRepositoryImageStatus404Schema, deleteRepositoryImageStatus410Schema, deleteRepositoryPathIdOrNameSchema, deleteRepositoryQueryProjectIdSchema, deleteRepositoryQuerySlugSchema, deleteRepositoryQueryTeamIdSchema, deleteRepositoryResponseSchema, deleteRepositoryStatus202Schema, deleteRepositoryStatus400Schema, deleteRepositoryStatus401Schema, deleteRepositoryStatus403Schema, deleteRepositoryStatus404Schema, deleteRepositoryStatus410Schema, deleteRollingReleaseConfigErrorSchema, deleteRollingReleaseConfigPathIdOrNameSchema, deleteRollingReleaseConfigQuerySlugSchema, deleteRollingReleaseConfigQueryTeamIdSchema, deleteRollingReleaseConfigResponseSchema, deleteRollingReleaseConfigStatus200Schema, deleteRollingReleaseConfigStatus400Schema, deleteRollingReleaseConfigStatus401Schema, deleteRollingReleaseConfigStatus403Schema, deleteRollingReleaseConfigStatus404Schema, deleteRollingReleaseConfigStatus410Schema, deleteRoutesErrorSchema, deleteRoutesPathProjectIdSchema, deleteRoutesQuerySlugSchema, deleteRoutesQueryTeamIdSchema, deleteRoutesResponseSchema, deleteRoutesStatus200Schema, deleteRoutesStatus400Schema, deleteRoutesStatus401Schema, deleteRoutesStatus403Schema, deleteRoutesStatus404Schema, deleteRoutesStatus409Schema, deleteRoutesStatus410Schema, deleteRoutesStatus500Schema, deleteSandboxErrorSchema, deleteSandboxPathNameSchema, deleteSandboxQueryDeleteOrphanSnapshotsSchema, deleteSandboxQueryProjectIdSchema, deleteSandboxQuerySlugSchema, deleteSandboxQueryTeamIdSchema, deleteSandboxResponseSchema, deleteSandboxStatus200Schema, deleteSandboxStatus400Schema, deleteSandboxStatus401Schema, deleteSandboxStatus403Schema, deleteSandboxStatus404Schema, deleteSandboxStatus410Schema, deleteSandboxStatus429Schema, deleteSdkKeyErrorSchema, deleteSdkKeyPathHashKeySchema, deleteSdkKeyPathProjectIdOrNameSchema, deleteSdkKeyQuerySlugSchema, deleteSdkKeyQueryTeamIdSchema, deleteSdkKeyResponseSchema, deleteSdkKeyStatus204Schema, deleteSdkKeyStatus400Schema, deleteSdkKeyStatus401Schema, deleteSdkKeyStatus402Schema, deleteSdkKeyStatus403Schema, deleteSdkKeyStatus404Schema, deleteSdkKeyStatus409Schema, deleteSdkKeyStatus410Schema, deleteSecurityFirewallConfigByConfigVersionErrorSchema, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema, deleteSecurityFirewallConfigByConfigVersionResponseSchema, deleteSecurityFirewallConfigByConfigVersionStatus204Schema, deleteSecurityFirewallConfigByConfigVersionStatus400Schema, deleteSecurityFirewallConfigByConfigVersionStatus401Schema, deleteSecurityFirewallConfigByConfigVersionStatus403Schema, deleteSecurityFirewallConfigByConfigVersionStatus404Schema, deleteSecurityFirewallConfigByConfigVersionStatus410Schema, deleteSecurityFirewallConfigByConfigVersionStatus500Schema, deleteSessionSnapshotErrorSchema, deleteSessionSnapshotPathSnapshotIdSchema, deleteSessionSnapshotQuerySlugSchema, deleteSessionSnapshotQueryTeamIdSchema, deleteSessionSnapshotResponseSchema, deleteSessionSnapshotStatus200Schema, deleteSessionSnapshotStatus400Schema, deleteSessionSnapshotStatus401Schema, deleteSessionSnapshotStatus403Schema, deleteSessionSnapshotStatus404Schema, deleteSessionSnapshotStatus410Schema, deleteSessionSnapshotStatus429Schema, deleteSharedEnvVariableErrorSchema, deleteSharedEnvVariableQuerySlugSchema, deleteSharedEnvVariableQueryTeamIdSchema, deleteSharedEnvVariableResponseSchema, deleteSharedEnvVariableStatus200Schema, deleteSharedEnvVariableStatus400Schema, deleteSharedEnvVariableStatus401Schema, deleteSharedEnvVariableStatus402Schema, deleteSharedEnvVariableStatus403Schema, deleteSharedEnvVariableStatus410Schema, deleteStorageStoresBlobByIdErrorSchema, deleteStorageStoresBlobByIdPathIdSchema, deleteStorageStoresBlobByIdResponseSchema, deleteStorageStoresBlobByIdStatus200Schema, deleteStorageStoresBlobByIdStatus400Schema, deleteStorageStoresBlobByIdStatus401Schema, deleteStorageStoresBlobByIdStatus403Schema, deleteStorageStoresBlobByIdStatus404Schema, deleteStorageStoresBlobByIdStatus409Schema, deleteStorageStoresBlobByIdStatus410Schema, deleteTeamErrorSchema, deleteTeamInviteCodeErrorSchema, deleteTeamInviteCodePathInviteIdSchema, deleteTeamInviteCodePathTeamIdSchema, deleteTeamInviteCodeResponseSchema, deleteTeamInviteCodeStatus200Schema, deleteTeamInviteCodeStatus400Schema, deleteTeamInviteCodeStatus401Schema, deleteTeamInviteCodeStatus403Schema, deleteTeamInviteCodeStatus404Schema, deleteTeamInviteCodeStatus410Schema, deleteTeamPathTeamIdSchema, deleteTeamQueryNewDefaultTeamIdSchema, deleteTeamQuerySlugSchema, deleteTeamResponseSchema, deleteTeamStatus200Schema, deleteTeamStatus400Schema, deleteTeamStatus401Schema, deleteTeamStatus402Schema, deleteTeamStatus403Schema, deleteTeamStatus409Schema, deleteTeamStatus410Schema, deleteTeamStatus503Schema, deleteWebhookErrorSchema, deleteWebhookPathIdSchema, deleteWebhookQuerySlugSchema, deleteWebhookQueryTeamIdSchema, deleteWebhookResponseSchema, deleteWebhookStatus204Schema, deleteWebhookStatus400Schema, deleteWebhookStatus401Schema, deleteWebhookStatus403Schema, deleteWebhookStatus410Schema, domainAlreadyOwnedSchema, domainAlreadyRenewingSchema, domainCannotBeTransferedOutUntilSchema, domainNameSchema, domainNotAvailableSchema, domainNotFoundSchema, domainNotRegisteredSchema, domainNotRenewableSchema, domainTooShortSchema, downloadArtifactErrorSchema, downloadArtifactHeaderXArtifactClientCiSchema, downloadArtifactHeaderXArtifactClientInteractiveSchema, downloadArtifactPathHashSchema, downloadArtifactQuerySlugSchema, downloadArtifactQueryTeamIdSchema, downloadArtifactResponseSchema, downloadArtifactStatus200Schema, downloadArtifactStatus400Schema, downloadArtifactStatus401Schema, downloadArtifactStatus402Schema, downloadArtifactStatus403Schema, downloadArtifactStatus404Schema, downloadArtifactStatus410Schema, driveSchema, duplicateDomainsSchema, e164PhoneNumberSchema, editProjectEnvErrorSchema, editProjectEnvPathIdOrNameSchema, editProjectEnvPathIdSchema, editProjectEnvQuerySlugSchema, editProjectEnvQueryTeamIdSchema, editProjectEnvResponseSchema, editProjectEnvStatus200Schema, editProjectEnvStatus400Schema, editProjectEnvStatus401Schema, editProjectEnvStatus403Schema, editProjectEnvStatus404Schema, editProjectEnvStatus409Schema, editProjectEnvStatus410Schema, editProjectEnvStatus429Schema, editProjectEnvStatus500Schema, editRedirectErrorSchema, editRedirectQueryProjectIdSchema, editRedirectQuerySlugSchema, editRedirectQueryTeamIdSchema, editRedirectResponseSchema, editRedirectStatus200Schema, editRedirectStatus400Schema, editRedirectStatus401Schema, editRedirectStatus403Schema, editRedirectStatus404Schema, editRedirectStatus410Schema, editRedirectStatus500Schema, editRouteErrorSchema, editRoutePathProjectIdSchema, editRoutePathRouteIdSchema, editRouteQuerySlugSchema, editRouteQueryTeamIdSchema, editRouteResponseSchema, editRouteStatus200Schema, editRouteStatus400Schema, editRouteStatus401Schema, editRouteStatus403Schema, editRouteStatus404Schema, editRouteStatus409Schema, editRouteStatus410Schema, editRouteStatus500Schema, emailAddressSchema, exchangeSsoTokenErrorSchema, exchangeSsoTokenResponseSchema, exchangeSsoTokenStatus200Schema, exchangeSsoTokenStatus400Schema, exchangeSsoTokenStatus403Schema, exchangeSsoTokenStatus500Schema, expectedPriceMismatchSchema, extendSessionTimeoutErrorSchema, extendSessionTimeoutPathSessionIdSchema, extendSessionTimeoutQuerySlugSchema, extendSessionTimeoutQueryTeamIdSchema, extendSessionTimeoutResponseSchema, extendSessionTimeoutStatus200Schema, extendSessionTimeoutStatus400Schema, extendSessionTimeoutStatus401Schema, extendSessionTimeoutStatus403Schema, extendSessionTimeoutStatus404Schema, extendSessionTimeoutStatus410Schema, extendSessionTimeoutStatus422Schema, extendSessionTimeoutStatus429Schema, extendSessionTimeoutStatus500Schema, fileTreeSchema, filterProjectEnvsErrorSchema, filterProjectEnvsPathIdOrNameSchema, filterProjectEnvsQueryCustomEnvironmentIdSchema, filterProjectEnvsQueryCustomEnvironmentSlugSchema, filterProjectEnvsQueryDecryptSchema, filterProjectEnvsQueryGitBranchSchema, filterProjectEnvsQuerySlugSchema, filterProjectEnvsQuerySourceSchema, filterProjectEnvsQueryTeamIdSchema, filterProjectEnvsResponseSchema, filterProjectEnvsStatus200Schema, filterProjectEnvsStatus400Schema, filterProjectEnvsStatus401Schema, filterProjectEnvsStatus403Schema, filterProjectEnvsStatus410Schema, finalizeInstallationErrorSchema, finalizeInstallationPathIntegrationConfigurationIdSchema, finalizeInstallationResponseSchema, finalizeInstallationStatus204Schema, finalizeInstallationStatus400Schema, finalizeInstallationStatus401Schema, finalizeInstallationStatus403Schema, finalizeInstallationStatus404Schema, finalizeInstallationStatus410Schema, flagJSONValueSchema, flagSchema, flagsSdkKeyWithSecretsSchema, forbiddenSchema, generateFirewallRuleErrorSchema, generateFirewallRuleQueryProjectIdSchema, generateFirewallRuleQuerySlugSchema, generateFirewallRuleQueryTeamIdSchema, generateFirewallRuleResponseSchema, generateFirewallRuleStatus200Schema, generateFirewallRuleStatus400Schema, generateFirewallRuleStatus401Schema, generateFirewallRuleStatus403Schema, generateFirewallRuleStatus404Schema, generateFirewallRuleStatus408Schema, generateFirewallRuleStatus410Schema, generateFirewallRuleStatus500Schema, generateRouteErrorSchema, generateRoutePathProjectIdSchema, generateRouteQuerySlugSchema, generateRouteQueryTeamIdSchema, generateRouteResponseSchema, generateRouteStatus200Schema, generateRouteStatus400Schema, generateRouteStatus401Schema, generateRouteStatus403Schema, generateRouteStatus408Schema, generateRouteStatus410Schema, generateRouteStatus500Schema, getAccountInfoErrorSchema, getAccountInfoPathIntegrationConfigurationIdSchema, getAccountInfoResponseSchema, getAccountInfoStatus200Schema, getAccountInfoStatus400Schema, getAccountInfoStatus401Schema, getAccountInfoStatus403Schema, getAccountInfoStatus404Schema, getAccountInfoStatus410Schema, getActiveAttackStatusErrorSchema, getActiveAttackStatusQueryProjectIdSchema, getActiveAttackStatusQuerySinceSchema, getActiveAttackStatusQuerySlugSchema, getActiveAttackStatusQueryTeamIdSchema, getActiveAttackStatusResponseSchema, getActiveAttackStatusStatus200Schema, getActiveAttackStatusStatus400Schema, getActiveAttackStatusStatus401Schema, getActiveAttackStatusStatus403Schema, getActiveAttackStatusStatus404Schema, getActiveAttackStatusStatus410Schema, getAiGatewayVirtualModelConfigBySlugErrorSchema, getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema, getAiGatewayVirtualModelConfigBySlugQuerySlugSchema, getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, getAiGatewayVirtualModelConfigBySlugResponseSchema, getAiGatewayVirtualModelConfigBySlugStatus200Schema, getAiGatewayVirtualModelConfigBySlugStatus400Schema, getAiGatewayVirtualModelConfigBySlugStatus401Schema, getAiGatewayVirtualModelConfigBySlugStatus403Schema, getAiGatewayVirtualModelConfigBySlugStatus404Schema, getAiGatewayVirtualModelConfigBySlugStatus410Schema, getAiGatewayVirtualModelConfigBySlugStatus500Schema, getAiGatewayVirtualModelConfigErrorSchema, getAiGatewayVirtualModelConfigQueryCursorSchema, getAiGatewayVirtualModelConfigQueryLimitSchema, getAiGatewayVirtualModelConfigQueryOwnerIdSchema, getAiGatewayVirtualModelConfigQuerySlugSchema, getAiGatewayVirtualModelConfigQueryTeamIdSchema, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, getAiGatewayVirtualModelConfigResponseSchema, getAiGatewayVirtualModelConfigStatus200Schema, getAiGatewayVirtualModelConfigStatus400Schema, getAiGatewayVirtualModelConfigStatus401Schema, getAiGatewayVirtualModelConfigStatus403Schema, getAiGatewayVirtualModelConfigStatus404Schema, getAiGatewayVirtualModelConfigStatus410Schema, getAiGatewayVirtualModelConfigStatus500Schema, getAliasErrorSchema, getAliasPathIdOrAliasSchema, getAliasQueryFromSchema, getAliasQueryProjectIdSchema, getAliasQuerySinceSchema, getAliasQuerySlugSchema, getAliasQueryTeamIdSchema, getAliasQueryUntilSchema, getAliasResponseSchema, getAliasStatus200Schema, getAliasStatus400Schema, getAliasStatus401Schema, getAliasStatus403Schema, getAliasStatus404Schema, getAliasStatus410Schema, getAllChecksErrorSchema, getAllChecksPathDeploymentIdSchema, getAllChecksQuerySlugSchema, getAllChecksQueryTeamIdSchema, getAllChecksResponseSchema, getAllChecksStatus200Schema, getAllChecksStatus400Schema, getAllChecksStatus401Schema, getAllChecksStatus403Schema, getAllChecksStatus404Schema, getAllChecksStatus410Schema, getAllLogDrainsErrorSchema, getAllLogDrainsQueryIncludeMetadataSchema, getAllLogDrainsQueryProjectIdOrNameSchema, getAllLogDrainsQueryProjectIdSchema, getAllLogDrainsQuerySlugSchema, getAllLogDrainsQueryTeamIdSchema, getAllLogDrainsResponseSchema, getAllLogDrainsStatus200Schema, getAllLogDrainsStatus400Schema, getAllLogDrainsStatus401Schema, getAllLogDrainsStatus403Schema, getAllLogDrainsStatus404Schema, getAllLogDrainsStatus410Schema, getAuthTokenErrorSchema, getAuthTokenPathTokenIdSchema, getAuthTokenResponseSchema, getAuthTokenStatus200Schema, getAuthTokenStatus400Schema, getAuthTokenStatus401Schema, getAuthTokenStatus403Schema, getAuthTokenStatus404Schema, getAuthTokenStatus410Schema, getAuthUserErrorSchema, getAuthUserResponseSchema, getAuthUserStatus200Schema, getAuthUserStatus302Schema, getAuthUserStatus400Schema, getAuthUserStatus401Schema, getAuthUserStatus403Schema, getAuthUserStatus409Schema, getAuthUserStatus410Schema, getBillingPlansErrorSchema, getBillingPlansPathIntegrationIdOrSlugSchema, getBillingPlansPathProductIdOrSlugSchema, getBillingPlansQueryIntegrationConfigurationIdSchema, getBillingPlansQueryMetadataSchema, getBillingPlansQuerySlugSchema, getBillingPlansQuerySourceSchema, getBillingPlansQueryTeamIdSchema, getBillingPlansResponseSchema, getBillingPlansStatus200Schema, getBillingPlansStatus400Schema, getBillingPlansStatus401Schema, getBillingPlansStatus403Schema, getBillingPlansStatus404Schema, getBillingPlansStatus410Schema, getBulkAvailabilityErrorSchema, getBulkAvailabilityQueryTeamIdSchema, getBulkAvailabilityResponseSchema, getBulkAvailabilityStatus200Schema, getBulkAvailabilityStatus400Schema, getBulkAvailabilityStatus401Schema, getBulkAvailabilityStatus403Schema, getBulkAvailabilityStatus429Schema, getBulkAvailabilityStatus500Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema, getBypassIpErrorSchema, getBypassIpQueryDomainSchema, getBypassIpQueryLimitSchema, getBypassIpQueryOffsetSchema, getBypassIpQueryProjectIdSchema, getBypassIpQueryProjectScopeSchema, getBypassIpQuerySlugSchema, getBypassIpQuerySourceIpSchema, getBypassIpQueryTeamIdSchema, getBypassIpResponseSchema, getBypassIpStatus200Schema, getBypassIpStatus400Schema, getBypassIpStatus401Schema, getBypassIpStatus402Schema, getBypassIpStatus403Schema, getBypassIpStatus404Schema, getBypassIpStatus410Schema, getBypassIpStatus500Schema, getCertByIdErrorSchema, getCertByIdPathIdSchema, getCertByIdQuerySlugSchema, getCertByIdQueryTeamIdSchema, getCertByIdResponseSchema, getCertByIdStatus200Schema, getCertByIdStatus400Schema, getCertByIdStatus401Schema, getCertByIdStatus403Schema, getCertByIdStatus404Schema, getCertByIdStatus410Schema, getCertsErrorSchema, getCertsQuerySlugSchema, getCertsQueryTeamIdSchema, getCertsResponseSchema, getCertsStatus200Schema, getCertsStatus400Schema, getCertsStatus401Schema, getCertsStatus403Schema, getCertsStatus410Schema, getCheckErrorSchema, getCheckPathCheckIdSchema, getCheckPathDeploymentIdSchema, getCheckQuerySlugSchema, getCheckQueryTeamIdSchema, getCheckResponseSchema, getCheckStatus200Schema, getCheckStatus400Schema, getCheckStatus401Schema, getCheckStatus403Schema, getCheckStatus404Schema, getCheckStatus410Schema, getConfigurableLogDrainErrorSchema, getConfigurableLogDrainPathIdSchema, getConfigurableLogDrainQuerySlugSchema, getConfigurableLogDrainQueryTeamIdSchema, getConfigurableLogDrainResponseSchema, getConfigurableLogDrainStatus200Schema, getConfigurableLogDrainStatus400Schema, getConfigurableLogDrainStatus401Schema, getConfigurableLogDrainStatus403Schema, getConfigurableLogDrainStatus404Schema, getConfigurableLogDrainStatus410Schema, getConfigurationErrorSchema, getConfigurationPathIdSchema, getConfigurationProductsErrorSchema, getConfigurationProductsPathIdSchema, getConfigurationProductsQuerySlugSchema, getConfigurationProductsQueryTeamIdSchema, getConfigurationProductsResponseSchema, getConfigurationProductsStatus200Schema, getConfigurationProductsStatus400Schema, getConfigurationProductsStatus401Schema, getConfigurationProductsStatus403Schema, getConfigurationProductsStatus404Schema, getConfigurationProductsStatus410Schema, getConfigurationProductsStatus500Schema, getConfigurationQuerySlugSchema, getConfigurationQueryTeamIdSchema, getConfigurationResponseSchema, getConfigurationStatus200Schema, getConfigurationStatus400Schema, getConfigurationStatus401Schema, getConfigurationStatus403Schema, getConfigurationStatus404Schema, getConfigurationStatus410Schema, getConfigurationsErrorSchema, getConfigurationsQueryInstallationTypeSchema, getConfigurationsQueryIntegrationIdOrSlugSchema, getConfigurationsQuerySlugSchema, getConfigurationsQueryTeamIdSchema, getConfigurationsQueryViewSchema, getConfigurationsResponseSchema, getConfigurationsStatus200Schema, getConfigurationsStatus400Schema, getConfigurationsStatus401Schema, getConfigurationsStatus403Schema, getConfigurationsStatus410Schema, getConnectorErrorSchema, getConnectorPathConnectorSchema, getConnectorProjectConnectionErrorSchema, getConnectorProjectConnectionPathConnectorSchema, getConnectorProjectConnectionPathProjectIdSchema, getConnectorProjectConnectionQuerySlugSchema, getConnectorProjectConnectionQueryTeamIdSchema, getConnectorProjectConnectionResponseSchema, getConnectorProjectConnectionStatus200Schema, getConnectorProjectConnectionStatus400Schema, getConnectorProjectConnectionStatus401Schema, getConnectorProjectConnectionStatus403Schema, getConnectorProjectConnectionStatus404Schema, getConnectorProjectConnectionStatus410Schema, getConnectorQuerySlugSchema, getConnectorQueryTeamIdSchema, getConnectorResponseSchema, getConnectorStatus200Schema, getConnectorStatus400Schema, getConnectorStatus401Schema, getConnectorStatus403Schema, getConnectorStatus404Schema, getConnectorStatus410Schema, getConnectorStatus422Schema, getConnectorTokenErrorSchema, getConnectorTokenPathConnectorSchema, getConnectorTokenResponseSchema, getConnectorTokenStatus200Schema, getConnectorTokenStatus400Schema, getConnectorTokenStatus401Schema, getConnectorTokenStatus403Schema, getConnectorTokenStatus404Schema, getConnectorTokenStatus410Schema, getConnectorTokenStatus422Schema, getConnectorTokenStatus429Schema, getContactInfoSchemaErrorSchema, getContactInfoSchemaPathDomainSchema, getContactInfoSchemaQueryTeamIdSchema, getContactInfoSchemaResponseSchema, getContactInfoSchemaStatus200Schema, getContactInfoSchemaStatus400Schema, getContactInfoSchemaStatus401Schema, getContactInfoSchemaStatus403Schema, getContactInfoSchemaStatus429Schema, getContactInfoSchemaStatus500Schema, getCustomEnvironmentErrorSchema, getCustomEnvironmentPathEnvironmentSlugOrIdSchema, getCustomEnvironmentPathIdOrNameSchema, getCustomEnvironmentQuerySlugSchema, getCustomEnvironmentQueryTeamIdSchema, getCustomEnvironmentResponseSchema, getCustomEnvironmentStatus200Schema, getCustomEnvironmentStatus400Schema, getCustomEnvironmentStatus401Schema, getCustomEnvironmentStatus403Schema, getCustomEnvironmentStatus404Schema, getCustomEnvironmentStatus410Schema, getDeploymentCheckRunErrorSchema, getDeploymentCheckRunPathCheckRunIdSchema, getDeploymentCheckRunPathDeploymentIdSchema, getDeploymentCheckRunQuerySlugSchema, getDeploymentCheckRunQueryTeamIdSchema, getDeploymentCheckRunResponseSchema, getDeploymentCheckRunStatus200Schema, getDeploymentCheckRunStatus400Schema, getDeploymentCheckRunStatus401Schema, getDeploymentCheckRunStatus403Schema, getDeploymentCheckRunStatus404Schema, getDeploymentCheckRunStatus410Schema, getDeploymentCheckRunStatus500Schema, getDeploymentErrorSchema, getDeploymentEventsErrorSchema, getDeploymentEventsPathIdOrUrlSchema, getDeploymentEventsQueryBuildsSchema, getDeploymentEventsQueryDelimiterSchema, getDeploymentEventsQueryDirectionSchema, getDeploymentEventsQueryFollowSchema, getDeploymentEventsQueryLimitSchema, getDeploymentEventsQueryNameSchema, getDeploymentEventsQuerySinceSchema, getDeploymentEventsQuerySlugSchema, getDeploymentEventsQueryStatusCodeSchema, getDeploymentEventsQueryTeamIdSchema, getDeploymentEventsQueryUntilSchema, getDeploymentEventsResponseSchema, getDeploymentEventsStatus200Schema, getDeploymentEventsStatus400Schema, getDeploymentEventsStatus401Schema, getDeploymentEventsStatus403Schema, getDeploymentEventsStatus410Schema, getDeploymentEventsStatus500Schema, getDeploymentFeatureFlagsErrorSchema, getDeploymentFeatureFlagsPathDeploymentIdSchema, getDeploymentFeatureFlagsQuerySlugSchema, getDeploymentFeatureFlagsQueryTeamIdSchema, getDeploymentFeatureFlagsResponseSchema, getDeploymentFeatureFlagsStatus200Schema, getDeploymentFeatureFlagsStatus400Schema, getDeploymentFeatureFlagsStatus401Schema, getDeploymentFeatureFlagsStatus403Schema, getDeploymentFeatureFlagsStatus404Schema, getDeploymentFeatureFlagsStatus410Schema, getDeploymentFileContentsErrorSchema, getDeploymentFileContentsPathFileIdSchema, getDeploymentFileContentsPathIdSchema, getDeploymentFileContentsQueryPathSchema, getDeploymentFileContentsQuerySlugSchema, getDeploymentFileContentsQueryTeamIdSchema, getDeploymentFileContentsResponseSchema, getDeploymentFileContentsStatus400Schema, getDeploymentFileContentsStatus401Schema, getDeploymentFileContentsStatus403Schema, getDeploymentFileContentsStatus404Schema, getDeploymentFileContentsStatus410Schema, getDeploymentPathIdOrUrlSchema, getDeploymentQuerySlugSchema, getDeploymentQueryTeamIdSchema, getDeploymentQueryWithGitRepoInfoSchema, getDeploymentResponseSchema, getDeploymentStatus200Schema, getDeploymentStatus400Schema, getDeploymentStatus403Schema, getDeploymentStatus404Schema, getDeploymentStatus410Schema, getDeploymentStatus429Schema, getDeploymentsErrorSchema, getDeploymentsQueryAppSchema, getDeploymentsQueryBranchSchema, getDeploymentsQueryFromSchema, getDeploymentsQueryLimitSchema, getDeploymentsQueryProjectIdSchema, getDeploymentsQueryProjectIdsSchema, getDeploymentsQueryRollbackCandidateSchema, getDeploymentsQueryShaSchema, getDeploymentsQuerySinceSchema, getDeploymentsQuerySlugSchema, getDeploymentsQueryStateSchema, getDeploymentsQueryTargetSchema, getDeploymentsQueryTeamIdSchema, getDeploymentsQueryToSchema, getDeploymentsQueryUntilSchema, getDeploymentsQueryUsersSchema, getDeploymentsResponseSchema, getDeploymentsStatus200Schema, getDeploymentsStatus400Schema, getDeploymentsStatus401Schema, getDeploymentsStatus403Schema, getDeploymentsStatus404Schema, getDeploymentsStatus410Schema, getDeploymentsStatus422Schema, getDomainAuthCodeErrorSchema, getDomainAuthCodePathDomainSchema, getDomainAuthCodeQueryTeamIdSchema, getDomainAuthCodeResponseSchema, getDomainAuthCodeStatus200Schema, getDomainAuthCodeStatus400Schema, getDomainAuthCodeStatus401Schema, getDomainAuthCodeStatus403Schema, getDomainAuthCodeStatus404Schema, getDomainAuthCodeStatus409Schema, getDomainAuthCodeStatus429Schema, getDomainAuthCodeStatus500Schema, getDomainAvailabilityErrorSchema, getDomainAvailabilityPathDomainSchema, getDomainAvailabilityQueryTeamIdSchema, getDomainAvailabilityResponseSchema, getDomainAvailabilityStatus200Schema, getDomainAvailabilityStatus400Schema, getDomainAvailabilityStatus401Schema, getDomainAvailabilityStatus403Schema, getDomainAvailabilityStatus404Schema, getDomainAvailabilityStatus429Schema, getDomainAvailabilityStatus500Schema, getDomainConfigErrorSchema, getDomainConfigPathDomainSchema, getDomainConfigQueryProjectIdOrNameSchema, getDomainConfigQuerySlugSchema, getDomainConfigQueryStrictSchema, getDomainConfigQueryTeamIdSchema, getDomainConfigResponseSchema, getDomainConfigStatus200Schema, getDomainConfigStatus400Schema, getDomainConfigStatus401Schema, getDomainConfigStatus403Schema, getDomainConfigStatus410Schema, getDomainContactVerificationErrorSchema, getDomainContactVerificationPathDomainSchema, getDomainContactVerificationQueryTeamIdSchema, getDomainContactVerificationResponseSchema, getDomainContactVerificationStatus200Schema, getDomainContactVerificationStatus400Schema, getDomainContactVerificationStatus401Schema, getDomainContactVerificationStatus403Schema, getDomainContactVerificationStatus404Schema, getDomainContactVerificationStatus429Schema, getDomainContactVerificationStatus500Schema, getDomainErrorSchema, getDomainPathDomainSchema, getDomainPriceErrorSchema, getDomainPricePathDomainSchema, getDomainPriceQueryTeamIdSchema, getDomainPriceQueryYearsSchema, getDomainPriceResponseSchema, getDomainPriceStatus200Schema, getDomainPriceStatus400Schema, getDomainPriceStatus401Schema, getDomainPriceStatus403Schema, getDomainPriceStatus429Schema, getDomainPriceStatus500Schema, getDomainProjectDomainsErrorSchema, getDomainProjectDomainsPathDomainSchema, getDomainProjectDomainsQueryLimitSchema, getDomainProjectDomainsQuerySinceSchema, getDomainProjectDomainsQuerySlugSchema, getDomainProjectDomainsQueryTeamIdSchema, getDomainProjectDomainsQueryUntilSchema, getDomainProjectDomainsResponseSchema, getDomainProjectDomainsStatus200Schema, getDomainProjectDomainsStatus400Schema, getDomainProjectDomainsStatus401Schema, getDomainProjectDomainsStatus403Schema, getDomainProjectDomainsStatus404Schema, getDomainProjectDomainsStatus410Schema, getDomainQuerySlugSchema, getDomainQueryTeamIdSchema, getDomainResponseSchema, getDomainStatus200Schema, getDomainStatus400Schema, getDomainStatus401Schema, getDomainStatus403Schema, getDomainStatus404Schema, getDomainStatus410Schema, getDomainTransferInErrorSchema, getDomainTransferInPathDomainSchema, getDomainTransferInQueryTeamIdSchema, getDomainTransferInResponseSchema, getDomainTransferInStatus200Schema, getDomainTransferInStatus400Schema, getDomainTransferInStatus401Schema, getDomainTransferInStatus403Schema, getDomainTransferInStatus404Schema, getDomainTransferInStatus429Schema, getDomainTransferInStatus500Schema, getDomainVerificationRecordErrorSchema, getDomainVerificationRecordPathDomainSchema, getDomainVerificationRecordQuerySlugSchema, getDomainVerificationRecordQueryTeamIdSchema, getDomainVerificationRecordResponseSchema, getDomainVerificationRecordStatus200Schema, getDomainVerificationRecordStatus400Schema, getDomainVerificationRecordStatus401Schema, getDomainVerificationRecordStatus403Schema, getDomainVerificationRecordStatus404Schema, getDomainVerificationRecordStatus410Schema, getDomainsErrorSchema, getDomainsQueryLimitSchema, getDomainsQuerySinceSchema, getDomainsQuerySlugSchema, getDomainsQueryTeamIdSchema, getDomainsQueryUntilSchema, getDomainsRecordsByRecordIdErrorSchema, getDomainsRecordsByRecordIdPathRecordIdSchema, getDomainsRecordsByRecordIdResponseSchema, getDomainsRecordsByRecordIdStatus200Schema, getDomainsRecordsByRecordIdStatus400Schema, getDomainsRecordsByRecordIdStatus401Schema, getDomainsRecordsByRecordIdStatus403Schema, getDomainsRecordsByRecordIdStatus404Schema, getDomainsRecordsByRecordIdStatus410Schema, getDomainsResponseSchema, getDomainsStatus200Schema, getDomainsStatus400Schema, getDomainsStatus401Schema, getDomainsStatus403Schema, getDomainsStatus409Schema, getDomainsStatus410Schema, getDrainErrorSchema, getDrainPathIdSchema, getDrainQuerySlugSchema, getDrainQueryTeamIdSchema, getDrainResponseSchema, getDrainStatus200Schema, getDrainStatus400Schema, getDrainStatus401Schema, getDrainStatus403Schema, getDrainStatus404Schema, getDrainStatus410Schema, getDrainsErrorSchema, getDrainsQueryIncludeMetadataSchema, getDrainsQueryProjectIdSchema, getDrainsQuerySlugSchema, getDrainsQueryTeamIdSchema, getDrainsResponseSchema, getDrainsStatus200Schema, getDrainsStatus400Schema, getDrainsStatus401Schema, getDrainsStatus403Schema, getDrainsStatus404Schema, getDrainsStatus410Schema, getEdgeConfigBackupErrorSchema, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, getEdgeConfigBackupPathEdgeConfigIdSchema, getEdgeConfigBackupQuerySlugSchema, getEdgeConfigBackupQueryTeamIdSchema, getEdgeConfigBackupResponseSchema, getEdgeConfigBackupStatus200Schema, getEdgeConfigBackupStatus400Schema, getEdgeConfigBackupStatus401Schema, getEdgeConfigBackupStatus403Schema, getEdgeConfigBackupStatus404Schema, getEdgeConfigBackupStatus410Schema, getEdgeConfigBackupsErrorSchema, getEdgeConfigBackupsPathEdgeConfigIdSchema, getEdgeConfigBackupsQueryLimitSchema, getEdgeConfigBackupsQueryMetadataSchema, getEdgeConfigBackupsQueryNextSchema, getEdgeConfigBackupsQuerySlugSchema, getEdgeConfigBackupsQueryTeamIdSchema, getEdgeConfigBackupsResponseSchema, getEdgeConfigBackupsStatus200Schema, getEdgeConfigBackupsStatus400Schema, getEdgeConfigBackupsStatus401Schema, getEdgeConfigBackupsStatus403Schema, getEdgeConfigBackupsStatus404Schema, getEdgeConfigBackupsStatus410Schema, getEdgeConfigErrorSchema, getEdgeConfigItemErrorSchema, getEdgeConfigItemPathEdgeConfigIdSchema, getEdgeConfigItemPathEdgeConfigItemKeySchema, getEdgeConfigItemQuerySlugSchema, getEdgeConfigItemQueryTeamIdSchema, getEdgeConfigItemResponseSchema, getEdgeConfigItemStatus200Schema, getEdgeConfigItemStatus400Schema, getEdgeConfigItemStatus401Schema, getEdgeConfigItemStatus403Schema, getEdgeConfigItemStatus404Schema, getEdgeConfigItemStatus410Schema, getEdgeConfigItemsErrorSchema, getEdgeConfigItemsPathEdgeConfigIdSchema, getEdgeConfigItemsQuerySlugSchema, getEdgeConfigItemsQueryTeamIdSchema, getEdgeConfigItemsResponseSchema, getEdgeConfigItemsStatus200Schema, getEdgeConfigItemsStatus400Schema, getEdgeConfigItemsStatus401Schema, getEdgeConfigItemsStatus403Schema, getEdgeConfigItemsStatus404Schema, getEdgeConfigItemsStatus410Schema, getEdgeConfigPathEdgeConfigIdSchema, getEdgeConfigQuerySlugSchema, getEdgeConfigQueryTeamIdSchema, getEdgeConfigResponseSchema, getEdgeConfigSchemaErrorSchema, getEdgeConfigSchemaPathEdgeConfigIdSchema, getEdgeConfigSchemaQuerySlugSchema, getEdgeConfigSchemaQueryTeamIdSchema, getEdgeConfigSchemaResponseSchema, getEdgeConfigSchemaStatus200Schema, getEdgeConfigSchemaStatus400Schema, getEdgeConfigSchemaStatus401Schema, getEdgeConfigSchemaStatus403Schema, getEdgeConfigSchemaStatus404Schema, getEdgeConfigSchemaStatus410Schema, getEdgeConfigStatus200Schema, getEdgeConfigStatus400Schema, getEdgeConfigStatus401Schema, getEdgeConfigStatus403Schema, getEdgeConfigStatus404Schema, getEdgeConfigStatus410Schema, getEdgeConfigTokenErrorSchema, getEdgeConfigTokenPathEdgeConfigIdSchema, getEdgeConfigTokenPathTokenSchema, getEdgeConfigTokenQuerySlugSchema, getEdgeConfigTokenQueryTeamIdSchema, getEdgeConfigTokenResponseSchema, getEdgeConfigTokenStatus200Schema, getEdgeConfigTokenStatus400Schema, getEdgeConfigTokenStatus401Schema, getEdgeConfigTokenStatus403Schema, getEdgeConfigTokenStatus404Schema, getEdgeConfigTokenStatus410Schema, getEdgeConfigTokensErrorSchema, getEdgeConfigTokensPathEdgeConfigIdSchema, getEdgeConfigTokensQuerySlugSchema, getEdgeConfigTokensQueryTeamIdSchema, getEdgeConfigTokensResponseSchema, getEdgeConfigTokensStatus200Schema, getEdgeConfigTokensStatus400Schema, getEdgeConfigTokensStatus401Schema, getEdgeConfigTokensStatus403Schema, getEdgeConfigTokensStatus404Schema, getEdgeConfigTokensStatus410Schema, getEdgeConfigsErrorSchema, getEdgeConfigsQuerySlugSchema, getEdgeConfigsQueryTeamIdSchema, getEdgeConfigsResponseSchema, getEdgeConfigsStatus200Schema, getEdgeConfigsStatus400Schema, getEdgeConfigsStatus401Schema, getEdgeConfigsStatus403Schema, getEdgeConfigsStatus410Schema, getFirewallConfigErrorSchema, getFirewallConfigPathConfigVersionSchema, getFirewallConfigQueryProjectIdSchema, getFirewallConfigQuerySlugSchema, getFirewallConfigQueryTeamIdSchema, getFirewallConfigResponseSchema, getFirewallConfigStatus200Schema, getFirewallConfigStatus400Schema, getFirewallConfigStatus401Schema, getFirewallConfigStatus403Schema, getFirewallConfigStatus404Schema, getFirewallConfigStatus410Schema, getFlagErrorSchema, getFlagPathFlagIdOrSlugSchema, getFlagPathProjectIdOrNameSchema, getFlagQueryIfMatchSchema, getFlagQuerySlugSchema, getFlagQueryTeamIdSchema, getFlagQueryWithMetadataSchema, getFlagResponseSchema, getFlagSegmentErrorSchema, getFlagSegmentPathProjectIdOrNameSchema, getFlagSegmentPathSegmentIdOrSlugSchema, getFlagSegmentQuerySlugSchema, getFlagSegmentQueryTeamIdSchema, getFlagSegmentQueryWithMetadataSchema, getFlagSegmentResponseSchema, getFlagSegmentStatus200Schema, getFlagSegmentStatus400Schema, getFlagSegmentStatus401Schema, getFlagSegmentStatus402Schema, getFlagSegmentStatus403Schema, getFlagSegmentStatus404Schema, getFlagSegmentStatus410Schema, getFlagSettingsErrorSchema, getFlagSettingsPathProjectIdOrNameSchema, getFlagSettingsQuerySlugSchema, getFlagSettingsQueryTeamIdSchema, getFlagSettingsResponseSchema, getFlagSettingsStatus200Schema, getFlagSettingsStatus400Schema, getFlagSettingsStatus401Schema, getFlagSettingsStatus402Schema, getFlagSettingsStatus403Schema, getFlagSettingsStatus404Schema, getFlagSettingsStatus410Schema, getFlagStatus200Schema, getFlagStatus304Schema, getFlagStatus400Schema, getFlagStatus401Schema, getFlagStatus402Schema, getFlagStatus403Schema, getFlagStatus404Schema, getFlagStatus410Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, getIntegrationLogDrainsErrorSchema, getIntegrationLogDrainsQuerySlugSchema, getIntegrationLogDrainsQueryTeamIdSchema, getIntegrationLogDrainsResponseSchema, getIntegrationLogDrainsStatus200Schema, getIntegrationLogDrainsStatus400Schema, getIntegrationLogDrainsStatus401Schema, getIntegrationLogDrainsStatus403Schema, getIntegrationLogDrainsStatus410Schema, getIntegrationResourceErrorSchema, getIntegrationResourcePathIntegrationConfigurationIdSchema, getIntegrationResourcePathResourceIdSchema, getIntegrationResourceResponseSchema, getIntegrationResourceStatus200Schema, getIntegrationResourceStatus400Schema, getIntegrationResourceStatus401Schema, getIntegrationResourceStatus403Schema, getIntegrationResourceStatus404Schema, getIntegrationResourceStatus410Schema, getIntegrationResourcesErrorSchema, getIntegrationResourcesPathIntegrationConfigurationIdSchema, getIntegrationResourcesResponseSchema, getIntegrationResourcesStatus200Schema, getIntegrationResourcesStatus400Schema, getIntegrationResourcesStatus401Schema, getIntegrationResourcesStatus403Schema, getIntegrationResourcesStatus404Schema, getIntegrationResourcesStatus410Schema, getInvoiceErrorSchema, getInvoicePathIntegrationConfigurationIdSchema, getInvoicePathInvoiceIdSchema, getInvoiceResponseSchema, getInvoiceStatus200Schema, getInvoiceStatus400Schema, getInvoiceStatus401Schema, getInvoiceStatus403Schema, getInvoiceStatus404Schema, getInvoiceStatus410Schema, getInvoiceStatus429Schema, getKmsIssuerErrorSchema, getKmsIssuerPathIssuerIdSchema, getKmsIssuerQuerySlugSchema, getKmsIssuerQueryTeamIdSchema, getKmsIssuerResponseSchema, getKmsIssuerStatus200Schema, getKmsIssuerStatus400Schema, getKmsIssuerStatus401Schema, getKmsIssuerStatus403Schema, getKmsIssuerStatus404Schema, getKmsIssuerStatus410Schema, getMemberErrorSchema, getMemberPathIntegrationConfigurationIdSchema, getMemberPathMemberIdSchema, getMemberResponseSchema, getMemberStatus200Schema, getMemberStatus400Schema, getMemberStatus401Schema, getMemberStatus403Schema, getMemberStatus404Schema, getMemberStatus410Schema, getMicrofrontendsConfigErrorSchema, getMicrofrontendsConfigForProjectErrorSchema, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema, getMicrofrontendsConfigForProjectQuerySlugSchema, getMicrofrontendsConfigForProjectQueryTeamIdSchema, getMicrofrontendsConfigForProjectResponseSchema, getMicrofrontendsConfigForProjectStatus200Schema, getMicrofrontendsConfigForProjectStatus400Schema, getMicrofrontendsConfigForProjectStatus401Schema, getMicrofrontendsConfigForProjectStatus403Schema, getMicrofrontendsConfigForProjectStatus404Schema, getMicrofrontendsConfigForProjectStatus410Schema, getMicrofrontendsConfigForProjectStatus500Schema, getMicrofrontendsConfigPathDeploymentIdSchema, getMicrofrontendsConfigQuerySlugSchema, getMicrofrontendsConfigQueryTeamIdSchema, getMicrofrontendsConfigResponseSchema, getMicrofrontendsConfigStatus200Schema, getMicrofrontendsConfigStatus400Schema, getMicrofrontendsConfigStatus401Schema, getMicrofrontendsConfigStatus403Schema, getMicrofrontendsConfigStatus404Schema, getMicrofrontendsConfigStatus410Schema, getMicrofrontendsConfigStatus500Schema, getMicrofrontendsGroupsErrorSchema, getMicrofrontendsGroupsQuerySlugSchema, getMicrofrontendsGroupsQueryTeamIdSchema, getMicrofrontendsGroupsResponseSchema, getMicrofrontendsGroupsStatus200Schema, getMicrofrontendsGroupsStatus400Schema, getMicrofrontendsGroupsStatus401Schema, getMicrofrontendsGroupsStatus403Schema, getMicrofrontendsGroupsStatus410Schema, getMicrofrontendsGroupsStatus500Schema, getMicrofrontendsInGroupErrorSchema, getMicrofrontendsInGroupPathGroupIdSchema, getMicrofrontendsInGroupQuerySlugSchema, getMicrofrontendsInGroupQueryTeamIdSchema, getMicrofrontendsInGroupResponseSchema, getMicrofrontendsInGroupStatus200Schema, getMicrofrontendsInGroupStatus400Schema, getMicrofrontendsInGroupStatus401Schema, getMicrofrontendsInGroupStatus403Schema, getMicrofrontendsInGroupStatus410Schema, getNamedSandboxErrorSchema, getNamedSandboxPathNameSchema, getNamedSandboxQueryProjectIdSchema, getNamedSandboxQueryResumeSchema, getNamedSandboxQuerySlugSchema, getNamedSandboxQueryTeamIdSchema, getNamedSandboxResponseSchema, getNamedSandboxStatus200Schema, getNamedSandboxStatus400Schema, getNamedSandboxStatus401Schema, getNamedSandboxStatus402Schema, getNamedSandboxStatus403Schema, getNamedSandboxStatus404Schema, getNamedSandboxStatus409Schema, getNamedSandboxStatus410Schema, getNamedSandboxStatus429Schema, getNamedSandboxStatus500Schema, getObservabilityConfigurationProjectsErrorSchema, getObservabilityConfigurationProjectsQuerySlugSchema, getObservabilityConfigurationProjectsQueryTeamIdSchema, getObservabilityConfigurationProjectsResponseSchema, getObservabilityConfigurationProjectsStatus200Schema, getObservabilityConfigurationProjectsStatus400Schema, getObservabilityConfigurationProjectsStatus401Schema, getObservabilityConfigurationProjectsStatus403Schema, getObservabilityConfigurationProjectsStatus404Schema, getObservabilityConfigurationProjectsStatus410Schema, getObservabilitySchemaByMetricIdErrorSchema, getObservabilitySchemaByMetricIdPathMetricIdSchema, getObservabilitySchemaByMetricIdResponseSchema, getObservabilitySchemaByMetricIdStatus200Schema, getObservabilitySchemaByMetricIdStatus400Schema, getObservabilitySchemaByMetricIdStatus401Schema, getObservabilitySchemaByMetricIdStatus403Schema, getObservabilitySchemaByMetricIdStatus410Schema, getObservabilitySchemaErrorSchema, getObservabilitySchemaResponseSchema, getObservabilitySchemaStatus200Schema, getObservabilitySchemaStatus400Schema, getObservabilitySchemaStatus401Schema, getObservabilitySchemaStatus403Schema, getObservabilitySchemaStatus410Schema, getOrCreateDriveErrorSchema, getOrCreateDrivePathNameSchema, getOrCreateDriveQuerySlugSchema, getOrCreateDriveQueryTeamIdSchema, getOrCreateDriveResponseSchema, getOrCreateDriveStatus200Schema, getOrCreateDriveStatus201Schema, getOrCreateDriveStatus400Schema, getOrCreateDriveStatus401Schema, getOrCreateDriveStatus402Schema, getOrCreateDriveStatus403Schema, getOrCreateDriveStatus404Schema, getOrCreateDriveStatus409Schema, getOrCreateDriveStatus410Schema, getOrCreateDriveStatus429Schema, getOrderErrorSchema, getOrderPathOrderIdSchema, getOrderQueryTeamIdSchema, getOrderResponseSchema, getOrderStatus200Schema, getOrderStatus400Schema, getOrderStatus401Schema, getOrderStatus403Schema, getOrderStatus404Schema, getOrderStatus429Schema, getOrderStatus500Schema, getProjectCheckErrorSchema, getProjectCheckPathCheckIdSchema, getProjectCheckPathProjectIdOrNameSchema, getProjectCheckQuerySlugSchema, getProjectCheckQueryTeamIdSchema, getProjectCheckResponseSchema, getProjectCheckStatus200Schema, getProjectCheckStatus400Schema, getProjectCheckStatus401Schema, getProjectCheckStatus403Schema, getProjectCheckStatus410Schema, getProjectCheckStatus500Schema, getProjectDomainErrorSchema, getProjectDomainPathDomainSchema, getProjectDomainPathIdOrNameSchema, getProjectDomainQuerySlugSchema, getProjectDomainQueryTeamIdSchema, getProjectDomainResponseSchema, getProjectDomainStatus200Schema, getProjectDomainStatus400Schema, getProjectDomainStatus401Schema, getProjectDomainStatus403Schema, getProjectDomainStatus410Schema, getProjectDomainsErrorSchema, getProjectDomainsPathIdOrNameSchema, getProjectDomainsQueryCustomEnvironmentIdSchema, getProjectDomainsQueryGitBranchSchema, getProjectDomainsQueryLimitSchema, getProjectDomainsQueryOrderSchema, getProjectDomainsQueryProductionSchema, getProjectDomainsQueryRedirectSchema, getProjectDomainsQueryRedirectsSchema, getProjectDomainsQuerySinceSchema, getProjectDomainsQuerySlugSchema, getProjectDomainsQueryTargetSchema, getProjectDomainsQueryTeamIdSchema, getProjectDomainsQueryUntilSchema, getProjectDomainsQueryVerifiedSchema, getProjectDomainsResponseSchema, getProjectDomainsStatus200Schema, getProjectDomainsStatus400Schema, getProjectDomainsStatus401Schema, getProjectDomainsStatus403Schema, getProjectDomainsStatus410Schema, getProjectEnvErrorSchema, getProjectEnvPathIdOrNameSchema, getProjectEnvPathIdSchema, getProjectEnvQuerySlugSchema, getProjectEnvQueryTeamIdSchema, getProjectEnvResponseSchema, getProjectEnvStatus200Schema, getProjectEnvStatus400Schema, getProjectEnvStatus401Schema, getProjectEnvStatus403Schema, getProjectEnvStatus410Schema, getProjectErrorSchema, getProjectMembersErrorSchema, getProjectMembersPathIdOrNameSchema, getProjectMembersQueryLimitSchema, getProjectMembersQuerySearchSchema, getProjectMembersQuerySinceSchema, getProjectMembersQuerySlugSchema, getProjectMembersQueryTeamIdSchema, getProjectMembersQueryUntilSchema, getProjectMembersResponseSchema, getProjectMembersStatus200Schema, getProjectMembersStatus400Schema, getProjectMembersStatus401Schema, getProjectMembersStatus403Schema, getProjectMembersStatus410Schema, getProjectPathIdOrNameSchema, getProjectQuerySlugSchema, getProjectQueryTeamIdSchema, getProjectResponseSchema, getProjectStatus200Schema, getProjectStatus400Schema, getProjectStatus401Schema, getProjectStatus403Schema, getProjectStatus410Schema, getProjectTokenErrorSchema, getProjectTokenPathIdOrNameSchema, getProjectTokenQuerySlugSchema, getProjectTokenQueryTeamIdSchema, getProjectTokenResponseSchema, getProjectTokenStatus200Schema, getProjectTokenStatus400Schema, getProjectTokenStatus401Schema, getProjectTokenStatus403Schema, getProjectTokenStatus404Schema, getProjectTokenStatus410Schema, getProjectTraceErrorSchema, getProjectTraceQueryProjectIdSchema, getProjectTraceQueryRequestIdSchema, getProjectTraceQuerySlugSchema, getProjectTraceQueryTeamIdSchema, getProjectTraceResponseSchema, getProjectTraceStatus200Schema, getProjectTraceStatus400Schema, getProjectTraceStatus401Schema, getProjectTraceStatus403Schema, getProjectTraceStatus404Schema, getProjectTraceStatus410Schema, getProjectsByIdOrNameCustomEnvironmentsErrorSchema, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema, getProjectsByIdOrNameCustomEnvironmentsResponseSchema, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema, getProjectsErrorSchema, getProjectsQueryBuildMachineTypesSchema, getProjectsQueryBuildQueueConfigurationSchema, getProjectsQueryDeprecatedSchema, getProjectsQueryEdgeConfigIdSchema, getProjectsQueryEdgeConfigTokenIdSchema, getProjectsQueryElasticConcurrencyEnabledSchema, getProjectsQueryExcludeReposSchema, getProjectsQueryFromSchema, getProjectsQueryGitForkProtectionSchema, getProjectsQueryLimitSchema, getProjectsQueryRepoIdSchema, getProjectsQueryRepoSchema, getProjectsQueryRepoUrlSchema, getProjectsQuerySearchSchema, getProjectsQuerySlugSchema, getProjectsQueryStaticIpsEnabledSchema, getProjectsQueryTeamIdSchema, getProjectsResponseSchema, getProjectsStatus200Schema, getProjectsStatus400Schema, getProjectsStatus401Schema, getProjectsStatus403Schema, getProjectsStatus410Schema, getRecordsErrorSchema, getRecordsPathDomainSchema, getRecordsQueryLimitSchema, getRecordsQuerySinceSchema, getRecordsQuerySlugSchema, getRecordsQueryTeamIdSchema, getRecordsQueryUntilSchema, getRecordsResponseSchema, getRecordsStatus200Schema, getRecordsStatus400Schema, getRecordsStatus401Schema, getRecordsStatus403Schema, getRecordsStatus404Schema, getRecordsStatus410Schema, getRedirectsErrorSchema, getRedirectsQueryDiffSchema, getRedirectsQueryPageSchema, getRedirectsQueryPerPageSchema, getRedirectsQueryProjectIdSchema, getRedirectsQueryQSchema, getRedirectsQuerySlugSchema, getRedirectsQuerySortBySchema, getRedirectsQuerySortOrderSchema, getRedirectsQueryTeamIdSchema, getRedirectsQueryVersionIdSchema, getRedirectsResponseSchema, getRedirectsStatus200Schema, getRedirectsStatus400Schema, getRedirectsStatus401Schema, getRedirectsStatus403Schema, getRedirectsStatus404Schema, getRedirectsStatus410Schema, getRepositoryErrorSchema, getRepositoryImageErrorSchema, getRepositoryImagePathIdOrNameSchema, getRepositoryImagePathImageIdOrDigestSchema, getRepositoryImageQueryProjectIdSchema, getRepositoryImageQuerySlugSchema, getRepositoryImageQueryTeamIdSchema, getRepositoryImageResponseSchema, getRepositoryImageStatus200Schema, getRepositoryImageStatus400Schema, getRepositoryImageStatus401Schema, getRepositoryImageStatus403Schema, getRepositoryImageStatus404Schema, getRepositoryImageStatus410Schema, getRepositoryPathIdOrNameSchema, getRepositoryQueryProjectIdSchema, getRepositoryQuerySlugSchema, getRepositoryQueryTeamIdSchema, getRepositoryResponseSchema, getRepositoryStatus200Schema, getRepositoryStatus400Schema, getRepositoryStatus401Schema, getRepositoryStatus403Schema, getRepositoryStatus404Schema, getRepositoryStatus410Schema, getRepositoryTagErrorSchema, getRepositoryTagPathIdOrNameSchema, getRepositoryTagPathTagSchema, getRepositoryTagQueryProjectIdSchema, getRepositoryTagQuerySlugSchema, getRepositoryTagQueryTeamIdSchema, getRepositoryTagResponseSchema, getRepositoryTagStatus200Schema, getRepositoryTagStatus400Schema, getRepositoryTagStatus401Schema, getRepositoryTagStatus403Schema, getRepositoryTagStatus404Schema, getRepositoryTagStatus410Schema, getRollingReleaseBillingStatusErrorSchema, getRollingReleaseBillingStatusPathIdOrNameSchema, getRollingReleaseBillingStatusQuerySlugSchema, getRollingReleaseBillingStatusQueryTeamIdSchema, getRollingReleaseBillingStatusResponseSchema, getRollingReleaseBillingStatusStatus200Schema, getRollingReleaseBillingStatusStatus400Schema, getRollingReleaseBillingStatusStatus401Schema, getRollingReleaseBillingStatusStatus403Schema, getRollingReleaseBillingStatusStatus404Schema, getRollingReleaseBillingStatusStatus410Schema, getRollingReleaseConfigErrorSchema, getRollingReleaseConfigPathIdOrNameSchema, getRollingReleaseConfigQuerySlugSchema, getRollingReleaseConfigQueryTeamIdSchema, getRollingReleaseConfigResponseSchema, getRollingReleaseConfigStatus200Schema, getRollingReleaseConfigStatus400Schema, getRollingReleaseConfigStatus401Schema, getRollingReleaseConfigStatus403Schema, getRollingReleaseConfigStatus404Schema, getRollingReleaseConfigStatus410Schema, getRollingReleaseErrorSchema, getRollingReleasePathIdOrNameSchema, getRollingReleaseQuerySlugSchema, getRollingReleaseQueryStateSchema, getRollingReleaseQueryTeamIdSchema, getRollingReleaseResponseSchema, getRollingReleaseStatus200Schema, getRollingReleaseStatus400Schema, getRollingReleaseStatus401Schema, getRollingReleaseStatus403Schema, getRollingReleaseStatus404Schema, getRollingReleaseStatus410Schema, getRootErrorSchema, getRootResponseSchema, getRootStatus200Schema, getRootStatus400Schema, getRootStatus401Schema, getRootStatus402Schema, getRootStatus403Schema, getRootStatus404Schema, getRootStatus410Schema, getRouteVersionsErrorSchema, getRouteVersionsPathProjectIdSchema, getRouteVersionsQuerySlugSchema, getRouteVersionsQueryTeamIdSchema, getRouteVersionsResponseSchema, getRouteVersionsStatus200Schema, getRouteVersionsStatus400Schema, getRouteVersionsStatus401Schema, getRouteVersionsStatus403Schema, getRouteVersionsStatus410Schema, getRoutesErrorSchema, getRoutesPathProjectIdSchema, getRoutesQueryDiffSchema, getRoutesQueryFilterSchema, getRoutesQueryQSchema, getRoutesQuerySlugSchema, getRoutesQueryTeamIdSchema, getRoutesQueryVersionIdSchema, getRoutesResponseSchema, getRoutesStatus200Schema, getRoutesStatus400Schema, getRoutesStatus401Schema, getRoutesStatus403Schema, getRoutesStatus404Schema, getRoutesStatus410Schema, getRuntimeLogsErrorSchema, getRuntimeLogsPathDeploymentIdSchema, getRuntimeLogsPathProjectIdSchema, getRuntimeLogsQuerySlugSchema, getRuntimeLogsQueryTeamIdSchema, getRuntimeLogsResponseSchema, getRuntimeLogsStatus200Schema, getRuntimeLogsStatus400Schema, getRuntimeLogsStatus401Schema, getRuntimeLogsStatus403Schema, getRuntimeLogsStatus410Schema, getSdkKeysErrorSchema, getSdkKeysPathProjectIdOrNameSchema, getSdkKeysQuerySlugSchema, getSdkKeysQueryTeamIdSchema, getSdkKeysResponseSchema, getSdkKeysStatus200Schema, getSdkKeysStatus400Schema, getSdkKeysStatus401Schema, getSdkKeysStatus402Schema, getSdkKeysStatus403Schema, getSdkKeysStatus404Schema, getSdkKeysStatus410Schema, getSecurityFirewallConfigErrorSchema, getSecurityFirewallConfigResponseSchema, getSecurityFirewallConfigStatus200Schema, getSecurityFirewallConfigStatus400Schema, getSecurityFirewallConfigStatus401Schema, getSecurityFirewallConfigStatus403Schema, getSecurityFirewallConfigStatus404Schema, getSecurityFirewallConfigStatus410Schema, getSecurityFirewallEventsErrorSchema, getSecurityFirewallEventsQueryEndTimestampSchema, getSecurityFirewallEventsQueryHostsSchema, getSecurityFirewallEventsQueryProjectIdSchema, getSecurityFirewallEventsQuerySlugSchema, getSecurityFirewallEventsQueryStartTimestampSchema, getSecurityFirewallEventsQueryTeamIdSchema, getSecurityFirewallEventsResponseSchema, getSecurityFirewallEventsStatus200Schema, getSecurityFirewallEventsStatus400Schema, getSecurityFirewallEventsStatus401Schema, getSecurityFirewallEventsStatus403Schema, getSecurityFirewallEventsStatus404Schema, getSecurityFirewallEventsStatus408Schema, getSecurityFirewallEventsStatus410Schema, getSecurityFirewallEventsStatus500Schema, getSessionCommandErrorSchema, getSessionCommandLogsErrorSchema, getSessionCommandLogsPathCmdIdSchema, getSessionCommandLogsPathSessionIdSchema, getSessionCommandLogsQuerySlugSchema, getSessionCommandLogsQueryTeamIdSchema, getSessionCommandLogsResponseSchema, getSessionCommandLogsStatus200Schema, getSessionCommandLogsStatus400Schema, getSessionCommandLogsStatus401Schema, getSessionCommandLogsStatus403Schema, getSessionCommandLogsStatus404Schema, getSessionCommandLogsStatus410Schema, getSessionCommandLogsStatus422Schema, getSessionCommandLogsStatus429Schema, getSessionCommandLogsStatus500Schema, getSessionCommandPathCmdIdSchema, getSessionCommandPathSessionIdSchema, getSessionCommandQuerySlugSchema, getSessionCommandQueryTeamIdSchema, getSessionCommandQueryWaitSchema, getSessionCommandResponseSchema, getSessionCommandStatus200Schema, getSessionCommandStatus400Schema, getSessionCommandStatus401Schema, getSessionCommandStatus403Schema, getSessionCommandStatus404Schema, getSessionCommandStatus410Schema, getSessionCommandStatus422Schema, getSessionCommandStatus429Schema, getSessionCommandStatus500Schema, getSessionErrorSchema, getSessionPathSessionIdSchema, getSessionQuerySlugSchema, getSessionQueryTeamIdSchema, getSessionResponseSchema, getSessionSnapshotErrorSchema, getSessionSnapshotPathSnapshotIdSchema, getSessionSnapshotQuerySlugSchema, getSessionSnapshotQueryTeamIdSchema, getSessionSnapshotResponseSchema, getSessionSnapshotStatus200Schema, getSessionSnapshotStatus400Schema, getSessionSnapshotStatus401Schema, getSessionSnapshotStatus403Schema, getSessionSnapshotStatus404Schema, getSessionSnapshotStatus410Schema, getSessionSnapshotStatus429Schema, getSessionStatus200Schema, getSessionStatus400Schema, getSessionStatus401Schema, getSessionStatus403Schema, getSessionStatus404Schema, getSessionStatus410Schema, getSessionStatus429Schema, getSessionStatus500Schema, getSharedEnvVarErrorSchema, getSharedEnvVarPathIdSchema, getSharedEnvVarQuerySlugSchema, getSharedEnvVarQueryTeamIdSchema, getSharedEnvVarResponseSchema, getSharedEnvVarStatus200Schema, getSharedEnvVarStatus400Schema, getSharedEnvVarStatus401Schema, getSharedEnvVarStatus403Schema, getSharedEnvVarStatus410Schema, getStorageStoresByIdErrorSchema, getStorageStoresByIdPathIdSchema, getStorageStoresByIdQueryIncludeGuidesSchema, getStorageStoresByIdQuerySkipMetadataSchema, getStorageStoresByIdResponseSchema, getStorageStoresByIdStatus200Schema, getStorageStoresByIdStatus400Schema, getStorageStoresByIdStatus401Schema, getStorageStoresByIdStatus403Schema, getStorageStoresByIdStatus404Schema, getStorageStoresByIdStatus410Schema, getSupportedTldsErrorSchema, getSupportedTldsQueryTeamIdSchema, getSupportedTldsResponseSchema, getSupportedTldsStatus200Schema, getSupportedTldsStatus400Schema, getSupportedTldsStatus401Schema, getSupportedTldsStatus403Schema, getSupportedTldsStatus429Schema, getSupportedTldsStatus500Schema, getTeamAccessRequestErrorSchema, getTeamAccessRequestPathTeamIdSchema, getTeamAccessRequestPathUserIdSchema, getTeamAccessRequestResponseSchema, getTeamAccessRequestStatus200Schema, getTeamAccessRequestStatus400Schema, getTeamAccessRequestStatus401Schema, getTeamAccessRequestStatus403Schema, getTeamAccessRequestStatus404Schema, getTeamAccessRequestStatus410Schema, getTeamErrorSchema, getTeamMembersErrorSchema, getTeamMembersPathTeamIdSchema, getTeamMembersQueryEligibleMembersForProjectIdSchema, getTeamMembersQueryExcludeProjectSchema, getTeamMembersQueryLimitSchema, getTeamMembersQueryRoleSchema, getTeamMembersQuerySearchSchema, getTeamMembersQuerySinceSchema, getTeamMembersQuerySlugSchema, getTeamMembersQueryUntilSchema, getTeamMembersResponseSchema, getTeamMembersStatus200Schema, getTeamMembersStatus400Schema, getTeamMembersStatus401Schema, getTeamMembersStatus403Schema, getTeamMembersStatus404Schema, getTeamMembersStatus410Schema, getTeamPathTeamIdSchema, getTeamQuerySlugSchema, getTeamResponseSchema, getTeamStatus200Schema, getTeamStatus400Schema, getTeamStatus401Schema, getTeamStatus403Schema, getTeamStatus404Schema, getTeamStatus410Schema, getTeamsErrorSchema, getTeamsQueryLimitSchema, getTeamsQuerySinceSchema, getTeamsQueryUntilSchema, getTeamsResponseSchema, getTeamsStatus200Schema, getTeamsStatus400Schema, getTeamsStatus401Schema, getTeamsStatus403Schema, getTeamsStatus410Schema, getTeamsStatus500Schema, getTldErrorSchema, getTldPathTldSchema, getTldPriceErrorSchema, getTldPricePathTldSchema, getTldPriceQueryTeamIdSchema, getTldPriceQueryYearsSchema, getTldPriceResponseSchema, getTldPriceStatus200Schema, getTldPriceStatus400Schema, getTldPriceStatus401Schema, getTldPriceStatus403Schema, getTldPriceStatus429Schema, getTldPriceStatus500Schema, getTldQueryTeamIdSchema, getTldResponseSchema, getTldStatus200Schema, getTldStatus400Schema, getTldStatus401Schema, getTldStatus403Schema, getTldStatus429Schema, getTldStatus500Schema, getVersionsErrorSchema, getVersionsQueryProjectIdSchema, getVersionsQuerySlugSchema, getVersionsQueryTeamIdSchema, getVersionsResponseSchema, getVersionsStatus200Schema, getVersionsStatus400Schema, getVersionsStatus401Schema, getVersionsStatus403Schema, getVersionsStatus410Schema, getVersionsStatus500Schema, getWebhookErrorSchema, getWebhookPathIdSchema, getWebhookQuerySlugSchema, getWebhookQueryTeamIdSchema, getWebhookResponseSchema, getWebhookStatus200Schema, getWebhookStatus400Schema, getWebhookStatus401Schema, getWebhookStatus403Schema, getWebhookStatus410Schema, getWebhooksErrorSchema, getWebhooksQueryProjectIdSchema, getWebhooksQuerySlugSchema, getWebhooksQueryTeamIdSchema, getWebhooksResponseSchema, getWebhooksStatus200Schema, getWebhooksStatus400Schema, getWebhooksStatus401Schema, getWebhooksStatus403Schema, getWebhooksStatus410Schema, gitNamespacesErrorSchema, gitNamespacesQueryHostSchema, gitNamespacesQueryProviderSchema, gitNamespacesQueryViewerMetadataSchema, gitNamespacesResponseSchema, gitNamespacesStatus200Schema, gitNamespacesStatus400Schema, gitNamespacesStatus401Schema, gitNamespacesStatus403Schema, gitNamespacesStatus404Schema, gitNamespacesStatus410Schema, gitNamespacesStatus429Schema, gitNamespacesStatus500Schema, globalConfigItemSchema, globalConfigItemValueSchema, globalConfigTokenSchema, httpApiDecodeErrorSchema, importResourceErrorSchema, importResourcePathIntegrationConfigurationIdSchema, importResourcePathResourceIdSchema, importResourceResponseSchema, importResourceStatus200Schema, importResourceStatus400Schema, importResourceStatus401Schema, importResourceStatus403Schema, importResourceStatus404Schema, importResourceStatus409Schema, importResourceStatus410Schema, importResourceStatus422Schema, internalServerErrorSchema, invalidAdditionalContactInfoSchema, invalidateBySrcImagesErrorSchema, invalidateBySrcImagesQueryProjectIdOrNameSchema, invalidateBySrcImagesQuerySlugSchema, invalidateBySrcImagesQueryTeamIdSchema, invalidateBySrcImagesResponseSchema, invalidateBySrcImagesStatus200Schema, invalidateBySrcImagesStatus400Schema, invalidateBySrcImagesStatus401Schema, invalidateBySrcImagesStatus402Schema, invalidateBySrcImagesStatus403Schema, invalidateBySrcImagesStatus404Schema, invalidateBySrcImagesStatus410Schema, invalidateByTagsErrorSchema, invalidateByTagsQueryProjectIdOrNameSchema, invalidateByTagsQuerySlugSchema, invalidateByTagsQueryTeamIdSchema, invalidateByTagsResponseSchema, invalidateByTagsStatus200Schema, invalidateByTagsStatus400Schema, invalidateByTagsStatus401Schema, invalidateByTagsStatus403Schema, invalidateByTagsStatus404Schema, invalidateByTagsStatus410Schema, inviteUserToTeamErrorSchema, inviteUserToTeamPathTeamIdSchema, inviteUserToTeamQuerySlugSchema, inviteUserToTeamResponseSchema, inviteUserToTeamStatus200Schema, inviteUserToTeamStatus400Schema, inviteUserToTeamStatus401Schema, inviteUserToTeamStatus403Schema, inviteUserToTeamStatus410Schema, inviteUserToTeamStatus503Schema, invitedTeamMemberSchema, issueCertErrorSchema, issueCertQuerySlugSchema, issueCertQueryTeamIdSchema, issueCertResponseSchema, issueCertStatus200Schema, issueCertStatus400Schema, issueCertStatus401Schema, issueCertStatus402Schema, issueCertStatus403Schema, issueCertStatus404Schema, issueCertStatus410Schema, issueCertStatus449Schema, issueCertStatus500Schema, issueSchema, joinTeamErrorSchema, joinTeamPathTeamIdSchema, joinTeamResponseSchema, joinTeamStatus200Schema, joinTeamStatus400Schema, joinTeamStatus401Schema, joinTeamStatus402Schema, joinTeamStatus403Schema, joinTeamStatus404Schema, joinTeamStatus410Schema, joinTeamStatus503Schema, killSessionCommandErrorSchema, killSessionCommandPathCmdIdSchema, killSessionCommandPathSessionIdSchema, killSessionCommandQuerySlugSchema, killSessionCommandQueryTeamIdSchema, killSessionCommandResponseSchema, killSessionCommandStatus200Schema, killSessionCommandStatus400Schema, killSessionCommandStatus401Schema, killSessionCommandStatus403Schema, killSessionCommandStatus404Schema, killSessionCommandStatus410Schema, killSessionCommandStatus422Schema, killSessionCommandStatus429Schema, killSessionCommandStatus500Schema, languageCodeRequiredSchema, listAccessGroupMembersErrorSchema, listAccessGroupMembersPathIdOrNameSchema, listAccessGroupMembersQueryLimitSchema, listAccessGroupMembersQueryNextSchema, listAccessGroupMembersQuerySearchSchema, listAccessGroupMembersQuerySlugSchema, listAccessGroupMembersQueryTeamIdSchema, listAccessGroupMembersResponseSchema, listAccessGroupMembersStatus200Schema, listAccessGroupMembersStatus400Schema, listAccessGroupMembersStatus401Schema, listAccessGroupMembersStatus403Schema, listAccessGroupMembersStatus410Schema, listAccessGroupProjectsErrorSchema, listAccessGroupProjectsPathIdOrNameSchema, listAccessGroupProjectsQueryLimitSchema, listAccessGroupProjectsQueryNextSchema, listAccessGroupProjectsQuerySlugSchema, listAccessGroupProjectsQueryTeamIdSchema, listAccessGroupProjectsResponseSchema, listAccessGroupProjectsStatus200Schema, listAccessGroupProjectsStatus400Schema, listAccessGroupProjectsStatus401Schema, listAccessGroupProjectsStatus403Schema, listAccessGroupProjectsStatus410Schema, listAccessGroupsErrorSchema, listAccessGroupsQueryLimitSchema, listAccessGroupsQueryMembersLimitSchema, listAccessGroupsQueryNextSchema, listAccessGroupsQueryProjectIdSchema, listAccessGroupsQueryProjectsLimitSchema, listAccessGroupsQuerySearchSchema, listAccessGroupsQuerySlugSchema, listAccessGroupsQueryTeamIdSchema, listAccessGroupsResponseSchema, listAccessGroupsStatus200Schema, listAccessGroupsStatus400Schema, listAccessGroupsStatus401Schema, listAccessGroupsStatus403Schema, listAccessGroupsStatus410Schema, listAiGatewayRulesErrorSchema, listAiGatewayRulesQueryIncludeDisabledSchema, listAiGatewayRulesQuerySlugSchema, listAiGatewayRulesQueryTeamIdSchema, listAiGatewayRulesResponseSchema, listAiGatewayRulesStatus200Schema, listAiGatewayRulesStatus400Schema, listAiGatewayRulesStatus401Schema, listAiGatewayRulesStatus403Schema, listAiGatewayRulesStatus410Schema, listAiGatewayRulesStatus500Schema, listAiGatewayVirtualModelConfigsErrorSchema, listAiGatewayVirtualModelConfigsQueryCursorSchema, listAiGatewayVirtualModelConfigsQueryLimitSchema, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema, listAiGatewayVirtualModelConfigsQuerySlugSchema, listAiGatewayVirtualModelConfigsQueryTeamIdSchema, listAiGatewayVirtualModelConfigsResponseSchema, listAiGatewayVirtualModelConfigsStatus200Schema, listAiGatewayVirtualModelConfigsStatus400Schema, listAiGatewayVirtualModelConfigsStatus401Schema, listAiGatewayVirtualModelConfigsStatus403Schema, listAiGatewayVirtualModelConfigsStatus410Schema, listAiGatewayVirtualModelConfigsStatus500Schema, listAliasesErrorSchema, listAliasesQueryDomainSchema, listAliasesQueryFromSchema, listAliasesQueryLimitSchema, listAliasesQueryProjectIdSchema, listAliasesQueryRollbackDeploymentIdSchema, listAliasesQuerySinceSchema, listAliasesQuerySlugSchema, listAliasesQueryTeamIdSchema, listAliasesQueryUntilSchema, listAliasesResponseSchema, listAliasesStatus200Schema, listAliasesStatus400Schema, listAliasesStatus401Schema, listAliasesStatus403Schema, listAliasesStatus404Schema, listAliasesStatus410Schema, listAuthTokensErrorSchema, listAuthTokensResponseSchema, listAuthTokensStatus200Schema, listAuthTokensStatus400Schema, listAuthTokensStatus401Schema, listAuthTokensStatus403Schema, listAuthTokensStatus410Schema, listBillingChargesErrorSchema, listBillingChargesQueryFromSchema, listBillingChargesQuerySlugSchema, listBillingChargesQueryTeamIdSchema, listBillingChargesQueryToSchema, listBillingChargesResponseSchema, listBillingChargesStatus200Schema, listBillingChargesStatus400Schema, listBillingChargesStatus401Schema, listBillingChargesStatus403Schema, listBillingChargesStatus404Schema, listBillingChargesStatus410Schema, listBillingChargesStatus500Schema, listBillingChargesStatus503Schema, listCheckRunsErrorSchema, listCheckRunsPathCheckIdSchema, listCheckRunsPathProjectIdOrNameSchema, listCheckRunsQuerySlugSchema, listCheckRunsQueryTeamIdSchema, listCheckRunsResponseSchema, listCheckRunsStatus200Schema, listCheckRunsStatus400Schema, listCheckRunsStatus401Schema, listCheckRunsStatus403Schema, listCheckRunsStatus410Schema, listCheckRunsStatus500Schema, listConnectorProjectConnectionsErrorSchema, listConnectorProjectConnectionsPathConnectorSchema, listConnectorProjectConnectionsQueryCursorSchema, listConnectorProjectConnectionsQueryLimitSchema, listConnectorProjectConnectionsQuerySlugSchema, listConnectorProjectConnectionsQueryTeamIdSchema, listConnectorProjectConnectionsResponseSchema, listConnectorProjectConnectionsStatus200Schema, listConnectorProjectConnectionsStatus400Schema, listConnectorProjectConnectionsStatus401Schema, listConnectorProjectConnectionsStatus403Schema, listConnectorProjectConnectionsStatus404Schema, listConnectorProjectConnectionsStatus410Schema, listConnectorProjectConnectionsStatus422Schema, listConnectorsErrorSchema, listConnectorsQueryCursorSchema, listConnectorsQueryLimitSchema, listConnectorsQueryProjectIdSchema, listConnectorsQuerySearchSchema, listConnectorsQueryServiceSchema, listConnectorsQuerySlugSchema, listConnectorsQuerySortSchema, listConnectorsQueryTeamIdSchema, listConnectorsQueryTypeSchema, listConnectorsResponseSchema, listConnectorsStatus200Schema, listConnectorsStatus400Schema, listConnectorsStatus401Schema, listConnectorsStatus403Schema, listConnectorsStatus410Schema, listConnectorsStatus422Schema, listContractCommitmentsErrorSchema, listContractCommitmentsQuerySlugSchema, listContractCommitmentsQueryTeamIdSchema, listContractCommitmentsResponseSchema, listContractCommitmentsStatus200Schema, listContractCommitmentsStatus400Schema, listContractCommitmentsStatus401Schema, listContractCommitmentsStatus403Schema, listContractCommitmentsStatus404Schema, listContractCommitmentsStatus410Schema, listDeploymentAliasesErrorSchema, listDeploymentAliasesPathIdSchema, listDeploymentAliasesQuerySlugSchema, listDeploymentAliasesQueryTeamIdSchema, listDeploymentAliasesResponseSchema, listDeploymentAliasesStatus200Schema, listDeploymentAliasesStatus400Schema, listDeploymentAliasesStatus401Schema, listDeploymentAliasesStatus403Schema, listDeploymentAliasesStatus404Schema, listDeploymentAliasesStatus410Schema, listDeploymentCheckRunsErrorSchema, listDeploymentCheckRunsPathDeploymentIdSchema, listDeploymentCheckRunsQuerySlugSchema, listDeploymentCheckRunsQueryTeamIdSchema, listDeploymentCheckRunsResponseSchema, listDeploymentCheckRunsStatus200Schema, listDeploymentCheckRunsStatus400Schema, listDeploymentCheckRunsStatus401Schema, listDeploymentCheckRunsStatus403Schema, listDeploymentCheckRunsStatus410Schema, listDeploymentCheckRunsStatus500Schema, listDeploymentFilesErrorSchema, listDeploymentFilesPathIdSchema, listDeploymentFilesQuerySlugSchema, listDeploymentFilesQueryTeamIdSchema, listDeploymentFilesResponseSchema, listDeploymentFilesStatus200Schema, listDeploymentFilesStatus400Schema, listDeploymentFilesStatus401Schema, listDeploymentFilesStatus403Schema, listDeploymentFilesStatus404Schema, listDeploymentFilesStatus410Schema, listDrivesErrorSchema, listDrivesQueryCursorSchema, listDrivesQueryLimitSchema, listDrivesQueryNamePrefixSchema, listDrivesQueryProjectIdSchema, listDrivesQuerySlugSchema, listDrivesQuerySortBySchema, listDrivesQuerySortOrderSchema, listDrivesQueryTeamIdSchema, listDrivesResponseSchema, listDrivesStatus200Schema, listDrivesStatus400Schema, listDrivesStatus401Schema, listDrivesStatus403Schema, listDrivesStatus404Schema, listDrivesStatus410Schema, listDrivesStatus429Schema, listEventTypeSchema, listEventTypesErrorSchema, listEventTypesQuerySlugSchema, listEventTypesQueryTeamIdSchema, listEventTypesResponseSchema, listEventTypesStatus200Schema, listEventTypesStatus400Schema, listEventTypesStatus401Schema, listEventTypesStatus403Schema, listEventTypesStatus410Schema, listFlagSegmentsErrorSchema, listFlagSegmentsPathProjectIdOrNameSchema, listFlagSegmentsQuerySlugSchema, listFlagSegmentsQueryTeamIdSchema, listFlagSegmentsQueryWithMetadataSchema, listFlagSegmentsResponseSchema, listFlagSegmentsStatus200Schema, listFlagSegmentsStatus400Schema, listFlagSegmentsStatus401Schema, listFlagSegmentsStatus402Schema, listFlagSegmentsStatus403Schema, listFlagSegmentsStatus404Schema, listFlagSegmentsStatus410Schema, listFlagVersionsErrorSchema, listFlagVersionsPathFlagIdOrSlugSchema, listFlagVersionsPathProjectIdOrNameSchema, listFlagVersionsQueryCursorSchema, listFlagVersionsQueryEnvironmentSchema, listFlagVersionsQueryLimitSchema, listFlagVersionsQuerySlugSchema, listFlagVersionsQueryTeamIdSchema, listFlagVersionsQueryWithMetadataSchema, listFlagVersionsResponseSchema, listFlagVersionsStatus200Schema, listFlagVersionsStatus304Schema, listFlagVersionsStatus400Schema, listFlagVersionsStatus401Schema, listFlagVersionsStatus402Schema, listFlagVersionsStatus403Schema, listFlagVersionsStatus404Schema, listFlagVersionsStatus410Schema, listFlagsErrorSchema, listFlagsPathProjectIdOrNameSchema, listFlagsQueryCursorSchema, listFlagsQueryLimitSchema, listFlagsQuerySearchSchema, listFlagsQuerySlugSchema, listFlagsQueryStateSchema, listFlagsQueryTagsSchema, listFlagsQueryTeamIdSchema, listFlagsQueryWithMetadataSchema, listFlagsResponseSchema, listFlagsStatus200Schema, listFlagsStatus400Schema, listFlagsStatus401Schema, listFlagsStatus402Schema, listFlagsStatus403Schema, listFlagsStatus404Schema, listFlagsStatus410Schema, listFlagsV2ErrorSchema, listFlagsV2PathProjectIdOrNameSchema, listFlagsV2QueryCreatedBySchema, listFlagsV2QueryCursorSchema, listFlagsV2QueryIncludeMarketplaceFlagsSchema, listFlagsV2QueryLimitSchema, listFlagsV2QueryMaintainerIdsSchema, listFlagsV2QuerySearchSchema, listFlagsV2QuerySlugSchema, listFlagsV2QueryStateSchema, listFlagsV2QueryTagsSchema, listFlagsV2QueryTeamIdSchema, listFlagsV2ResponseSchema, listFlagsV2Status200Schema, listFlagsV2Status400Schema, listFlagsV2Status401Schema, listFlagsV2Status402Schema, listFlagsV2Status403Schema, listFlagsV2Status404Schema, listFlagsV2Status410Schema, listKmsIssuersErrorSchema, listKmsIssuersQueryLimitSchema, listKmsIssuersQueryNextSchema, listKmsIssuersQuerySlugSchema, listKmsIssuersQueryTeamIdSchema, listKmsIssuersResponseSchema, listKmsIssuersStatus200Schema, listKmsIssuersStatus400Schema, listKmsIssuersStatus401Schema, listKmsIssuersStatus403Schema, listKmsIssuersStatus410Schema, listNamedSandboxesErrorSchema, listNamedSandboxesQueryCursorSchema, listNamedSandboxesQueryLimitSchema, listNamedSandboxesQueryNamePrefixSchema, listNamedSandboxesQueryProjectSchema, listNamedSandboxesQuerySlugSchema, listNamedSandboxesQuerySortBySchema, listNamedSandboxesQuerySortOrderSchema, listNamedSandboxesQueryStatusSchema, listNamedSandboxesQueryTagsSchema, listNamedSandboxesQueryTeamIdSchema, listNamedSandboxesResponseSchema, listNamedSandboxesStatus200Schema, listNamedSandboxesStatus400Schema, listNamedSandboxesStatus401Schema, listNamedSandboxesStatus403Schema, listNamedSandboxesStatus404Schema, listNamedSandboxesStatus410Schema, listNamedSandboxesStatus429Schema, listNetworksErrorSchema, listNetworksQueryIncludeHostedZonesSchema, listNetworksQueryIncludePeeringConnectionsSchema, listNetworksQueryIncludeProjectsSchema, listNetworksQuerySearchSchema, listNetworksQuerySlugSchema, listNetworksQueryTeamIdSchema, listNetworksResponseSchema, listNetworksStatus200Schema, listNetworksStatus400Schema, listNetworksStatus401Schema, listNetworksStatus403Schema, listNetworksStatus410Schema, listPrivateLinkEndpointsErrorSchema, listPrivateLinkEndpointsQueryProjectIdSchema, listPrivateLinkEndpointsQuerySlugSchema, listPrivateLinkEndpointsQueryTeamIdSchema, listPrivateLinkEndpointsResponseSchema, listPrivateLinkEndpointsStatus200Schema, listPrivateLinkEndpointsStatus400Schema, listPrivateLinkEndpointsStatus401Schema, listPrivateLinkEndpointsStatus403Schema, listPrivateLinkEndpointsStatus404Schema, listPrivateLinkEndpointsStatus410Schema, listProjectChecksErrorSchema, listProjectChecksPathProjectIdOrNameSchema, listProjectChecksQueryBlocksSchema, listProjectChecksQuerySlugSchema, listProjectChecksQueryTeamIdSchema, listProjectChecksResponseSchema, listProjectChecksStatus200Schema, listProjectChecksStatus400Schema, listProjectChecksStatus401Schema, listProjectChecksStatus403Schema, listProjectChecksStatus410Schema, listProjectChecksStatus500Schema, listProjectConnectorConnectionsErrorSchema, listProjectConnectorConnectionsPathProjectIdSchema, listProjectConnectorConnectionsQueryCursorSchema, listProjectConnectorConnectionsQueryLimitSchema, listProjectConnectorConnectionsQuerySlugSchema, listProjectConnectorConnectionsQueryTeamIdSchema, listProjectConnectorConnectionsResponseSchema, listProjectConnectorConnectionsStatus200Schema, listProjectConnectorConnectionsStatus400Schema, listProjectConnectorConnectionsStatus401Schema, listProjectConnectorConnectionsStatus403Schema, listProjectConnectorConnectionsStatus404Schema, listProjectConnectorConnectionsStatus410Schema, listPromoteAliasesErrorSchema, listPromoteAliasesPathProjectIdSchema, listPromoteAliasesQueryFailedOnlySchema, listPromoteAliasesQueryLimitSchema, listPromoteAliasesQuerySinceSchema, listPromoteAliasesQuerySlugSchema, listPromoteAliasesQueryTeamIdSchema, listPromoteAliasesQueryUntilSchema, listPromoteAliasesResponseSchema, listPromoteAliasesStatus200Schema, listPromoteAliasesStatus400Schema, listPromoteAliasesStatus401Schema, listPromoteAliasesStatus403Schema, listPromoteAliasesStatus404Schema, listPromoteAliasesStatus410Schema, listRepositoriesErrorSchema, listRepositoriesQueryCursorSchema, listRepositoriesQueryLimitSchema, listRepositoriesQueryProjectIdSchema, listRepositoriesQuerySlugSchema, listRepositoriesQueryTeamIdSchema, listRepositoriesResponseSchema, listRepositoriesStatus200Schema, listRepositoriesStatus400Schema, listRepositoriesStatus401Schema, listRepositoriesStatus403Schema, listRepositoriesStatus404Schema, listRepositoriesStatus410Schema, listRepositoryImagesErrorSchema, listRepositoryImagesPathIdOrNameSchema, listRepositoryImagesQueryCursorSchema, listRepositoryImagesQueryLimitSchema, listRepositoryImagesQueryProjectIdSchema, listRepositoryImagesQuerySlugSchema, listRepositoryImagesQueryTeamIdSchema, listRepositoryImagesQueryUntaggedSchema, listRepositoryImagesResponseSchema, listRepositoryImagesStatus200Schema, listRepositoryImagesStatus400Schema, listRepositoryImagesStatus401Schema, listRepositoryImagesStatus403Schema, listRepositoryImagesStatus404Schema, listRepositoryImagesStatus410Schema, listRepositoryPermissionsErrorSchema, listRepositoryPermissionsPathIdOrNameSchema, listRepositoryPermissionsQueryCursorSchema, listRepositoryPermissionsQueryLimitSchema, listRepositoryPermissionsQueryProjectIdSchema, listRepositoryPermissionsQuerySlugSchema, listRepositoryPermissionsQueryTeamIdSchema, listRepositoryPermissionsResponseSchema, listRepositoryPermissionsStatus200Schema, listRepositoryPermissionsStatus400Schema, listRepositoryPermissionsStatus401Schema, listRepositoryPermissionsStatus403Schema, listRepositoryPermissionsStatus404Schema, listRepositoryPermissionsStatus410Schema, listRepositoryTagsErrorSchema, listRepositoryTagsPathIdOrNameSchema, listRepositoryTagsQueryCursorSchema, listRepositoryTagsQueryLimitSchema, listRepositoryTagsQueryProjectIdSchema, listRepositoryTagsQuerySlugSchema, listRepositoryTagsQuerySortBySchema, listRepositoryTagsQuerySortOrderSchema, listRepositoryTagsQueryTeamIdSchema, listRepositoryTagsResponseSchema, listRepositoryTagsStatus200Schema, listRepositoryTagsStatus400Schema, listRepositoryTagsStatus401Schema, listRepositoryTagsStatus403Schema, listRepositoryTagsStatus404Schema, listRepositoryTagsStatus410Schema, listSessionCommandsErrorSchema, listSessionCommandsPathSessionIdSchema, listSessionCommandsQuerySlugSchema, listSessionCommandsQueryTeamIdSchema, listSessionCommandsResponseSchema, listSessionCommandsStatus200Schema, listSessionCommandsStatus400Schema, listSessionCommandsStatus401Schema, listSessionCommandsStatus403Schema, listSessionCommandsStatus404Schema, listSessionCommandsStatus410Schema, listSessionCommandsStatus429Schema, listSessionSnapshotsErrorSchema, listSessionSnapshotsQueryCursorSchema, listSessionSnapshotsQueryLimitSchema, listSessionSnapshotsQueryNameSchema, listSessionSnapshotsQueryProjectSchema, listSessionSnapshotsQuerySlugSchema, listSessionSnapshotsQuerySortOrderSchema, listSessionSnapshotsQueryTeamIdSchema, listSessionSnapshotsResponseSchema, listSessionSnapshotsStatus200Schema, listSessionSnapshotsStatus400Schema, listSessionSnapshotsStatus401Schema, listSessionSnapshotsStatus403Schema, listSessionSnapshotsStatus404Schema, listSessionSnapshotsStatus410Schema, listSessionSnapshotsStatus429Schema, listSessionsErrorSchema, listSessionsQueryCursorSchema, listSessionsQueryLimitSchema, listSessionsQueryNameSchema, listSessionsQueryProjectSchema, listSessionsQuerySlugSchema, listSessionsQuerySortOrderSchema, listSessionsQueryTeamIdSchema, listSessionsResponseSchema, listSessionsStatus200Schema, listSessionsStatus400Schema, listSessionsStatus401Schema, listSessionsStatus403Schema, listSessionsStatus404Schema, listSessionsStatus410Schema, listSessionsStatus429Schema, listSessionsStatus500Schema, listSharedEnvVariableErrorSchema, listSharedEnvVariableQueryExcludeIdsSchema, listSharedEnvVariableQueryExcludeProjectIdSchema, listSharedEnvVariableQueryIdsSchema, listSharedEnvVariableQueryProjectIdSchema, listSharedEnvVariableQuerySearchSchema, listSharedEnvVariableQuerySlugSchema, listSharedEnvVariableQueryTeamIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsErrorSchema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsErrorSchema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2ErrorSchema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsErrorSchema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainErrorSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainErrorSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsErrorSchema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaErrorSchema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamErrorSchema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassErrorSchema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectErrorSchema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesErrorSchema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, privateLinkEndpointSchema, propertyKeySchema, putFirewallConfigErrorSchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupErrorSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectErrorSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkErrorSchema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readPrivateLinkEndpointErrorSchema, readPrivateLinkEndpointPathEndpointIdSchema, readPrivateLinkEndpointQueryProjectIdSchema, readPrivateLinkEndpointQuerySlugSchema, readPrivateLinkEndpointQueryTeamIdSchema, readPrivateLinkEndpointResponseSchema, readPrivateLinkEndpointStatus200Schema, readPrivateLinkEndpointStatus400Schema, readPrivateLinkEndpointStatus401Schema, readPrivateLinkEndpointStatus403Schema, readPrivateLinkEndpointStatus404Schema, readPrivateLinkEndpointStatus410Schema, readSessionFileErrorSchema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsErrorSchema, recordEventsHeaderXArtifactClientCiSchema, recordEventsHeaderXArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpErrorSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus402Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertErrorSchema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentErrorSchema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainErrorSchema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvErrorSchema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberErrorSchema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordErrorSchema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionErrorSchema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberErrorSchema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainErrorSchema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceConnectorTriggerDestinationsErrorSchema, replaceConnectorTriggerDestinationsPathConnectorSchema, replaceConnectorTriggerDestinationsQuerySlugSchema, replaceConnectorTriggerDestinationsQueryTeamIdSchema, replaceConnectorTriggerDestinationsResponseSchema, replaceConnectorTriggerDestinationsStatus200Schema, replaceConnectorTriggerDestinationsStatus400Schema, replaceConnectorTriggerDestinationsStatus401Schema, replaceConnectorTriggerDestinationsStatus403Schema, replaceConnectorTriggerDestinationsStatus404Schema, replaceConnectorTriggerDestinationsStatus410Schema, replaceConnectorTriggerDestinationsStatus422Schema, replaceDomainsByDomainRecordsErrorSchema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamErrorSchema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteErrorSchema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromoteErrorSchema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestPromoteStatus422Schema, requestRollbackErrorSchema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckErrorSchema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupErrorSchema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsErrorSchema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, revokeInstallationCredentialErrorSchema, revokeInstallationCredentialPathIntegrationConfigurationIdSchema, revokeInstallationCredentialResponseSchema, revokeInstallationCredentialStatus200Schema, revokeInstallationCredentialStatus400Schema, revokeInstallationCredentialStatus401Schema, revokeInstallationCredentialStatus403Schema, revokeInstallationCredentialStatus404Schema, revokeInstallationCredentialStatus409Schema, revokeInstallationCredentialStatus410Schema, revokeKmsSigningKeyErrorSchema, revokeKmsSigningKeyPathIssuerIdSchema, revokeKmsSigningKeyPathKeyIdSchema, revokeKmsSigningKeyQuerySlugSchema, revokeKmsSigningKeyQueryTeamIdSchema, revokeKmsSigningKeyResponseSchema, revokeKmsSigningKeyStatus200Schema, revokeKmsSigningKeyStatus400Schema, revokeKmsSigningKeyStatus401Schema, revokeKmsSigningKeyStatus403Schema, revokeKmsSigningKeyStatus404Schema, revokeKmsSigningKeyStatus409Schema, revokeKmsSigningKeyStatus410Schema, rotateInstallationCredentialErrorSchema, rotateInstallationCredentialPathIntegrationConfigurationIdSchema, rotateInstallationCredentialResponseSchema, rotateInstallationCredentialStatus200Schema, rotateInstallationCredentialStatus400Schema, rotateInstallationCredentialStatus401Schema, rotateInstallationCredentialStatus403Schema, rotateInstallationCredentialStatus404Schema, rotateInstallationCredentialStatus409Schema, rotateInstallationCredentialStatus410Schema, runSessionCommandErrorSchema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoErrorSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, signKmsMessageErrorSchema, signKmsMessagePathIssuerIdSchema, signKmsMessageResponseSchema, signKmsMessageStatus200Schema, signKmsMessageStatus400Schema, signKmsMessageStatus401Schema, signKmsMessageStatus403Schema, signKmsMessageStatus404Schema, signKmsMessageStatus429Schema, signKmsTokenErrorSchema, signKmsTokenPathIssuerIdSchema, signKmsTokenResponseSchema, signKmsTokenStatus200Schema, signKmsTokenStatus400Schema, signKmsTokenStatus401Schema, signKmsTokenStatus403Schema, signKmsTokenStatus404Schema, signKmsTokenStatus429Schema, snapshotSchema, stageRedirectsErrorSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesErrorSchema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleaseErrorSchema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusErrorSchema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionErrorSchema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataErrorSchema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoiceErrorSchema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesErrorSchema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainErrorSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainErrorSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariableErrorSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectErrorSchema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupErrorSchema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectErrorSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleErrorSchema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigBySlugErrorSchema, updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema, updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, updateAiGatewayVirtualModelConfigBySlugResponseSchema, updateAiGatewayVirtualModelConfigBySlugStatus200Schema, updateAiGatewayVirtualModelConfigBySlugStatus400Schema, updateAiGatewayVirtualModelConfigBySlugStatus401Schema, updateAiGatewayVirtualModelConfigBySlugStatus403Schema, updateAiGatewayVirtualModelConfigBySlugStatus404Schema, updateAiGatewayVirtualModelConfigBySlugStatus410Schema, updateAiGatewayVirtualModelConfigBySlugStatus500Schema, updateAiGatewayVirtualModelConfigErrorSchema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeErrorSchema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckErrorSchema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateConnectorErrorSchema, updateConnectorPathConnectorSchema, updateConnectorQuerySlugSchema, updateConnectorQueryTeamIdSchema, updateConnectorResponseSchema, updateConnectorStatus200Schema, updateConnectorStatus400Schema, updateConnectorStatus401Schema, updateConnectorStatus403Schema, updateConnectorStatus404Schema, updateConnectorStatus409Schema, updateConnectorStatus410Schema, updateConnectorStatus422Schema, updateConnectorStatus502Schema, updateCustomEnvironmentErrorSchema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunErrorSchema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewErrorSchema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversErrorSchema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainErrorSchema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigErrorSchema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigErrorSchema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagErrorSchema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentErrorSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsErrorSchema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationErrorSchema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionErrorSchema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoiceErrorSchema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateKmsIssuerErrorSchema, updateKmsIssuerPathIssuerIdSchema, updateKmsIssuerPolicyErrorSchema, updateKmsIssuerPolicyPathIssuerIdSchema, updateKmsIssuerPolicyPathKindSchema, updateKmsIssuerPolicyPathPolicyKeySchema, updateKmsIssuerPolicyQuerySlugSchema, updateKmsIssuerPolicyQueryTeamIdSchema, updateKmsIssuerPolicyResponseSchema, updateKmsIssuerPolicyStatus200Schema, updateKmsIssuerPolicyStatus400Schema, updateKmsIssuerPolicyStatus401Schema, updateKmsIssuerPolicyStatus403Schema, updateKmsIssuerPolicyStatus404Schema, updateKmsIssuerPolicyStatus410Schema, updateKmsIssuerQuerySlugSchema, updateKmsIssuerQueryTeamIdSchema, updateKmsIssuerResponseSchema, updateKmsIssuerStatus200Schema, updateKmsIssuerStatus400Schema, updateKmsIssuerStatus401Schema, updateKmsIssuerStatus403Schema, updateKmsIssuerStatus404Schema, updateKmsIssuerStatus410Schema, updateMicrofrontendsErrorSchema, updateMicrofrontendsGroupErrorSchema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkErrorSchema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectErrorSchema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updatePrivateLinkEndpointErrorSchema, updatePrivateLinkEndpointPathEndpointIdSchema, updatePrivateLinkEndpointQueryProjectIdSchema, updatePrivateLinkEndpointQuerySlugSchema, updatePrivateLinkEndpointQueryTeamIdSchema, updatePrivateLinkEndpointResponseSchema, updatePrivateLinkEndpointStatus200Schema, updatePrivateLinkEndpointStatus400Schema, updatePrivateLinkEndpointStatus401Schema, updatePrivateLinkEndpointStatus403Schema, updatePrivateLinkEndpointStatus404Schema, updatePrivateLinkEndpointStatus409Schema, updatePrivateLinkEndpointStatus410Schema, updateProjectCheckErrorSchema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainErrorSchema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectErrorSchema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassErrorSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectStatus429Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordErrorSchema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourceErrorSchema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdErrorSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsErrorSchema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigErrorSchema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsErrorSchema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxErrorSchema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyErrorSchema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableErrorSchema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsErrorSchema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberErrorSchema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionErrorSchema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactErrorSchema, uploadArtifactHeaderContentLengthSchema, uploadArtifactHeaderXArtifactClientCiSchema, uploadArtifactHeaderXArtifactClientInteractiveSchema, uploadArtifactHeaderXArtifactDirtyHashSchema, uploadArtifactHeaderXArtifactDurationSchema, uploadArtifactHeaderXArtifactShaSchema, uploadArtifactHeaderXArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertErrorSchema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileErrorSchema, uploadFileHeaderContentLengthSchema, uploadFileHeaderXNowDigestSchema, uploadFileHeaderXNowSizeSchema, uploadFileHeaderXVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarErrorSchema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, upsertConnectorProjectConnectionErrorSchema, upsertConnectorProjectConnectionPathConnectorSchema, upsertConnectorProjectConnectionPathProjectIdSchema, upsertConnectorProjectConnectionQuerySlugSchema, upsertConnectorProjectConnectionQueryTeamIdSchema, upsertConnectorProjectConnectionResponseSchema, upsertConnectorProjectConnectionStatus200Schema, upsertConnectorProjectConnectionStatus400Schema, upsertConnectorProjectConnectionStatus401Schema, upsertConnectorProjectConnectionStatus403Schema, upsertConnectorProjectConnectionStatus404Schema, upsertConnectorProjectConnectionStatus410Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesErrorSchema, writeSessionFilesHeaderXCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
|
|
15911
16717
|
//# sourceMappingURL=schemas.d.mts.map
|