vercel-api-js 1.15.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.ZodUnion<readonly [z.ZodObject<{
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.ZodUnion<readonly [z.ZodObject<{
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.ZodUnion<readonly [z.ZodObject<{
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";
@@ -1271,6 +1708,9 @@ declare const userEventSchema: z.ZodObject<{
1271
1708
  "project-web-analytics-enabled": "project-web-analytics-enabled";
1272
1709
  "protected-git-scope-added": "protected-git-scope-added";
1273
1710
  "protected-git-scope-removed": "protected-git-scope-removed";
1711
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
1712
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
1713
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
1274
1714
  "runtime-cache-purge-all": "runtime-cache-purge-all";
1275
1715
  "saml-connection-created": "saml-connection-created";
1276
1716
  "saml-connection-deleted": "saml-connection-deleted";
@@ -1298,6 +1738,8 @@ declare const userEventSchema: z.ZodObject<{
1298
1738
  "shared-env-variable-create": "shared-env-variable-create";
1299
1739
  "shared-env-variable-delete": "shared-env-variable-delete";
1300
1740
  "shared-env-variable-read": "shared-env-variable-read";
1741
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
1742
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
1301
1743
  "shared-env-variable-update": "shared-env-variable-update";
1302
1744
  "show-ip-addresses": "show-ip-addresses";
1303
1745
  signup: "signup";
@@ -1328,6 +1770,7 @@ declare const userEventSchema: z.ZodObject<{
1328
1770
  "storage-update-project-connection": "storage-update-project-connection";
1329
1771
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
1330
1772
  "storage-view-secret": "storage-view-secret";
1773
+ "strict-connectors": "strict-connectors";
1331
1774
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
1332
1775
  "strict-password-protection-settings": "strict-password-protection-settings";
1333
1776
  "strict-shareable-links": "strict-shareable-links";
@@ -1489,7 +1932,7 @@ declare const userEventSchema: z.ZodObject<{
1489
1932
  username: z.ZodString;
1490
1933
  uid: z.ZodString;
1491
1934
  }, z.core.$strip>>;
1492
- principal: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
1935
+ principal: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1493
1936
  type: z.ZodOptional<z.ZodEnum<{
1494
1937
  user: "user";
1495
1938
  }>>;
@@ -1516,8 +1959,8 @@ declare const userEventSchema: z.ZodObject<{
1516
1959
  type: z.ZodEnum<{
1517
1960
  system: "system";
1518
1961
  }>;
1519
- }, z.core.$strict>]>>;
1520
- via: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1962
+ }, z.core.$strict>], "type">>;
1963
+ via: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1521
1964
  type: z.ZodOptional<z.ZodEnum<{
1522
1965
  user: "user";
1523
1966
  }>>;
@@ -1544,10 +1987,13 @@ declare const userEventSchema: z.ZodObject<{
1544
1987
  type: z.ZodEnum<{
1545
1988
  system: "system";
1546
1989
  }>;
1547
- }, z.core.$strict>]>>>;
1990
+ }, z.core.$strict>], "type">>>;
1548
1991
  userId: z.ZodOptional<z.ZodString>;
1549
1992
  principalId: z.ZodString;
1550
1993
  viaIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
1994
+ tokenId: z.ZodOptional<z.ZodString>;
1995
+ sessionId: z.ZodOptional<z.ZodString>;
1996
+ requestId: z.ZodOptional<z.ZodString>;
1551
1997
  payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$strict>, z.ZodObject<{
1552
1998
  action: z.ZodEnum<{
1553
1999
  archived: "archived";
@@ -1590,6 +2036,10 @@ declare const userEventSchema: z.ZodObject<{
1590
2036
  projectName: z.ZodOptional<z.ZodString>;
1591
2037
  projectId: z.ZodOptional<z.ZodString>;
1592
2038
  environment: z.ZodArray<z.ZodString>;
2039
+ }, z.core.$strict>, z.ZodObject<{
2040
+ projectId: z.ZodString;
2041
+ projectName: z.ZodString;
2042
+ policyId: z.ZodString;
1593
2043
  }, z.core.$strict>, z.ZodObject<{
1594
2044
  provider: z.ZodOptional<z.ZodEnum<{
1595
2045
  chatgpt: "chatgpt";
@@ -1791,10 +2241,19 @@ declare const userEventSchema: z.ZodObject<{
1791
2241
  providerSlug: z.ZodString;
1792
2242
  }, z.core.$strip>;
1793
2243
  }, z.core.$strict>, z.ZodObject<{
1794
- amount: z.ZodString;
1795
- purchaseIntentId: z.ZodString;
2244
+ credential: z.ZodObject<{
2245
+ id: z.ZodString;
2246
+ name: z.ZodString;
2247
+ providerSlug: z.ZodString;
2248
+ }, z.core.$strip>;
2249
+ added: z.ZodArray<z.ZodString>;
2250
+ removed: z.ZodArray<z.ZodString>;
2251
+ changed: z.ZodArray<z.ZodString>;
1796
2252
  }, z.core.$strict>, z.ZodObject<{
1797
2253
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
2254
+ }, z.core.$strict>, z.ZodObject<{
2255
+ amount: z.ZodString;
2256
+ purchaseIntentId: z.ZodString;
1798
2257
  }, z.core.$strict>, z.ZodObject<{
1799
2258
  added: z.ZodArray<z.ZodString>;
1800
2259
  removed: z.ZodArray<z.ZodString>;
@@ -2031,6 +2490,7 @@ declare const userEventSchema: z.ZodObject<{
2031
2490
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2032
2491
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2033
2492
  "read-write:alerts": "read-write:alerts";
2493
+ "read-write:automations": "read-write:automations";
2034
2494
  "read-write:billing": "read-write:billing";
2035
2495
  "read-write:blob": "read-write:blob";
2036
2496
  "read-write:connect": "read-write:connect";
@@ -2061,7 +2521,9 @@ declare const userEventSchema: z.ZodObject<{
2061
2521
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2062
2522
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2063
2523
  "read:alerts": "read:alerts";
2524
+ "read:automations": "read:automations";
2064
2525
  "read:billing": "read:billing";
2526
+ "read:connect": "read:connect";
2065
2527
  "read:deployment": "read:deployment";
2066
2528
  "read:domain": "read:domain";
2067
2529
  "read:event": "read:event";
@@ -2081,6 +2543,7 @@ declare const userEventSchema: z.ZodObject<{
2081
2543
  "read:user": "read:user";
2082
2544
  "read:vcr": "read:vcr";
2083
2545
  "read:web-analytics": "read:web-analytics";
2546
+ "read:webhooks": "read:webhooks";
2084
2547
  "use:ai-gateway": "use:ai-gateway";
2085
2548
  }>>>;
2086
2549
  }, z.core.$strict>, z.ZodObject<{
@@ -2104,6 +2567,7 @@ declare const userEventSchema: z.ZodObject<{
2104
2567
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2105
2568
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2106
2569
  "read-write:alerts": "read-write:alerts";
2570
+ "read-write:automations": "read-write:automations";
2107
2571
  "read-write:billing": "read-write:billing";
2108
2572
  "read-write:blob": "read-write:blob";
2109
2573
  "read-write:connect": "read-write:connect";
@@ -2134,7 +2598,9 @@ declare const userEventSchema: z.ZodObject<{
2134
2598
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2135
2599
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2136
2600
  "read:alerts": "read:alerts";
2601
+ "read:automations": "read:automations";
2137
2602
  "read:billing": "read:billing";
2603
+ "read:connect": "read:connect";
2138
2604
  "read:deployment": "read:deployment";
2139
2605
  "read:domain": "read:domain";
2140
2606
  "read:event": "read:event";
@@ -2154,6 +2620,7 @@ declare const userEventSchema: z.ZodObject<{
2154
2620
  "read:user": "read:user";
2155
2621
  "read:vcr": "read:vcr";
2156
2622
  "read:web-analytics": "read:web-analytics";
2623
+ "read:webhooks": "read:webhooks";
2157
2624
  "use:ai-gateway": "use:ai-gateway";
2158
2625
  }>>>;
2159
2626
  }, z.core.$strict>, z.ZodObject<{
@@ -2183,6 +2650,7 @@ declare const userEventSchema: z.ZodObject<{
2183
2650
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2184
2651
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2185
2652
  "read-write:alerts": "read-write:alerts";
2653
+ "read-write:automations": "read-write:automations";
2186
2654
  "read-write:billing": "read-write:billing";
2187
2655
  "read-write:blob": "read-write:blob";
2188
2656
  "read-write:connect": "read-write:connect";
@@ -2213,7 +2681,9 @@ declare const userEventSchema: z.ZodObject<{
2213
2681
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2214
2682
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2215
2683
  "read:alerts": "read:alerts";
2684
+ "read:automations": "read:automations";
2216
2685
  "read:billing": "read:billing";
2686
+ "read:connect": "read:connect";
2217
2687
  "read:deployment": "read:deployment";
2218
2688
  "read:domain": "read:domain";
2219
2689
  "read:event": "read:event";
@@ -2232,6 +2702,7 @@ declare const userEventSchema: z.ZodObject<{
2232
2702
  "read:team": "read:team";
2233
2703
  "read:vcr": "read:vcr";
2234
2704
  "read:web-analytics": "read:web-analytics";
2705
+ "read:webhooks": "read:webhooks";
2235
2706
  "use:ai-gateway": "use:ai-gateway";
2236
2707
  }>>>;
2237
2708
  }, z.core.$strip>>;
@@ -2258,6 +2729,7 @@ declare const userEventSchema: z.ZodObject<{
2258
2729
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2259
2730
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2260
2731
  "read-write:alerts": "read-write:alerts";
2732
+ "read-write:automations": "read-write:automations";
2261
2733
  "read-write:billing": "read-write:billing";
2262
2734
  "read-write:blob": "read-write:blob";
2263
2735
  "read-write:connect": "read-write:connect";
@@ -2288,7 +2760,9 @@ declare const userEventSchema: z.ZodObject<{
2288
2760
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2289
2761
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2290
2762
  "read:alerts": "read:alerts";
2763
+ "read:automations": "read:automations";
2291
2764
  "read:billing": "read:billing";
2765
+ "read:connect": "read:connect";
2292
2766
  "read:deployment": "read:deployment";
2293
2767
  "read:domain": "read:domain";
2294
2768
  "read:event": "read:event";
@@ -2307,6 +2781,7 @@ declare const userEventSchema: z.ZodObject<{
2307
2781
  "read:team": "read:team";
2308
2782
  "read:vcr": "read:vcr";
2309
2783
  "read:web-analytics": "read:web-analytics";
2784
+ "read:webhooks": "read:webhooks";
2310
2785
  "use:ai-gateway": "use:ai-gateway";
2311
2786
  }>>>;
2312
2787
  }, z.core.$strip>>;
@@ -2335,6 +2810,7 @@ declare const userEventSchema: z.ZodObject<{
2335
2810
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2336
2811
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2337
2812
  "read-write:alerts": "read-write:alerts";
2813
+ "read-write:automations": "read-write:automations";
2338
2814
  "read-write:billing": "read-write:billing";
2339
2815
  "read-write:blob": "read-write:blob";
2340
2816
  "read-write:connect": "read-write:connect";
@@ -2365,7 +2841,9 @@ declare const userEventSchema: z.ZodObject<{
2365
2841
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2366
2842
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2367
2843
  "read:alerts": "read:alerts";
2844
+ "read:automations": "read:automations";
2368
2845
  "read:billing": "read:billing";
2846
+ "read:connect": "read:connect";
2369
2847
  "read:deployment": "read:deployment";
2370
2848
  "read:domain": "read:domain";
2371
2849
  "read:event": "read:event";
@@ -2384,6 +2862,7 @@ declare const userEventSchema: z.ZodObject<{
2384
2862
  "read:team": "read:team";
2385
2863
  "read:vcr": "read:vcr";
2386
2864
  "read:web-analytics": "read:web-analytics";
2865
+ "read:webhooks": "read:webhooks";
2387
2866
  "use:ai-gateway": "use:ai-gateway";
2388
2867
  }>>>;
2389
2868
  }, z.core.$strict>, z.ZodObject<{
@@ -2629,6 +3108,7 @@ declare const userEventSchema: z.ZodObject<{
2629
3108
  clientUid: z.ZodOptional<z.ZodString>;
2630
3109
  clientName: z.ZodOptional<z.ZodString>;
2631
3110
  projectId: z.ZodOptional<z.ZodString>;
3111
+ projectName: z.ZodOptional<z.ZodString>;
2632
3112
  installationId: z.ZodOptional<z.ZodString>;
2633
3113
  subjectType: z.ZodOptional<z.ZodEnum<{
2634
3114
  user: "user";
@@ -2711,7 +3191,7 @@ declare const userEventSchema: z.ZodObject<{
2711
3191
  regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
2712
3192
  type: z.ZodOptional<z.ZodString>;
2713
3193
  }, z.core.$strict>, z.ZodObject<{
2714
- job: z.ZodUnion<readonly [z.ZodObject<{
3194
+ job: z.ZodDiscriminatedUnion<[z.ZodObject<{
2715
3195
  type: z.ZodEnum<{
2716
3196
  "bitbucket-push": "bitbucket-push";
2717
3197
  }>;
@@ -3255,7 +3735,7 @@ declare const userEventSchema: z.ZodObject<{
3255
3735
  provider: z.ZodEnum<{
3256
3736
  "cursor-origin": "cursor-origin";
3257
3737
  }>;
3258
- }, z.core.$strict>]>;
3738
+ }, z.core.$strict>], "type">;
3259
3739
  }, z.core.$strict>, z.ZodObject<{
3260
3740
  url: z.ZodString;
3261
3741
  oldTeam: z.ZodOptional<z.ZodObject<{
@@ -3551,6 +4031,16 @@ declare const userEventSchema: z.ZodObject<{
3551
4031
  ipAddress: z.ZodOptional<z.ZodString>;
3552
4032
  deploymentId: z.ZodString;
3553
4033
  deploymentUrl: z.ZodString;
4034
+ }, z.core.$strict>, z.ZodObject<{
4035
+ provider: z.ZodString;
4036
+ organizationId: z.ZodString;
4037
+ repository: z.ZodString;
4038
+ key: z.ZodString;
4039
+ visibility: z.ZodEnum<{
4040
+ config: "config";
4041
+ secret: "secret";
4042
+ }>;
4043
+ changedFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
3554
4044
  }, z.core.$strict>, z.ZodObject<{
3555
4045
  created: z.ZodOptional<z.ZodISODateTime>;
3556
4046
  key: z.ZodOptional<z.ZodString>;
@@ -3582,6 +4072,17 @@ declare const userEventSchema: z.ZodObject<{
3582
4072
  lastEditedByDisplayName: z.ZodOptional<z.ZodString>;
3583
4073
  projectNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
3584
4074
  ipAddress: z.ZodOptional<z.ZodString>;
4075
+ }, z.core.$strict>, z.ZodObject<{
4076
+ envId: z.ZodString;
4077
+ envKey: z.ZodString;
4078
+ provider: z.ZodString;
4079
+ organizationId: z.ZodString;
4080
+ repository: z.ZodString;
4081
+ target: z.ZodArray<z.ZodEnum<{
4082
+ production: "production";
4083
+ preview: "preview";
4084
+ development: "development";
4085
+ }>>;
3585
4086
  }, z.core.$strict>, z.ZodObject<{
3586
4087
  oldEnvVar: z.ZodOptional<z.ZodObject<{
3587
4088
  created: z.ZodOptional<z.ZodISODateTime>;
@@ -3719,6 +4220,7 @@ declare const userEventSchema: z.ZodObject<{
3719
4220
  }>>;
3720
4221
  }, z.core.$strict>, z.ZodObject<{
3721
4222
  projectId: z.ZodString;
4223
+ projectName: z.ZodOptional<z.ZodString>;
3722
4224
  previousOwnerId: z.ZodString;
3723
4225
  newOwnerId: z.ZodString;
3724
4226
  }, z.core.$strict>, z.ZodObject<{
@@ -3726,6 +4228,12 @@ declare const userEventSchema: z.ZodObject<{
3726
4228
  disable: "disable";
3727
4229
  enable: "enable";
3728
4230
  }>;
4231
+ }, z.core.$strict>, z.ZodObject<{
4232
+ source: z.ZodEnum<{
4233
+ enable: "enable";
4234
+ create: "create";
4235
+ upgrade: "upgrade";
4236
+ }>;
3729
4237
  }, z.core.$strict>, z.ZodObject<{
3730
4238
  provider: z.ZodEnum<{
3731
4239
  github: "github";
@@ -3903,10 +4411,14 @@ declare const userEventSchema: z.ZodObject<{
3903
4411
  "observability-edge-requests": "observability-edge-requests";
3904
4412
  "observability-error-rate": "observability-error-rate";
3905
4413
  "observability-function-invocations": "observability-function-invocations";
4414
+ shortcut: "shortcut";
3906
4415
  "speed-insights-cls": "speed-insights-cls";
3907
4416
  "speed-insights-lcp": "speed-insights-lcp";
3908
4417
  "speed-insights-res": "speed-insights-res";
3909
4418
  }>;
4419
+ config: z.ZodOptional<z.ZodObject<{
4420
+ url: z.ZodString;
4421
+ }, z.core.$strip>>;
3910
4422
  }, z.core.$strip>>>;
3911
4423
  remoteCaching: z.ZodOptional<z.ZodObject<{
3912
4424
  enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
@@ -3955,10 +4467,10 @@ declare const userEventSchema: z.ZodObject<{
3955
4467
  flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
3956
4468
  customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
3957
4469
  security: z.ZodOptional<z.ZodObject<{
4470
+ rateLimit: z.ZodOptional<z.ZodNumber>;
3958
4471
  customRules: z.ZodOptional<z.ZodNumber>;
3959
4472
  ipBlocks: z.ZodOptional<z.ZodNumber>;
3960
4473
  ipBypass: z.ZodOptional<z.ZodNumber>;
3961
- rateLimit: z.ZodOptional<z.ZodNumber>;
3962
4474
  }, z.core.$strip>>;
3963
4475
  bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
3964
4476
  buildMachine: z.ZodOptional<z.ZodObject<{
@@ -4027,7 +4539,6 @@ declare const userEventSchema: z.ZodObject<{
4027
4539
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
4028
4540
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
4029
4541
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
4030
- HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
4031
4542
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
4032
4543
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
4033
4544
  UNPAID_INVOICE: "UNPAID_INVOICE";
@@ -4073,55 +4584,7 @@ declare const userEventSchema: z.ZodObject<{
4073
4584
  wafRateLimitRequest: "wafRateLimitRequest";
4074
4585
  webAnalyticsEvent: "webAnalyticsEvent";
4075
4586
  }>>;
4076
- hobbyAllocationPause: z.ZodOptional<z.ZodObject<{
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>>;
4587
+ unpauseAt: z.ZodOptional<z.ZodNumber>;
4125
4588
  }, z.core.$strip>>>;
4126
4589
  stagingPrefix: z.ZodString;
4127
4590
  sysToken: z.ZodString;
@@ -4222,196 +4685,235 @@ declare const userEventSchema: z.ZodObject<{
4222
4685
  currentThreshold: z.ZodNumber;
4223
4686
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4224
4687
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4688
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4225
4689
  }, z.core.$strip>>;
4226
4690
  artifacts: z.ZodOptional<z.ZodObject<{
4227
4691
  currentThreshold: z.ZodNumber;
4228
4692
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4229
4693
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4694
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4230
4695
  }, z.core.$strip>>;
4231
4696
  bandwidth: z.ZodOptional<z.ZodObject<{
4232
4697
  currentThreshold: z.ZodNumber;
4233
4698
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4234
4699
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4700
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4235
4701
  }, z.core.$strip>>;
4236
4702
  blobTotalAdvancedRequests: z.ZodOptional<z.ZodObject<{
4237
4703
  currentThreshold: z.ZodNumber;
4238
4704
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4239
4705
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4706
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4240
4707
  }, z.core.$strip>>;
4241
4708
  blobTotalAvgSizeInBytes: z.ZodOptional<z.ZodObject<{
4242
4709
  currentThreshold: z.ZodNumber;
4243
4710
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4244
4711
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4712
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4245
4713
  }, z.core.$strip>>;
4246
4714
  blobTotalGetResponseObjectSizeInBytes: z.ZodOptional<z.ZodObject<{
4247
4715
  currentThreshold: z.ZodNumber;
4248
4716
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4249
4717
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4718
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4250
4719
  }, z.core.$strip>>;
4251
4720
  blobTotalSimpleRequests: z.ZodOptional<z.ZodObject<{
4252
4721
  currentThreshold: z.ZodNumber;
4253
4722
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4254
4723
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4724
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4255
4725
  }, z.core.$strip>>;
4256
4726
  connectDataTransfer: z.ZodOptional<z.ZodObject<{
4257
4727
  currentThreshold: z.ZodNumber;
4258
4728
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4259
4729
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4730
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4260
4731
  }, z.core.$strip>>;
4261
4732
  dataCacheRead: z.ZodOptional<z.ZodObject<{
4262
4733
  currentThreshold: z.ZodNumber;
4263
4734
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4264
4735
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4736
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4265
4737
  }, z.core.$strip>>;
4266
4738
  dataCacheWrite: z.ZodOptional<z.ZodObject<{
4267
4739
  currentThreshold: z.ZodNumber;
4268
4740
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4269
4741
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4742
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4270
4743
  }, z.core.$strip>>;
4271
4744
  edgeConfigRead: z.ZodOptional<z.ZodObject<{
4272
4745
  currentThreshold: z.ZodNumber;
4273
4746
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4274
4747
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4748
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4275
4749
  }, z.core.$strip>>;
4276
4750
  edgeConfigWrite: z.ZodOptional<z.ZodObject<{
4277
4751
  currentThreshold: z.ZodNumber;
4278
4752
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4279
4753
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4754
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4280
4755
  }, z.core.$strip>>;
4281
4756
  edgeFunctionExecutionUnits: z.ZodOptional<z.ZodObject<{
4282
4757
  currentThreshold: z.ZodNumber;
4283
4758
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4284
4759
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4760
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4285
4761
  }, z.core.$strip>>;
4286
4762
  edgeMiddlewareInvocations: z.ZodOptional<z.ZodObject<{
4287
4763
  currentThreshold: z.ZodNumber;
4288
4764
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4289
4765
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4766
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4290
4767
  }, z.core.$strip>>;
4291
4768
  edgeRequestAdditionalCpuDuration: z.ZodOptional<z.ZodObject<{
4292
4769
  currentThreshold: z.ZodNumber;
4293
4770
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4294
4771
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4772
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4295
4773
  }, z.core.$strip>>;
4296
4774
  edgeRequest: z.ZodOptional<z.ZodObject<{
4297
4775
  currentThreshold: z.ZodNumber;
4298
4776
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4299
4777
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4778
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4300
4779
  }, z.core.$strip>>;
4301
4780
  elasticConcurrencyBuildSlots: z.ZodOptional<z.ZodObject<{
4302
4781
  currentThreshold: z.ZodNumber;
4303
4782
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4304
4783
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4784
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4305
4785
  }, z.core.$strip>>;
4306
4786
  fastDataTransfer: z.ZodOptional<z.ZodObject<{
4307
4787
  currentThreshold: z.ZodNumber;
4308
4788
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4309
4789
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4790
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4310
4791
  }, z.core.$strip>>;
4311
4792
  fastOriginTransfer: z.ZodOptional<z.ZodObject<{
4312
4793
  currentThreshold: z.ZodNumber;
4313
4794
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4314
4795
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4796
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4315
4797
  }, z.core.$strip>>;
4316
4798
  fluidCpuDuration: z.ZodOptional<z.ZodObject<{
4317
4799
  currentThreshold: z.ZodNumber;
4318
4800
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4319
4801
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4802
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4320
4803
  }, z.core.$strip>>;
4321
4804
  fluidDuration: z.ZodOptional<z.ZodObject<{
4322
4805
  currentThreshold: z.ZodNumber;
4323
4806
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4324
4807
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4808
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4325
4809
  }, z.core.$strip>>;
4326
4810
  functionDuration: z.ZodOptional<z.ZodObject<{
4327
4811
  currentThreshold: z.ZodNumber;
4328
4812
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4329
4813
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4814
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4330
4815
  }, z.core.$strip>>;
4331
4816
  functionInvocation: z.ZodOptional<z.ZodObject<{
4332
4817
  currentThreshold: z.ZodNumber;
4333
4818
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4334
4819
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4820
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4335
4821
  }, z.core.$strip>>;
4336
4822
  imageOptimizationCacheRead: z.ZodOptional<z.ZodObject<{
4337
4823
  currentThreshold: z.ZodNumber;
4338
4824
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4339
4825
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4826
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4340
4827
  }, z.core.$strip>>;
4341
4828
  imageOptimizationCacheWrite: z.ZodOptional<z.ZodObject<{
4342
4829
  currentThreshold: z.ZodNumber;
4343
4830
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4344
4831
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4832
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4345
4833
  }, z.core.$strip>>;
4346
4834
  imageOptimizationTransformation: z.ZodOptional<z.ZodObject<{
4347
4835
  currentThreshold: z.ZodNumber;
4348
4836
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4349
4837
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4838
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4350
4839
  }, z.core.$strip>>;
4351
4840
  logDrainsVolume: z.ZodOptional<z.ZodObject<{
4352
4841
  currentThreshold: z.ZodNumber;
4353
4842
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4354
4843
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4844
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4355
4845
  }, z.core.$strip>>;
4356
4846
  monitoringMetric: z.ZodOptional<z.ZodObject<{
4357
4847
  currentThreshold: z.ZodNumber;
4358
4848
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4359
4849
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4850
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4360
4851
  }, z.core.$strip>>;
4361
4852
  blobDataTransfer: z.ZodOptional<z.ZodObject<{
4362
4853
  currentThreshold: z.ZodNumber;
4363
4854
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4364
4855
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4856
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4365
4857
  }, z.core.$strip>>;
4366
4858
  observabilityEvent: z.ZodOptional<z.ZodObject<{
4367
4859
  currentThreshold: z.ZodNumber;
4368
4860
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4369
4861
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4862
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4370
4863
  }, z.core.$strip>>;
4371
4864
  onDemandConcurrencyMinutes: z.ZodOptional<z.ZodObject<{
4372
4865
  currentThreshold: z.ZodNumber;
4373
4866
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4374
4867
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4868
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4375
4869
  }, z.core.$strip>>;
4376
4870
  runtimeCacheRead: z.ZodOptional<z.ZodObject<{
4377
4871
  currentThreshold: z.ZodNumber;
4378
4872
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4379
4873
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4874
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4380
4875
  }, z.core.$strip>>;
4381
4876
  runtimeCacheWrite: z.ZodOptional<z.ZodObject<{
4382
4877
  currentThreshold: z.ZodNumber;
4383
4878
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4384
4879
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4880
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4385
4881
  }, z.core.$strip>>;
4386
4882
  serverlessFunctionExecution: z.ZodOptional<z.ZodObject<{
4387
4883
  currentThreshold: z.ZodNumber;
4388
4884
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4389
4885
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4886
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4390
4887
  }, z.core.$strip>>;
4391
4888
  sourceImages: z.ZodOptional<z.ZodObject<{
4392
4889
  currentThreshold: z.ZodNumber;
4393
4890
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4394
4891
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4892
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4395
4893
  }, z.core.$strip>>;
4396
4894
  wafOwaspExcessBytes: z.ZodOptional<z.ZodObject<{
4397
4895
  currentThreshold: z.ZodNumber;
4398
4896
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4399
4897
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4898
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4400
4899
  }, z.core.$strip>>;
4401
4900
  wafOwaspRequests: z.ZodOptional<z.ZodObject<{
4402
4901
  currentThreshold: z.ZodNumber;
4403
4902
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4404
4903
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4904
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4405
4905
  }, z.core.$strip>>;
4406
4906
  wafRateLimitRequest: z.ZodOptional<z.ZodObject<{
4407
4907
  currentThreshold: z.ZodNumber;
4408
4908
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4409
4909
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4910
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4410
4911
  }, z.core.$strip>>;
4411
4912
  webAnalyticsEvent: z.ZodOptional<z.ZodObject<{
4412
4913
  currentThreshold: z.ZodNumber;
4413
4914
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4414
4915
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4916
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4415
4917
  }, z.core.$strip>>;
4416
4918
  }, z.core.$strip>>;
4417
4919
  overageMetadata: z.ZodOptional<z.ZodObject<{
@@ -4421,11 +4923,6 @@ declare const userEventSchema: z.ZodObject<{
4421
4923
  overageSummaryExpiresAt: z.ZodOptional<z.ZodNumber>;
4422
4924
  increasedOnDemandEmailSentAt: z.ZodOptional<z.ZodNumber>;
4423
4925
  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
4926
  }, z.core.$strip>>;
4430
4927
  speedInsightsFreeUsageAlert: z.ZodOptional<z.ZodObject<{
4431
4928
  currentThreshold: z.ZodNumber;
@@ -4914,20 +5411,23 @@ declare const userEventSchema: z.ZodObject<{
4914
5411
  integrationSlug: z.ZodString;
4915
5412
  integrationProductSlug: z.ZodString;
4916
5413
  configurationId: z.ZodString;
4917
- error: z.ZodOptional<z.ZodString>;
5414
+ errorCode: z.ZodOptional<z.ZodString>;
4918
5415
  requestKind: z.ZodEnum<{
4919
5416
  raw_commands: "raw_commands";
4920
5417
  }>;
4921
5418
  readonly: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
4922
- commands: z.ZodArray<z.ZodString>;
4923
- failedIndex: z.ZodOptional<z.ZodNumber>;
5419
+ commands: z.ZodArray<z.ZodObject<{
5420
+ command: z.ZodString;
5421
+ errorCode: z.ZodOptional<z.ZodString>;
5422
+ }, z.core.$strip>>;
5423
+ errorIndex: z.ZodOptional<z.ZodNumber>;
4924
5424
  }, z.core.$strict>, z.ZodObject<{
4925
5425
  resourceId: z.ZodString;
4926
5426
  integrationId: z.ZodString;
4927
5427
  integrationSlug: z.ZodString;
4928
5428
  integrationProductSlug: z.ZodString;
4929
5429
  configurationId: z.ZodString;
4930
- error: z.ZodOptional<z.ZodString>;
5430
+ errorCode: z.ZodOptional<z.ZodString>;
4931
5431
  requestKind: z.ZodEnum<{
4932
5432
  list_keys: "list_keys";
4933
5433
  }>;
@@ -4939,7 +5439,7 @@ declare const userEventSchema: z.ZodObject<{
4939
5439
  integrationSlug: z.ZodString;
4940
5440
  integrationProductSlug: z.ZodString;
4941
5441
  configurationId: z.ZodString;
4942
- error: z.ZodOptional<z.ZodString>;
5442
+ errorCode: z.ZodOptional<z.ZodString>;
4943
5443
  requestKind: z.ZodEnum<{
4944
5444
  get_keys_metadata: "get_keys_metadata";
4945
5445
  }>;
@@ -4950,7 +5450,7 @@ declare const userEventSchema: z.ZodObject<{
4950
5450
  integrationSlug: z.ZodString;
4951
5451
  integrationProductSlug: z.ZodString;
4952
5452
  configurationId: z.ZodString;
4953
- error: z.ZodOptional<z.ZodString>;
5453
+ errorCode: z.ZodOptional<z.ZodString>;
4954
5454
  requestKind: z.ZodEnum<{
4955
5455
  get_key_data: "get_key_data";
4956
5456
  }>;
@@ -5249,6 +5749,18 @@ declare const userEventSchema: z.ZodObject<{
5249
5749
  enterprise: "enterprise";
5250
5750
  platform: "platform";
5251
5751
  }>;
5752
+ }, z.core.$strict>, z.ZodObject<{
5753
+ organizationId: z.ZodString;
5754
+ teamId: z.ZodString;
5755
+ teamName: z.ZodString;
5756
+ previousMode: z.ZodEnum<{
5757
+ organization: "organization";
5758
+ team: "team";
5759
+ }>;
5760
+ mode: z.ZodEnum<{
5761
+ organization: "organization";
5762
+ team: "team";
5763
+ }>;
5252
5764
  }, z.core.$strict>, z.ZodObject<{
5253
5765
  ownerId: z.ZodString;
5254
5766
  source: z.ZodString;
@@ -5574,6 +6086,7 @@ declare const userEventSchema: z.ZodObject<{
5574
6086
  previewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5575
6087
  previousPreviewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5576
6088
  }, z.core.$strict>, z.ZodObject<{
6089
+ projectName: z.ZodOptional<z.ZodString>;
5577
6090
  endpoint: z.ZodObject<{
5578
6091
  id: z.ZodString;
5579
6092
  name: z.ZodString;
@@ -5583,12 +6096,14 @@ declare const userEventSchema: z.ZodObject<{
5583
6096
  privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
5584
6097
  }, z.core.$strip>;
5585
6098
  }, z.core.$strict>, z.ZodObject<{
6099
+ projectName: z.ZodOptional<z.ZodString>;
5586
6100
  privateLinkEndpoint: z.ZodObject<{
5587
6101
  id: z.ZodString;
5588
6102
  name: z.ZodString;
5589
6103
  }, z.core.$strip>;
5590
6104
  projectId: z.ZodString;
5591
6105
  }, z.core.$strict>, z.ZodObject<{
6106
+ projectName: z.ZodOptional<z.ZodString>;
5592
6107
  prev: z.ZodObject<{
5593
6108
  id: z.ZodString;
5594
6109
  name: z.ZodString;
@@ -5606,6 +6121,7 @@ declare const userEventSchema: z.ZodObject<{
5606
6121
  privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
5607
6122
  }, z.core.$strip>;
5608
6123
  }, z.core.$strict>, z.ZodObject<{
6124
+ projectName: z.ZodOptional<z.ZodString>;
5609
6125
  privateLinkEndpoint: z.ZodObject<{
5610
6126
  id: z.ZodString;
5611
6127
  name: z.ZodString;
@@ -5711,6 +6227,7 @@ declare const userEventSchema: z.ZodObject<{
5711
6227
  "observability-edge-requests": "observability-edge-requests";
5712
6228
  "observability-error-rate": "observability-error-rate";
5713
6229
  "observability-function-invocations": "observability-function-invocations";
6230
+ shortcut: "shortcut";
5714
6231
  "speed-insights-cls": "speed-insights-cls";
5715
6232
  "speed-insights-lcp": "speed-insights-lcp";
5716
6233
  "speed-insights-res": "speed-insights-res";
@@ -5886,6 +6403,7 @@ declare const userEventSchema: z.ZodObject<{
5886
6403
  gitlab: "gitlab";
5887
6404
  bitbucket: "bitbucket";
5888
6405
  "cursor-origin": "cursor-origin";
6406
+ v0: "v0";
5889
6407
  vercel: "vercel";
5890
6408
  }>;
5891
6409
  gitRepoId: z.ZodString;
@@ -5899,6 +6417,7 @@ declare const userEventSchema: z.ZodObject<{
5899
6417
  gitlab: "gitlab";
5900
6418
  bitbucket: "bitbucket";
5901
6419
  "cursor-origin": "cursor-origin";
6420
+ v0: "v0";
5902
6421
  vercel: "vercel";
5903
6422
  }>;
5904
6423
  gitRepoId: z.ZodString;
@@ -5914,6 +6433,7 @@ declare const userEventSchema: z.ZodObject<{
5914
6433
  gitlab: "gitlab";
5915
6434
  bitbucket: "bitbucket";
5916
6435
  "cursor-origin": "cursor-origin";
6436
+ v0: "v0";
5917
6437
  vercel: "vercel";
5918
6438
  }>;
5919
6439
  gitRepoId: z.ZodString;
@@ -6207,8 +6727,14 @@ declare const userEventSchema: z.ZodObject<{
6207
6727
  }, z.core.$strict>, z.ZodObject<{
6208
6728
  projectId: z.ZodString;
6209
6729
  projectName: z.ZodString;
6210
- previous: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6211
- next: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6730
+ previous: z.ZodNullable<z.ZodObject<{
6731
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6732
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6733
+ }, z.core.$strip>>;
6734
+ next: z.ZodNullable<z.ZodObject<{
6735
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6736
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6737
+ }, z.core.$strip>>;
6212
6738
  }, z.core.$strict>, z.ZodObject<{
6213
6739
  projectId: z.ZodString;
6214
6740
  projectName: z.ZodString;
@@ -6391,6 +6917,7 @@ declare const userEventSchema: z.ZodObject<{
6391
6917
  }, z.core.$strict>, z.ZodObject<{
6392
6918
  projectId: z.ZodString;
6393
6919
  projectName: z.ZodString;
6920
+ enableVercelCiSameRepository: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
6394
6921
  addedProjects: z.ZodArray<z.ZodObject<{
6395
6922
  id: z.ZodString;
6396
6923
  name: z.ZodString;
@@ -6588,6 +7115,12 @@ declare const userEventSchema: z.ZodObject<{
6588
7115
  plus: "plus";
6589
7116
  unbundled: "unbundled";
6590
7117
  }>>;
7118
+ scope: z.ZodOptional<z.ZodEnum<{
7119
+ organization: "organization";
7120
+ project: "project";
7121
+ team: "team";
7122
+ }>>;
7123
+ scopeId: z.ZodOptional<z.ZodString>;
6591
7124
  teamId: z.ZodString;
6592
7125
  id: z.ZodString;
6593
7126
  }, z.core.$strip>;
@@ -6613,6 +7146,12 @@ declare const userEventSchema: z.ZodObject<{
6613
7146
  plus: "plus";
6614
7147
  unbundled: "unbundled";
6615
7148
  }>>;
7149
+ scope: z.ZodOptional<z.ZodEnum<{
7150
+ organization: "organization";
7151
+ project: "project";
7152
+ team: "team";
7153
+ }>>;
7154
+ scopeId: z.ZodOptional<z.ZodString>;
6616
7155
  teamId: z.ZodString;
6617
7156
  id: z.ZodString;
6618
7157
  }, z.core.$strip>;
@@ -6637,6 +7176,12 @@ declare const userEventSchema: z.ZodObject<{
6637
7176
  plus: "plus";
6638
7177
  unbundled: "unbundled";
6639
7178
  }>>;
7179
+ scope: z.ZodOptional<z.ZodEnum<{
7180
+ organization: "organization";
7181
+ project: "project";
7182
+ team: "team";
7183
+ }>>;
7184
+ scopeId: z.ZodOptional<z.ZodString>;
6640
7185
  teamId: z.ZodString;
6641
7186
  id: z.ZodString;
6642
7187
  }, z.core.$strip>;
@@ -6662,6 +7207,12 @@ declare const userEventSchema: z.ZodObject<{
6662
7207
  plus: "plus";
6663
7208
  unbundled: "unbundled";
6664
7209
  }>>;
7210
+ scope: z.ZodOptional<z.ZodEnum<{
7211
+ organization: "organization";
7212
+ project: "project";
7213
+ team: "team";
7214
+ }>>;
7215
+ scopeId: z.ZodOptional<z.ZodString>;
6665
7216
  teamId: z.ZodString;
6666
7217
  id: z.ZodString;
6667
7218
  }, z.core.$strip>;
@@ -6685,6 +7236,12 @@ declare const userEventSchema: z.ZodObject<{
6685
7236
  plus: "plus";
6686
7237
  unbundled: "unbundled";
6687
7238
  }>>;
7239
+ scope: z.ZodOptional<z.ZodEnum<{
7240
+ organization: "organization";
7241
+ project: "project";
7242
+ team: "team";
7243
+ }>>;
7244
+ scopeId: z.ZodOptional<z.ZodString>;
6688
7245
  teamId: z.ZodString;
6689
7246
  id: z.ZodString;
6690
7247
  }, z.core.$strip>>;
@@ -6879,6 +7436,7 @@ declare const userEventSchema: z.ZodObject<{
6879
7436
  "long-build-duration": "long-build-duration";
6880
7437
  "oom-failure": "oom-failure";
6881
7438
  "plan-change": "plan-change";
7439
+ "project-transfer": "project-transfer";
6882
7440
  "short-build-duration": "short-build-duration";
6883
7441
  "sustained-high-cpu": "sustained-high-cpu";
6884
7442
  }>>;
@@ -6908,8 +7466,14 @@ declare const userEventSchema: z.ZodObject<{
6908
7466
  removedMemberCount: z.ZodOptional<z.ZodNumber>;
6909
7467
  timestamp: z.ZodOptional<z.ZodNumber>;
6910
7468
  }, z.core.$strict>, z.ZodObject<{
6911
- previous: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6912
- next: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
7469
+ previous: z.ZodNullable<z.ZodObject<{
7470
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7471
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7472
+ }, z.core.$strip>>;
7473
+ next: z.ZodNullable<z.ZodObject<{
7474
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7475
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7476
+ }, z.core.$strip>>;
6913
7477
  }, z.core.$strict>, z.ZodObject<{
6914
7478
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6915
7479
  domain: z.ZodOptional<z.ZodString>;
@@ -7568,6 +8132,7 @@ declare const userEventSchema: z.ZodObject<{
7568
8132
  }, z.core.$strict>, z.ZodObject<{
7569
8133
  deploymentId: z.ZodString;
7570
8134
  projectId: z.ZodString;
8135
+ projectName: z.ZodOptional<z.ZodString>;
7571
8136
  runId: z.ZodString;
7572
8137
  }, z.core.$strict>, z.ZodObject<{
7573
8138
  grantType: z.ZodEnum<{
@@ -7746,6 +8311,7 @@ declare const userEventSchema: z.ZodObject<{
7746
8311
  teamId: z.ZodOptional<z.ZodString>;
7747
8312
  teamSlug: z.ZodOptional<z.ZodString>;
7748
8313
  projectId: z.ZodOptional<z.ZodString>;
8314
+ projectName: z.ZodOptional<z.ZodString>;
7749
8315
  projectScope: z.ZodOptional<z.ZodEnum<{
7750
8316
  account: "account";
7751
8317
  "project-only": "project-only";
@@ -7890,8 +8456,10 @@ declare const listEventTypeSchema: z.ZodObject<{
7890
8456
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
7891
8457
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
7892
8458
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
8459
+ "ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
7893
8460
  "ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
7894
8461
  "ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
8462
+ "ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
7895
8463
  "ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
7896
8464
  "ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
7897
8465
  "ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
@@ -7901,6 +8469,7 @@ declare const listEventTypeSchema: z.ZodObject<{
7901
8469
  "ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
7902
8470
  "ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
7903
8471
  "ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
8472
+ "ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
7904
8473
  "ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
7905
8474
  "ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
7906
8475
  "ai-gateway-rule-created": "ai-gateway-rule-created";
@@ -7914,8 +8483,10 @@ declare const listEventTypeSchema: z.ZodObject<{
7914
8483
  "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
7915
8484
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
7916
8485
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
8486
+ "ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
7917
8487
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
7918
8488
  "ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
8489
+ "ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
7919
8490
  "ai-omniagent": "ai-omniagent";
7920
8491
  "alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
7921
8492
  "alert-rule-created": "alert-rule-created";
@@ -8100,6 +8671,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8100
8671
  "flags-sdk-key-deleted": "flags-sdk-key-deleted";
8101
8672
  "flags-sdk-key-read": "flags-sdk-key-read";
8102
8673
  "flags-transferred": "flags-transferred";
8674
+ "flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
8103
8675
  "git-integration-repo-push": "git-integration-repo-push";
8104
8676
  git_account_integration_link_added: "git_account_integration_link_added";
8105
8677
  "global-config-backup-restored": "global-config-backup-restored";
@@ -8184,6 +8756,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8184
8756
  "organization-team-add": "organization-team-add";
8185
8757
  "organization-team-create": "organization-team-create";
8186
8758
  "organization-team-delete": "organization-team-delete";
8759
+ "organization-team-sso-update": "organization-team-sso-update";
8187
8760
  "owner-blocked": "owner-blocked";
8188
8761
  "owner-soft-blocked": "owner-soft-blocked";
8189
8762
  "owner-soft-unblocked": "owner-soft-unblocked";
@@ -8263,6 +8836,12 @@ declare const listEventTypeSchema: z.ZodObject<{
8263
8836
  "project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
8264
8837
  "project-git-commit-status-toggled": "project-git-commit-status-toggled";
8265
8838
  "project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
8839
+ "project-git-credential-bound-created": "project-git-credential-bound-created";
8840
+ "project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
8841
+ "project-git-credential-bound-updated": "project-git-credential-bound-updated";
8842
+ "project-git-credential-grant-created": "project-git-credential-grant-created";
8843
+ "project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
8844
+ "project-git-credential-grant-updated": "project-git-credential-grant-updated";
8266
8845
  "project-git-fork-protection-updated": "project-git-fork-protection-updated";
8267
8846
  "project-git-lfs-toggled": "project-git-lfs-toggled";
8268
8847
  "project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
@@ -8328,6 +8907,9 @@ declare const listEventTypeSchema: z.ZodObject<{
8328
8907
  "project-web-analytics-enabled": "project-web-analytics-enabled";
8329
8908
  "protected-git-scope-added": "protected-git-scope-added";
8330
8909
  "protected-git-scope-removed": "protected-git-scope-removed";
8910
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
8911
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
8912
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
8331
8913
  "runtime-cache-purge-all": "runtime-cache-purge-all";
8332
8914
  "saml-connection-created": "saml-connection-created";
8333
8915
  "saml-connection-deleted": "saml-connection-deleted";
@@ -8355,6 +8937,8 @@ declare const listEventTypeSchema: z.ZodObject<{
8355
8937
  "shared-env-variable-create": "shared-env-variable-create";
8356
8938
  "shared-env-variable-delete": "shared-env-variable-delete";
8357
8939
  "shared-env-variable-read": "shared-env-variable-read";
8940
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
8941
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
8358
8942
  "shared-env-variable-update": "shared-env-variable-update";
8359
8943
  "show-ip-addresses": "show-ip-addresses";
8360
8944
  signup: "signup";
@@ -8385,6 +8969,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8385
8969
  "storage-update-project-connection": "storage-update-project-connection";
8386
8970
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
8387
8971
  "storage-view-secret": "storage-view-secret";
8972
+ "strict-connectors": "strict-connectors";
8388
8973
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
8389
8974
  "strict-password-protection-settings": "strict-password-protection-settings";
8390
8975
  "strict-shareable-links": "strict-shareable-links";
@@ -8578,8 +9163,10 @@ declare const listEventTypeSchema: z.ZodObject<{
8578
9163
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
8579
9164
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
8580
9165
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
9166
+ "ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
8581
9167
  "ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
8582
9168
  "ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
9169
+ "ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
8583
9170
  "ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
8584
9171
  "ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
8585
9172
  "ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
@@ -8589,6 +9176,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8589
9176
  "ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
8590
9177
  "ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
8591
9178
  "ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
9179
+ "ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
8592
9180
  "ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
8593
9181
  "ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
8594
9182
  "ai-gateway-rule-created": "ai-gateway-rule-created";
@@ -8602,8 +9190,10 @@ declare const listEventTypeSchema: z.ZodObject<{
8602
9190
  "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
8603
9191
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
8604
9192
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
9193
+ "ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
8605
9194
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
8606
9195
  "ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
9196
+ "ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
8607
9197
  "ai-omniagent": "ai-omniagent";
8608
9198
  "alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
8609
9199
  "alert-rule-created": "alert-rule-created";
@@ -8788,6 +9378,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8788
9378
  "flags-sdk-key-deleted": "flags-sdk-key-deleted";
8789
9379
  "flags-sdk-key-read": "flags-sdk-key-read";
8790
9380
  "flags-transferred": "flags-transferred";
9381
+ "flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
8791
9382
  "git-integration-repo-push": "git-integration-repo-push";
8792
9383
  git_account_integration_link_added: "git_account_integration_link_added";
8793
9384
  "global-config-backup-restored": "global-config-backup-restored";
@@ -8872,6 +9463,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8872
9463
  "organization-team-add": "organization-team-add";
8873
9464
  "organization-team-create": "organization-team-create";
8874
9465
  "organization-team-delete": "organization-team-delete";
9466
+ "organization-team-sso-update": "organization-team-sso-update";
8875
9467
  "owner-blocked": "owner-blocked";
8876
9468
  "owner-soft-blocked": "owner-soft-blocked";
8877
9469
  "owner-soft-unblocked": "owner-soft-unblocked";
@@ -8951,6 +9543,12 @@ declare const listEventTypeSchema: z.ZodObject<{
8951
9543
  "project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
8952
9544
  "project-git-commit-status-toggled": "project-git-commit-status-toggled";
8953
9545
  "project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
9546
+ "project-git-credential-bound-created": "project-git-credential-bound-created";
9547
+ "project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
9548
+ "project-git-credential-bound-updated": "project-git-credential-bound-updated";
9549
+ "project-git-credential-grant-created": "project-git-credential-grant-created";
9550
+ "project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
9551
+ "project-git-credential-grant-updated": "project-git-credential-grant-updated";
8954
9552
  "project-git-fork-protection-updated": "project-git-fork-protection-updated";
8955
9553
  "project-git-lfs-toggled": "project-git-lfs-toggled";
8956
9554
  "project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
@@ -9016,6 +9614,9 @@ declare const listEventTypeSchema: z.ZodObject<{
9016
9614
  "project-web-analytics-enabled": "project-web-analytics-enabled";
9017
9615
  "protected-git-scope-added": "protected-git-scope-added";
9018
9616
  "protected-git-scope-removed": "protected-git-scope-removed";
9617
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
9618
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
9619
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
9019
9620
  "runtime-cache-purge-all": "runtime-cache-purge-all";
9020
9621
  "saml-connection-created": "saml-connection-created";
9021
9622
  "saml-connection-deleted": "saml-connection-deleted";
@@ -9043,6 +9644,8 @@ declare const listEventTypeSchema: z.ZodObject<{
9043
9644
  "shared-env-variable-create": "shared-env-variable-create";
9044
9645
  "shared-env-variable-delete": "shared-env-variable-delete";
9045
9646
  "shared-env-variable-read": "shared-env-variable-read";
9647
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
9648
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
9046
9649
  "shared-env-variable-update": "shared-env-variable-update";
9047
9650
  "show-ip-addresses": "show-ip-addresses";
9048
9651
  signup: "signup";
@@ -9073,6 +9676,7 @@ declare const listEventTypeSchema: z.ZodObject<{
9073
9676
  "storage-update-project-connection": "storage-update-project-connection";
9074
9677
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
9075
9678
  "storage-view-secret": "storage-view-secret";
9679
+ "strict-connectors": "strict-connectors";
9076
9680
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
9077
9681
  "strict-password-protection-settings": "strict-password-protection-settings";
9078
9682
  "strict-shareable-links": "strict-shareable-links";
@@ -9235,7 +9839,12 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
9235
9839
  }, z.core.$strip>;
9236
9840
  declare const flagSchema: z.ZodObject<{
9237
9841
  description: z.ZodOptional<z.ZodString>;
9238
- variants: z.ZodArray<z.ZodObject<{}, z.core.$strip>>;
9842
+ variants: z.ZodArray<z.ZodObject<{
9843
+ description: z.ZodOptional<z.ZodString>;
9844
+ label: z.ZodOptional<z.ZodString>;
9845
+ 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>]>]>>;
9846
+ id: z.ZodString;
9847
+ }, z.core.$strip>>;
9239
9848
  id: z.ZodString;
9240
9849
  environments: z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
9241
9850
  reuse: z.ZodOptional<z.ZodObject<{
@@ -9253,7 +9862,7 @@ declare const flagSchema: z.ZodObject<{
9253
9862
  }>;
9254
9863
  variantId: z.ZodString;
9255
9864
  }, z.core.$strip>;
9256
- fallthrough: z.ZodUnion<readonly [z.ZodObject<{
9865
+ fallthrough: z.ZodDiscriminatedUnion<[z.ZodObject<{
9257
9866
  type: z.ZodEnum<{
9258
9867
  variant: "variant";
9259
9868
  }>;
@@ -9294,11 +9903,11 @@ declare const flagSchema: z.ZodObject<{
9294
9903
  type: z.ZodEnum<{
9295
9904
  experiment: "experiment";
9296
9905
  }>;
9297
- }, z.core.$strict>]>;
9906
+ }, z.core.$strict>], "type">;
9298
9907
  active: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
9299
9908
  rules: z.ZodArray<z.ZodObject<{
9300
9909
  id: z.ZodString;
9301
- outcome: z.ZodUnion<readonly [z.ZodObject<{
9910
+ outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
9302
9911
  type: z.ZodEnum<{
9303
9912
  variant: "variant";
9304
9913
  }>;
@@ -9339,7 +9948,7 @@ declare const flagSchema: z.ZodObject<{
9339
9948
  type: z.ZodEnum<{
9340
9949
  experiment: "experiment";
9341
9950
  }>;
9342
- }, z.core.$strict>]>;
9951
+ }, z.core.$strict>], "type">;
9343
9952
  conditions: z.ZodArray<z.ZodObject<{
9344
9953
  rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
9345
9954
  type: z.ZodEnum<{
@@ -9365,7 +9974,7 @@ declare const flagSchema: z.ZodObject<{
9365
9974
  cmpOptions: z.ZodOptional<z.ZodObject<{
9366
9975
  ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
9367
9976
  }, z.core.$strip>>;
9368
- lhs: z.ZodUnion<readonly [z.ZodObject<{
9977
+ lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
9369
9978
  type: z.ZodEnum<{
9370
9979
  segment: "segment";
9371
9980
  }>;
@@ -9375,7 +9984,7 @@ declare const flagSchema: z.ZodObject<{
9375
9984
  }>;
9376
9985
  kind: z.ZodString;
9377
9986
  attribute: z.ZodString;
9378
- }, z.core.$strict>]>;
9987
+ }, z.core.$strict>], "type">;
9379
9988
  cmp: z.ZodEnum<{
9380
9989
  before: "before";
9381
9990
  after: "after";
@@ -9462,7 +10071,7 @@ declare const segmentSchema: z.ZodObject<{
9462
10071
  data: z.ZodObject<{
9463
10072
  rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
9464
10073
  id: z.ZodString;
9465
- outcome: z.ZodUnion<readonly [z.ZodObject<{
10074
+ outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
9466
10075
  type: z.ZodEnum<{
9467
10076
  all: "all";
9468
10077
  }>;
@@ -9478,7 +10087,7 @@ declare const segmentSchema: z.ZodObject<{
9478
10087
  attribute: z.ZodString;
9479
10088
  }, z.core.$strip>;
9480
10089
  passPromille: z.ZodNumber;
9481
- }, z.core.$strict>]>;
10090
+ }, z.core.$strict>], "type">;
9482
10091
  conditions: z.ZodArray<z.ZodObject<{
9483
10092
  rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
9484
10093
  type: z.ZodEnum<{
@@ -9504,7 +10113,7 @@ declare const segmentSchema: z.ZodObject<{
9504
10113
  cmpOptions: z.ZodOptional<z.ZodObject<{
9505
10114
  ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
9506
10115
  }, z.core.$strip>>;
9507
- lhs: z.ZodUnion<readonly [z.ZodObject<{
10116
+ lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
9508
10117
  type: z.ZodEnum<{
9509
10118
  segment: "segment";
9510
10119
  }>;
@@ -9514,7 +10123,7 @@ declare const segmentSchema: z.ZodObject<{
9514
10123
  }>;
9515
10124
  kind: z.ZodString;
9516
10125
  attribute: z.ZodString;
9517
- }, z.core.$strict>]>;
10126
+ }, z.core.$strict>], "type">;
9518
10127
  cmp: z.ZodEnum<{
9519
10128
  before: "before";
9520
10129
  after: "after";
@@ -9673,6 +10282,7 @@ declare const namedSandboxSchema: z.ZodObject<{
9673
10282
  deniedCIDRs: z.ZodOptional<z.ZodArray<z.ZodString>>;
9674
10283
  s3Key: z.ZodOptional<z.ZodString>;
9675
10284
  }, z.core.$strip>>;
10285
+ networkId: z.ZodOptional<z.ZodString>;
9676
10286
  totalEgressBytes: z.ZodOptional<z.ZodNumber>;
9677
10287
  totalIngressBytes: z.ZodOptional<z.ZodNumber>;
9678
10288
  totalActiveCpuDurationMs: z.ZodOptional<z.ZodNumber>;
@@ -9684,6 +10294,7 @@ declare const namedSandboxSchema: z.ZodObject<{
9684
10294
  mode: z.ZodOptional<z.ZodEnum<{
9685
10295
  "read-only": "read-only";
9686
10296
  "read-write": "read-write";
10297
+ snapshot: "snapshot";
9687
10298
  }>>;
9688
10299
  }, z.core.$strip>>>>;
9689
10300
  createdAt: z.ZodNumber;
@@ -9718,8 +10329,8 @@ declare const sessionSchema: z.ZodObject<{
9718
10329
  running: "running";
9719
10330
  stopping: "stopping";
9720
10331
  stopped: "stopped";
9721
- aborted: "aborted";
9722
10332
  failed: "failed";
10333
+ aborted: "aborted";
9723
10334
  pending: "pending";
9724
10335
  snapshotting: "snapshotting";
9725
10336
  }>;
@@ -9748,6 +10359,7 @@ declare const sandboxPublicRouteSchema: z.ZodObject<{
9748
10359
  system: z.ZodOptional<z.ZodLiteral<true>>;
9749
10360
  }, z.core.$strip>;
9750
10361
  declare const driveSchema: z.ZodObject<{
10362
+ id: z.ZodString;
9751
10363
  name: z.ZodString;
9752
10364
  projectId: z.ZodString;
9753
10365
  maxSizeBytes: z.ZodNumber;
@@ -9764,8 +10376,8 @@ declare const snapshotSchema: z.ZodObject<{
9764
10376
  regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
9765
10377
  status: z.ZodEnum<{
9766
10378
  deleted: "deleted";
9767
- created: "created";
9768
10379
  failed: "failed";
10380
+ created: "created";
9769
10381
  }>;
9770
10382
  sizeBytes: z.ZodNumber;
9771
10383
  expiresAt: z.ZodOptional<z.ZodNumber>;
@@ -10043,6 +10655,10 @@ declare const teamSchema: z.ZodObject<{
10043
10655
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10044
10656
  updatedAt: z.ZodNumber;
10045
10657
  }, z.core.$strip>>;
10658
+ strictConnectors: z.ZodOptional<z.ZodObject<{
10659
+ enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10660
+ updatedAt: z.ZodNumber;
10661
+ }, z.core.$strip>>;
10046
10662
  nsnbConfig: z.ZodOptional<z.ZodObject<{
10047
10663
  preference: z.ZodEnum<{
10048
10664
  block: "block";
@@ -10067,7 +10683,7 @@ declare const teamSchema: z.ZodObject<{
10067
10683
  project: z.ZodOptional<z.ZodString>;
10068
10684
  }, z.core.$strict>]>>;
10069
10685
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10070
- environments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10686
+ environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10071
10687
  type: z.ZodEnum<{
10072
10688
  system: "system";
10073
10689
  }>;
@@ -10080,7 +10696,7 @@ declare const teamSchema: z.ZodObject<{
10080
10696
  custom: "custom";
10081
10697
  }>;
10082
10698
  environmentId: z.ZodString;
10083
- }, z.core.$strict>]>>;
10699
+ }, z.core.$strict>], "type">>;
10084
10700
  }, z.core.$strip>>>;
10085
10701
  deploymentSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
10086
10702
  sources: z.ZodArray<z.ZodEnum<{
@@ -10092,7 +10708,7 @@ declare const teamSchema: z.ZodObject<{
10092
10708
  "rest-api": "rest-api";
10093
10709
  }>>;
10094
10710
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10095
- environments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10711
+ environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10096
10712
  type: z.ZodEnum<{
10097
10713
  system: "system";
10098
10714
  }>;
@@ -10105,7 +10721,7 @@ declare const teamSchema: z.ZodObject<{
10105
10721
  custom: "custom";
10106
10722
  }>;
10107
10723
  environmentId: z.ZodString;
10108
- }, z.core.$strict>]>>;
10724
+ }, z.core.$strict>], "type">>;
10109
10725
  }, z.core.$strip>>>;
10110
10726
  }, z.core.$strip>>;
10111
10727
  personalAccessTokensInvalidatedAt: z.ZodOptional<z.ZodNumber>;
@@ -10338,7 +10954,7 @@ declare const authTokenSchema: z.ZodObject<{
10338
10954
  prefix: z.ZodOptional<z.ZodString>;
10339
10955
  suffix: z.ZodOptional<z.ZodString>;
10340
10956
  origin: z.ZodOptional<z.ZodString>;
10341
- scopes: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10957
+ scopes: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10342
10958
  type: z.ZodEnum<{
10343
10959
  user: "user";
10344
10960
  }>;
@@ -10400,7 +11016,7 @@ declare const authTokenSchema: z.ZodObject<{
10400
11016
  }>>;
10401
11017
  createdAt: z.ZodNumber;
10402
11018
  expiresAt: z.ZodOptional<z.ZodNumber>;
10403
- }, z.core.$strict>]>>>;
11019
+ }, z.core.$strict>], "type">>>;
10404
11020
  createdAt: z.ZodNumber;
10405
11021
  activeAt: z.ZodNumber;
10406
11022
  expiresAt: z.ZodOptional<z.ZodNumber>;
@@ -10419,7 +11035,6 @@ declare const authUserSchema: z.ZodObject<{
10419
11035
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
10420
11036
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
10421
11037
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
10422
- HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
10423
11038
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
10424
11039
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
10425
11040
  UNPAID_INVOICE: "UNPAID_INVOICE";
@@ -10465,55 +11080,7 @@ declare const authUserSchema: z.ZodObject<{
10465
11080
  wafRateLimitRequest: "wafRateLimitRequest";
10466
11081
  webAnalyticsEvent: "webAnalyticsEvent";
10467
11082
  }>>;
10468
- hobbyAllocationPause: z.ZodOptional<z.ZodObject<{
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>>;
11083
+ unpauseAt: z.ZodOptional<z.ZodNumber>;
10517
11084
  }, z.core.$strip>>;
10518
11085
  billing: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
10519
11086
  resourceConfig: z.ZodObject<{
@@ -10550,10 +11117,10 @@ declare const authUserSchema: z.ZodObject<{
10550
11117
  flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
10551
11118
  customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
10552
11119
  security: z.ZodOptional<z.ZodObject<{
11120
+ rateLimit: z.ZodOptional<z.ZodNumber>;
10553
11121
  customRules: z.ZodOptional<z.ZodNumber>;
10554
11122
  ipBlocks: z.ZodOptional<z.ZodNumber>;
10555
11123
  ipBypass: z.ZodOptional<z.ZodNumber>;
10556
- rateLimit: z.ZodOptional<z.ZodNumber>;
10557
11124
  }, z.core.$strip>>;
10558
11125
  bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
10559
11126
  }, z.core.$strip>;
@@ -11062,7 +11629,9 @@ declare const createAiGatewayVirtualModelConfigStatus500Schema: z.ZodUnknown;
11062
11629
  declare const createAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
11063
11630
  declare const createAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11064
11631
  declare const getAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11065
- declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString;
11632
+ declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodOptional<z.ZodString>;
11633
+ declare const getAiGatewayVirtualModelConfigQueryLimitSchema: z.ZodOptional<z.ZodInt>;
11634
+ declare const getAiGatewayVirtualModelConfigQueryCursorSchema: z.ZodOptional<z.ZodString>;
11066
11635
  declare const getAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11067
11636
  declare const getAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
11068
11637
  declare const getAiGatewayVirtualModelConfigStatus200Schema: z.ZodUnknown;
@@ -11087,6 +11656,9 @@ declare const updateAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
11087
11656
  declare const updateAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11088
11657
  declare const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11089
11658
  declare const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString;
11659
+ declare const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
11660
+ declare const deleteAiGatewayVirtualModelConfigQueryActingIpSchema: z.ZodOptional<z.ZodString>;
11661
+ declare const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
11090
11662
  declare const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11091
11663
  declare const deleteAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
11092
11664
  declare const deleteAiGatewayVirtualModelConfigStatus204Schema: z.ZodUnknown;
@@ -11111,6 +11683,47 @@ declare const listAiGatewayVirtualModelConfigsStatus410Schema: z.ZodUnknown;
11111
11683
  declare const listAiGatewayVirtualModelConfigsStatus500Schema: z.ZodUnknown;
11112
11684
  declare const listAiGatewayVirtualModelConfigsResponseSchema: z.ZodUnknown;
11113
11685
  declare const listAiGatewayVirtualModelConfigsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11686
+ declare const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11687
+ declare const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11688
+ declare const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11689
+ declare const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11690
+ declare const getAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
11691
+ declare const getAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11692
+ declare const getAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11693
+ declare const getAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11694
+ declare const getAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11695
+ declare const getAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11696
+ declare const getAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11697
+ declare const getAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11698
+ declare const getAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11699
+ declare const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11700
+ declare const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11701
+ declare const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11702
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
11703
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11704
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11705
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11706
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11707
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11708
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11709
+ declare const updateAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11710
+ declare const updateAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11711
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11712
+ declare const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11713
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
11714
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema: z.ZodOptional<z.ZodString>;
11715
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
11716
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11717
+ declare const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11718
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema: z.ZodUnknown;
11719
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11720
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11721
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11722
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11723
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11724
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11725
+ declare const deleteAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11726
+ declare const deleteAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11114
11727
  declare const createAiGatewayRuleQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11115
11728
  declare const createAiGatewayRuleQuerySlugSchema: z.ZodOptional<z.ZodString>;
11116
11729
  declare const createAiGatewayRuleStatus201Schema: z.ZodUnknown;
@@ -11610,6 +12223,113 @@ declare const readNetworkStatus403Schema: z.ZodUnknown;
11610
12223
  declare const readNetworkStatus410Schema: z.ZodUnknown;
11611
12224
  declare const readNetworkResponseSchema: z.ZodUnknown;
11612
12225
  declare const readNetworkErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12226
+ declare const createPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12227
+ declare const createPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12228
+ declare const createPrivateLinkEndpointStatus201Schema: z.ZodUnknown;
12229
+ declare const createPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12230
+ declare const createPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12231
+ declare const createPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12232
+ declare const createPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12233
+ declare const createPrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12234
+ declare const createPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12235
+ declare const createPrivateLinkEndpointResponseSchema: z.ZodUnknown;
12236
+ declare const createPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12237
+ declare const listPrivateLinkEndpointsQueryProjectIdSchema: z.ZodString;
12238
+ declare const listPrivateLinkEndpointsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12239
+ declare const listPrivateLinkEndpointsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12240
+ declare const listPrivateLinkEndpointsStatus200Schema: z.ZodUnknown;
12241
+ declare const listPrivateLinkEndpointsStatus400Schema: z.ZodUnknown;
12242
+ declare const listPrivateLinkEndpointsStatus401Schema: z.ZodUnknown;
12243
+ declare const listPrivateLinkEndpointsStatus403Schema: z.ZodUnknown;
12244
+ declare const listPrivateLinkEndpointsStatus404Schema: z.ZodUnknown;
12245
+ declare const listPrivateLinkEndpointsStatus410Schema: z.ZodUnknown;
12246
+ declare const listPrivateLinkEndpointsResponseSchema: z.ZodUnknown;
12247
+ declare const listPrivateLinkEndpointsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12248
+ declare const readPrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12249
+ declare const readPrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12250
+ declare const readPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12251
+ declare const readPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12252
+ declare const readPrivateLinkEndpointStatus200Schema: z.ZodUnknown;
12253
+ declare const readPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12254
+ declare const readPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12255
+ declare const readPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12256
+ declare const readPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12257
+ declare const readPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12258
+ declare const readPrivateLinkEndpointResponseSchema: z.ZodUnknown;
12259
+ declare const readPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12260
+ declare const deletePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12261
+ declare const deletePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12262
+ declare const deletePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12263
+ declare const deletePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12264
+ declare const deletePrivateLinkEndpointStatus204Schema: z.ZodUnknown;
12265
+ declare const deletePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12266
+ declare const deletePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12267
+ declare const deletePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12268
+ declare const deletePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12269
+ declare const deletePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12270
+ declare const deletePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12271
+ declare const deletePrivateLinkEndpointResponseSchema: z.ZodUnknown;
12272
+ declare const deletePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12273
+ declare const updatePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12274
+ declare const updatePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12275
+ declare const updatePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12276
+ declare const updatePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12277
+ declare const updatePrivateLinkEndpointStatus200Schema: z.ZodUnknown;
12278
+ declare const updatePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12279
+ declare const updatePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12280
+ declare const updatePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12281
+ declare const updatePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12282
+ declare const updatePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12283
+ declare const updatePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12284
+ declare const updatePrivateLinkEndpointResponseSchema: z.ZodUnknown;
12285
+ declare const updatePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12286
+ declare const listConnectorsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12287
+ declare const listConnectorsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12288
+ declare const listConnectorsQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
12289
+ declare const listConnectorsQuerySearchSchema: z.ZodOptional<z.ZodString>;
12290
+ declare const listConnectorsQueryTypeSchema: z.ZodOptional<z.ZodString>;
12291
+ declare const listConnectorsQueryServiceSchema: z.ZodOptional<z.ZodString>;
12292
+ declare const listConnectorsQuerySortSchema: z.ZodOptional<z.ZodEnum<{
12293
+ name: "name";
12294
+ createdAt: "createdAt";
12295
+ updatedAt: "updatedAt";
12296
+ }>>;
12297
+ declare const listConnectorsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12298
+ declare const listConnectorsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12299
+ declare const listConnectorsStatus200Schema: z.ZodUnknown;
12300
+ declare const listConnectorsStatus400Schema: z.ZodUnknown;
12301
+ declare const listConnectorsStatus401Schema: z.ZodUnknown;
12302
+ declare const listConnectorsStatus403Schema: z.ZodUnknown;
12303
+ declare const listConnectorsStatus410Schema: z.ZodUnknown;
12304
+ declare const listConnectorsStatus422Schema: z.ZodUnknown;
12305
+ declare const listConnectorsResponseSchema: z.ZodUnknown;
12306
+ declare const listConnectorsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12307
+ declare const getConnectorPathConnectorSchema: z.ZodString;
12308
+ declare const getConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12309
+ declare const getConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12310
+ declare const getConnectorStatus200Schema: z.ZodUnknown;
12311
+ declare const getConnectorStatus400Schema: z.ZodUnknown;
12312
+ declare const getConnectorStatus401Schema: z.ZodUnknown;
12313
+ declare const getConnectorStatus403Schema: z.ZodUnknown;
12314
+ declare const getConnectorStatus404Schema: z.ZodUnknown;
12315
+ declare const getConnectorStatus410Schema: z.ZodUnknown;
12316
+ declare const getConnectorStatus422Schema: z.ZodUnknown;
12317
+ declare const getConnectorResponseSchema: z.ZodUnknown;
12318
+ declare const getConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12319
+ declare const deleteConnectorPathConnectorSchema: z.ZodString;
12320
+ declare const deleteConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12321
+ declare const deleteConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12322
+ declare const deleteConnectorStatus204Schema: z.ZodUnknown;
12323
+ declare const deleteConnectorStatus400Schema: z.ZodUnknown;
12324
+ declare const deleteConnectorStatus401Schema: z.ZodUnknown;
12325
+ declare const deleteConnectorStatus403Schema: z.ZodUnknown;
12326
+ declare const deleteConnectorStatus404Schema: z.ZodUnknown;
12327
+ declare const deleteConnectorStatus409Schema: z.ZodUnknown;
12328
+ declare const deleteConnectorStatus410Schema: z.ZodUnknown;
12329
+ declare const deleteConnectorStatus422Schema: z.ZodUnknown;
12330
+ declare const deleteConnectorStatus502Schema: z.ZodUnknown;
12331
+ declare const deleteConnectorResponseSchema: z.ZodUnknown;
12332
+ declare const deleteConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11613
12333
  declare const createConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11614
12334
  declare const createConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
11615
12335
  declare const createConnectorStatus201Schema: z.ZodUnknown;
@@ -11624,6 +12344,95 @@ declare const createConnectorStatus500Schema: z.ZodUnknown;
11624
12344
  declare const createConnectorStatus502Schema: z.ZodUnknown;
11625
12345
  declare const createConnectorResponseSchema: z.ZodUnknown;
11626
12346
  declare const createConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12347
+ declare const updateConnectorPathConnectorSchema: z.ZodString;
12348
+ declare const updateConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12349
+ declare const updateConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12350
+ declare const updateConnectorStatus200Schema: z.ZodUnknown;
12351
+ declare const updateConnectorStatus400Schema: z.ZodUnknown;
12352
+ declare const updateConnectorStatus401Schema: z.ZodUnknown;
12353
+ declare const updateConnectorStatus403Schema: z.ZodUnknown;
12354
+ declare const updateConnectorStatus404Schema: z.ZodUnknown;
12355
+ declare const updateConnectorStatus409Schema: z.ZodUnknown;
12356
+ declare const updateConnectorStatus410Schema: z.ZodUnknown;
12357
+ declare const updateConnectorStatus422Schema: z.ZodUnknown;
12358
+ declare const updateConnectorStatus502Schema: z.ZodUnknown;
12359
+ declare const updateConnectorResponseSchema: z.ZodUnknown;
12360
+ declare const updateConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12361
+ declare const replaceConnectorTriggerDestinationsPathConnectorSchema: z.ZodString;
12362
+ declare const replaceConnectorTriggerDestinationsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12363
+ declare const replaceConnectorTriggerDestinationsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12364
+ declare const replaceConnectorTriggerDestinationsStatus200Schema: z.ZodUnknown;
12365
+ declare const replaceConnectorTriggerDestinationsStatus400Schema: z.ZodUnknown;
12366
+ declare const replaceConnectorTriggerDestinationsStatus401Schema: z.ZodUnknown;
12367
+ declare const replaceConnectorTriggerDestinationsStatus403Schema: z.ZodUnknown;
12368
+ declare const replaceConnectorTriggerDestinationsStatus404Schema: z.ZodUnknown;
12369
+ declare const replaceConnectorTriggerDestinationsStatus410Schema: z.ZodUnknown;
12370
+ declare const replaceConnectorTriggerDestinationsStatus422Schema: z.ZodUnknown;
12371
+ declare const replaceConnectorTriggerDestinationsResponseSchema: z.ZodUnknown;
12372
+ declare const replaceConnectorTriggerDestinationsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12373
+ declare const listConnectorProjectConnectionsPathConnectorSchema: z.ZodString;
12374
+ declare const listConnectorProjectConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12375
+ declare const listConnectorProjectConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12376
+ declare const listConnectorProjectConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12377
+ declare const listConnectorProjectConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12378
+ declare const listConnectorProjectConnectionsStatus200Schema: z.ZodUnknown;
12379
+ declare const listConnectorProjectConnectionsStatus400Schema: z.ZodUnknown;
12380
+ declare const listConnectorProjectConnectionsStatus401Schema: z.ZodUnknown;
12381
+ declare const listConnectorProjectConnectionsStatus403Schema: z.ZodUnknown;
12382
+ declare const listConnectorProjectConnectionsStatus404Schema: z.ZodUnknown;
12383
+ declare const listConnectorProjectConnectionsStatus410Schema: z.ZodUnknown;
12384
+ declare const listConnectorProjectConnectionsStatus422Schema: z.ZodUnknown;
12385
+ declare const listConnectorProjectConnectionsResponseSchema: z.ZodUnknown;
12386
+ declare const listConnectorProjectConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12387
+ declare const getConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12388
+ declare const getConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12389
+ declare const getConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12390
+ declare const getConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12391
+ declare const getConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
12392
+ declare const getConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12393
+ declare const getConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12394
+ declare const getConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12395
+ declare const getConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12396
+ declare const getConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12397
+ declare const getConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12398
+ declare const getConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12399
+ declare const upsertConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12400
+ declare const upsertConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12401
+ declare const upsertConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12402
+ declare const upsertConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12403
+ declare const upsertConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
12404
+ declare const upsertConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12405
+ declare const upsertConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12406
+ declare const upsertConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12407
+ declare const upsertConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12408
+ declare const upsertConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12409
+ declare const upsertConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12410
+ declare const upsertConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12411
+ declare const deleteConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12412
+ declare const deleteConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12413
+ declare const deleteConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12414
+ declare const deleteConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12415
+ declare const deleteConnectorProjectConnectionStatus204Schema: z.ZodUnknown;
12416
+ declare const deleteConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12417
+ declare const deleteConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12418
+ declare const deleteConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12419
+ declare const deleteConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12420
+ declare const deleteConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12421
+ declare const deleteConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12422
+ declare const deleteConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12423
+ declare const listProjectConnectorConnectionsPathProjectIdSchema: z.ZodString;
12424
+ declare const listProjectConnectorConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12425
+ declare const listProjectConnectorConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12426
+ declare const listProjectConnectorConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12427
+ declare const listProjectConnectorConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12428
+ declare const listProjectConnectorConnectionsStatus200Schema: z.ZodUnknown;
12429
+ declare const listProjectConnectorConnectionsStatus400Schema: z.ZodUnknown;
12430
+ declare const listProjectConnectorConnectionsStatus401Schema: z.ZodUnknown;
12431
+ declare const listProjectConnectorConnectionsStatus403Schema: z.ZodUnknown;
12432
+ declare const listProjectConnectorConnectionsStatus404Schema: z.ZodUnknown;
12433
+ declare const listProjectConnectorConnectionsStatus410Schema: z.ZodUnknown;
12434
+ declare const listProjectConnectorConnectionsResponseSchema: z.ZodUnknown;
12435
+ declare const listProjectConnectorConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11627
12436
  declare const getConnectorTokenPathConnectorSchema: z.ZodString;
11628
12437
  declare const getConnectorTokenStatus200Schema: z.ZodUnknown;
11629
12438
  declare const getConnectorTokenStatus400Schema: z.ZodUnknown;
@@ -12940,6 +13749,7 @@ declare const getBillingPlansQuerySourceSchema: z.ZodOptional<z.ZodEnum<{
12940
13749
  oauth: "oauth";
12941
13750
  backoffice: "backoffice";
12942
13751
  "import-recommended-integrations": "import-recommended-integrations";
13752
+ organization: "organization";
12943
13753
  }>>;
12944
13754
  declare const getBillingPlansQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12945
13755
  declare const getBillingPlansQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -13059,9 +13869,8 @@ declare const importResourceStatus404Schema: z.ZodUnknown;
13059
13869
  declare const importResourceStatus409Schema: z.ZodUnknown;
13060
13870
  declare const importResourceStatus410Schema: z.ZodUnknown;
13061
13871
  declare const importResourceStatus422Schema: z.ZodUnknown;
13062
- declare const importResourceStatus429Schema: z.ZodUnknown;
13063
13872
  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, z.ZodUnknown]>;
13873
+ declare const importResourceErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
13065
13874
  declare const updateResourcePathIntegrationConfigurationIdSchema: z.ZodString;
13066
13875
  declare const updateResourcePathResourceIdSchema: z.ZodString;
13067
13876
  declare const updateResourceStatus200Schema: z.ZodUnknown;
@@ -13557,8 +14366,12 @@ declare const createObservabilityQueryStatus402Schema: z.ZodUnknown;
13557
14366
  declare const createObservabilityQueryStatus403Schema: z.ZodUnknown;
13558
14367
  declare const createObservabilityQueryStatus408Schema: z.ZodUnknown;
13559
14368
  declare const createObservabilityQueryStatus410Schema: z.ZodUnknown;
14369
+ declare const createObservabilityQueryStatus413Schema: z.ZodUnknown;
14370
+ declare const createObservabilityQueryStatus422Schema: z.ZodUnknown;
14371
+ declare const createObservabilityQueryStatus500Schema: z.ZodUnknown;
14372
+ declare const createObservabilityQueryStatus503Schema: z.ZodUnknown;
13560
14373
  declare const createObservabilityQueryResponseSchema: z.ZodUnknown;
13561
- declare const createObservabilityQueryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14374
+ 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
14375
  declare const getObservabilitySchemaStatus200Schema: z.ZodUnknown;
13563
14376
  declare const getObservabilitySchemaStatus400Schema: z.ZodUnknown;
13564
14377
  declare const getObservabilitySchemaStatus401Schema: z.ZodUnknown;
@@ -13815,8 +14628,9 @@ declare const updateProjectStatus404Schema: z.ZodUnknown;
13815
14628
  declare const updateProjectStatus409Schema: z.ZodUnknown;
13816
14629
  declare const updateProjectStatus410Schema: z.ZodUnknown;
13817
14630
  declare const updateProjectStatus428Schema: z.ZodUnknown;
14631
+ declare const updateProjectStatus429Schema: z.ZodUnknown;
13818
14632
  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]>;
14633
+ 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
14634
  declare const deleteProjectPathIdOrNameSchema: z.ZodString;
13821
14635
  declare const deleteProjectQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
13822
14636
  declare const deleteProjectQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14209,9 +15023,10 @@ declare const createProjectTransferRequestStatus200Schema: z.ZodUnknown;
14209
15023
  declare const createProjectTransferRequestStatus400Schema: z.ZodUnknown;
14210
15024
  declare const createProjectTransferRequestStatus401Schema: z.ZodUnknown;
14211
15025
  declare const createProjectTransferRequestStatus403Schema: z.ZodUnknown;
15026
+ declare const createProjectTransferRequestStatus409Schema: z.ZodUnknown;
14212
15027
  declare const createProjectTransferRequestStatus410Schema: z.ZodUnknown;
14213
15028
  declare const createProjectTransferRequestResponseSchema: z.ZodUnknown;
14214
- declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15029
+ declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14215
15030
  declare const acceptProjectTransferRequestPathCodeSchema: z.ZodString;
14216
15031
  declare const acceptProjectTransferRequestQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14217
15032
  declare const acceptProjectTransferRequestQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14325,37 +15140,37 @@ declare const unpauseProjectStatus410Schema: z.ZodUnknown;
14325
15140
  declare const unpauseProjectStatus500Schema: z.ZodUnknown;
14326
15141
  declare const unpauseProjectResponseSchema: z.ZodUnknown;
14327
15142
  declare const unpauseProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14328
- declare const listSandboxesQueryProjectSchema: z.ZodOptional<z.ZodString>;
14329
- declare const listSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
14330
- declare const listSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14331
- createdAt: "createdAt";
15143
+ declare const listNamedSandboxesQueryProjectSchema: z.ZodOptional<z.ZodString>;
15144
+ declare const listNamedSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
15145
+ declare const listNamedSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14332
15146
  name: "name";
15147
+ createdAt: "createdAt";
14333
15148
  statusUpdatedAt: "statusUpdatedAt";
14334
15149
  currentSnapshotId: "currentSnapshotId";
14335
15150
  }>>>;
14336
- declare const listSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
14337
- declare const listSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
14338
- declare const listSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
15151
+ declare const listNamedSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
15152
+ declare const listNamedSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
15153
+ declare const listNamedSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14339
15154
  asc: "asc";
14340
15155
  desc: "desc";
14341
15156
  }>>>;
14342
- declare const listSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
15157
+ declare const listNamedSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
14343
15158
  running: "running";
14344
15159
  stopping: "stopping";
14345
15160
  stopped: "stopped";
14346
15161
  }>>;
14347
- declare const listSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
14348
- declare const listSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14349
- declare const listSandboxesQuerySlugSchema: z.ZodOptional<z.ZodString>;
14350
- declare const listSandboxesStatus200Schema: z.ZodUnknown;
14351
- declare const listSandboxesStatus400Schema: z.ZodUnknown;
14352
- declare const listSandboxesStatus401Schema: z.ZodUnknown;
14353
- declare const listSandboxesStatus403Schema: z.ZodUnknown;
14354
- declare const listSandboxesStatus404Schema: z.ZodUnknown;
14355
- declare const listSandboxesStatus410Schema: z.ZodUnknown;
14356
- declare const listSandboxesStatus429Schema: z.ZodUnknown;
14357
- declare const listSandboxesResponseSchema: z.ZodUnknown;
14358
- declare const listSandboxesErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15162
+ declare const listNamedSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
15163
+ declare const listNamedSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
15164
+ declare const listNamedSandboxesQuerySlugSchema: z.ZodOptional<z.ZodString>;
15165
+ declare const listNamedSandboxesStatus200Schema: z.ZodUnknown;
15166
+ declare const listNamedSandboxesStatus400Schema: z.ZodUnknown;
15167
+ declare const listNamedSandboxesStatus401Schema: z.ZodUnknown;
15168
+ declare const listNamedSandboxesStatus403Schema: z.ZodUnknown;
15169
+ declare const listNamedSandboxesStatus404Schema: z.ZodUnknown;
15170
+ declare const listNamedSandboxesStatus410Schema: z.ZodUnknown;
15171
+ declare const listNamedSandboxesStatus429Schema: z.ZodUnknown;
15172
+ declare const listNamedSandboxesResponseSchema: z.ZodUnknown;
15173
+ declare const listNamedSandboxesErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14359
15174
  declare const createSandboxesV2QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14360
15175
  declare const createSandboxesV2QuerySlugSchema: z.ZodOptional<z.ZodString>;
14361
15176
  declare const createSandboxesV2Status200Schema: z.ZodUnknown;
@@ -14375,8 +15190,8 @@ declare const listDrivesQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
14375
15190
  declare const listDrivesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
14376
15191
  declare const listDrivesQueryCursorSchema: z.ZodOptional<z.ZodString>;
14377
15192
  declare const listDrivesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14378
- createdAt: "createdAt";
14379
15193
  name: "name";
15194
+ createdAt: "createdAt";
14380
15195
  updatedAt: "updatedAt";
14381
15196
  }>>>;
14382
15197
  declare const listDrivesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
@@ -14904,36 +15719,39 @@ declare const getBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14904
15719
  declare const getBypassIpStatus200Schema: z.ZodUnknown;
14905
15720
  declare const getBypassIpStatus400Schema: z.ZodUnknown;
14906
15721
  declare const getBypassIpStatus401Schema: z.ZodUnknown;
15722
+ declare const getBypassIpStatus402Schema: z.ZodUnknown;
14907
15723
  declare const getBypassIpStatus403Schema: z.ZodUnknown;
14908
15724
  declare const getBypassIpStatus404Schema: z.ZodUnknown;
14909
15725
  declare const getBypassIpStatus410Schema: z.ZodUnknown;
14910
15726
  declare const getBypassIpStatus500Schema: z.ZodUnknown;
14911
15727
  declare const getBypassIpResponseSchema: z.ZodUnknown;
14912
- declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15728
+ declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14913
15729
  declare const addBypassIpQueryProjectIdSchema: z.ZodString;
14914
15730
  declare const addBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14915
15731
  declare const addBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14916
15732
  declare const addBypassIpStatus200Schema: z.ZodUnknown;
14917
15733
  declare const addBypassIpStatus400Schema: z.ZodUnknown;
14918
15734
  declare const addBypassIpStatus401Schema: z.ZodUnknown;
15735
+ declare const addBypassIpStatus402Schema: z.ZodUnknown;
14919
15736
  declare const addBypassIpStatus403Schema: z.ZodUnknown;
14920
15737
  declare const addBypassIpStatus404Schema: z.ZodUnknown;
14921
15738
  declare const addBypassIpStatus410Schema: z.ZodUnknown;
14922
15739
  declare const addBypassIpStatus500Schema: z.ZodUnknown;
14923
15740
  declare const addBypassIpResponseSchema: z.ZodUnknown;
14924
- declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15741
+ declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14925
15742
  declare const removeBypassIpQueryProjectIdSchema: z.ZodString;
14926
15743
  declare const removeBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14927
15744
  declare const removeBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14928
15745
  declare const removeBypassIpStatus200Schema: z.ZodUnknown;
14929
15746
  declare const removeBypassIpStatus400Schema: z.ZodUnknown;
14930
15747
  declare const removeBypassIpStatus401Schema: z.ZodUnknown;
15748
+ declare const removeBypassIpStatus402Schema: z.ZodUnknown;
14931
15749
  declare const removeBypassIpStatus403Schema: z.ZodUnknown;
14932
15750
  declare const removeBypassIpStatus404Schema: z.ZodUnknown;
14933
15751
  declare const removeBypassIpStatus410Schema: z.ZodUnknown;
14934
15752
  declare const removeBypassIpStatus500Schema: z.ZodUnknown;
14935
15753
  declare const removeBypassIpResponseSchema: z.ZodUnknown;
14936
- declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15754
+ declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14937
15755
  declare const getSecurityFirewallEventsQueryProjectIdSchema: z.ZodString;
14938
15756
  declare const getSecurityFirewallEventsQueryStartTimestampSchema: z.ZodOptional<z.ZodNumber>;
14939
15757
  declare const getSecurityFirewallEventsQueryEndTimestampSchema: z.ZodOptional<z.ZodNumber>;
@@ -15014,10 +15832,9 @@ declare const createIntegrationStoreDirectStatus403Schema: z.ZodUnknown;
15014
15832
  declare const createIntegrationStoreDirectStatus404Schema: z.ZodUnknown;
15015
15833
  declare const createIntegrationStoreDirectStatus409Schema: z.ZodUnknown;
15016
15834
  declare const createIntegrationStoreDirectStatus410Schema: z.ZodUnknown;
15017
- declare const createIntegrationStoreDirectStatus429Schema: z.ZodUnknown;
15018
15835
  declare const createIntegrationStoreDirectStatus500Schema: z.ZodUnknown;
15019
15836
  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, z.ZodUnknown]>;
15837
+ declare const createIntegrationStoreDirectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15021
15838
  declare const getTeamMembersQueryLimitSchema: z.ZodOptional<z.ZodNumber>;
15022
15839
  declare const getTeamMembersQuerySinceSchema: z.ZodOptional<z.ZodNumber>;
15023
15840
  declare const getTeamMembersQueryUntilSchema: z.ZodOptional<z.ZodNumber>;
@@ -15626,9 +16443,11 @@ declare const aggregatePageviewsStatus400Schema: z.ZodUnknown;
15626
16443
  declare const aggregatePageviewsStatus401Schema: z.ZodUnknown;
15627
16444
  declare const aggregatePageviewsStatus402Schema: z.ZodUnknown;
15628
16445
  declare const aggregatePageviewsStatus403Schema: z.ZodUnknown;
16446
+ declare const aggregatePageviewsStatus404Schema: z.ZodUnknown;
15629
16447
  declare const aggregatePageviewsStatus410Schema: z.ZodUnknown;
16448
+ declare const aggregatePageviewsStatus503Schema: z.ZodUnknown;
15630
16449
  declare const aggregatePageviewsResponseSchema: z.ZodUnknown;
15631
- declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16450
+ declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15632
16451
  declare const aggregateEventsQueryProjectIdSchema: z.ZodString;
15633
16452
  declare const aggregateEventsQueryBySchema: z.ZodArray<z.ZodString>;
15634
16453
  declare const aggregateEventsQuerySinceSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
@@ -15642,9 +16461,11 @@ declare const aggregateEventsStatus400Schema: z.ZodUnknown;
15642
16461
  declare const aggregateEventsStatus401Schema: z.ZodUnknown;
15643
16462
  declare const aggregateEventsStatus402Schema: z.ZodUnknown;
15644
16463
  declare const aggregateEventsStatus403Schema: z.ZodUnknown;
16464
+ declare const aggregateEventsStatus404Schema: z.ZodUnknown;
15645
16465
  declare const aggregateEventsStatus410Schema: z.ZodUnknown;
16466
+ declare const aggregateEventsStatus503Schema: z.ZodUnknown;
15646
16467
  declare const aggregateEventsResponseSchema: z.ZodUnknown;
15647
- declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16468
+ declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15648
16469
  declare const countPageviewsQueryProjectIdSchema: z.ZodString;
15649
16470
  declare const countPageviewsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
15650
16471
  declare const countPageviewsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
@@ -15656,9 +16477,11 @@ declare const countPageviewsStatus400Schema: z.ZodUnknown;
15656
16477
  declare const countPageviewsStatus401Schema: z.ZodUnknown;
15657
16478
  declare const countPageviewsStatus402Schema: z.ZodUnknown;
15658
16479
  declare const countPageviewsStatus403Schema: z.ZodUnknown;
16480
+ declare const countPageviewsStatus404Schema: z.ZodUnknown;
15659
16481
  declare const countPageviewsStatus410Schema: z.ZodUnknown;
16482
+ declare const countPageviewsStatus503Schema: z.ZodUnknown;
15660
16483
  declare const countPageviewsResponseSchema: z.ZodUnknown;
15661
- declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16484
+ declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15662
16485
  declare const countEventsQueryProjectIdSchema: z.ZodString;
15663
16486
  declare const countEventsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
15664
16487
  declare const countEventsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
@@ -15670,9 +16493,11 @@ declare const countEventsStatus400Schema: z.ZodUnknown;
15670
16493
  declare const countEventsStatus401Schema: z.ZodUnknown;
15671
16494
  declare const countEventsStatus402Schema: z.ZodUnknown;
15672
16495
  declare const countEventsStatus403Schema: z.ZodUnknown;
16496
+ declare const countEventsStatus404Schema: z.ZodUnknown;
15673
16497
  declare const countEventsStatus410Schema: z.ZodUnknown;
16498
+ declare const countEventsStatus503Schema: z.ZodUnknown;
15674
16499
  declare const countEventsResponseSchema: z.ZodUnknown;
15675
- declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16500
+ declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15676
16501
  declare const createWebhookQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
15677
16502
  declare const createWebhookQuerySlugSchema: z.ZodOptional<z.ZodString>;
15678
16503
  declare const createWebhookStatus200Schema: z.ZodUnknown;
@@ -15907,5 +16732,5 @@ declare const deleteDeploymentStatus410Schema: z.ZodUnknown;
15907
16732
  declare const deleteDeploymentResponseSchema: z.ZodUnknown;
15908
16733
  declare const deleteDeploymentErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15909
16734
 
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 };
16735
+ 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
16736
  //# sourceMappingURL=schemas.d.mts.map