vercel-api-js 1.14.2 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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";
@@ -887,6 +1316,7 @@ declare const userEventSchema: z.ZodObject<{
887
1316
  "authorize-git-deployment": "authorize-git-deployment";
888
1317
  "auto-expose-system-envs": "auto-expose-system-envs";
889
1318
  avatar: "avatar";
1319
+ "billing-settings-updated": "billing-settings-updated";
890
1320
  "bulk-redirects-settings-updated": "bulk-redirects-settings-updated";
891
1321
  "bulk-redirects-version-promoted": "bulk-redirects-version-promoted";
892
1322
  "bulk-redirects-version-restored": "bulk-redirects-version-restored";
@@ -1042,6 +1472,7 @@ declare const userEventSchema: z.ZodObject<{
1042
1472
  "flags-sdk-key-deleted": "flags-sdk-key-deleted";
1043
1473
  "flags-sdk-key-read": "flags-sdk-key-read";
1044
1474
  "flags-transferred": "flags-transferred";
1475
+ "flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
1045
1476
  "git-integration-repo-push": "git-integration-repo-push";
1046
1477
  git_account_integration_link_added: "git_account_integration_link_added";
1047
1478
  "global-config-backup-restored": "global-config-backup-restored";
@@ -1126,6 +1557,7 @@ declare const userEventSchema: z.ZodObject<{
1126
1557
  "organization-team-add": "organization-team-add";
1127
1558
  "organization-team-create": "organization-team-create";
1128
1559
  "organization-team-delete": "organization-team-delete";
1560
+ "organization-team-sso-update": "organization-team-sso-update";
1129
1561
  "owner-blocked": "owner-blocked";
1130
1562
  "owner-soft-blocked": "owner-soft-blocked";
1131
1563
  "owner-soft-unblocked": "owner-soft-unblocked";
@@ -1205,6 +1637,12 @@ declare const userEventSchema: z.ZodObject<{
1205
1637
  "project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
1206
1638
  "project-git-commit-status-toggled": "project-git-commit-status-toggled";
1207
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";
1208
1646
  "project-git-fork-protection-updated": "project-git-fork-protection-updated";
1209
1647
  "project-git-lfs-toggled": "project-git-lfs-toggled";
1210
1648
  "project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
@@ -1297,6 +1735,8 @@ declare const userEventSchema: z.ZodObject<{
1297
1735
  "shared-env-variable-create": "shared-env-variable-create";
1298
1736
  "shared-env-variable-delete": "shared-env-variable-delete";
1299
1737
  "shared-env-variable-read": "shared-env-variable-read";
1738
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
1739
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
1300
1740
  "shared-env-variable-update": "shared-env-variable-update";
1301
1741
  "show-ip-addresses": "show-ip-addresses";
1302
1742
  signup: "signup";
@@ -1327,6 +1767,7 @@ declare const userEventSchema: z.ZodObject<{
1327
1767
  "storage-update-project-connection": "storage-update-project-connection";
1328
1768
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
1329
1769
  "storage-view-secret": "storage-view-secret";
1770
+ "strict-connectors": "strict-connectors";
1330
1771
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
1331
1772
  "strict-password-protection-settings": "strict-password-protection-settings";
1332
1773
  "strict-shareable-links": "strict-shareable-links";
@@ -1488,7 +1929,7 @@ declare const userEventSchema: z.ZodObject<{
1488
1929
  username: z.ZodString;
1489
1930
  uid: z.ZodString;
1490
1931
  }, z.core.$strip>>;
1491
- principal: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
1932
+ principal: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1492
1933
  type: z.ZodOptional<z.ZodEnum<{
1493
1934
  user: "user";
1494
1935
  }>>;
@@ -1515,8 +1956,8 @@ declare const userEventSchema: z.ZodObject<{
1515
1956
  type: z.ZodEnum<{
1516
1957
  system: "system";
1517
1958
  }>;
1518
- }, z.core.$strict>]>>;
1519
- via: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1959
+ }, z.core.$strict>], "type">>;
1960
+ via: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1520
1961
  type: z.ZodOptional<z.ZodEnum<{
1521
1962
  user: "user";
1522
1963
  }>>;
@@ -1543,10 +1984,13 @@ declare const userEventSchema: z.ZodObject<{
1543
1984
  type: z.ZodEnum<{
1544
1985
  system: "system";
1545
1986
  }>;
1546
- }, z.core.$strict>]>>>;
1987
+ }, z.core.$strict>], "type">>>;
1547
1988
  userId: z.ZodOptional<z.ZodString>;
1548
1989
  principalId: z.ZodString;
1549
1990
  viaIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
1991
+ tokenId: z.ZodOptional<z.ZodString>;
1992
+ sessionId: z.ZodOptional<z.ZodString>;
1993
+ requestId: z.ZodOptional<z.ZodString>;
1550
1994
  payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$strict>, z.ZodObject<{
1551
1995
  action: z.ZodEnum<{
1552
1996
  archived: "archived";
@@ -1589,6 +2033,10 @@ declare const userEventSchema: z.ZodObject<{
1589
2033
  projectName: z.ZodOptional<z.ZodString>;
1590
2034
  projectId: z.ZodOptional<z.ZodString>;
1591
2035
  environment: z.ZodArray<z.ZodString>;
2036
+ }, z.core.$strict>, z.ZodObject<{
2037
+ projectId: z.ZodString;
2038
+ projectName: z.ZodString;
2039
+ policyId: z.ZodString;
1592
2040
  }, z.core.$strict>, z.ZodObject<{
1593
2041
  provider: z.ZodOptional<z.ZodEnum<{
1594
2042
  chatgpt: "chatgpt";
@@ -1682,6 +2130,7 @@ declare const userEventSchema: z.ZodObject<{
1682
2130
  monthly: "monthly";
1683
2131
  weekly: "weekly";
1684
2132
  }>;
2133
+ alertThresholds: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
1685
2134
  }, z.core.$strip>>>;
1686
2135
  zdrExemption: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
1687
2136
  bypassAll: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
@@ -1703,6 +2152,7 @@ declare const userEventSchema: z.ZodObject<{
1703
2152
  monthly: "monthly";
1704
2153
  weekly: "weekly";
1705
2154
  }>;
2155
+ alertThresholds: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
1706
2156
  }, z.core.$strip>>>;
1707
2157
  change: z.ZodEnum<{
1708
2158
  set: "set";
@@ -1747,6 +2197,7 @@ declare const userEventSchema: z.ZodObject<{
1747
2197
  monthly: "monthly";
1748
2198
  weekly: "weekly";
1749
2199
  }>;
2200
+ alertThresholds: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
1750
2201
  }, z.core.$strip>>>;
1751
2202
  change: z.ZodEnum<{
1752
2203
  set: "set";
@@ -1772,6 +2223,7 @@ declare const userEventSchema: z.ZodObject<{
1772
2223
  monthly: "monthly";
1773
2224
  weekly: "weekly";
1774
2225
  }>;
2226
+ alertThresholds: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
1775
2227
  }, z.core.$strip>>>;
1776
2228
  change: z.ZodEnum<{
1777
2229
  set: "set";
@@ -1786,10 +2238,19 @@ declare const userEventSchema: z.ZodObject<{
1786
2238
  providerSlug: z.ZodString;
1787
2239
  }, z.core.$strip>;
1788
2240
  }, z.core.$strict>, z.ZodObject<{
1789
- amount: z.ZodString;
1790
- purchaseIntentId: z.ZodString;
2241
+ credential: z.ZodObject<{
2242
+ id: z.ZodString;
2243
+ name: z.ZodString;
2244
+ providerSlug: z.ZodString;
2245
+ }, z.core.$strip>;
2246
+ added: z.ZodArray<z.ZodString>;
2247
+ removed: z.ZodArray<z.ZodString>;
2248
+ changed: z.ZodArray<z.ZodString>;
1791
2249
  }, z.core.$strict>, z.ZodObject<{
1792
2250
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
2251
+ }, z.core.$strict>, z.ZodObject<{
2252
+ amount: z.ZodString;
2253
+ purchaseIntentId: z.ZodString;
1793
2254
  }, z.core.$strict>, z.ZodObject<{
1794
2255
  added: z.ZodArray<z.ZodString>;
1795
2256
  removed: z.ZodArray<z.ZodString>;
@@ -2026,6 +2487,7 @@ declare const userEventSchema: z.ZodObject<{
2026
2487
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2027
2488
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2028
2489
  "read-write:alerts": "read-write:alerts";
2490
+ "read-write:automations": "read-write:automations";
2029
2491
  "read-write:billing": "read-write:billing";
2030
2492
  "read-write:blob": "read-write:blob";
2031
2493
  "read-write:connect": "read-write:connect";
@@ -2056,7 +2518,9 @@ declare const userEventSchema: z.ZodObject<{
2056
2518
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2057
2519
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2058
2520
  "read:alerts": "read:alerts";
2521
+ "read:automations": "read:automations";
2059
2522
  "read:billing": "read:billing";
2523
+ "read:connect": "read:connect";
2060
2524
  "read:deployment": "read:deployment";
2061
2525
  "read:domain": "read:domain";
2062
2526
  "read:event": "read:event";
@@ -2076,6 +2540,7 @@ declare const userEventSchema: z.ZodObject<{
2076
2540
  "read:user": "read:user";
2077
2541
  "read:vcr": "read:vcr";
2078
2542
  "read:web-analytics": "read:web-analytics";
2543
+ "read:webhooks": "read:webhooks";
2079
2544
  "use:ai-gateway": "use:ai-gateway";
2080
2545
  }>>>;
2081
2546
  }, z.core.$strict>, z.ZodObject<{
@@ -2099,6 +2564,7 @@ declare const userEventSchema: z.ZodObject<{
2099
2564
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2100
2565
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2101
2566
  "read-write:alerts": "read-write:alerts";
2567
+ "read-write:automations": "read-write:automations";
2102
2568
  "read-write:billing": "read-write:billing";
2103
2569
  "read-write:blob": "read-write:blob";
2104
2570
  "read-write:connect": "read-write:connect";
@@ -2129,7 +2595,9 @@ declare const userEventSchema: z.ZodObject<{
2129
2595
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2130
2596
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2131
2597
  "read:alerts": "read:alerts";
2598
+ "read:automations": "read:automations";
2132
2599
  "read:billing": "read:billing";
2600
+ "read:connect": "read:connect";
2133
2601
  "read:deployment": "read:deployment";
2134
2602
  "read:domain": "read:domain";
2135
2603
  "read:event": "read:event";
@@ -2149,6 +2617,7 @@ declare const userEventSchema: z.ZodObject<{
2149
2617
  "read:user": "read:user";
2150
2618
  "read:vcr": "read:vcr";
2151
2619
  "read:web-analytics": "read:web-analytics";
2620
+ "read:webhooks": "read:webhooks";
2152
2621
  "use:ai-gateway": "use:ai-gateway";
2153
2622
  }>>>;
2154
2623
  }, z.core.$strict>, z.ZodObject<{
@@ -2178,6 +2647,7 @@ declare const userEventSchema: z.ZodObject<{
2178
2647
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2179
2648
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2180
2649
  "read-write:alerts": "read-write:alerts";
2650
+ "read-write:automations": "read-write:automations";
2181
2651
  "read-write:billing": "read-write:billing";
2182
2652
  "read-write:blob": "read-write:blob";
2183
2653
  "read-write:connect": "read-write:connect";
@@ -2208,7 +2678,9 @@ declare const userEventSchema: z.ZodObject<{
2208
2678
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2209
2679
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2210
2680
  "read:alerts": "read:alerts";
2681
+ "read:automations": "read:automations";
2211
2682
  "read:billing": "read:billing";
2683
+ "read:connect": "read:connect";
2212
2684
  "read:deployment": "read:deployment";
2213
2685
  "read:domain": "read:domain";
2214
2686
  "read:event": "read:event";
@@ -2227,6 +2699,7 @@ declare const userEventSchema: z.ZodObject<{
2227
2699
  "read:team": "read:team";
2228
2700
  "read:vcr": "read:vcr";
2229
2701
  "read:web-analytics": "read:web-analytics";
2702
+ "read:webhooks": "read:webhooks";
2230
2703
  "use:ai-gateway": "use:ai-gateway";
2231
2704
  }>>>;
2232
2705
  }, z.core.$strip>>;
@@ -2253,6 +2726,7 @@ declare const userEventSchema: z.ZodObject<{
2253
2726
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2254
2727
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2255
2728
  "read-write:alerts": "read-write:alerts";
2729
+ "read-write:automations": "read-write:automations";
2256
2730
  "read-write:billing": "read-write:billing";
2257
2731
  "read-write:blob": "read-write:blob";
2258
2732
  "read-write:connect": "read-write:connect";
@@ -2283,7 +2757,9 @@ declare const userEventSchema: z.ZodObject<{
2283
2757
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2284
2758
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2285
2759
  "read:alerts": "read:alerts";
2760
+ "read:automations": "read:automations";
2286
2761
  "read:billing": "read:billing";
2762
+ "read:connect": "read:connect";
2287
2763
  "read:deployment": "read:deployment";
2288
2764
  "read:domain": "read:domain";
2289
2765
  "read:event": "read:event";
@@ -2302,6 +2778,7 @@ declare const userEventSchema: z.ZodObject<{
2302
2778
  "read:team": "read:team";
2303
2779
  "read:vcr": "read:vcr";
2304
2780
  "read:web-analytics": "read:web-analytics";
2781
+ "read:webhooks": "read:webhooks";
2305
2782
  "use:ai-gateway": "use:ai-gateway";
2306
2783
  }>>>;
2307
2784
  }, z.core.$strip>>;
@@ -2330,6 +2807,7 @@ declare const userEventSchema: z.ZodObject<{
2330
2807
  "read-write:ai-gateway-rules": "read-write:ai-gateway-rules";
2331
2808
  "read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs";
2332
2809
  "read-write:alerts": "read-write:alerts";
2810
+ "read-write:automations": "read-write:automations";
2333
2811
  "read-write:billing": "read-write:billing";
2334
2812
  "read-write:blob": "read-write:blob";
2335
2813
  "read-write:connect": "read-write:connect";
@@ -2360,7 +2838,9 @@ declare const userEventSchema: z.ZodObject<{
2360
2838
  "read:ai-gateway-rules": "read:ai-gateway-rules";
2361
2839
  "read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs";
2362
2840
  "read:alerts": "read:alerts";
2841
+ "read:automations": "read:automations";
2363
2842
  "read:billing": "read:billing";
2843
+ "read:connect": "read:connect";
2364
2844
  "read:deployment": "read:deployment";
2365
2845
  "read:domain": "read:domain";
2366
2846
  "read:event": "read:event";
@@ -2379,6 +2859,7 @@ declare const userEventSchema: z.ZodObject<{
2379
2859
  "read:team": "read:team";
2380
2860
  "read:vcr": "read:vcr";
2381
2861
  "read:web-analytics": "read:web-analytics";
2862
+ "read:webhooks": "read:webhooks";
2382
2863
  "use:ai-gateway": "use:ai-gateway";
2383
2864
  }>>>;
2384
2865
  }, z.core.$strict>, z.ZodObject<{
@@ -2424,6 +2905,15 @@ declare const userEventSchema: z.ZodObject<{
2424
2905
  paymentMethodId: z.ZodString;
2425
2906
  brand: z.ZodOptional<z.ZodString>;
2426
2907
  last4: z.ZodOptional<z.ZodString>;
2908
+ }, z.core.$strict>, z.ZodObject<{
2909
+ changedFields: z.ZodArray<z.ZodEnum<{
2910
+ name: "name";
2911
+ email: "email";
2912
+ address: "address";
2913
+ language: "language";
2914
+ purchaseOrder: "purchaseOrder";
2915
+ tax: "tax";
2916
+ }>>;
2427
2917
  }, z.core.$strict>, z.ZodObject<{
2428
2918
  subscriptionId: z.ZodOptional<z.ZodString>;
2429
2919
  planSlug: z.ZodString;
@@ -2615,6 +3105,7 @@ declare const userEventSchema: z.ZodObject<{
2615
3105
  clientUid: z.ZodOptional<z.ZodString>;
2616
3106
  clientName: z.ZodOptional<z.ZodString>;
2617
3107
  projectId: z.ZodOptional<z.ZodString>;
3108
+ projectName: z.ZodOptional<z.ZodString>;
2618
3109
  installationId: z.ZodOptional<z.ZodString>;
2619
3110
  subjectType: z.ZodOptional<z.ZodEnum<{
2620
3111
  user: "user";
@@ -2697,7 +3188,7 @@ declare const userEventSchema: z.ZodObject<{
2697
3188
  regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
2698
3189
  type: z.ZodOptional<z.ZodString>;
2699
3190
  }, z.core.$strict>, z.ZodObject<{
2700
- job: z.ZodUnion<readonly [z.ZodObject<{
3191
+ job: z.ZodDiscriminatedUnion<[z.ZodObject<{
2701
3192
  type: z.ZodEnum<{
2702
3193
  "bitbucket-push": "bitbucket-push";
2703
3194
  }>;
@@ -3241,7 +3732,7 @@ declare const userEventSchema: z.ZodObject<{
3241
3732
  provider: z.ZodEnum<{
3242
3733
  "cursor-origin": "cursor-origin";
3243
3734
  }>;
3244
- }, z.core.$strict>]>;
3735
+ }, z.core.$strict>], "type">;
3245
3736
  }, z.core.$strict>, z.ZodObject<{
3246
3737
  url: z.ZodString;
3247
3738
  oldTeam: z.ZodOptional<z.ZodObject<{
@@ -3568,6 +4059,17 @@ declare const userEventSchema: z.ZodObject<{
3568
4059
  lastEditedByDisplayName: z.ZodOptional<z.ZodString>;
3569
4060
  projectNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
3570
4061
  ipAddress: z.ZodOptional<z.ZodString>;
4062
+ }, z.core.$strict>, z.ZodObject<{
4063
+ envId: z.ZodString;
4064
+ envKey: z.ZodString;
4065
+ provider: z.ZodString;
4066
+ organizationId: z.ZodString;
4067
+ repository: z.ZodString;
4068
+ target: z.ZodArray<z.ZodEnum<{
4069
+ production: "production";
4070
+ preview: "preview";
4071
+ development: "development";
4072
+ }>>;
3571
4073
  }, z.core.$strict>, z.ZodObject<{
3572
4074
  oldEnvVar: z.ZodOptional<z.ZodObject<{
3573
4075
  created: z.ZodOptional<z.ZodISODateTime>;
@@ -3705,6 +4207,7 @@ declare const userEventSchema: z.ZodObject<{
3705
4207
  }>>;
3706
4208
  }, z.core.$strict>, z.ZodObject<{
3707
4209
  projectId: z.ZodString;
4210
+ projectName: z.ZodOptional<z.ZodString>;
3708
4211
  previousOwnerId: z.ZodString;
3709
4212
  newOwnerId: z.ZodString;
3710
4213
  }, z.core.$strict>, z.ZodObject<{
@@ -3712,6 +4215,12 @@ declare const userEventSchema: z.ZodObject<{
3712
4215
  disable: "disable";
3713
4216
  enable: "enable";
3714
4217
  }>;
4218
+ }, z.core.$strict>, z.ZodObject<{
4219
+ source: z.ZodEnum<{
4220
+ enable: "enable";
4221
+ create: "create";
4222
+ upgrade: "upgrade";
4223
+ }>;
3715
4224
  }, z.core.$strict>, z.ZodObject<{
3716
4225
  provider: z.ZodEnum<{
3717
4226
  github: "github";
@@ -3889,10 +4398,14 @@ declare const userEventSchema: z.ZodObject<{
3889
4398
  "observability-edge-requests": "observability-edge-requests";
3890
4399
  "observability-error-rate": "observability-error-rate";
3891
4400
  "observability-function-invocations": "observability-function-invocations";
4401
+ shortcut: "shortcut";
3892
4402
  "speed-insights-cls": "speed-insights-cls";
3893
4403
  "speed-insights-lcp": "speed-insights-lcp";
3894
4404
  "speed-insights-res": "speed-insights-res";
3895
4405
  }>;
4406
+ config: z.ZodOptional<z.ZodObject<{
4407
+ url: z.ZodString;
4408
+ }, z.core.$strip>>;
3896
4409
  }, z.core.$strip>>>;
3897
4410
  remoteCaching: z.ZodOptional<z.ZodObject<{
3898
4411
  enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
@@ -3941,10 +4454,10 @@ declare const userEventSchema: z.ZodObject<{
3941
4454
  flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
3942
4455
  customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
3943
4456
  security: z.ZodOptional<z.ZodObject<{
4457
+ rateLimit: z.ZodOptional<z.ZodNumber>;
3944
4458
  customRules: z.ZodOptional<z.ZodNumber>;
3945
4459
  ipBlocks: z.ZodOptional<z.ZodNumber>;
3946
4460
  ipBypass: z.ZodOptional<z.ZodNumber>;
3947
- rateLimit: z.ZodOptional<z.ZodNumber>;
3948
4461
  }, z.core.$strip>>;
3949
4462
  bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
3950
4463
  buildMachine: z.ZodOptional<z.ZodObject<{
@@ -4013,7 +4526,6 @@ declare const userEventSchema: z.ZodObject<{
4013
4526
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
4014
4527
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
4015
4528
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
4016
- HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
4017
4529
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
4018
4530
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
4019
4531
  UNPAID_INVOICE: "UNPAID_INVOICE";
@@ -4059,55 +4571,7 @@ declare const userEventSchema: z.ZodObject<{
4059
4571
  wafRateLimitRequest: "wafRateLimitRequest";
4060
4572
  webAnalyticsEvent: "webAnalyticsEvent";
4061
4573
  }>>;
4062
- hobbyAllocationPause: z.ZodOptional<z.ZodObject<{
4063
- pausedUntil: z.ZodNumber;
4064
- pausedAt: z.ZodNumber;
4065
- triggers: z.ZodArray<z.ZodObject<{
4066
- allocation: z.ZodEnum<{
4067
- artifacts: "artifacts";
4068
- analyticsUsage: "analyticsUsage";
4069
- bandwidth: "bandwidth";
4070
- blobDataTransfer: "blobDataTransfer";
4071
- blobTotalAdvancedRequests: "blobTotalAdvancedRequests";
4072
- blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes";
4073
- blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes";
4074
- blobTotalSimpleRequests: "blobTotalSimpleRequests";
4075
- connectDataTransfer: "connectDataTransfer";
4076
- dataCacheRead: "dataCacheRead";
4077
- dataCacheWrite: "dataCacheWrite";
4078
- edgeConfigRead: "edgeConfigRead";
4079
- edgeConfigWrite: "edgeConfigWrite";
4080
- edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits";
4081
- edgeMiddlewareInvocations: "edgeMiddlewareInvocations";
4082
- edgeRequest: "edgeRequest";
4083
- edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration";
4084
- elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots";
4085
- fastDataTransfer: "fastDataTransfer";
4086
- fastOriginTransfer: "fastOriginTransfer";
4087
- fluidCpuDuration: "fluidCpuDuration";
4088
- fluidDuration: "fluidDuration";
4089
- functionDuration: "functionDuration";
4090
- functionInvocation: "functionInvocation";
4091
- imageOptimizationCacheRead: "imageOptimizationCacheRead";
4092
- imageOptimizationCacheWrite: "imageOptimizationCacheWrite";
4093
- imageOptimizationTransformation: "imageOptimizationTransformation";
4094
- logDrainsVolume: "logDrainsVolume";
4095
- monitoringMetric: "monitoringMetric";
4096
- observabilityEvent: "observabilityEvent";
4097
- onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes";
4098
- runtimeCacheRead: "runtimeCacheRead";
4099
- runtimeCacheWrite: "runtimeCacheWrite";
4100
- serverlessFunctionExecution: "serverlessFunctionExecution";
4101
- sourceImages: "sourceImages";
4102
- wafOwaspExcessBytes: "wafOwaspExcessBytes";
4103
- wafOwaspRequests: "wafOwaspRequests";
4104
- wafRateLimitRequest: "wafRateLimitRequest";
4105
- webAnalyticsEvent: "webAnalyticsEvent";
4106
- }>;
4107
- usage: z.ZodNumber;
4108
- }, z.core.$strip>>;
4109
- cohort: z.ZodString;
4110
- }, z.core.$strip>>;
4574
+ unpauseAt: z.ZodOptional<z.ZodNumber>;
4111
4575
  }, z.core.$strip>>>;
4112
4576
  stagingPrefix: z.ZodString;
4113
4577
  sysToken: z.ZodString;
@@ -4208,196 +4672,235 @@ declare const userEventSchema: z.ZodObject<{
4208
4672
  currentThreshold: z.ZodNumber;
4209
4673
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4210
4674
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4675
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4211
4676
  }, z.core.$strip>>;
4212
4677
  artifacts: z.ZodOptional<z.ZodObject<{
4213
4678
  currentThreshold: z.ZodNumber;
4214
4679
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4215
4680
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4681
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4216
4682
  }, z.core.$strip>>;
4217
4683
  bandwidth: z.ZodOptional<z.ZodObject<{
4218
4684
  currentThreshold: z.ZodNumber;
4219
4685
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4220
4686
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4687
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4221
4688
  }, z.core.$strip>>;
4222
4689
  blobTotalAdvancedRequests: z.ZodOptional<z.ZodObject<{
4223
4690
  currentThreshold: z.ZodNumber;
4224
4691
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4225
4692
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4693
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4226
4694
  }, z.core.$strip>>;
4227
4695
  blobTotalAvgSizeInBytes: z.ZodOptional<z.ZodObject<{
4228
4696
  currentThreshold: z.ZodNumber;
4229
4697
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4230
4698
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4699
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4231
4700
  }, z.core.$strip>>;
4232
4701
  blobTotalGetResponseObjectSizeInBytes: z.ZodOptional<z.ZodObject<{
4233
4702
  currentThreshold: z.ZodNumber;
4234
4703
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4235
4704
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4705
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4236
4706
  }, z.core.$strip>>;
4237
4707
  blobTotalSimpleRequests: z.ZodOptional<z.ZodObject<{
4238
4708
  currentThreshold: z.ZodNumber;
4239
4709
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4240
4710
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4711
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4241
4712
  }, z.core.$strip>>;
4242
4713
  connectDataTransfer: z.ZodOptional<z.ZodObject<{
4243
4714
  currentThreshold: z.ZodNumber;
4244
4715
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4245
4716
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4717
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4246
4718
  }, z.core.$strip>>;
4247
4719
  dataCacheRead: z.ZodOptional<z.ZodObject<{
4248
4720
  currentThreshold: z.ZodNumber;
4249
4721
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4250
4722
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4723
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4251
4724
  }, z.core.$strip>>;
4252
4725
  dataCacheWrite: z.ZodOptional<z.ZodObject<{
4253
4726
  currentThreshold: z.ZodNumber;
4254
4727
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4255
4728
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4729
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4256
4730
  }, z.core.$strip>>;
4257
4731
  edgeConfigRead: z.ZodOptional<z.ZodObject<{
4258
4732
  currentThreshold: z.ZodNumber;
4259
4733
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4260
4734
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4735
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4261
4736
  }, z.core.$strip>>;
4262
4737
  edgeConfigWrite: z.ZodOptional<z.ZodObject<{
4263
4738
  currentThreshold: z.ZodNumber;
4264
4739
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4265
4740
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4741
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4266
4742
  }, z.core.$strip>>;
4267
4743
  edgeFunctionExecutionUnits: z.ZodOptional<z.ZodObject<{
4268
4744
  currentThreshold: z.ZodNumber;
4269
4745
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4270
4746
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4747
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4271
4748
  }, z.core.$strip>>;
4272
4749
  edgeMiddlewareInvocations: z.ZodOptional<z.ZodObject<{
4273
4750
  currentThreshold: z.ZodNumber;
4274
4751
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4275
4752
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4753
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4276
4754
  }, z.core.$strip>>;
4277
4755
  edgeRequestAdditionalCpuDuration: z.ZodOptional<z.ZodObject<{
4278
4756
  currentThreshold: z.ZodNumber;
4279
4757
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4280
4758
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4759
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4281
4760
  }, z.core.$strip>>;
4282
4761
  edgeRequest: z.ZodOptional<z.ZodObject<{
4283
4762
  currentThreshold: z.ZodNumber;
4284
4763
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4285
4764
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4765
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4286
4766
  }, z.core.$strip>>;
4287
4767
  elasticConcurrencyBuildSlots: z.ZodOptional<z.ZodObject<{
4288
4768
  currentThreshold: z.ZodNumber;
4289
4769
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4290
4770
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4771
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4291
4772
  }, z.core.$strip>>;
4292
4773
  fastDataTransfer: z.ZodOptional<z.ZodObject<{
4293
4774
  currentThreshold: z.ZodNumber;
4294
4775
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4295
4776
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4777
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4296
4778
  }, z.core.$strip>>;
4297
4779
  fastOriginTransfer: z.ZodOptional<z.ZodObject<{
4298
4780
  currentThreshold: z.ZodNumber;
4299
4781
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4300
4782
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4783
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4301
4784
  }, z.core.$strip>>;
4302
4785
  fluidCpuDuration: z.ZodOptional<z.ZodObject<{
4303
4786
  currentThreshold: z.ZodNumber;
4304
4787
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4305
4788
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4789
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4306
4790
  }, z.core.$strip>>;
4307
4791
  fluidDuration: z.ZodOptional<z.ZodObject<{
4308
4792
  currentThreshold: z.ZodNumber;
4309
4793
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4310
4794
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4795
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4311
4796
  }, z.core.$strip>>;
4312
4797
  functionDuration: z.ZodOptional<z.ZodObject<{
4313
4798
  currentThreshold: z.ZodNumber;
4314
4799
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4315
4800
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4801
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4316
4802
  }, z.core.$strip>>;
4317
4803
  functionInvocation: z.ZodOptional<z.ZodObject<{
4318
4804
  currentThreshold: z.ZodNumber;
4319
4805
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4320
4806
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4807
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4321
4808
  }, z.core.$strip>>;
4322
4809
  imageOptimizationCacheRead: z.ZodOptional<z.ZodObject<{
4323
4810
  currentThreshold: z.ZodNumber;
4324
4811
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4325
4812
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4813
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4326
4814
  }, z.core.$strip>>;
4327
4815
  imageOptimizationCacheWrite: z.ZodOptional<z.ZodObject<{
4328
4816
  currentThreshold: z.ZodNumber;
4329
4817
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4330
4818
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4819
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4331
4820
  }, z.core.$strip>>;
4332
4821
  imageOptimizationTransformation: z.ZodOptional<z.ZodObject<{
4333
4822
  currentThreshold: z.ZodNumber;
4334
4823
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4335
4824
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4825
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4336
4826
  }, z.core.$strip>>;
4337
4827
  logDrainsVolume: z.ZodOptional<z.ZodObject<{
4338
4828
  currentThreshold: z.ZodNumber;
4339
4829
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4340
4830
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4831
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4341
4832
  }, z.core.$strip>>;
4342
4833
  monitoringMetric: z.ZodOptional<z.ZodObject<{
4343
4834
  currentThreshold: z.ZodNumber;
4344
4835
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4345
4836
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4837
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4346
4838
  }, z.core.$strip>>;
4347
4839
  blobDataTransfer: z.ZodOptional<z.ZodObject<{
4348
4840
  currentThreshold: z.ZodNumber;
4349
4841
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4350
4842
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4843
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4351
4844
  }, z.core.$strip>>;
4352
4845
  observabilityEvent: z.ZodOptional<z.ZodObject<{
4353
4846
  currentThreshold: z.ZodNumber;
4354
4847
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4355
4848
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4849
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4356
4850
  }, z.core.$strip>>;
4357
4851
  onDemandConcurrencyMinutes: z.ZodOptional<z.ZodObject<{
4358
4852
  currentThreshold: z.ZodNumber;
4359
4853
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4360
4854
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4855
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4361
4856
  }, z.core.$strip>>;
4362
4857
  runtimeCacheRead: z.ZodOptional<z.ZodObject<{
4363
4858
  currentThreshold: z.ZodNumber;
4364
4859
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4365
4860
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4861
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4366
4862
  }, z.core.$strip>>;
4367
4863
  runtimeCacheWrite: z.ZodOptional<z.ZodObject<{
4368
4864
  currentThreshold: z.ZodNumber;
4369
4865
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4370
4866
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4867
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4371
4868
  }, z.core.$strip>>;
4372
4869
  serverlessFunctionExecution: z.ZodOptional<z.ZodObject<{
4373
4870
  currentThreshold: z.ZodNumber;
4374
4871
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4375
4872
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4873
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4376
4874
  }, z.core.$strip>>;
4377
4875
  sourceImages: z.ZodOptional<z.ZodObject<{
4378
4876
  currentThreshold: z.ZodNumber;
4379
4877
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4380
4878
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4879
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4381
4880
  }, z.core.$strip>>;
4382
4881
  wafOwaspExcessBytes: z.ZodOptional<z.ZodObject<{
4383
4882
  currentThreshold: z.ZodNumber;
4384
4883
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4385
4884
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4885
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4386
4886
  }, z.core.$strip>>;
4387
4887
  wafOwaspRequests: z.ZodOptional<z.ZodObject<{
4388
4888
  currentThreshold: z.ZodNumber;
4389
4889
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4390
4890
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4891
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4391
4892
  }, z.core.$strip>>;
4392
4893
  wafRateLimitRequest: z.ZodOptional<z.ZodObject<{
4393
4894
  currentThreshold: z.ZodNumber;
4394
4895
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4395
4896
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4897
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4396
4898
  }, z.core.$strip>>;
4397
4899
  webAnalyticsEvent: z.ZodOptional<z.ZodObject<{
4398
4900
  currentThreshold: z.ZodNumber;
4399
4901
  warningAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4400
4902
  blockedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4903
+ blockGracePeriodStartedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4401
4904
  }, z.core.$strip>>;
4402
4905
  }, z.core.$strip>>;
4403
4906
  overageMetadata: z.ZodOptional<z.ZodObject<{
@@ -4407,11 +4910,6 @@ declare const userEventSchema: z.ZodObject<{
4407
4910
  overageSummaryExpiresAt: z.ZodOptional<z.ZodNumber>;
4408
4911
  increasedOnDemandEmailSentAt: z.ZodOptional<z.ZodNumber>;
4409
4912
  increasedOnDemandEmailAttemptedAt: z.ZodOptional<z.ZodNumber>;
4410
- hobbyPolicyNoticeSlackSentAt: z.ZodOptional<z.ZodNumber>;
4411
- hobbyWarningV2SlackSentAt: z.ZodOptional<z.ZodNumber>;
4412
- hobbyWarningV2At100SlackSentAt: z.ZodOptional<z.ZodNumber>;
4413
- hobbyPauseNoticeSlackSentAt: z.ZodOptional<z.ZodNumber>;
4414
- hobbyPolicySlackThreadTs: z.ZodOptional<z.ZodString>;
4415
4913
  }, z.core.$strip>>;
4416
4914
  speedInsightsFreeUsageAlert: z.ZodOptional<z.ZodObject<{
4417
4915
  currentThreshold: z.ZodNumber;
@@ -4738,6 +5236,16 @@ declare const userEventSchema: z.ZodObject<{
4738
5236
  limits_exceeded: "limits_exceeded";
4739
5237
  }>;
4740
5238
  }, z.core.$strip>>;
5239
+ sandboxStorage: z.ZodOptional<z.ZodObject<{
5240
+ updatedAt: z.ZodNumber;
5241
+ blockedFrom: z.ZodOptional<z.ZodNumber>;
5242
+ blockedUntil: z.ZodOptional<z.ZodNumber>;
5243
+ blockReason: z.ZodEnum<{
5244
+ admin_override: "admin_override";
5245
+ hard_blocked: "hard_blocked";
5246
+ limits_exceeded: "limits_exceeded";
5247
+ }>;
5248
+ }, z.core.$strip>>;
4741
5249
  vcr: z.ZodOptional<z.ZodObject<{
4742
5250
  updatedAt: z.ZodNumber;
4743
5251
  blockedFrom: z.ZodOptional<z.ZodNumber>;
@@ -4890,20 +5398,23 @@ declare const userEventSchema: z.ZodObject<{
4890
5398
  integrationSlug: z.ZodString;
4891
5399
  integrationProductSlug: z.ZodString;
4892
5400
  configurationId: z.ZodString;
4893
- error: z.ZodOptional<z.ZodString>;
5401
+ errorCode: z.ZodOptional<z.ZodString>;
4894
5402
  requestKind: z.ZodEnum<{
4895
5403
  raw_commands: "raw_commands";
4896
5404
  }>;
4897
5405
  readonly: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
4898
- commands: z.ZodArray<z.ZodString>;
4899
- failedIndex: z.ZodOptional<z.ZodNumber>;
5406
+ commands: z.ZodArray<z.ZodObject<{
5407
+ command: z.ZodString;
5408
+ errorCode: z.ZodOptional<z.ZodString>;
5409
+ }, z.core.$strip>>;
5410
+ errorIndex: z.ZodOptional<z.ZodNumber>;
4900
5411
  }, z.core.$strict>, z.ZodObject<{
4901
5412
  resourceId: z.ZodString;
4902
5413
  integrationId: z.ZodString;
4903
5414
  integrationSlug: z.ZodString;
4904
5415
  integrationProductSlug: z.ZodString;
4905
5416
  configurationId: z.ZodString;
4906
- error: z.ZodOptional<z.ZodString>;
5417
+ errorCode: z.ZodOptional<z.ZodString>;
4907
5418
  requestKind: z.ZodEnum<{
4908
5419
  list_keys: "list_keys";
4909
5420
  }>;
@@ -4915,7 +5426,7 @@ declare const userEventSchema: z.ZodObject<{
4915
5426
  integrationSlug: z.ZodString;
4916
5427
  integrationProductSlug: z.ZodString;
4917
5428
  configurationId: z.ZodString;
4918
- error: z.ZodOptional<z.ZodString>;
5429
+ errorCode: z.ZodOptional<z.ZodString>;
4919
5430
  requestKind: z.ZodEnum<{
4920
5431
  get_keys_metadata: "get_keys_metadata";
4921
5432
  }>;
@@ -4926,7 +5437,7 @@ declare const userEventSchema: z.ZodObject<{
4926
5437
  integrationSlug: z.ZodString;
4927
5438
  integrationProductSlug: z.ZodString;
4928
5439
  configurationId: z.ZodString;
4929
- error: z.ZodOptional<z.ZodString>;
5440
+ errorCode: z.ZodOptional<z.ZodString>;
4930
5441
  requestKind: z.ZodEnum<{
4931
5442
  get_key_data: "get_key_data";
4932
5443
  }>;
@@ -5225,6 +5736,18 @@ declare const userEventSchema: z.ZodObject<{
5225
5736
  enterprise: "enterprise";
5226
5737
  platform: "platform";
5227
5738
  }>;
5739
+ }, z.core.$strict>, z.ZodObject<{
5740
+ organizationId: z.ZodString;
5741
+ teamId: z.ZodString;
5742
+ teamName: z.ZodString;
5743
+ previousMode: z.ZodEnum<{
5744
+ organization: "organization";
5745
+ team: "team";
5746
+ }>;
5747
+ mode: z.ZodEnum<{
5748
+ organization: "organization";
5749
+ team: "team";
5750
+ }>;
5228
5751
  }, z.core.$strict>, z.ZodObject<{
5229
5752
  ownerId: z.ZodString;
5230
5753
  source: z.ZodString;
@@ -5550,6 +6073,7 @@ declare const userEventSchema: z.ZodObject<{
5550
6073
  previewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5551
6074
  previousPreviewDeploymentSuffix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5552
6075
  }, z.core.$strict>, z.ZodObject<{
6076
+ projectName: z.ZodOptional<z.ZodString>;
5553
6077
  endpoint: z.ZodObject<{
5554
6078
  id: z.ZodString;
5555
6079
  name: z.ZodString;
@@ -5559,12 +6083,14 @@ declare const userEventSchema: z.ZodObject<{
5559
6083
  privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
5560
6084
  }, z.core.$strip>;
5561
6085
  }, z.core.$strict>, z.ZodObject<{
6086
+ projectName: z.ZodOptional<z.ZodString>;
5562
6087
  privateLinkEndpoint: z.ZodObject<{
5563
6088
  id: z.ZodString;
5564
6089
  name: z.ZodString;
5565
6090
  }, z.core.$strip>;
5566
6091
  projectId: z.ZodString;
5567
6092
  }, z.core.$strict>, z.ZodObject<{
6093
+ projectName: z.ZodOptional<z.ZodString>;
5568
6094
  prev: z.ZodObject<{
5569
6095
  id: z.ZodString;
5570
6096
  name: z.ZodString;
@@ -5582,6 +6108,7 @@ declare const userEventSchema: z.ZodObject<{
5582
6108
  privateDnsNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
5583
6109
  }, z.core.$strip>;
5584
6110
  }, z.core.$strict>, z.ZodObject<{
6111
+ projectName: z.ZodOptional<z.ZodString>;
5585
6112
  privateLinkEndpoint: z.ZodObject<{
5586
6113
  id: z.ZodString;
5587
6114
  name: z.ZodString;
@@ -5687,6 +6214,7 @@ declare const userEventSchema: z.ZodObject<{
5687
6214
  "observability-edge-requests": "observability-edge-requests";
5688
6215
  "observability-error-rate": "observability-error-rate";
5689
6216
  "observability-function-invocations": "observability-function-invocations";
6217
+ shortcut: "shortcut";
5690
6218
  "speed-insights-cls": "speed-insights-cls";
5691
6219
  "speed-insights-lcp": "speed-insights-lcp";
5692
6220
  "speed-insights-res": "speed-insights-res";
@@ -5862,6 +6390,7 @@ declare const userEventSchema: z.ZodObject<{
5862
6390
  gitlab: "gitlab";
5863
6391
  bitbucket: "bitbucket";
5864
6392
  "cursor-origin": "cursor-origin";
6393
+ v0: "v0";
5865
6394
  vercel: "vercel";
5866
6395
  }>;
5867
6396
  gitRepoId: z.ZodString;
@@ -5875,6 +6404,7 @@ declare const userEventSchema: z.ZodObject<{
5875
6404
  gitlab: "gitlab";
5876
6405
  bitbucket: "bitbucket";
5877
6406
  "cursor-origin": "cursor-origin";
6407
+ v0: "v0";
5878
6408
  vercel: "vercel";
5879
6409
  }>;
5880
6410
  gitRepoId: z.ZodString;
@@ -5890,6 +6420,7 @@ declare const userEventSchema: z.ZodObject<{
5890
6420
  gitlab: "gitlab";
5891
6421
  bitbucket: "bitbucket";
5892
6422
  "cursor-origin": "cursor-origin";
6423
+ v0: "v0";
5893
6424
  vercel: "vercel";
5894
6425
  }>;
5895
6426
  gitRepoId: z.ZodString;
@@ -6183,8 +6714,14 @@ declare const userEventSchema: z.ZodObject<{
6183
6714
  }, z.core.$strict>, z.ZodObject<{
6184
6715
  projectId: z.ZodString;
6185
6716
  projectName: z.ZodString;
6186
- previous: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6187
- next: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6717
+ previous: z.ZodNullable<z.ZodObject<{
6718
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6719
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6720
+ }, z.core.$strip>>;
6721
+ next: z.ZodNullable<z.ZodObject<{
6722
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6723
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6724
+ }, z.core.$strip>>;
6188
6725
  }, z.core.$strict>, z.ZodObject<{
6189
6726
  projectId: z.ZodString;
6190
6727
  projectName: z.ZodString;
@@ -6367,6 +6904,7 @@ declare const userEventSchema: z.ZodObject<{
6367
6904
  }, z.core.$strict>, z.ZodObject<{
6368
6905
  projectId: z.ZodString;
6369
6906
  projectName: z.ZodString;
6907
+ enableVercelCiSameRepository: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
6370
6908
  addedProjects: z.ZodArray<z.ZodObject<{
6371
6909
  id: z.ZodString;
6372
6910
  name: z.ZodString;
@@ -6564,6 +7102,12 @@ declare const userEventSchema: z.ZodObject<{
6564
7102
  plus: "plus";
6565
7103
  unbundled: "unbundled";
6566
7104
  }>>;
7105
+ scope: z.ZodOptional<z.ZodEnum<{
7106
+ organization: "organization";
7107
+ project: "project";
7108
+ team: "team";
7109
+ }>>;
7110
+ scopeId: z.ZodOptional<z.ZodString>;
6567
7111
  teamId: z.ZodString;
6568
7112
  id: z.ZodString;
6569
7113
  }, z.core.$strip>;
@@ -6589,6 +7133,12 @@ declare const userEventSchema: z.ZodObject<{
6589
7133
  plus: "plus";
6590
7134
  unbundled: "unbundled";
6591
7135
  }>>;
7136
+ scope: z.ZodOptional<z.ZodEnum<{
7137
+ organization: "organization";
7138
+ project: "project";
7139
+ team: "team";
7140
+ }>>;
7141
+ scopeId: z.ZodOptional<z.ZodString>;
6592
7142
  teamId: z.ZodString;
6593
7143
  id: z.ZodString;
6594
7144
  }, z.core.$strip>;
@@ -6613,6 +7163,12 @@ declare const userEventSchema: z.ZodObject<{
6613
7163
  plus: "plus";
6614
7164
  unbundled: "unbundled";
6615
7165
  }>>;
7166
+ scope: z.ZodOptional<z.ZodEnum<{
7167
+ organization: "organization";
7168
+ project: "project";
7169
+ team: "team";
7170
+ }>>;
7171
+ scopeId: z.ZodOptional<z.ZodString>;
6616
7172
  teamId: z.ZodString;
6617
7173
  id: z.ZodString;
6618
7174
  }, z.core.$strip>;
@@ -6638,6 +7194,12 @@ declare const userEventSchema: z.ZodObject<{
6638
7194
  plus: "plus";
6639
7195
  unbundled: "unbundled";
6640
7196
  }>>;
7197
+ scope: z.ZodOptional<z.ZodEnum<{
7198
+ organization: "organization";
7199
+ project: "project";
7200
+ team: "team";
7201
+ }>>;
7202
+ scopeId: z.ZodOptional<z.ZodString>;
6641
7203
  teamId: z.ZodString;
6642
7204
  id: z.ZodString;
6643
7205
  }, z.core.$strip>;
@@ -6661,6 +7223,12 @@ declare const userEventSchema: z.ZodObject<{
6661
7223
  plus: "plus";
6662
7224
  unbundled: "unbundled";
6663
7225
  }>>;
7226
+ scope: z.ZodOptional<z.ZodEnum<{
7227
+ organization: "organization";
7228
+ project: "project";
7229
+ team: "team";
7230
+ }>>;
7231
+ scopeId: z.ZodOptional<z.ZodString>;
6664
7232
  teamId: z.ZodString;
6665
7233
  id: z.ZodString;
6666
7234
  }, z.core.$strip>>;
@@ -6855,6 +7423,7 @@ declare const userEventSchema: z.ZodObject<{
6855
7423
  "long-build-duration": "long-build-duration";
6856
7424
  "oom-failure": "oom-failure";
6857
7425
  "plan-change": "plan-change";
7426
+ "project-transfer": "project-transfer";
6858
7427
  "short-build-duration": "short-build-duration";
6859
7428
  "sustained-high-cpu": "sustained-high-cpu";
6860
7429
  }>>;
@@ -6884,8 +7453,14 @@ declare const userEventSchema: z.ZodObject<{
6884
7453
  removedMemberCount: z.ZodOptional<z.ZodNumber>;
6885
7454
  timestamp: z.ZodOptional<z.ZodNumber>;
6886
7455
  }, z.core.$strict>, z.ZodObject<{
6887
- previous: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
6888
- next: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
7456
+ previous: z.ZodNullable<z.ZodObject<{
7457
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7458
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7459
+ }, z.core.$strip>>;
7460
+ next: z.ZodNullable<z.ZodObject<{
7461
+ gitSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7462
+ deploymentSources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7463
+ }, z.core.$strip>>;
6889
7464
  }, z.core.$strict>, z.ZodObject<{
6890
7465
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6891
7466
  domain: z.ZodOptional<z.ZodString>;
@@ -7544,6 +8119,7 @@ declare const userEventSchema: z.ZodObject<{
7544
8119
  }, z.core.$strict>, z.ZodObject<{
7545
8120
  deploymentId: z.ZodString;
7546
8121
  projectId: z.ZodString;
8122
+ projectName: z.ZodOptional<z.ZodString>;
7547
8123
  runId: z.ZodString;
7548
8124
  }, z.core.$strict>, z.ZodObject<{
7549
8125
  grantType: z.ZodEnum<{
@@ -7722,6 +8298,7 @@ declare const userEventSchema: z.ZodObject<{
7722
8298
  teamId: z.ZodOptional<z.ZodString>;
7723
8299
  teamSlug: z.ZodOptional<z.ZodString>;
7724
8300
  projectId: z.ZodOptional<z.ZodString>;
8301
+ projectName: z.ZodOptional<z.ZodString>;
7725
8302
  projectScope: z.ZodOptional<z.ZodEnum<{
7726
8303
  account: "account";
7727
8304
  "project-only": "project-only";
@@ -7866,8 +8443,10 @@ declare const listEventTypeSchema: z.ZodObject<{
7866
8443
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
7867
8444
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
7868
8445
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
8446
+ "ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
7869
8447
  "ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
7870
8448
  "ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
8449
+ "ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
7871
8450
  "ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
7872
8451
  "ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
7873
8452
  "ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
@@ -7877,6 +8456,7 @@ declare const listEventTypeSchema: z.ZodObject<{
7877
8456
  "ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
7878
8457
  "ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
7879
8458
  "ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
8459
+ "ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
7880
8460
  "ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
7881
8461
  "ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
7882
8462
  "ai-gateway-rule-created": "ai-gateway-rule-created";
@@ -7890,8 +8470,10 @@ declare const listEventTypeSchema: z.ZodObject<{
7890
8470
  "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
7891
8471
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
7892
8472
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
8473
+ "ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
7893
8474
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
7894
8475
  "ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
8476
+ "ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
7895
8477
  "ai-omniagent": "ai-omniagent";
7896
8478
  "alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
7897
8479
  "alert-rule-created": "alert-rule-created";
@@ -7920,6 +8502,7 @@ declare const listEventTypeSchema: z.ZodObject<{
7920
8502
  "authorize-git-deployment": "authorize-git-deployment";
7921
8503
  "auto-expose-system-envs": "auto-expose-system-envs";
7922
8504
  avatar: "avatar";
8505
+ "billing-settings-updated": "billing-settings-updated";
7923
8506
  "bulk-redirects-settings-updated": "bulk-redirects-settings-updated";
7924
8507
  "bulk-redirects-version-promoted": "bulk-redirects-version-promoted";
7925
8508
  "bulk-redirects-version-restored": "bulk-redirects-version-restored";
@@ -8075,6 +8658,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8075
8658
  "flags-sdk-key-deleted": "flags-sdk-key-deleted";
8076
8659
  "flags-sdk-key-read": "flags-sdk-key-read";
8077
8660
  "flags-transferred": "flags-transferred";
8661
+ "flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
8078
8662
  "git-integration-repo-push": "git-integration-repo-push";
8079
8663
  git_account_integration_link_added: "git_account_integration_link_added";
8080
8664
  "global-config-backup-restored": "global-config-backup-restored";
@@ -8159,6 +8743,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8159
8743
  "organization-team-add": "organization-team-add";
8160
8744
  "organization-team-create": "organization-team-create";
8161
8745
  "organization-team-delete": "organization-team-delete";
8746
+ "organization-team-sso-update": "organization-team-sso-update";
8162
8747
  "owner-blocked": "owner-blocked";
8163
8748
  "owner-soft-blocked": "owner-soft-blocked";
8164
8749
  "owner-soft-unblocked": "owner-soft-unblocked";
@@ -8238,6 +8823,12 @@ declare const listEventTypeSchema: z.ZodObject<{
8238
8823
  "project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
8239
8824
  "project-git-commit-status-toggled": "project-git-commit-status-toggled";
8240
8825
  "project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
8826
+ "project-git-credential-bound-created": "project-git-credential-bound-created";
8827
+ "project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
8828
+ "project-git-credential-bound-updated": "project-git-credential-bound-updated";
8829
+ "project-git-credential-grant-created": "project-git-credential-grant-created";
8830
+ "project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
8831
+ "project-git-credential-grant-updated": "project-git-credential-grant-updated";
8241
8832
  "project-git-fork-protection-updated": "project-git-fork-protection-updated";
8242
8833
  "project-git-lfs-toggled": "project-git-lfs-toggled";
8243
8834
  "project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
@@ -8330,6 +8921,8 @@ declare const listEventTypeSchema: z.ZodObject<{
8330
8921
  "shared-env-variable-create": "shared-env-variable-create";
8331
8922
  "shared-env-variable-delete": "shared-env-variable-delete";
8332
8923
  "shared-env-variable-read": "shared-env-variable-read";
8924
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
8925
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
8333
8926
  "shared-env-variable-update": "shared-env-variable-update";
8334
8927
  "show-ip-addresses": "show-ip-addresses";
8335
8928
  signup: "signup";
@@ -8360,6 +8953,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8360
8953
  "storage-update-project-connection": "storage-update-project-connection";
8361
8954
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
8362
8955
  "storage-view-secret": "storage-view-secret";
8956
+ "strict-connectors": "strict-connectors";
8363
8957
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
8364
8958
  "strict-password-protection-settings": "strict-password-protection-settings";
8365
8959
  "strict-shareable-links": "strict-shareable-links";
@@ -8553,8 +9147,10 @@ declare const listEventTypeSchema: z.ZodObject<{
8553
9147
  "ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
8554
9148
  "ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
8555
9149
  "ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
9150
+ "ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated";
8556
9151
  "ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
8557
9152
  "ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
9153
+ "ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled";
8558
9154
  "ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated";
8559
9155
  "ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
8560
9156
  "ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
@@ -8564,6 +9160,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8564
9160
  "ai-gateway-private-provider-created": "ai-gateway-private-provider-created";
8565
9161
  "ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted";
8566
9162
  "ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated";
9163
+ "ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled";
8567
9164
  "ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated";
8568
9165
  "ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled";
8569
9166
  "ai-gateway-rule-created": "ai-gateway-rule-created";
@@ -8577,8 +9174,10 @@ declare const listEventTypeSchema: z.ZodObject<{
8577
9174
  "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated";
8578
9175
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived";
8579
9176
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created";
9177
+ "ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted";
8580
9178
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored";
8581
9179
  "ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated";
9180
+ "ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled";
8582
9181
  "ai-omniagent": "ai-omniagent";
8583
9182
  "alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated";
8584
9183
  "alert-rule-created": "alert-rule-created";
@@ -8607,6 +9206,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8607
9206
  "authorize-git-deployment": "authorize-git-deployment";
8608
9207
  "auto-expose-system-envs": "auto-expose-system-envs";
8609
9208
  avatar: "avatar";
9209
+ "billing-settings-updated": "billing-settings-updated";
8610
9210
  "bulk-redirects-settings-updated": "bulk-redirects-settings-updated";
8611
9211
  "bulk-redirects-version-promoted": "bulk-redirects-version-promoted";
8612
9212
  "bulk-redirects-version-restored": "bulk-redirects-version-restored";
@@ -8762,6 +9362,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8762
9362
  "flags-sdk-key-deleted": "flags-sdk-key-deleted";
8763
9363
  "flags-sdk-key-read": "flags-sdk-key-read";
8764
9364
  "flags-transferred": "flags-transferred";
9365
+ "flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent";
8765
9366
  "git-integration-repo-push": "git-integration-repo-push";
8766
9367
  git_account_integration_link_added: "git_account_integration_link_added";
8767
9368
  "global-config-backup-restored": "global-config-backup-restored";
@@ -8846,6 +9447,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8846
9447
  "organization-team-add": "organization-team-add";
8847
9448
  "organization-team-create": "organization-team-create";
8848
9449
  "organization-team-delete": "organization-team-delete";
9450
+ "organization-team-sso-update": "organization-team-sso-update";
8849
9451
  "owner-blocked": "owner-blocked";
8850
9452
  "owner-soft-blocked": "owner-soft-blocked";
8851
9453
  "owner-soft-unblocked": "owner-soft-unblocked";
@@ -8925,6 +9527,12 @@ declare const listEventTypeSchema: z.ZodObject<{
8925
9527
  "project-git-commit-comments-toggled": "project-git-commit-comments-toggled";
8926
9528
  "project-git-commit-status-toggled": "project-git-commit-status-toggled";
8927
9529
  "project-git-create-deployments-toggled": "project-git-create-deployments-toggled";
9530
+ "project-git-credential-bound-created": "project-git-credential-bound-created";
9531
+ "project-git-credential-bound-deleted": "project-git-credential-bound-deleted";
9532
+ "project-git-credential-bound-updated": "project-git-credential-bound-updated";
9533
+ "project-git-credential-grant-created": "project-git-credential-grant-created";
9534
+ "project-git-credential-grant-deleted": "project-git-credential-grant-deleted";
9535
+ "project-git-credential-grant-updated": "project-git-credential-grant-updated";
8928
9536
  "project-git-fork-protection-updated": "project-git-fork-protection-updated";
8929
9537
  "project-git-lfs-toggled": "project-git-lfs-toggled";
8930
9538
  "project-git-pr-comments-toggled": "project-git-pr-comments-toggled";
@@ -9017,6 +9625,8 @@ declare const listEventTypeSchema: z.ZodObject<{
9017
9625
  "shared-env-variable-create": "shared-env-variable-create";
9018
9626
  "shared-env-variable-delete": "shared-env-variable-delete";
9019
9627
  "shared-env-variable-read": "shared-env-variable-read";
9628
+ "shared-env-variable-repo-link": "shared-env-variable-repo-link";
9629
+ "shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink";
9020
9630
  "shared-env-variable-update": "shared-env-variable-update";
9021
9631
  "show-ip-addresses": "show-ip-addresses";
9022
9632
  signup: "signup";
@@ -9047,6 +9657,7 @@ declare const listEventTypeSchema: z.ZodObject<{
9047
9657
  "storage-update-project-connection": "storage-update-project-connection";
9048
9658
  "storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc";
9049
9659
  "storage-view-secret": "storage-view-secret";
9660
+ "strict-connectors": "strict-connectors";
9050
9661
  "strict-deployment-protection-settings": "strict-deployment-protection-settings";
9051
9662
  "strict-password-protection-settings": "strict-password-protection-settings";
9052
9663
  "strict-shareable-links": "strict-shareable-links";
@@ -9209,7 +9820,12 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
9209
9820
  }, z.core.$strip>;
9210
9821
  declare const flagSchema: z.ZodObject<{
9211
9822
  description: z.ZodOptional<z.ZodString>;
9212
- variants: z.ZodArray<z.ZodObject<{}, z.core.$strip>>;
9823
+ variants: z.ZodArray<z.ZodObject<{
9824
+ description: z.ZodOptional<z.ZodString>;
9825
+ label: z.ZodOptional<z.ZodString>;
9826
+ value: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>, z.ZodArray<z.ZodString>, z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>]>>;
9827
+ id: z.ZodString;
9828
+ }, z.core.$strip>>;
9213
9829
  id: z.ZodString;
9214
9830
  environments: z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
9215
9831
  reuse: z.ZodOptional<z.ZodObject<{
@@ -9227,7 +9843,7 @@ declare const flagSchema: z.ZodObject<{
9227
9843
  }>;
9228
9844
  variantId: z.ZodString;
9229
9845
  }, z.core.$strip>;
9230
- fallthrough: z.ZodUnion<readonly [z.ZodObject<{
9846
+ fallthrough: z.ZodDiscriminatedUnion<[z.ZodObject<{
9231
9847
  type: z.ZodEnum<{
9232
9848
  variant: "variant";
9233
9849
  }>;
@@ -9268,11 +9884,11 @@ declare const flagSchema: z.ZodObject<{
9268
9884
  type: z.ZodEnum<{
9269
9885
  experiment: "experiment";
9270
9886
  }>;
9271
- }, z.core.$strict>]>;
9887
+ }, z.core.$strict>], "type">;
9272
9888
  active: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
9273
9889
  rules: z.ZodArray<z.ZodObject<{
9274
9890
  id: z.ZodString;
9275
- outcome: z.ZodUnion<readonly [z.ZodObject<{
9891
+ outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
9276
9892
  type: z.ZodEnum<{
9277
9893
  variant: "variant";
9278
9894
  }>;
@@ -9313,7 +9929,7 @@ declare const flagSchema: z.ZodObject<{
9313
9929
  type: z.ZodEnum<{
9314
9930
  experiment: "experiment";
9315
9931
  }>;
9316
- }, z.core.$strict>]>;
9932
+ }, z.core.$strict>], "type">;
9317
9933
  conditions: z.ZodArray<z.ZodObject<{
9318
9934
  rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
9319
9935
  type: z.ZodEnum<{
@@ -9339,7 +9955,7 @@ declare const flagSchema: z.ZodObject<{
9339
9955
  cmpOptions: z.ZodOptional<z.ZodObject<{
9340
9956
  ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
9341
9957
  }, z.core.$strip>>;
9342
- lhs: z.ZodUnion<readonly [z.ZodObject<{
9958
+ lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
9343
9959
  type: z.ZodEnum<{
9344
9960
  segment: "segment";
9345
9961
  }>;
@@ -9349,7 +9965,7 @@ declare const flagSchema: z.ZodObject<{
9349
9965
  }>;
9350
9966
  kind: z.ZodString;
9351
9967
  attribute: z.ZodString;
9352
- }, z.core.$strict>]>;
9968
+ }, z.core.$strict>], "type">;
9353
9969
  cmp: z.ZodEnum<{
9354
9970
  before: "before";
9355
9971
  after: "after";
@@ -9436,7 +10052,7 @@ declare const segmentSchema: z.ZodObject<{
9436
10052
  data: z.ZodObject<{
9437
10053
  rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
9438
10054
  id: z.ZodString;
9439
- outcome: z.ZodUnion<readonly [z.ZodObject<{
10055
+ outcome: z.ZodDiscriminatedUnion<[z.ZodObject<{
9440
10056
  type: z.ZodEnum<{
9441
10057
  all: "all";
9442
10058
  }>;
@@ -9452,7 +10068,7 @@ declare const segmentSchema: z.ZodObject<{
9452
10068
  attribute: z.ZodString;
9453
10069
  }, z.core.$strip>;
9454
10070
  passPromille: z.ZodNumber;
9455
- }, z.core.$strict>]>;
10071
+ }, z.core.$strict>], "type">;
9456
10072
  conditions: z.ZodArray<z.ZodObject<{
9457
10073
  rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
9458
10074
  type: z.ZodEnum<{
@@ -9478,7 +10094,7 @@ declare const segmentSchema: z.ZodObject<{
9478
10094
  cmpOptions: z.ZodOptional<z.ZodObject<{
9479
10095
  ignoreCase: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
9480
10096
  }, z.core.$strip>>;
9481
- lhs: z.ZodUnion<readonly [z.ZodObject<{
10097
+ lhs: z.ZodDiscriminatedUnion<[z.ZodObject<{
9482
10098
  type: z.ZodEnum<{
9483
10099
  segment: "segment";
9484
10100
  }>;
@@ -9488,7 +10104,7 @@ declare const segmentSchema: z.ZodObject<{
9488
10104
  }>;
9489
10105
  kind: z.ZodString;
9490
10106
  attribute: z.ZodString;
9491
- }, z.core.$strict>]>;
10107
+ }, z.core.$strict>], "type">;
9492
10108
  cmp: z.ZodEnum<{
9493
10109
  before: "before";
9494
10110
  after: "after";
@@ -9647,6 +10263,7 @@ declare const namedSandboxSchema: z.ZodObject<{
9647
10263
  deniedCIDRs: z.ZodOptional<z.ZodArray<z.ZodString>>;
9648
10264
  s3Key: z.ZodOptional<z.ZodString>;
9649
10265
  }, z.core.$strip>>;
10266
+ networkId: z.ZodOptional<z.ZodString>;
9650
10267
  totalEgressBytes: z.ZodOptional<z.ZodNumber>;
9651
10268
  totalIngressBytes: z.ZodOptional<z.ZodNumber>;
9652
10269
  totalActiveCpuDurationMs: z.ZodOptional<z.ZodNumber>;
@@ -9658,6 +10275,7 @@ declare const namedSandboxSchema: z.ZodObject<{
9658
10275
  mode: z.ZodOptional<z.ZodEnum<{
9659
10276
  "read-only": "read-only";
9660
10277
  "read-write": "read-write";
10278
+ snapshot: "snapshot";
9661
10279
  }>>;
9662
10280
  }, z.core.$strip>>>>;
9663
10281
  createdAt: z.ZodNumber;
@@ -9692,8 +10310,8 @@ declare const sessionSchema: z.ZodObject<{
9692
10310
  running: "running";
9693
10311
  stopping: "stopping";
9694
10312
  stopped: "stopped";
9695
- aborted: "aborted";
9696
10313
  failed: "failed";
10314
+ aborted: "aborted";
9697
10315
  pending: "pending";
9698
10316
  snapshotting: "snapshotting";
9699
10317
  }>;
@@ -9722,6 +10340,7 @@ declare const sandboxPublicRouteSchema: z.ZodObject<{
9722
10340
  system: z.ZodOptional<z.ZodLiteral<true>>;
9723
10341
  }, z.core.$strip>;
9724
10342
  declare const driveSchema: z.ZodObject<{
10343
+ id: z.ZodString;
9725
10344
  name: z.ZodString;
9726
10345
  projectId: z.ZodString;
9727
10346
  maxSizeBytes: z.ZodNumber;
@@ -9738,8 +10357,8 @@ declare const snapshotSchema: z.ZodObject<{
9738
10357
  regions: z.ZodOptional<z.ZodArray<z.ZodString>>;
9739
10358
  status: z.ZodEnum<{
9740
10359
  deleted: "deleted";
9741
- created: "created";
9742
10360
  failed: "failed";
10361
+ created: "created";
9743
10362
  }>;
9744
10363
  sizeBytes: z.ZodNumber;
9745
10364
  expiresAt: z.ZodOptional<z.ZodNumber>;
@@ -10017,6 +10636,10 @@ declare const teamSchema: z.ZodObject<{
10017
10636
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10018
10637
  updatedAt: z.ZodNumber;
10019
10638
  }, z.core.$strip>>;
10639
+ strictConnectors: z.ZodOptional<z.ZodObject<{
10640
+ enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10641
+ updatedAt: z.ZodNumber;
10642
+ }, z.core.$strip>>;
10020
10643
  nsnbConfig: z.ZodOptional<z.ZodObject<{
10021
10644
  preference: z.ZodEnum<{
10022
10645
  block: "block";
@@ -10041,7 +10664,7 @@ declare const teamSchema: z.ZodObject<{
10041
10664
  project: z.ZodOptional<z.ZodString>;
10042
10665
  }, z.core.$strict>]>>;
10043
10666
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10044
- environments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10667
+ environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10045
10668
  type: z.ZodEnum<{
10046
10669
  system: "system";
10047
10670
  }>;
@@ -10054,7 +10677,7 @@ declare const teamSchema: z.ZodObject<{
10054
10677
  custom: "custom";
10055
10678
  }>;
10056
10679
  environmentId: z.ZodString;
10057
- }, z.core.$strict>]>>;
10680
+ }, z.core.$strict>], "type">>;
10058
10681
  }, z.core.$strip>>>;
10059
10682
  deploymentSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
10060
10683
  sources: z.ZodArray<z.ZodEnum<{
@@ -10066,7 +10689,7 @@ declare const teamSchema: z.ZodObject<{
10066
10689
  "rest-api": "rest-api";
10067
10690
  }>>;
10068
10691
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
10069
- environments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10692
+ environments: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10070
10693
  type: z.ZodEnum<{
10071
10694
  system: "system";
10072
10695
  }>;
@@ -10079,7 +10702,7 @@ declare const teamSchema: z.ZodObject<{
10079
10702
  custom: "custom";
10080
10703
  }>;
10081
10704
  environmentId: z.ZodString;
10082
- }, z.core.$strict>]>>;
10705
+ }, z.core.$strict>], "type">>;
10083
10706
  }, z.core.$strip>>>;
10084
10707
  }, z.core.$strip>>;
10085
10708
  personalAccessTokensInvalidatedAt: z.ZodOptional<z.ZodNumber>;
@@ -10312,7 +10935,7 @@ declare const authTokenSchema: z.ZodObject<{
10312
10935
  prefix: z.ZodOptional<z.ZodString>;
10313
10936
  suffix: z.ZodOptional<z.ZodString>;
10314
10937
  origin: z.ZodOptional<z.ZodString>;
10315
- scopes: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
10938
+ scopes: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
10316
10939
  type: z.ZodEnum<{
10317
10940
  user: "user";
10318
10941
  }>;
@@ -10374,7 +10997,7 @@ declare const authTokenSchema: z.ZodObject<{
10374
10997
  }>>;
10375
10998
  createdAt: z.ZodNumber;
10376
10999
  expiresAt: z.ZodOptional<z.ZodNumber>;
10377
- }, z.core.$strict>]>>>;
11000
+ }, z.core.$strict>], "type">>>;
10378
11001
  createdAt: z.ZodNumber;
10379
11002
  activeAt: z.ZodNumber;
10380
11003
  expiresAt: z.ZodOptional<z.ZodNumber>;
@@ -10393,7 +11016,6 @@ declare const authUserSchema: z.ZodObject<{
10393
11016
  ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE";
10394
11017
  EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED";
10395
11018
  FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED";
10396
- HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED";
10397
11019
  SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED";
10398
11020
  SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED";
10399
11021
  UNPAID_INVOICE: "UNPAID_INVOICE";
@@ -10439,55 +11061,7 @@ declare const authUserSchema: z.ZodObject<{
10439
11061
  wafRateLimitRequest: "wafRateLimitRequest";
10440
11062
  webAnalyticsEvent: "webAnalyticsEvent";
10441
11063
  }>>;
10442
- hobbyAllocationPause: z.ZodOptional<z.ZodObject<{
10443
- pausedUntil: z.ZodNumber;
10444
- pausedAt: z.ZodNumber;
10445
- triggers: z.ZodArray<z.ZodObject<{
10446
- allocation: z.ZodEnum<{
10447
- artifacts: "artifacts";
10448
- analyticsUsage: "analyticsUsage";
10449
- bandwidth: "bandwidth";
10450
- blobDataTransfer: "blobDataTransfer";
10451
- blobTotalAdvancedRequests: "blobTotalAdvancedRequests";
10452
- blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes";
10453
- blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes";
10454
- blobTotalSimpleRequests: "blobTotalSimpleRequests";
10455
- connectDataTransfer: "connectDataTransfer";
10456
- dataCacheRead: "dataCacheRead";
10457
- dataCacheWrite: "dataCacheWrite";
10458
- edgeConfigRead: "edgeConfigRead";
10459
- edgeConfigWrite: "edgeConfigWrite";
10460
- edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits";
10461
- edgeMiddlewareInvocations: "edgeMiddlewareInvocations";
10462
- edgeRequest: "edgeRequest";
10463
- edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration";
10464
- elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots";
10465
- fastDataTransfer: "fastDataTransfer";
10466
- fastOriginTransfer: "fastOriginTransfer";
10467
- fluidCpuDuration: "fluidCpuDuration";
10468
- fluidDuration: "fluidDuration";
10469
- functionDuration: "functionDuration";
10470
- functionInvocation: "functionInvocation";
10471
- imageOptimizationCacheRead: "imageOptimizationCacheRead";
10472
- imageOptimizationCacheWrite: "imageOptimizationCacheWrite";
10473
- imageOptimizationTransformation: "imageOptimizationTransformation";
10474
- logDrainsVolume: "logDrainsVolume";
10475
- monitoringMetric: "monitoringMetric";
10476
- observabilityEvent: "observabilityEvent";
10477
- onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes";
10478
- runtimeCacheRead: "runtimeCacheRead";
10479
- runtimeCacheWrite: "runtimeCacheWrite";
10480
- serverlessFunctionExecution: "serverlessFunctionExecution";
10481
- sourceImages: "sourceImages";
10482
- wafOwaspExcessBytes: "wafOwaspExcessBytes";
10483
- wafOwaspRequests: "wafOwaspRequests";
10484
- wafRateLimitRequest: "wafRateLimitRequest";
10485
- webAnalyticsEvent: "webAnalyticsEvent";
10486
- }>;
10487
- usage: z.ZodNumber;
10488
- }, z.core.$strip>>;
10489
- cohort: z.ZodString;
10490
- }, z.core.$strip>>;
11064
+ unpauseAt: z.ZodOptional<z.ZodNumber>;
10491
11065
  }, z.core.$strip>>;
10492
11066
  billing: z.ZodNullable<z.ZodObject<{}, z.core.$strip>>;
10493
11067
  resourceConfig: z.ZodObject<{
@@ -10524,10 +11098,10 @@ declare const authUserSchema: z.ZodObject<{
10524
11098
  flagsExplorerUnlimitedOverrides: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
10525
11099
  customEnvironmentsPerProject: z.ZodOptional<z.ZodNumber>;
10526
11100
  security: z.ZodOptional<z.ZodObject<{
11101
+ rateLimit: z.ZodOptional<z.ZodNumber>;
10527
11102
  customRules: z.ZodOptional<z.ZodNumber>;
10528
11103
  ipBlocks: z.ZodOptional<z.ZodNumber>;
10529
11104
  ipBypass: z.ZodOptional<z.ZodNumber>;
10530
- rateLimit: z.ZodOptional<z.ZodNumber>;
10531
11105
  }, z.core.$strip>>;
10532
11106
  bulkRedirectsFreeLimitOverride: z.ZodOptional<z.ZodNumber>;
10533
11107
  }, z.core.$strip>;
@@ -11036,7 +11610,9 @@ declare const createAiGatewayVirtualModelConfigStatus500Schema: z.ZodUnknown;
11036
11610
  declare const createAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
11037
11611
  declare const createAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11038
11612
  declare const getAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11039
- declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString;
11613
+ declare const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodOptional<z.ZodString>;
11614
+ declare const getAiGatewayVirtualModelConfigQueryLimitSchema: z.ZodOptional<z.ZodInt>;
11615
+ declare const getAiGatewayVirtualModelConfigQueryCursorSchema: z.ZodOptional<z.ZodString>;
11040
11616
  declare const getAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11041
11617
  declare const getAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
11042
11618
  declare const getAiGatewayVirtualModelConfigStatus200Schema: z.ZodUnknown;
@@ -11061,6 +11637,9 @@ declare const updateAiGatewayVirtualModelConfigResponseSchema: z.ZodUnknown;
11061
11637
  declare const updateAiGatewayVirtualModelConfigErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11062
11638
  declare const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11063
11639
  declare const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema: z.ZodString;
11640
+ declare const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
11641
+ declare const deleteAiGatewayVirtualModelConfigQueryActingIpSchema: z.ZodOptional<z.ZodString>;
11642
+ declare const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
11064
11643
  declare const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11065
11644
  declare const deleteAiGatewayVirtualModelConfigQuerySlugSchema: z.ZodOptional<z.ZodString>;
11066
11645
  declare const deleteAiGatewayVirtualModelConfigStatus204Schema: z.ZodUnknown;
@@ -11085,6 +11664,47 @@ declare const listAiGatewayVirtualModelConfigsStatus410Schema: z.ZodUnknown;
11085
11664
  declare const listAiGatewayVirtualModelConfigsStatus500Schema: z.ZodUnknown;
11086
11665
  declare const listAiGatewayVirtualModelConfigsResponseSchema: z.ZodUnknown;
11087
11666
  declare const listAiGatewayVirtualModelConfigsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11667
+ declare const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11668
+ declare const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11669
+ declare const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11670
+ declare const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11671
+ declare const getAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
11672
+ declare const getAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11673
+ declare const getAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11674
+ declare const getAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11675
+ declare const getAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11676
+ declare const getAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11677
+ declare const getAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11678
+ declare const getAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11679
+ declare const getAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11680
+ declare const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11681
+ declare const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11682
+ declare const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11683
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus200Schema: z.ZodUnknown;
11684
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11685
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11686
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11687
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11688
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11689
+ declare const updateAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11690
+ declare const updateAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11691
+ declare const updateAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11692
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema: z.ZodOptional<z.ZodString>;
11693
+ declare const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema: z.ZodString;
11694
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema: z.ZodOptional<z.ZodString>;
11695
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema: z.ZodOptional<z.ZodString>;
11696
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema: z.ZodOptional<z.ZodString>;
11697
+ declare const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11698
+ declare const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema: z.ZodOptional<z.ZodString>;
11699
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema: z.ZodUnknown;
11700
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema: z.ZodUnknown;
11701
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema: z.ZodUnknown;
11702
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema: z.ZodUnknown;
11703
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema: z.ZodUnknown;
11704
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema: z.ZodUnknown;
11705
+ declare const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema: z.ZodUnknown;
11706
+ declare const deleteAiGatewayVirtualModelConfigBySlugResponseSchema: z.ZodUnknown;
11707
+ declare const deleteAiGatewayVirtualModelConfigBySlugErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11088
11708
  declare const createAiGatewayRuleQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11089
11709
  declare const createAiGatewayRuleQuerySlugSchema: z.ZodOptional<z.ZodString>;
11090
11710
  declare const createAiGatewayRuleStatus201Schema: z.ZodUnknown;
@@ -11133,8 +11753,8 @@ declare const deleteAiGatewayRuleStatus410Schema: z.ZodUnknown;
11133
11753
  declare const deleteAiGatewayRuleStatus500Schema: z.ZodUnknown;
11134
11754
  declare const deleteAiGatewayRuleResponseSchema: z.ZodUnknown;
11135
11755
  declare const deleteAiGatewayRuleErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11136
- declare const recordEventsHeaderxArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11137
- declare const recordEventsHeaderxArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11756
+ declare const recordEventsHeaderXArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11757
+ declare const recordEventsHeaderXArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11138
11758
  declare const recordEventsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11139
11759
  declare const recordEventsQuerySlugSchema: z.ZodOptional<z.ZodString>;
11140
11760
  declare const recordEventsStatus200Schema: z.ZodUnknown;
@@ -11155,13 +11775,13 @@ declare const statusStatus403Schema: z.ZodUnknown;
11155
11775
  declare const statusStatus410Schema: z.ZodUnknown;
11156
11776
  declare const statusResponseSchema: z.ZodUnknown;
11157
11777
  declare const statusErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11158
- declare const uploadArtifactHeadercontentLengthSchema: z.ZodOptional<z.ZodNumber>;
11159
- declare const uploadArtifactHeaderxArtifactDurationSchema: z.ZodOptional<z.ZodNumber>;
11160
- declare const uploadArtifactHeaderxArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11161
- declare const uploadArtifactHeaderxArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11162
- declare const uploadArtifactHeaderxArtifactTagSchema: z.ZodOptional<z.ZodString>;
11163
- declare const uploadArtifactHeaderxArtifactShaSchema: z.ZodOptional<z.ZodString>;
11164
- declare const uploadArtifactHeaderxArtifactDirtyHashSchema: z.ZodOptional<z.ZodString>;
11778
+ declare const uploadArtifactHeaderContentLengthSchema: z.ZodNumber;
11779
+ declare const uploadArtifactHeaderXArtifactDurationSchema: z.ZodOptional<z.ZodNumber>;
11780
+ declare const uploadArtifactHeaderXArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11781
+ declare const uploadArtifactHeaderXArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11782
+ declare const uploadArtifactHeaderXArtifactTagSchema: z.ZodOptional<z.ZodString>;
11783
+ declare const uploadArtifactHeaderXArtifactShaSchema: z.ZodOptional<z.ZodString>;
11784
+ declare const uploadArtifactHeaderXArtifactDirtyHashSchema: z.ZodOptional<z.ZodString>;
11165
11785
  declare const uploadArtifactPathHashSchema: z.ZodString;
11166
11786
  declare const uploadArtifactQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11167
11787
  declare const uploadArtifactQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -11173,8 +11793,8 @@ declare const uploadArtifactStatus403Schema: z.ZodUnknown;
11173
11793
  declare const uploadArtifactStatus410Schema: z.ZodUnknown;
11174
11794
  declare const uploadArtifactResponseSchema: z.ZodUnknown;
11175
11795
  declare const uploadArtifactErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11176
- declare const downloadArtifactHeaderxArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11177
- declare const downloadArtifactHeaderxArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11796
+ declare const downloadArtifactHeaderXArtifactClientCiSchema: z.ZodOptional<z.ZodString>;
11797
+ declare const downloadArtifactHeaderXArtifactClientInteractiveSchema: z.ZodOptional<z.ZodInt>;
11178
11798
  declare const downloadArtifactPathHashSchema: z.ZodString;
11179
11799
  declare const downloadArtifactQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11180
11800
  declare const downloadArtifactQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -11584,6 +12204,113 @@ declare const readNetworkStatus403Schema: z.ZodUnknown;
11584
12204
  declare const readNetworkStatus410Schema: z.ZodUnknown;
11585
12205
  declare const readNetworkResponseSchema: z.ZodUnknown;
11586
12206
  declare const readNetworkErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12207
+ declare const createPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12208
+ declare const createPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12209
+ declare const createPrivateLinkEndpointStatus201Schema: z.ZodUnknown;
12210
+ declare const createPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12211
+ declare const createPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12212
+ declare const createPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12213
+ declare const createPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12214
+ declare const createPrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12215
+ declare const createPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12216
+ declare const createPrivateLinkEndpointResponseSchema: z.ZodUnknown;
12217
+ declare const createPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12218
+ declare const listPrivateLinkEndpointsQueryProjectIdSchema: z.ZodString;
12219
+ declare const listPrivateLinkEndpointsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12220
+ declare const listPrivateLinkEndpointsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12221
+ declare const listPrivateLinkEndpointsStatus200Schema: z.ZodUnknown;
12222
+ declare const listPrivateLinkEndpointsStatus400Schema: z.ZodUnknown;
12223
+ declare const listPrivateLinkEndpointsStatus401Schema: z.ZodUnknown;
12224
+ declare const listPrivateLinkEndpointsStatus403Schema: z.ZodUnknown;
12225
+ declare const listPrivateLinkEndpointsStatus404Schema: z.ZodUnknown;
12226
+ declare const listPrivateLinkEndpointsStatus410Schema: z.ZodUnknown;
12227
+ declare const listPrivateLinkEndpointsResponseSchema: z.ZodUnknown;
12228
+ declare const listPrivateLinkEndpointsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12229
+ declare const readPrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12230
+ declare const readPrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12231
+ declare const readPrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12232
+ declare const readPrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12233
+ declare const readPrivateLinkEndpointStatus200Schema: z.ZodUnknown;
12234
+ declare const readPrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12235
+ declare const readPrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12236
+ declare const readPrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12237
+ declare const readPrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12238
+ declare const readPrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12239
+ declare const readPrivateLinkEndpointResponseSchema: z.ZodUnknown;
12240
+ declare const readPrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12241
+ declare const deletePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12242
+ declare const deletePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12243
+ declare const deletePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12244
+ declare const deletePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12245
+ declare const deletePrivateLinkEndpointStatus204Schema: z.ZodUnknown;
12246
+ declare const deletePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12247
+ declare const deletePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12248
+ declare const deletePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12249
+ declare const deletePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12250
+ declare const deletePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12251
+ declare const deletePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12252
+ declare const deletePrivateLinkEndpointResponseSchema: z.ZodUnknown;
12253
+ declare const deletePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12254
+ declare const updatePrivateLinkEndpointQueryProjectIdSchema: z.ZodString;
12255
+ declare const updatePrivateLinkEndpointPathEndpointIdSchema: z.ZodString;
12256
+ declare const updatePrivateLinkEndpointQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12257
+ declare const updatePrivateLinkEndpointQuerySlugSchema: z.ZodOptional<z.ZodString>;
12258
+ declare const updatePrivateLinkEndpointStatus200Schema: z.ZodUnknown;
12259
+ declare const updatePrivateLinkEndpointStatus400Schema: z.ZodUnknown;
12260
+ declare const updatePrivateLinkEndpointStatus401Schema: z.ZodUnknown;
12261
+ declare const updatePrivateLinkEndpointStatus403Schema: z.ZodUnknown;
12262
+ declare const updatePrivateLinkEndpointStatus404Schema: z.ZodUnknown;
12263
+ declare const updatePrivateLinkEndpointStatus409Schema: z.ZodUnknown;
12264
+ declare const updatePrivateLinkEndpointStatus410Schema: z.ZodUnknown;
12265
+ declare const updatePrivateLinkEndpointResponseSchema: z.ZodUnknown;
12266
+ declare const updatePrivateLinkEndpointErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12267
+ declare const listConnectorsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12268
+ declare const listConnectorsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12269
+ declare const listConnectorsQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
12270
+ declare const listConnectorsQuerySearchSchema: z.ZodOptional<z.ZodString>;
12271
+ declare const listConnectorsQueryTypeSchema: z.ZodOptional<z.ZodString>;
12272
+ declare const listConnectorsQueryServiceSchema: z.ZodOptional<z.ZodString>;
12273
+ declare const listConnectorsQuerySortSchema: z.ZodOptional<z.ZodEnum<{
12274
+ name: "name";
12275
+ createdAt: "createdAt";
12276
+ updatedAt: "updatedAt";
12277
+ }>>;
12278
+ declare const listConnectorsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12279
+ declare const listConnectorsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12280
+ declare const listConnectorsStatus200Schema: z.ZodUnknown;
12281
+ declare const listConnectorsStatus400Schema: z.ZodUnknown;
12282
+ declare const listConnectorsStatus401Schema: z.ZodUnknown;
12283
+ declare const listConnectorsStatus403Schema: z.ZodUnknown;
12284
+ declare const listConnectorsStatus410Schema: z.ZodUnknown;
12285
+ declare const listConnectorsStatus422Schema: z.ZodUnknown;
12286
+ declare const listConnectorsResponseSchema: z.ZodUnknown;
12287
+ declare const listConnectorsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12288
+ declare const getConnectorPathConnectorSchema: z.ZodString;
12289
+ declare const getConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12290
+ declare const getConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12291
+ declare const getConnectorStatus200Schema: z.ZodUnknown;
12292
+ declare const getConnectorStatus400Schema: z.ZodUnknown;
12293
+ declare const getConnectorStatus401Schema: z.ZodUnknown;
12294
+ declare const getConnectorStatus403Schema: z.ZodUnknown;
12295
+ declare const getConnectorStatus404Schema: z.ZodUnknown;
12296
+ declare const getConnectorStatus410Schema: z.ZodUnknown;
12297
+ declare const getConnectorStatus422Schema: z.ZodUnknown;
12298
+ declare const getConnectorResponseSchema: z.ZodUnknown;
12299
+ declare const getConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12300
+ declare const deleteConnectorPathConnectorSchema: z.ZodString;
12301
+ declare const deleteConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12302
+ declare const deleteConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12303
+ declare const deleteConnectorStatus204Schema: z.ZodUnknown;
12304
+ declare const deleteConnectorStatus400Schema: z.ZodUnknown;
12305
+ declare const deleteConnectorStatus401Schema: z.ZodUnknown;
12306
+ declare const deleteConnectorStatus403Schema: z.ZodUnknown;
12307
+ declare const deleteConnectorStatus404Schema: z.ZodUnknown;
12308
+ declare const deleteConnectorStatus409Schema: z.ZodUnknown;
12309
+ declare const deleteConnectorStatus410Schema: z.ZodUnknown;
12310
+ declare const deleteConnectorStatus422Schema: z.ZodUnknown;
12311
+ declare const deleteConnectorStatus502Schema: z.ZodUnknown;
12312
+ declare const deleteConnectorResponseSchema: z.ZodUnknown;
12313
+ declare const deleteConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11587
12314
  declare const createConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
11588
12315
  declare const createConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
11589
12316
  declare const createConnectorStatus201Schema: z.ZodUnknown;
@@ -11598,6 +12325,95 @@ declare const createConnectorStatus500Schema: z.ZodUnknown;
11598
12325
  declare const createConnectorStatus502Schema: z.ZodUnknown;
11599
12326
  declare const createConnectorResponseSchema: z.ZodUnknown;
11600
12327
  declare const createConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12328
+ declare const updateConnectorPathConnectorSchema: z.ZodString;
12329
+ declare const updateConnectorQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12330
+ declare const updateConnectorQuerySlugSchema: z.ZodOptional<z.ZodString>;
12331
+ declare const updateConnectorStatus200Schema: z.ZodUnknown;
12332
+ declare const updateConnectorStatus400Schema: z.ZodUnknown;
12333
+ declare const updateConnectorStatus401Schema: z.ZodUnknown;
12334
+ declare const updateConnectorStatus403Schema: z.ZodUnknown;
12335
+ declare const updateConnectorStatus404Schema: z.ZodUnknown;
12336
+ declare const updateConnectorStatus409Schema: z.ZodUnknown;
12337
+ declare const updateConnectorStatus410Schema: z.ZodUnknown;
12338
+ declare const updateConnectorStatus422Schema: z.ZodUnknown;
12339
+ declare const updateConnectorStatus502Schema: z.ZodUnknown;
12340
+ declare const updateConnectorResponseSchema: z.ZodUnknown;
12341
+ declare const updateConnectorErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12342
+ declare const replaceConnectorTriggerDestinationsPathConnectorSchema: z.ZodString;
12343
+ declare const replaceConnectorTriggerDestinationsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12344
+ declare const replaceConnectorTriggerDestinationsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12345
+ declare const replaceConnectorTriggerDestinationsStatus200Schema: z.ZodUnknown;
12346
+ declare const replaceConnectorTriggerDestinationsStatus400Schema: z.ZodUnknown;
12347
+ declare const replaceConnectorTriggerDestinationsStatus401Schema: z.ZodUnknown;
12348
+ declare const replaceConnectorTriggerDestinationsStatus403Schema: z.ZodUnknown;
12349
+ declare const replaceConnectorTriggerDestinationsStatus404Schema: z.ZodUnknown;
12350
+ declare const replaceConnectorTriggerDestinationsStatus410Schema: z.ZodUnknown;
12351
+ declare const replaceConnectorTriggerDestinationsStatus422Schema: z.ZodUnknown;
12352
+ declare const replaceConnectorTriggerDestinationsResponseSchema: z.ZodUnknown;
12353
+ declare const replaceConnectorTriggerDestinationsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12354
+ declare const listConnectorProjectConnectionsPathConnectorSchema: z.ZodString;
12355
+ declare const listConnectorProjectConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12356
+ declare const listConnectorProjectConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12357
+ declare const listConnectorProjectConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12358
+ declare const listConnectorProjectConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12359
+ declare const listConnectorProjectConnectionsStatus200Schema: z.ZodUnknown;
12360
+ declare const listConnectorProjectConnectionsStatus400Schema: z.ZodUnknown;
12361
+ declare const listConnectorProjectConnectionsStatus401Schema: z.ZodUnknown;
12362
+ declare const listConnectorProjectConnectionsStatus403Schema: z.ZodUnknown;
12363
+ declare const listConnectorProjectConnectionsStatus404Schema: z.ZodUnknown;
12364
+ declare const listConnectorProjectConnectionsStatus410Schema: z.ZodUnknown;
12365
+ declare const listConnectorProjectConnectionsStatus422Schema: z.ZodUnknown;
12366
+ declare const listConnectorProjectConnectionsResponseSchema: z.ZodUnknown;
12367
+ declare const listConnectorProjectConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12368
+ declare const getConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12369
+ declare const getConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12370
+ declare const getConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12371
+ declare const getConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12372
+ declare const getConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
12373
+ declare const getConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12374
+ declare const getConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12375
+ declare const getConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12376
+ declare const getConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12377
+ declare const getConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12378
+ declare const getConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12379
+ declare const getConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12380
+ declare const upsertConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12381
+ declare const upsertConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12382
+ declare const upsertConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12383
+ declare const upsertConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12384
+ declare const upsertConnectorProjectConnectionStatus200Schema: z.ZodUnknown;
12385
+ declare const upsertConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12386
+ declare const upsertConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12387
+ declare const upsertConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12388
+ declare const upsertConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12389
+ declare const upsertConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12390
+ declare const upsertConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12391
+ declare const upsertConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12392
+ declare const deleteConnectorProjectConnectionPathConnectorSchema: z.ZodString;
12393
+ declare const deleteConnectorProjectConnectionPathProjectIdSchema: z.ZodString;
12394
+ declare const deleteConnectorProjectConnectionQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12395
+ declare const deleteConnectorProjectConnectionQuerySlugSchema: z.ZodOptional<z.ZodString>;
12396
+ declare const deleteConnectorProjectConnectionStatus204Schema: z.ZodUnknown;
12397
+ declare const deleteConnectorProjectConnectionStatus400Schema: z.ZodUnknown;
12398
+ declare const deleteConnectorProjectConnectionStatus401Schema: z.ZodUnknown;
12399
+ declare const deleteConnectorProjectConnectionStatus403Schema: z.ZodUnknown;
12400
+ declare const deleteConnectorProjectConnectionStatus404Schema: z.ZodUnknown;
12401
+ declare const deleteConnectorProjectConnectionStatus410Schema: z.ZodUnknown;
12402
+ declare const deleteConnectorProjectConnectionResponseSchema: z.ZodUnknown;
12403
+ declare const deleteConnectorProjectConnectionErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
12404
+ declare const listProjectConnectorConnectionsPathProjectIdSchema: z.ZodString;
12405
+ declare const listProjectConnectorConnectionsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
12406
+ declare const listProjectConnectorConnectionsQueryCursorSchema: z.ZodOptional<z.ZodString>;
12407
+ declare const listProjectConnectorConnectionsQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12408
+ declare const listProjectConnectorConnectionsQuerySlugSchema: z.ZodOptional<z.ZodString>;
12409
+ declare const listProjectConnectorConnectionsStatus200Schema: z.ZodUnknown;
12410
+ declare const listProjectConnectorConnectionsStatus400Schema: z.ZodUnknown;
12411
+ declare const listProjectConnectorConnectionsStatus401Schema: z.ZodUnknown;
12412
+ declare const listProjectConnectorConnectionsStatus403Schema: z.ZodUnknown;
12413
+ declare const listProjectConnectorConnectionsStatus404Schema: z.ZodUnknown;
12414
+ declare const listProjectConnectorConnectionsStatus410Schema: z.ZodUnknown;
12415
+ declare const listProjectConnectorConnectionsResponseSchema: z.ZodUnknown;
12416
+ declare const listProjectConnectorConnectionsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
11601
12417
  declare const getConnectorTokenPathConnectorSchema: z.ZodString;
11602
12418
  declare const getConnectorTokenStatus200Schema: z.ZodUnknown;
11603
12419
  declare const getConnectorTokenStatus400Schema: z.ZodUnknown;
@@ -12445,9 +13261,7 @@ declare const listSharedEnvVariableQuerySearchSchema: z.ZodOptional<z.ZodString>
12445
13261
  declare const listSharedEnvVariableQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
12446
13262
  declare const listSharedEnvVariableQueryIdsSchema: z.ZodOptional<z.ZodString>;
12447
13263
  declare const listSharedEnvVariableQueryExcludeIdsSchema: z.ZodOptional<z.ZodString>;
12448
- declare const listSharedEnvVariableQueryexcludeIdsSchema: z.ZodOptional<z.ZodString>;
12449
13264
  declare const listSharedEnvVariableQueryExcludeProjectIdSchema: z.ZodOptional<z.ZodString>;
12450
- declare const listSharedEnvVariableQueryexcludeProjectIdSchema: z.ZodOptional<z.ZodString>;
12451
13265
  declare const listSharedEnvVariableQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12452
13266
  declare const listSharedEnvVariableQuerySlugSchema: z.ZodOptional<z.ZodString>;
12453
13267
  declare const listSharedEnvVariableStatus200Schema: z.ZodUnknown;
@@ -12916,6 +13730,7 @@ declare const getBillingPlansQuerySourceSchema: z.ZodOptional<z.ZodEnum<{
12916
13730
  oauth: "oauth";
12917
13731
  backoffice: "backoffice";
12918
13732
  "import-recommended-integrations": "import-recommended-integrations";
13733
+ organization: "organization";
12919
13734
  }>>;
12920
13735
  declare const getBillingPlansQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
12921
13736
  declare const getBillingPlansQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -13035,9 +13850,8 @@ declare const importResourceStatus404Schema: z.ZodUnknown;
13035
13850
  declare const importResourceStatus409Schema: z.ZodUnknown;
13036
13851
  declare const importResourceStatus410Schema: z.ZodUnknown;
13037
13852
  declare const importResourceStatus422Schema: z.ZodUnknown;
13038
- declare const importResourceStatus429Schema: z.ZodUnknown;
13039
13853
  declare const importResourceResponseSchema: z.ZodUnknown;
13040
- declare const importResourceErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
13854
+ declare const importResourceErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
13041
13855
  declare const updateResourcePathIntegrationConfigurationIdSchema: z.ZodString;
13042
13856
  declare const updateResourcePathResourceIdSchema: z.ZodString;
13043
13857
  declare const updateResourceStatus200Schema: z.ZodUnknown;
@@ -13533,8 +14347,12 @@ declare const createObservabilityQueryStatus402Schema: z.ZodUnknown;
13533
14347
  declare const createObservabilityQueryStatus403Schema: z.ZodUnknown;
13534
14348
  declare const createObservabilityQueryStatus408Schema: z.ZodUnknown;
13535
14349
  declare const createObservabilityQueryStatus410Schema: z.ZodUnknown;
14350
+ declare const createObservabilityQueryStatus413Schema: z.ZodUnknown;
14351
+ declare const createObservabilityQueryStatus422Schema: z.ZodUnknown;
14352
+ declare const createObservabilityQueryStatus500Schema: z.ZodUnknown;
14353
+ declare const createObservabilityQueryStatus503Schema: z.ZodUnknown;
13536
14354
  declare const createObservabilityQueryResponseSchema: z.ZodUnknown;
13537
- declare const createObservabilityQueryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14355
+ declare const createObservabilityQueryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
13538
14356
  declare const getObservabilitySchemaStatus200Schema: z.ZodUnknown;
13539
14357
  declare const getObservabilitySchemaStatus400Schema: z.ZodUnknown;
13540
14358
  declare const getObservabilitySchemaStatus401Schema: z.ZodUnknown;
@@ -13791,8 +14609,9 @@ declare const updateProjectStatus404Schema: z.ZodUnknown;
13791
14609
  declare const updateProjectStatus409Schema: z.ZodUnknown;
13792
14610
  declare const updateProjectStatus410Schema: z.ZodUnknown;
13793
14611
  declare const updateProjectStatus428Schema: z.ZodUnknown;
14612
+ declare const updateProjectStatus429Schema: z.ZodUnknown;
13794
14613
  declare const updateProjectResponseSchema: z.ZodUnknown;
13795
- declare const updateProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14614
+ declare const updateProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
13796
14615
  declare const deleteProjectPathIdOrNameSchema: z.ZodString;
13797
14616
  declare const deleteProjectQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
13798
14617
  declare const deleteProjectQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14185,9 +15004,10 @@ declare const createProjectTransferRequestStatus200Schema: z.ZodUnknown;
14185
15004
  declare const createProjectTransferRequestStatus400Schema: z.ZodUnknown;
14186
15005
  declare const createProjectTransferRequestStatus401Schema: z.ZodUnknown;
14187
15006
  declare const createProjectTransferRequestStatus403Schema: z.ZodUnknown;
15007
+ declare const createProjectTransferRequestStatus409Schema: z.ZodUnknown;
14188
15008
  declare const createProjectTransferRequestStatus410Schema: z.ZodUnknown;
14189
15009
  declare const createProjectTransferRequestResponseSchema: z.ZodUnknown;
14190
- declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15010
+ declare const createProjectTransferRequestErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14191
15011
  declare const acceptProjectTransferRequestPathCodeSchema: z.ZodString;
14192
15012
  declare const acceptProjectTransferRequestQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14193
15013
  declare const acceptProjectTransferRequestQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14301,37 +15121,37 @@ declare const unpauseProjectStatus410Schema: z.ZodUnknown;
14301
15121
  declare const unpauseProjectStatus500Schema: z.ZodUnknown;
14302
15122
  declare const unpauseProjectResponseSchema: z.ZodUnknown;
14303
15123
  declare const unpauseProjectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14304
- declare const listSandboxesQueryProjectSchema: z.ZodOptional<z.ZodString>;
14305
- declare const listSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
14306
- declare const listSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14307
- createdAt: "createdAt";
15124
+ declare const listNamedSandboxesQueryProjectSchema: z.ZodOptional<z.ZodString>;
15125
+ declare const listNamedSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
15126
+ declare const listNamedSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14308
15127
  name: "name";
15128
+ createdAt: "createdAt";
14309
15129
  statusUpdatedAt: "statusUpdatedAt";
14310
15130
  currentSnapshotId: "currentSnapshotId";
14311
15131
  }>>>;
14312
- declare const listSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
14313
- declare const listSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
14314
- declare const listSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
15132
+ declare const listNamedSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
15133
+ declare const listNamedSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
15134
+ declare const listNamedSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14315
15135
  asc: "asc";
14316
15136
  desc: "desc";
14317
15137
  }>>>;
14318
- declare const listSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
15138
+ declare const listNamedSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
14319
15139
  running: "running";
14320
15140
  stopping: "stopping";
14321
15141
  stopped: "stopped";
14322
15142
  }>>;
14323
- declare const listSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
14324
- declare const listSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14325
- declare const listSandboxesQuerySlugSchema: z.ZodOptional<z.ZodString>;
14326
- declare const listSandboxesStatus200Schema: z.ZodUnknown;
14327
- declare const listSandboxesStatus400Schema: z.ZodUnknown;
14328
- declare const listSandboxesStatus401Schema: z.ZodUnknown;
14329
- declare const listSandboxesStatus403Schema: z.ZodUnknown;
14330
- declare const listSandboxesStatus404Schema: z.ZodUnknown;
14331
- declare const listSandboxesStatus410Schema: z.ZodUnknown;
14332
- declare const listSandboxesStatus429Schema: z.ZodUnknown;
14333
- declare const listSandboxesResponseSchema: z.ZodUnknown;
14334
- declare const listSandboxesErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15143
+ declare const listNamedSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
15144
+ declare const listNamedSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
15145
+ declare const listNamedSandboxesQuerySlugSchema: z.ZodOptional<z.ZodString>;
15146
+ declare const listNamedSandboxesStatus200Schema: z.ZodUnknown;
15147
+ declare const listNamedSandboxesStatus400Schema: z.ZodUnknown;
15148
+ declare const listNamedSandboxesStatus401Schema: z.ZodUnknown;
15149
+ declare const listNamedSandboxesStatus403Schema: z.ZodUnknown;
15150
+ declare const listNamedSandboxesStatus404Schema: z.ZodUnknown;
15151
+ declare const listNamedSandboxesStatus410Schema: z.ZodUnknown;
15152
+ declare const listNamedSandboxesStatus429Schema: z.ZodUnknown;
15153
+ declare const listNamedSandboxesResponseSchema: z.ZodUnknown;
15154
+ declare const listNamedSandboxesErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14335
15155
  declare const createSandboxesV2QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14336
15156
  declare const createSandboxesV2QuerySlugSchema: z.ZodOptional<z.ZodString>;
14337
15157
  declare const createSandboxesV2Status200Schema: z.ZodUnknown;
@@ -14351,8 +15171,8 @@ declare const listDrivesQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
14351
15171
  declare const listDrivesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
14352
15172
  declare const listDrivesQueryCursorSchema: z.ZodOptional<z.ZodString>;
14353
15173
  declare const listDrivesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
14354
- createdAt: "createdAt";
14355
15174
  name: "name";
15175
+ createdAt: "createdAt";
14356
15176
  updatedAt: "updatedAt";
14357
15177
  }>>>;
14358
15178
  declare const listDrivesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
@@ -14671,7 +15491,7 @@ declare const createSessionDirectoryStatus429Schema: z.ZodUnknown;
14671
15491
  declare const createSessionDirectoryStatus500Schema: z.ZodUnknown;
14672
15492
  declare const createSessionDirectoryResponseSchema: z.ZodUnknown;
14673
15493
  declare const createSessionDirectoryErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14674
- declare const writeSessionFilesHeaderxCwdSchema: z.ZodOptional<z.ZodString>;
15494
+ declare const writeSessionFilesHeaderXCwdSchema: z.ZodOptional<z.ZodString>;
14675
15495
  declare const writeSessionFilesPathSessionIdSchema: z.ZodString;
14676
15496
  declare const writeSessionFilesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14677
15497
  declare const writeSessionFilesQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14880,36 +15700,39 @@ declare const getBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14880
15700
  declare const getBypassIpStatus200Schema: z.ZodUnknown;
14881
15701
  declare const getBypassIpStatus400Schema: z.ZodUnknown;
14882
15702
  declare const getBypassIpStatus401Schema: z.ZodUnknown;
15703
+ declare const getBypassIpStatus402Schema: z.ZodUnknown;
14883
15704
  declare const getBypassIpStatus403Schema: z.ZodUnknown;
14884
15705
  declare const getBypassIpStatus404Schema: z.ZodUnknown;
14885
15706
  declare const getBypassIpStatus410Schema: z.ZodUnknown;
14886
15707
  declare const getBypassIpStatus500Schema: z.ZodUnknown;
14887
15708
  declare const getBypassIpResponseSchema: z.ZodUnknown;
14888
- declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15709
+ declare const getBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14889
15710
  declare const addBypassIpQueryProjectIdSchema: z.ZodString;
14890
15711
  declare const addBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14891
15712
  declare const addBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14892
15713
  declare const addBypassIpStatus200Schema: z.ZodUnknown;
14893
15714
  declare const addBypassIpStatus400Schema: z.ZodUnknown;
14894
15715
  declare const addBypassIpStatus401Schema: z.ZodUnknown;
15716
+ declare const addBypassIpStatus402Schema: z.ZodUnknown;
14895
15717
  declare const addBypassIpStatus403Schema: z.ZodUnknown;
14896
15718
  declare const addBypassIpStatus404Schema: z.ZodUnknown;
14897
15719
  declare const addBypassIpStatus410Schema: z.ZodUnknown;
14898
15720
  declare const addBypassIpStatus500Schema: z.ZodUnknown;
14899
15721
  declare const addBypassIpResponseSchema: z.ZodUnknown;
14900
- declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15722
+ declare const addBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14901
15723
  declare const removeBypassIpQueryProjectIdSchema: z.ZodString;
14902
15724
  declare const removeBypassIpQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14903
15725
  declare const removeBypassIpQuerySlugSchema: z.ZodOptional<z.ZodString>;
14904
15726
  declare const removeBypassIpStatus200Schema: z.ZodUnknown;
14905
15727
  declare const removeBypassIpStatus400Schema: z.ZodUnknown;
14906
15728
  declare const removeBypassIpStatus401Schema: z.ZodUnknown;
15729
+ declare const removeBypassIpStatus402Schema: z.ZodUnknown;
14907
15730
  declare const removeBypassIpStatus403Schema: z.ZodUnknown;
14908
15731
  declare const removeBypassIpStatus404Schema: z.ZodUnknown;
14909
15732
  declare const removeBypassIpStatus410Schema: z.ZodUnknown;
14910
15733
  declare const removeBypassIpStatus500Schema: z.ZodUnknown;
14911
15734
  declare const removeBypassIpResponseSchema: z.ZodUnknown;
14912
- declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15735
+ declare const removeBypassIpErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14913
15736
  declare const getSecurityFirewallEventsQueryProjectIdSchema: z.ZodString;
14914
15737
  declare const getSecurityFirewallEventsQueryStartTimestampSchema: z.ZodOptional<z.ZodNumber>;
14915
15738
  declare const getSecurityFirewallEventsQueryEndTimestampSchema: z.ZodOptional<z.ZodNumber>;
@@ -14921,10 +15744,11 @@ declare const getSecurityFirewallEventsStatus400Schema: z.ZodUnknown;
14921
15744
  declare const getSecurityFirewallEventsStatus401Schema: z.ZodUnknown;
14922
15745
  declare const getSecurityFirewallEventsStatus403Schema: z.ZodUnknown;
14923
15746
  declare const getSecurityFirewallEventsStatus404Schema: z.ZodUnknown;
15747
+ declare const getSecurityFirewallEventsStatus408Schema: z.ZodUnknown;
14924
15748
  declare const getSecurityFirewallEventsStatus410Schema: z.ZodUnknown;
14925
15749
  declare const getSecurityFirewallEventsStatus500Schema: z.ZodUnknown;
14926
15750
  declare const getSecurityFirewallEventsResponseSchema: z.ZodUnknown;
14927
- declare const getSecurityFirewallEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15751
+ declare const getSecurityFirewallEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14928
15752
  declare const generateFirewallRuleQueryProjectIdSchema: z.ZodOptional<z.ZodString>;
14929
15753
  declare const generateFirewallRuleQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
14930
15754
  declare const generateFirewallRuleQuerySlugSchema: z.ZodOptional<z.ZodString>;
@@ -14948,8 +15772,8 @@ declare const createSpeedInsightsToggleStatus410Schema: z.ZodUnknown;
14948
15772
  declare const createSpeedInsightsToggleResponseSchema: z.ZodUnknown;
14949
15773
  declare const createSpeedInsightsToggleErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14950
15774
  declare const getStorageStoresByIdPathIdSchema: z.ZodString;
14951
- declare const getStorageStoresByIdQueryskipMetadataSchema: z.ZodOptional<z.ZodBoolean>;
14952
- declare const getStorageStoresByIdQueryincludeGuidesSchema: z.ZodOptional<z.ZodBoolean>;
15775
+ declare const getStorageStoresByIdQuerySkipMetadataSchema: z.ZodOptional<z.ZodBoolean>;
15776
+ declare const getStorageStoresByIdQueryIncludeGuidesSchema: z.ZodOptional<z.ZodBoolean>;
14953
15777
  declare const getStorageStoresByIdStatus200Schema: z.ZodUnknown;
14954
15778
  declare const getStorageStoresByIdStatus400Schema: z.ZodUnknown;
14955
15779
  declare const getStorageStoresByIdStatus401Schema: z.ZodUnknown;
@@ -14989,10 +15813,9 @@ declare const createIntegrationStoreDirectStatus403Schema: z.ZodUnknown;
14989
15813
  declare const createIntegrationStoreDirectStatus404Schema: z.ZodUnknown;
14990
15814
  declare const createIntegrationStoreDirectStatus409Schema: z.ZodUnknown;
14991
15815
  declare const createIntegrationStoreDirectStatus410Schema: z.ZodUnknown;
14992
- declare const createIntegrationStoreDirectStatus429Schema: z.ZodUnknown;
14993
15816
  declare const createIntegrationStoreDirectStatus500Schema: z.ZodUnknown;
14994
15817
  declare const createIntegrationStoreDirectResponseSchema: z.ZodUnknown;
14995
- declare const createIntegrationStoreDirectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15818
+ declare const createIntegrationStoreDirectErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
14996
15819
  declare const getTeamMembersQueryLimitSchema: z.ZodOptional<z.ZodNumber>;
14997
15820
  declare const getTeamMembersQuerySinceSchema: z.ZodOptional<z.ZodNumber>;
14998
15821
  declare const getTeamMembersQueryUntilSchema: z.ZodOptional<z.ZodNumber>;
@@ -15146,8 +15969,9 @@ declare const deleteTeamStatus402Schema: z.ZodUnknown;
15146
15969
  declare const deleteTeamStatus403Schema: z.ZodUnknown;
15147
15970
  declare const deleteTeamStatus409Schema: z.ZodUnknown;
15148
15971
  declare const deleteTeamStatus410Schema: z.ZodUnknown;
15972
+ declare const deleteTeamStatus503Schema: z.ZodUnknown;
15149
15973
  declare const deleteTeamResponseSchema: z.ZodUnknown;
15150
- declare const deleteTeamErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15974
+ declare const deleteTeamErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15151
15975
  declare const deleteTeamInviteCodePathInviteIdSchema: z.ZodString;
15152
15976
  declare const deleteTeamInviteCodePathTeamIdSchema: z.ZodString;
15153
15977
  declare const deleteTeamInviteCodeStatus200Schema: z.ZodUnknown;
@@ -15181,10 +16005,10 @@ declare const deleteMicrofrontendsGroupStatus410Schema: z.ZodUnknown;
15181
16005
  declare const deleteMicrofrontendsGroupStatus500Schema: z.ZodUnknown;
15182
16006
  declare const deleteMicrofrontendsGroupResponseSchema: z.ZodUnknown;
15183
16007
  declare const deleteMicrofrontendsGroupErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15184
- declare const uploadFileHeadercontentLengthSchema: z.ZodOptional<z.ZodNumber>;
15185
- declare const uploadFileHeaderxVercelDigestSchema: z.ZodOptional<z.ZodString>;
15186
- declare const uploadFileHeaderxNowDigestSchema: z.ZodOptional<z.ZodString>;
15187
- declare const uploadFileHeaderxNowSizeSchema: z.ZodOptional<z.ZodNumber>;
16008
+ declare const uploadFileHeaderContentLengthSchema: z.ZodOptional<z.ZodNumber>;
16009
+ declare const uploadFileHeaderXVercelDigestSchema: z.ZodOptional<z.ZodString>;
16010
+ declare const uploadFileHeaderXNowDigestSchema: z.ZodOptional<z.ZodString>;
16011
+ declare const uploadFileHeaderXNowSizeSchema: z.ZodOptional<z.ZodNumber>;
15188
16012
  declare const uploadFileQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
15189
16013
  declare const uploadFileQuerySlugSchema: z.ZodOptional<z.ZodString>;
15190
16014
  declare const uploadFileStatus200Schema: z.ZodUnknown;
@@ -15600,9 +16424,11 @@ declare const aggregatePageviewsStatus400Schema: z.ZodUnknown;
15600
16424
  declare const aggregatePageviewsStatus401Schema: z.ZodUnknown;
15601
16425
  declare const aggregatePageviewsStatus402Schema: z.ZodUnknown;
15602
16426
  declare const aggregatePageviewsStatus403Schema: z.ZodUnknown;
16427
+ declare const aggregatePageviewsStatus404Schema: z.ZodUnknown;
15603
16428
  declare const aggregatePageviewsStatus410Schema: z.ZodUnknown;
16429
+ declare const aggregatePageviewsStatus503Schema: z.ZodUnknown;
15604
16430
  declare const aggregatePageviewsResponseSchema: z.ZodUnknown;
15605
- declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16431
+ declare const aggregatePageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15606
16432
  declare const aggregateEventsQueryProjectIdSchema: z.ZodString;
15607
16433
  declare const aggregateEventsQueryBySchema: z.ZodArray<z.ZodString>;
15608
16434
  declare const aggregateEventsQuerySinceSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
@@ -15616,9 +16442,11 @@ declare const aggregateEventsStatus400Schema: z.ZodUnknown;
15616
16442
  declare const aggregateEventsStatus401Schema: z.ZodUnknown;
15617
16443
  declare const aggregateEventsStatus402Schema: z.ZodUnknown;
15618
16444
  declare const aggregateEventsStatus403Schema: z.ZodUnknown;
16445
+ declare const aggregateEventsStatus404Schema: z.ZodUnknown;
15619
16446
  declare const aggregateEventsStatus410Schema: z.ZodUnknown;
16447
+ declare const aggregateEventsStatus503Schema: z.ZodUnknown;
15620
16448
  declare const aggregateEventsResponseSchema: z.ZodUnknown;
15621
- declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16449
+ declare const aggregateEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15622
16450
  declare const countPageviewsQueryProjectIdSchema: z.ZodString;
15623
16451
  declare const countPageviewsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
15624
16452
  declare const countPageviewsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
@@ -15630,9 +16458,11 @@ declare const countPageviewsStatus400Schema: z.ZodUnknown;
15630
16458
  declare const countPageviewsStatus401Schema: z.ZodUnknown;
15631
16459
  declare const countPageviewsStatus402Schema: z.ZodUnknown;
15632
16460
  declare const countPageviewsStatus403Schema: z.ZodUnknown;
16461
+ declare const countPageviewsStatus404Schema: z.ZodUnknown;
15633
16462
  declare const countPageviewsStatus410Schema: z.ZodUnknown;
16463
+ declare const countPageviewsStatus503Schema: z.ZodUnknown;
15634
16464
  declare const countPageviewsResponseSchema: z.ZodUnknown;
15635
- declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16465
+ declare const countPageviewsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15636
16466
  declare const countEventsQueryProjectIdSchema: z.ZodString;
15637
16467
  declare const countEventsQuerySinceSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
15638
16468
  declare const countEventsQueryUntilSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
@@ -15644,9 +16474,11 @@ declare const countEventsStatus400Schema: z.ZodUnknown;
15644
16474
  declare const countEventsStatus401Schema: z.ZodUnknown;
15645
16475
  declare const countEventsStatus402Schema: z.ZodUnknown;
15646
16476
  declare const countEventsStatus403Schema: z.ZodUnknown;
16477
+ declare const countEventsStatus404Schema: z.ZodUnknown;
15647
16478
  declare const countEventsStatus410Schema: z.ZodUnknown;
16479
+ declare const countEventsStatus503Schema: z.ZodUnknown;
15648
16480
  declare const countEventsResponseSchema: z.ZodUnknown;
15649
- declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
16481
+ declare const countEventsErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15650
16482
  declare const createWebhookQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
15651
16483
  declare const createWebhookQuerySlugSchema: z.ZodOptional<z.ZodString>;
15652
16484
  declare const createWebhookStatus200Schema: z.ZodUnknown;
@@ -15881,5 +16713,5 @@ declare const deleteDeploymentStatus410Schema: z.ZodUnknown;
15881
16713
  declare const deleteDeploymentResponseSchema: z.ZodUnknown;
15882
16714
  declare const deleteDeploymentErrorSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
15883
16715
 
15884
- 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, 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, 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, listSharedEnvVariableQueryexcludeIdsSchema, listSharedEnvVariableQueryexcludeProjectIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsErrorSchema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsErrorSchema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2ErrorSchema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsErrorSchema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainErrorSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainErrorSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsErrorSchema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaErrorSchema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamErrorSchema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassErrorSchema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectErrorSchema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesErrorSchema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, propertyKeySchema, putFirewallConfigErrorSchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupErrorSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectErrorSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkErrorSchema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readSessionFileErrorSchema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsErrorSchema, recordEventsHeaderxArtifactClientCiSchema, recordEventsHeaderxArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpErrorSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertErrorSchema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentErrorSchema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainErrorSchema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvErrorSchema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberErrorSchema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordErrorSchema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionErrorSchema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberErrorSchema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainErrorSchema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceDomainsByDomainRecordsErrorSchema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamErrorSchema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteErrorSchema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromoteErrorSchema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestPromoteStatus422Schema, requestRollbackErrorSchema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckErrorSchema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupErrorSchema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsErrorSchema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, revokeInstallationCredentialErrorSchema, revokeInstallationCredentialPathIntegrationConfigurationIdSchema, revokeInstallationCredentialResponseSchema, revokeInstallationCredentialStatus200Schema, revokeInstallationCredentialStatus400Schema, revokeInstallationCredentialStatus401Schema, revokeInstallationCredentialStatus403Schema, revokeInstallationCredentialStatus404Schema, revokeInstallationCredentialStatus409Schema, revokeInstallationCredentialStatus410Schema, revokeKmsSigningKeyErrorSchema, revokeKmsSigningKeyPathIssuerIdSchema, revokeKmsSigningKeyPathKeyIdSchema, revokeKmsSigningKeyQuerySlugSchema, revokeKmsSigningKeyQueryTeamIdSchema, revokeKmsSigningKeyResponseSchema, revokeKmsSigningKeyStatus200Schema, revokeKmsSigningKeyStatus400Schema, revokeKmsSigningKeyStatus401Schema, revokeKmsSigningKeyStatus403Schema, revokeKmsSigningKeyStatus404Schema, revokeKmsSigningKeyStatus409Schema, revokeKmsSigningKeyStatus410Schema, rotateInstallationCredentialErrorSchema, rotateInstallationCredentialPathIntegrationConfigurationIdSchema, rotateInstallationCredentialResponseSchema, rotateInstallationCredentialStatus200Schema, rotateInstallationCredentialStatus400Schema, rotateInstallationCredentialStatus401Schema, rotateInstallationCredentialStatus403Schema, rotateInstallationCredentialStatus404Schema, rotateInstallationCredentialStatus409Schema, rotateInstallationCredentialStatus410Schema, runSessionCommandErrorSchema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoErrorSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, signKmsMessageErrorSchema, signKmsMessagePathIssuerIdSchema, signKmsMessageResponseSchema, signKmsMessageStatus200Schema, signKmsMessageStatus400Schema, signKmsMessageStatus401Schema, signKmsMessageStatus403Schema, signKmsMessageStatus404Schema, signKmsMessageStatus429Schema, signKmsTokenErrorSchema, signKmsTokenPathIssuerIdSchema, signKmsTokenResponseSchema, signKmsTokenStatus200Schema, signKmsTokenStatus400Schema, signKmsTokenStatus401Schema, signKmsTokenStatus403Schema, signKmsTokenStatus404Schema, signKmsTokenStatus429Schema, snapshotSchema, stageRedirectsErrorSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesErrorSchema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleaseErrorSchema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusErrorSchema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionErrorSchema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataErrorSchema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoiceErrorSchema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesErrorSchema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainErrorSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainErrorSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariableErrorSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectErrorSchema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupErrorSchema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectErrorSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleErrorSchema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigErrorSchema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeErrorSchema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckErrorSchema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateCustomEnvironmentErrorSchema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunErrorSchema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewErrorSchema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversErrorSchema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainErrorSchema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigErrorSchema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigErrorSchema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagErrorSchema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentErrorSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsErrorSchema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationErrorSchema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionErrorSchema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoiceErrorSchema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateKmsIssuerErrorSchema, updateKmsIssuerPathIssuerIdSchema, updateKmsIssuerPolicyErrorSchema, updateKmsIssuerPolicyPathIssuerIdSchema, updateKmsIssuerPolicyPathKindSchema, updateKmsIssuerPolicyPathPolicyKeySchema, updateKmsIssuerPolicyQuerySlugSchema, updateKmsIssuerPolicyQueryTeamIdSchema, updateKmsIssuerPolicyResponseSchema, updateKmsIssuerPolicyStatus200Schema, updateKmsIssuerPolicyStatus400Schema, updateKmsIssuerPolicyStatus401Schema, updateKmsIssuerPolicyStatus403Schema, updateKmsIssuerPolicyStatus404Schema, updateKmsIssuerPolicyStatus410Schema, updateKmsIssuerQuerySlugSchema, updateKmsIssuerQueryTeamIdSchema, updateKmsIssuerResponseSchema, updateKmsIssuerStatus200Schema, updateKmsIssuerStatus400Schema, updateKmsIssuerStatus401Schema, updateKmsIssuerStatus403Schema, updateKmsIssuerStatus404Schema, updateKmsIssuerStatus410Schema, updateMicrofrontendsErrorSchema, updateMicrofrontendsGroupErrorSchema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkErrorSchema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectErrorSchema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updateProjectCheckErrorSchema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainErrorSchema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectErrorSchema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassErrorSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordErrorSchema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourceErrorSchema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdErrorSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsErrorSchema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigErrorSchema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsErrorSchema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxErrorSchema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyErrorSchema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableErrorSchema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsErrorSchema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberErrorSchema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionErrorSchema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactErrorSchema, uploadArtifactHeadercontentLengthSchema, uploadArtifactHeaderxArtifactClientCiSchema, uploadArtifactHeaderxArtifactClientInteractiveSchema, uploadArtifactHeaderxArtifactDirtyHashSchema, uploadArtifactHeaderxArtifactDurationSchema, uploadArtifactHeaderxArtifactShaSchema, uploadArtifactHeaderxArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertErrorSchema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileErrorSchema, uploadFileHeadercontentLengthSchema, uploadFileHeaderxNowDigestSchema, uploadFileHeaderxNowSizeSchema, uploadFileHeaderxVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarErrorSchema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesErrorSchema, writeSessionFilesHeaderxCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
16716
+ export { aCLActionSchema, aPIKeyQuotaSchema, aPIKeySchema, acceptProjectTransferRequestErrorSchema, acceptProjectTransferRequestPathCodeSchema, acceptProjectTransferRequestQuerySlugSchema, acceptProjectTransferRequestQueryTeamIdSchema, acceptProjectTransferRequestResponseSchema, acceptProjectTransferRequestStatus202Schema, acceptProjectTransferRequestStatus400Schema, acceptProjectTransferRequestStatus401Schema, acceptProjectTransferRequestStatus403Schema, acceptProjectTransferRequestStatus404Schema, acceptProjectTransferRequestStatus410Schema, acceptProjectTransferRequestStatus422Schema, activateKmsSigningKeyErrorSchema, activateKmsSigningKeyPathIssuerIdSchema, activateKmsSigningKeyPathKeyIdSchema, activateKmsSigningKeyQuerySlugSchema, activateKmsSigningKeyQueryTeamIdSchema, activateKmsSigningKeyResponseSchema, activateKmsSigningKeyStatus200Schema, activateKmsSigningKeyStatus400Schema, activateKmsSigningKeyStatus401Schema, activateKmsSigningKeyStatus403Schema, activateKmsSigningKeyStatus404Schema, activateKmsSigningKeyStatus409Schema, activateKmsSigningKeyStatus410Schema, addBypassIpErrorSchema, addBypassIpQueryProjectIdSchema, addBypassIpQuerySlugSchema, addBypassIpQueryTeamIdSchema, addBypassIpResponseSchema, addBypassIpStatus200Schema, addBypassIpStatus400Schema, addBypassIpStatus401Schema, addBypassIpStatus402Schema, addBypassIpStatus403Schema, addBypassIpStatus404Schema, addBypassIpStatus410Schema, addBypassIpStatus500Schema, addProjectDomainErrorSchema, addProjectDomainPathIdOrNameSchema, addProjectDomainQuerySlugSchema, addProjectDomainQueryTeamIdSchema, addProjectDomainResponseSchema, addProjectDomainStatus200Schema, addProjectDomainStatus400Schema, addProjectDomainStatus401Schema, addProjectDomainStatus402Schema, addProjectDomainStatus403Schema, addProjectDomainStatus409Schema, addProjectDomainStatus410Schema, addProjectMemberErrorSchema, addProjectMemberPathIdOrNameSchema, addProjectMemberQuerySlugSchema, addProjectMemberQueryTeamIdSchema, addProjectMemberResponseSchema, addProjectMemberStatus200Schema, addProjectMemberStatus400Schema, addProjectMemberStatus401Schema, addProjectMemberStatus403Schema, addProjectMemberStatus410Schema, addProjectMemberStatus500Schema, addRepositoryPermissionErrorSchema, addRepositoryPermissionPathIdOrNameSchema, addRepositoryPermissionQueryProjectIdSchema, addRepositoryPermissionQuerySlugSchema, addRepositoryPermissionQueryTeamIdSchema, addRepositoryPermissionResponseSchema, addRepositoryPermissionStatus200Schema, addRepositoryPermissionStatus400Schema, addRepositoryPermissionStatus401Schema, addRepositoryPermissionStatus403Schema, addRepositoryPermissionStatus404Schema, addRepositoryPermissionStatus410Schema, addRouteErrorSchema, addRoutePathProjectIdSchema, addRouteQuerySlugSchema, addRouteQueryTeamIdSchema, addRouteResponseSchema, addRouteStatus200Schema, addRouteStatus400Schema, addRouteStatus401Schema, addRouteStatus403Schema, addRouteStatus409Schema, addRouteStatus410Schema, addRouteStatus500Schema, additionalContactInfoRequiredSchema, aggregateEventsErrorSchema, aggregateEventsQueryBySchema, aggregateEventsQueryFilterSchema, aggregateEventsQueryLimitSchema, aggregateEventsQueryProjectIdSchema, aggregateEventsQuerySinceSchema, aggregateEventsQuerySlugSchema, aggregateEventsQueryTeamIdSchema, aggregateEventsQueryUntilSchema, aggregateEventsResponseSchema, aggregateEventsStatus200Schema, aggregateEventsStatus400Schema, aggregateEventsStatus401Schema, aggregateEventsStatus402Schema, aggregateEventsStatus403Schema, aggregateEventsStatus404Schema, aggregateEventsStatus410Schema, aggregateEventsStatus503Schema, aggregatePageviewsErrorSchema, aggregatePageviewsQueryBySchema, aggregatePageviewsQueryFilterSchema, aggregatePageviewsQueryLimitSchema, aggregatePageviewsQueryProjectIdSchema, aggregatePageviewsQuerySinceSchema, aggregatePageviewsQuerySlugSchema, aggregatePageviewsQueryTeamIdSchema, aggregatePageviewsQueryUntilSchema, aggregatePageviewsResponseSchema, aggregatePageviewsStatus200Schema, aggregatePageviewsStatus400Schema, aggregatePageviewsStatus401Schema, aggregatePageviewsStatus402Schema, aggregatePageviewsStatus403Schema, aggregatePageviewsStatus404Schema, aggregatePageviewsStatus410Schema, aggregatePageviewsStatus503Schema, aiGatewayProviderOptionBagSchema, aiGatewayRuleListSchema, aiGatewayRuleSchema, aiGatewayVirtualModelConfigListSchema, aiGatewayVirtualModelConfigSchema, approveRollingReleaseStageErrorSchema, approveRollingReleaseStagePathIdOrNameSchema, approveRollingReleaseStageQuerySlugSchema, approveRollingReleaseStageQueryTeamIdSchema, approveRollingReleaseStageResponseSchema, approveRollingReleaseStageStatus200Schema, approveRollingReleaseStageStatus400Schema, approveRollingReleaseStageStatus401Schema, approveRollingReleaseStageStatus403Schema, approveRollingReleaseStageStatus404Schema, approveRollingReleaseStageStatus410Schema, approveRollingReleaseStageStatus500Schema, artifactQueryErrorSchema, artifactQueryQuerySlugSchema, artifactQueryQueryTeamIdSchema, artifactQueryResponseSchema, artifactQueryStatus200Schema, artifactQueryStatus400Schema, artifactQueryStatus401Schema, artifactQueryStatus402Schema, artifactQueryStatus403Schema, artifactQueryStatus410Schema, assignAliasErrorSchema, assignAliasPathIdSchema, assignAliasQuerySlugSchema, assignAliasQueryTeamIdSchema, assignAliasResponseSchema, assignAliasStatus200Schema, assignAliasStatus400Schema, assignAliasStatus401Schema, assignAliasStatus402Schema, assignAliasStatus403Schema, assignAliasStatus404Schema, assignAliasStatus409Schema, assignAliasStatus410Schema, authTokenSchema, authUserLimitedSchema, authUserSchema, badRequestSchema, batchRemoveProjectEnvErrorSchema, batchRemoveProjectEnvPathIdOrNameSchema, batchRemoveProjectEnvQuerySlugSchema, batchRemoveProjectEnvQueryTeamIdSchema, batchRemoveProjectEnvResponseSchema, batchRemoveProjectEnvStatus200Schema, batchRemoveProjectEnvStatus400Schema, batchRemoveProjectEnvStatus401Schema, batchRemoveProjectEnvStatus403Schema, batchRemoveProjectEnvStatus404Schema, batchRemoveProjectEnvStatus409Schema, batchRemoveProjectEnvStatus410Schema, boughtTooRecentlySchema, buyCreditsErrorSchema, buyCreditsQuerySlugSchema, buyCreditsQuerySourceSchema, buyCreditsQueryTeamIdSchema, buyCreditsResponseSchema, buyCreditsStatus200Schema, buyCreditsStatus400Schema, buyCreditsStatus401Schema, buyCreditsStatus402Schema, buyCreditsStatus403Schema, buyCreditsStatus404Schema, buyCreditsStatus409Schema, buyCreditsStatus410Schema, buyCreditsStatus500Schema, buyDomainsErrorSchema, buyDomainsQueryTeamIdSchema, buyDomainsResponseSchema, buyDomainsStatus200Schema, buyDomainsStatus400Schema, buyDomainsStatus401Schema, buyDomainsStatus403Schema, buyDomainsStatus429Schema, buyDomainsStatus500Schema, buySingleDomainErrorSchema, buySingleDomainPathDomainSchema, buySingleDomainQueryTeamIdSchema, buySingleDomainResponseSchema, buySingleDomainStatus200Schema, buySingleDomainStatus400Schema, buySingleDomainStatus401Schema, buySingleDomainStatus403Schema, buySingleDomainStatus429Schema, buySingleDomainStatus500Schema, cancelDeploymentErrorSchema, cancelDeploymentPathIdSchema, cancelDeploymentQuerySlugSchema, cancelDeploymentQueryTeamIdSchema, cancelDeploymentResponseSchema, cancelDeploymentStatus200Schema, cancelDeploymentStatus400Schema, cancelDeploymentStatus401Schema, cancelDeploymentStatus403Schema, cancelDeploymentStatus404Schema, cancelDeploymentStatus410Schema, claimDomainOwnershipErrorSchema, claimDomainOwnershipPathDomainSchema, claimDomainOwnershipQuerySlugSchema, claimDomainOwnershipQueryTeamIdSchema, claimDomainOwnershipResponseSchema, claimDomainOwnershipStatus200Schema, claimDomainOwnershipStatus400Schema, claimDomainOwnershipStatus401Schema, claimDomainOwnershipStatus403Schema, claimDomainOwnershipStatus404Schema, claimDomainOwnershipStatus410Schema, clearRepositoryPermissionsErrorSchema, clearRepositoryPermissionsPathIdOrNameSchema, clearRepositoryPermissionsQueryProjectIdSchema, clearRepositoryPermissionsQuerySlugSchema, clearRepositoryPermissionsQueryTeamIdSchema, clearRepositoryPermissionsResponseSchema, clearRepositoryPermissionsStatus204Schema, clearRepositoryPermissionsStatus400Schema, clearRepositoryPermissionsStatus401Schema, clearRepositoryPermissionsStatus403Schema, clearRepositoryPermissionsStatus404Schema, clearRepositoryPermissionsStatus410Schema, completeRollingReleaseErrorSchema, completeRollingReleasePathIdOrNameSchema, completeRollingReleaseQuerySlugSchema, completeRollingReleaseQueryTeamIdSchema, completeRollingReleaseResponseSchema, completeRollingReleaseStatus200Schema, completeRollingReleaseStatus400Schema, completeRollingReleaseStatus401Schema, completeRollingReleaseStatus403Schema, completeRollingReleaseStatus404Schema, completeRollingReleaseStatus410Schema, connectConnectorCreateDataSchema, connectConnectorCreateResultSchema, connectConnectorListSchema, connectConnectorProjectConnectionListSchema, connectConnectorSchema, connectConnectorUpdateDataSchema, connectConnectorUpdateResultSchema, connectCreateConnectorRequestSchema, connectEnvironmentSchema, connectErrorSchema, connectIntegrationResourceToProjectErrorSchema, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema, connectIntegrationResourceToProjectPathResourceIdSchema, connectIntegrationResourceToProjectQuerySlugSchema, connectIntegrationResourceToProjectQueryTeamIdSchema, connectIntegrationResourceToProjectResponseSchema, connectIntegrationResourceToProjectStatus201Schema, connectIntegrationResourceToProjectStatus400Schema, connectIntegrationResourceToProjectStatus401Schema, connectIntegrationResourceToProjectStatus403Schema, connectIntegrationResourceToProjectStatus404Schema, connectIntegrationResourceToProjectStatus410Schema, connectPaginationSchema, connectProjectConnectionSchema, connectProjectConnectorConnectionListSchema, connectReconsentSchema, connectReplaceTriggerDestinationsRequestSchema, connectServiceSyncErrorSchema, connectServiceSyncSchema, connectTriggerConfigurationSchema, connectTriggerDestinationInputSchema, connectTriggerDestinationSchema, connectUpdateConnectorRequestSchema, connectUpsertProjectConnectionRequestSchema, contactPendingVerificationSchema, contactVerifiedSchema, countEventsErrorSchema, countEventsQueryFilterSchema, countEventsQueryProjectIdSchema, countEventsQuerySinceSchema, countEventsQuerySlugSchema, countEventsQueryTeamIdSchema, countEventsQueryUntilSchema, countEventsResponseSchema, countEventsStatus200Schema, countEventsStatus400Schema, countEventsStatus401Schema, countEventsStatus402Schema, countEventsStatus403Schema, countEventsStatus404Schema, countEventsStatus410Schema, countEventsStatus503Schema, countPageviewsErrorSchema, countPageviewsQueryFilterSchema, countPageviewsQueryProjectIdSchema, countPageviewsQuerySinceSchema, countPageviewsQuerySlugSchema, countPageviewsQueryTeamIdSchema, countPageviewsQueryUntilSchema, countPageviewsResponseSchema, countPageviewsStatus200Schema, countPageviewsStatus400Schema, countPageviewsStatus401Schema, countPageviewsStatus402Schema, countPageviewsStatus403Schema, countPageviewsStatus404Schema, countPageviewsStatus410Schema, countPageviewsStatus503Schema, countryCodeSchema, createAccessGroupErrorSchema, createAccessGroupProjectErrorSchema, createAccessGroupProjectPathAccessGroupIdOrNameSchema, createAccessGroupProjectQuerySlugSchema, createAccessGroupProjectQueryTeamIdSchema, createAccessGroupProjectResponseSchema, createAccessGroupProjectStatus200Schema, createAccessGroupProjectStatus400Schema, createAccessGroupProjectStatus401Schema, createAccessGroupProjectStatus403Schema, createAccessGroupProjectStatus410Schema, createAccessGroupQuerySlugSchema, createAccessGroupQueryTeamIdSchema, createAccessGroupResponseSchema, createAccessGroupStatus200Schema, createAccessGroupStatus400Schema, createAccessGroupStatus401Schema, createAccessGroupStatus403Schema, createAccessGroupStatus410Schema, createAiGatewayRuleErrorSchema, createAiGatewayRuleQuerySlugSchema, createAiGatewayRuleQueryTeamIdSchema, createAiGatewayRuleResponseSchema, createAiGatewayRuleStatus201Schema, createAiGatewayRuleStatus400Schema, createAiGatewayRuleStatus401Schema, createAiGatewayRuleStatus403Schema, createAiGatewayRuleStatus409Schema, createAiGatewayRuleStatus410Schema, createAiGatewayRuleStatus500Schema, createAiGatewayVirtualModelConfigErrorSchema, createAiGatewayVirtualModelConfigQuerySlugSchema, createAiGatewayVirtualModelConfigQueryTeamIdSchema, createAiGatewayVirtualModelConfigResponseSchema, createAiGatewayVirtualModelConfigStatus201Schema, createAiGatewayVirtualModelConfigStatus400Schema, createAiGatewayVirtualModelConfigStatus401Schema, createAiGatewayVirtualModelConfigStatus403Schema, createAiGatewayVirtualModelConfigStatus409Schema, createAiGatewayVirtualModelConfigStatus410Schema, createAiGatewayVirtualModelConfigStatus429Schema, createAiGatewayVirtualModelConfigStatus500Schema, createApiKeysErrorSchema, createApiKeysResponseSchema, createApiKeysStatus200Schema, createApiKeysStatus400Schema, createApiKeysStatus401Schema, createApiKeysStatus403Schema, createApiKeysStatus409Schema, createApiKeysStatus410Schema, createApiKeysStatus429Schema, createApiKeysStatus500Schema, createAuthTokenErrorSchema, createAuthTokenQuerySlugSchema, createAuthTokenQueryTeamIdSchema, createAuthTokenResponseSchema, createAuthTokenStatus200Schema, createAuthTokenStatus400Schema, createAuthTokenStatus401Schema, createAuthTokenStatus403Schema, createAuthTokenStatus404Schema, createAuthTokenStatus410Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsErrorSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema, createCheckErrorSchema, createCheckPathDeploymentIdSchema, createCheckQuerySlugSchema, createCheckQueryTeamIdSchema, createCheckResponseSchema, createCheckStatus200Schema, createCheckStatus400Schema, createCheckStatus401Schema, createCheckStatus403Schema, createCheckStatus404Schema, createCheckStatus410Schema, createConfigurableLogDrainErrorSchema, createConfigurableLogDrainQuerySlugSchema, createConfigurableLogDrainQueryTeamIdSchema, createConfigurableLogDrainResponseSchema, createConfigurableLogDrainStatus200Schema, createConfigurableLogDrainStatus400Schema, createConfigurableLogDrainStatus401Schema, createConfigurableLogDrainStatus403Schema, createConfigurableLogDrainStatus410Schema, createConnectorAuthorizationRequestErrorSchema, createConnectorAuthorizationRequestPathConnectorSchema, createConnectorAuthorizationRequestResponseSchema, createConnectorAuthorizationRequestStatus200Schema, createConnectorAuthorizationRequestStatus400Schema, createConnectorAuthorizationRequestStatus401Schema, createConnectorAuthorizationRequestStatus403Schema, createConnectorAuthorizationRequestStatus404Schema, createConnectorAuthorizationRequestStatus410Schema, createConnectorErrorSchema, createConnectorQuerySlugSchema, createConnectorQueryTeamIdSchema, createConnectorResponseSchema, createConnectorStatus201Schema, createConnectorStatus400Schema, createConnectorStatus401Schema, createConnectorStatus403Schema, createConnectorStatus404Schema, createConnectorStatus409Schema, createConnectorStatus410Schema, createConnectorStatus422Schema, createConnectorStatus500Schema, createConnectorStatus502Schema, createCustomEnvironmentErrorSchema, createCustomEnvironmentPathIdOrNameSchema, createCustomEnvironmentQuerySlugSchema, createCustomEnvironmentQueryTeamIdSchema, createCustomEnvironmentResponseSchema, createCustomEnvironmentStatus201Schema, createCustomEnvironmentStatus400Schema, createCustomEnvironmentStatus401Schema, createCustomEnvironmentStatus402Schema, createCustomEnvironmentStatus403Schema, createCustomEnvironmentStatus410Schema, createCustomEnvironmentStatus500Schema, createDeploymentCheckRunErrorSchema, createDeploymentCheckRunPathDeploymentIdSchema, createDeploymentCheckRunQuerySlugSchema, createDeploymentCheckRunQueryTeamIdSchema, createDeploymentCheckRunResponseSchema, createDeploymentCheckRunStatus200Schema, createDeploymentCheckRunStatus400Schema, createDeploymentCheckRunStatus401Schema, createDeploymentCheckRunStatus403Schema, createDeploymentCheckRunStatus404Schema, createDeploymentCheckRunStatus410Schema, createDeploymentCheckRunStatus500Schema, createDeploymentErrorSchema, createDeploymentQueryForceNewSchema, createDeploymentQuerySkipAutoDetectionConfirmationSchema, createDeploymentQuerySlugSchema, createDeploymentQueryTeamIdSchema, createDeploymentResponseSchema, createDeploymentStatus200Schema, createDeploymentStatus400Schema, createDeploymentStatus401Schema, createDeploymentStatus402Schema, createDeploymentStatus403Schema, createDeploymentStatus404Schema, createDeploymentStatus409Schema, createDeploymentStatus410Schema, createDeploymentStatus426Schema, createDeploymentStatus429Schema, createDeploymentStatus500Schema, createDeploymentStatus503Schema, createDrainErrorSchema, createDrainQuerySlugSchema, createDrainQueryTeamIdSchema, createDrainResponseSchema, createDrainStatus200Schema, createDrainStatus400Schema, createDrainStatus401Schema, createDrainStatus402Schema, createDrainStatus403Schema, createDrainStatus410Schema, createEdgeConfigErrorSchema, createEdgeConfigQuerySlugSchema, createEdgeConfigQueryTeamIdSchema, createEdgeConfigResponseSchema, createEdgeConfigStatus201Schema, createEdgeConfigStatus400Schema, createEdgeConfigStatus401Schema, createEdgeConfigStatus402Schema, createEdgeConfigStatus403Schema, createEdgeConfigStatus410Schema, createEdgeConfigTokenErrorSchema, createEdgeConfigTokenPathEdgeConfigIdSchema, createEdgeConfigTokenQuerySlugSchema, createEdgeConfigTokenQueryTeamIdSchema, createEdgeConfigTokenResponseSchema, createEdgeConfigTokenStatus201Schema, createEdgeConfigTokenStatus400Schema, createEdgeConfigTokenStatus401Schema, createEdgeConfigTokenStatus402Schema, createEdgeConfigTokenStatus403Schema, createEdgeConfigTokenStatus404Schema, createEdgeConfigTokenStatus409Schema, createEdgeConfigTokenStatus410Schema, createEventErrorSchema, createEventPathIntegrationConfigurationIdSchema, createEventResponseSchema, createEventStatus201Schema, createEventStatus400Schema, createEventStatus401Schema, createEventStatus403Schema, createEventStatus404Schema, createEventStatus410Schema, createFlagErrorSchema, createFlagPathProjectIdOrNameSchema, createFlagQuerySlugSchema, createFlagQueryTeamIdSchema, createFlagResponseSchema, createFlagSegmentErrorSchema, createFlagSegmentPathProjectIdOrNameSchema, createFlagSegmentQuerySlugSchema, createFlagSegmentQueryTeamIdSchema, createFlagSegmentResponseSchema, createFlagSegmentStatus201Schema, createFlagSegmentStatus400Schema, createFlagSegmentStatus401Schema, createFlagSegmentStatus402Schema, createFlagSegmentStatus403Schema, createFlagSegmentStatus404Schema, createFlagSegmentStatus409Schema, createFlagSegmentStatus410Schema, createFlagStatus201Schema, createFlagStatus400Schema, createFlagStatus401Schema, createFlagStatus402Schema, createFlagStatus403Schema, createFlagStatus404Schema, createFlagStatus409Schema, createFlagStatus410Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsErrorSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema, createIntegrationStoreDirectErrorSchema, createIntegrationStoreDirectQuerySlugSchema, createIntegrationStoreDirectQueryTeamIdSchema, createIntegrationStoreDirectResponseSchema, createIntegrationStoreDirectStatus200Schema, createIntegrationStoreDirectStatus400Schema, createIntegrationStoreDirectStatus401Schema, createIntegrationStoreDirectStatus402Schema, createIntegrationStoreDirectStatus403Schema, createIntegrationStoreDirectStatus404Schema, createIntegrationStoreDirectStatus409Schema, createIntegrationStoreDirectStatus410Schema, createIntegrationStoreDirectStatus500Schema, createKmsIssuerErrorSchema, createKmsIssuerPolicyErrorSchema, createKmsIssuerPolicyPathIssuerIdSchema, createKmsIssuerPolicyQuerySlugSchema, createKmsIssuerPolicyQueryTeamIdSchema, createKmsIssuerPolicyResponseSchema, createKmsIssuerPolicyStatus201Schema, createKmsIssuerPolicyStatus400Schema, createKmsIssuerPolicyStatus401Schema, createKmsIssuerPolicyStatus403Schema, createKmsIssuerPolicyStatus404Schema, createKmsIssuerPolicyStatus410Schema, createKmsIssuerQuerySlugSchema, createKmsIssuerQueryTeamIdSchema, createKmsIssuerResponseSchema, createKmsIssuerStatus201Schema, createKmsIssuerStatus400Schema, createKmsIssuerStatus401Schema, createKmsIssuerStatus403Schema, createKmsIssuerStatus404Schema, createKmsIssuerStatus410Schema, createKmsSigningKeyErrorSchema, createKmsSigningKeyPathIssuerIdSchema, createKmsSigningKeyQuerySlugSchema, createKmsSigningKeyQueryTeamIdSchema, createKmsSigningKeyResponseSchema, createKmsSigningKeyStatus200Schema, createKmsSigningKeyStatus400Schema, createKmsSigningKeyStatus401Schema, createKmsSigningKeyStatus403Schema, createKmsSigningKeyStatus404Schema, createKmsSigningKeyStatus409Schema, createKmsSigningKeyStatus410Schema, createLogDrainErrorSchema, createLogDrainQuerySlugSchema, createLogDrainQueryTeamIdSchema, createLogDrainResponseSchema, createLogDrainStatus200Schema, createLogDrainStatus400Schema, createLogDrainStatus401Schema, createLogDrainStatus403Schema, createLogDrainStatus410Schema, createMicrofrontendsGroupWithApplicationsErrorSchema, createMicrofrontendsGroupWithApplicationsQuerySlugSchema, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema, createMicrofrontendsGroupWithApplicationsResponseSchema, createMicrofrontendsGroupWithApplicationsStatus200Schema, createMicrofrontendsGroupWithApplicationsStatus400Schema, createMicrofrontendsGroupWithApplicationsStatus401Schema, createMicrofrontendsGroupWithApplicationsStatus403Schema, createMicrofrontendsGroupWithApplicationsStatus410Schema, createMicrofrontendsGroupWithApplicationsStatus500Schema, createNetworkErrorSchema, createNetworkQuerySlugSchema, createNetworkQueryTeamIdSchema, createNetworkResponseSchema, createNetworkStatus201Schema, createNetworkStatus400Schema, createNetworkStatus401Schema, createNetworkStatus402Schema, createNetworkStatus403Schema, createNetworkStatus409Schema, createNetworkStatus410Schema, createObservabilityQueryErrorSchema, createObservabilityQueryResponseSchema, createObservabilityQueryStatus200Schema, createObservabilityQueryStatus400Schema, createObservabilityQueryStatus401Schema, createObservabilityQueryStatus402Schema, createObservabilityQueryStatus403Schema, createObservabilityQueryStatus408Schema, createObservabilityQueryStatus410Schema, createObservabilityQueryStatus413Schema, createObservabilityQueryStatus422Schema, createObservabilityQueryStatus500Schema, createObservabilityQueryStatus503Schema, createOrTransferDomainErrorSchema, createOrTransferDomainQuerySlugSchema, createOrTransferDomainQueryTeamIdSchema, createOrTransferDomainResponseSchema, createOrTransferDomainStatus200Schema, createOrTransferDomainStatus400Schema, createOrTransferDomainStatus401Schema, createOrTransferDomainStatus402Schema, createOrTransferDomainStatus403Schema, createOrTransferDomainStatus404Schema, createOrTransferDomainStatus409Schema, createOrTransferDomainStatus410Schema, createPrivateLinkEndpointErrorSchema, createPrivateLinkEndpointQuerySlugSchema, createPrivateLinkEndpointQueryTeamIdSchema, createPrivateLinkEndpointResponseSchema, createPrivateLinkEndpointStatus201Schema, createPrivateLinkEndpointStatus400Schema, createPrivateLinkEndpointStatus401Schema, createPrivateLinkEndpointStatus403Schema, createPrivateLinkEndpointStatus404Schema, createPrivateLinkEndpointStatus409Schema, createPrivateLinkEndpointStatus410Schema, createProjectCheckErrorSchema, createProjectCheckPathProjectIdOrNameSchema, createProjectCheckQuerySlugSchema, createProjectCheckQueryTeamIdSchema, createProjectCheckResponseSchema, createProjectCheckStatus200Schema, createProjectCheckStatus400Schema, createProjectCheckStatus401Schema, createProjectCheckStatus403Schema, createProjectCheckStatus410Schema, createProjectCheckStatus500Schema, createProjectEnvErrorSchema, createProjectEnvPathIdOrNameSchema, createProjectEnvQuerySlugSchema, createProjectEnvQueryTeamIdSchema, createProjectEnvQueryUpsertSchema, createProjectEnvResponseSchema, createProjectEnvStatus201Schema, createProjectEnvStatus400Schema, createProjectEnvStatus401Schema, createProjectEnvStatus402Schema, createProjectEnvStatus403Schema, createProjectEnvStatus404Schema, createProjectEnvStatus409Schema, createProjectEnvStatus410Schema, createProjectEnvStatus429Schema, createProjectEnvStatus500Schema, createProjectErrorSchema, createProjectQuerySlugSchema, createProjectQueryTeamIdSchema, createProjectResponseSchema, createProjectStatus200Schema, createProjectStatus400Schema, createProjectStatus401Schema, createProjectStatus402Schema, createProjectStatus403Schema, createProjectStatus404Schema, createProjectStatus409Schema, createProjectStatus410Schema, createProjectStatus428Schema, createProjectStatus429Schema, createProjectStatus500Schema, createProjectTransferRequestErrorSchema, createProjectTransferRequestPathIdOrNameSchema, createProjectTransferRequestQuerySlugSchema, createProjectTransferRequestQueryTeamIdSchema, createProjectTransferRequestResponseSchema, createProjectTransferRequestStatus200Schema, createProjectTransferRequestStatus400Schema, createProjectTransferRequestStatus401Schema, createProjectTransferRequestStatus403Schema, createProjectTransferRequestStatus409Schema, createProjectTransferRequestStatus410Schema, createRecordErrorSchema, createRecordPathDomainSchema, createRecordQuerySlugSchema, createRecordQueryTeamIdSchema, createRecordResponseSchema, createRecordStatus200Schema, createRecordStatus400Schema, createRecordStatus401Schema, createRecordStatus402Schema, createRecordStatus403Schema, createRecordStatus404Schema, createRecordStatus409Schema, createRecordStatus410Schema, createRepositoryErrorSchema, createRepositoryQuerySlugSchema, createRepositoryQueryTeamIdSchema, createRepositoryResponseSchema, createRepositoryStatus200Schema, createRepositoryStatus400Schema, createRepositoryStatus401Schema, createRepositoryStatus402Schema, createRepositoryStatus403Schema, createRepositoryStatus404Schema, createRepositoryStatus409Schema, createRepositoryStatus410Schema, createSandboxesByNameForkV2ErrorSchema, createSandboxesByNameForkV2PathNameSchema, createSandboxesByNameForkV2QueryProjectIdSchema, createSandboxesByNameForkV2QuerySlugSchema, createSandboxesByNameForkV2QueryTeamIdSchema, createSandboxesByNameForkV2ResponseSchema, createSandboxesByNameForkV2Status200Schema, createSandboxesByNameForkV2Status400Schema, createSandboxesByNameForkV2Status401Schema, createSandboxesByNameForkV2Status402Schema, createSandboxesByNameForkV2Status403Schema, createSandboxesByNameForkV2Status404Schema, createSandboxesByNameForkV2Status409Schema, createSandboxesByNameForkV2Status410Schema, createSandboxesByNameForkV2Status422Schema, createSandboxesByNameForkV2Status429Schema, createSandboxesByNameForkV2Status500Schema, createSandboxesByNameForkV3ErrorSchema, createSandboxesByNameForkV3PathNameSchema, createSandboxesByNameForkV3QueryProjectIdSchema, createSandboxesByNameForkV3QuerySlugSchema, createSandboxesByNameForkV3QueryTeamIdSchema, createSandboxesByNameForkV3ResponseSchema, createSandboxesByNameForkV3Status200Schema, createSandboxesByNameForkV3Status400Schema, createSandboxesByNameForkV3Status401Schema, createSandboxesByNameForkV3Status402Schema, createSandboxesByNameForkV3Status403Schema, createSandboxesByNameForkV3Status404Schema, createSandboxesByNameForkV3Status409Schema, createSandboxesByNameForkV3Status410Schema, createSandboxesByNameForkV3Status422Schema, createSandboxesByNameForkV3Status429Schema, createSandboxesByNameForkV3Status500Schema, createSandboxesSessionsBySessionIdSnapshotV2ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema, createSandboxesSessionsBySessionIdSnapshotV3ErrorSchema, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema, createSandboxesV2ErrorSchema, createSandboxesV2QuerySlugSchema, createSandboxesV2QueryTeamIdSchema, createSandboxesV2ResponseSchema, createSandboxesV2Status200Schema, createSandboxesV2Status400Schema, createSandboxesV2Status401Schema, createSandboxesV2Status402Schema, createSandboxesV2Status403Schema, createSandboxesV2Status404Schema, createSandboxesV2Status409Schema, createSandboxesV2Status410Schema, createSandboxesV2Status422Schema, createSandboxesV2Status429Schema, createSandboxesV2Status500Schema, createSandboxesV3ErrorSchema, createSandboxesV3QuerySlugSchema, createSandboxesV3QueryTeamIdSchema, createSandboxesV3ResponseSchema, createSandboxesV3Status200Schema, createSandboxesV3Status400Schema, createSandboxesV3Status401Schema, createSandboxesV3Status402Schema, createSandboxesV3Status403Schema, createSandboxesV3Status404Schema, createSandboxesV3Status409Schema, createSandboxesV3Status410Schema, createSandboxesV3Status422Schema, createSandboxesV3Status429Schema, createSandboxesV3Status500Schema, createSandboxesV4ErrorSchema, createSandboxesV4QuerySlugSchema, createSandboxesV4QueryTeamIdSchema, createSandboxesV4ResponseSchema, createSandboxesV4Status200Schema, createSandboxesV4Status400Schema, createSandboxesV4Status401Schema, createSandboxesV4Status402Schema, createSandboxesV4Status403Schema, createSandboxesV4Status404Schema, createSandboxesV4Status409Schema, createSandboxesV4Status410Schema, createSandboxesV4Status422Schema, createSandboxesV4Status429Schema, createSandboxesV4Status500Schema, createSdkKeyErrorSchema, createSdkKeyPathProjectIdOrNameSchema, createSdkKeyQuerySlugSchema, createSdkKeyQueryTeamIdSchema, createSdkKeyResponseSchema, createSdkKeyStatus200Schema, createSdkKeyStatus400Schema, createSdkKeyStatus401Schema, createSdkKeyStatus402Schema, createSdkKeyStatus403Schema, createSdkKeyStatus404Schema, createSdkKeyStatus409Schema, createSdkKeyStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateErrorSchema, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema, createSecurityFirewallConfigByConfigVersionActivateResponseSchema, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema, createSessionDirectoryErrorSchema, createSessionDirectoryPathSessionIdSchema, createSessionDirectoryQuerySlugSchema, createSessionDirectoryQueryTeamIdSchema, createSessionDirectoryResponseSchema, createSessionDirectoryStatus200Schema, createSessionDirectoryStatus400Schema, createSessionDirectoryStatus401Schema, createSessionDirectoryStatus403Schema, createSessionDirectoryStatus404Schema, createSessionDirectoryStatus410Schema, createSessionDirectoryStatus422Schema, createSessionDirectoryStatus429Schema, createSessionDirectoryStatus500Schema, createSharedEnvVariableErrorSchema, createSharedEnvVariableQuerySlugSchema, createSharedEnvVariableQueryTeamIdSchema, createSharedEnvVariableResponseSchema, createSharedEnvVariableStatus201Schema, createSharedEnvVariableStatus400Schema, createSharedEnvVariableStatus401Schema, createSharedEnvVariableStatus402Schema, createSharedEnvVariableStatus403Schema, createSharedEnvVariableStatus410Schema, createSpeedInsightsToggleErrorSchema, createSpeedInsightsToggleQueryProjectIdSchema, createSpeedInsightsToggleResponseSchema, createSpeedInsightsToggleStatus200Schema, createSpeedInsightsToggleStatus400Schema, createSpeedInsightsToggleStatus401Schema, createSpeedInsightsToggleStatus402Schema, createSpeedInsightsToggleStatus403Schema, createSpeedInsightsToggleStatus410Schema, createStorageStoresBlobErrorSchema, createStorageStoresBlobResponseSchema, createStorageStoresBlobStatus200Schema, createStorageStoresBlobStatus400Schema, createStorageStoresBlobStatus401Schema, createStorageStoresBlobStatus402Schema, createStorageStoresBlobStatus403Schema, createStorageStoresBlobStatus404Schema, createStorageStoresBlobStatus409Schema, createStorageStoresBlobStatus410Schema, createStorageStoresBlobStatus429Schema, createTeamErrorSchema, createTeamResponseSchema, createTeamStatus200Schema, createTeamStatus400Schema, createTeamStatus401Schema, createTeamStatus403Schema, createTeamStatus404Schema, createTeamStatus409Schema, createTeamStatus410Schema, createTraceSessionErrorSchema, createTraceSessionQuerySlugSchema, createTraceSessionQueryTeamIdSchema, createTraceSessionResponseSchema, createTraceSessionStatus200Schema, createTraceSessionStatus400Schema, createTraceSessionStatus401Schema, createTraceSessionStatus403Schema, createTraceSessionStatus410Schema, createTraceSessionStatus422Schema, createWebInsightsToggleErrorSchema, createWebInsightsToggleQueryProjectIdSchema, createWebInsightsToggleResponseSchema, createWebInsightsToggleStatus200Schema, createWebInsightsToggleStatus400Schema, createWebInsightsToggleStatus401Schema, createWebInsightsToggleStatus403Schema, createWebInsightsToggleStatus410Schema, createWebhookErrorSchema, createWebhookQuerySlugSchema, createWebhookQueryTeamIdSchema, createWebhookResponseSchema, createWebhookStatus200Schema, createWebhookStatus400Schema, createWebhookStatus401Schema, createWebhookStatus403Schema, createWebhookStatus410Schema, dNSSECEnabledSchema, dangerouslyDeleteBySrcImagesErrorSchema, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema, dangerouslyDeleteBySrcImagesQuerySlugSchema, dangerouslyDeleteBySrcImagesQueryTeamIdSchema, dangerouslyDeleteBySrcImagesResponseSchema, dangerouslyDeleteBySrcImagesStatus200Schema, dangerouslyDeleteBySrcImagesStatus400Schema, dangerouslyDeleteBySrcImagesStatus401Schema, dangerouslyDeleteBySrcImagesStatus402Schema, dangerouslyDeleteBySrcImagesStatus403Schema, dangerouslyDeleteBySrcImagesStatus404Schema, dangerouslyDeleteBySrcImagesStatus410Schema, dangerouslyDeleteByTagsErrorSchema, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema, dangerouslyDeleteByTagsQuerySlugSchema, dangerouslyDeleteByTagsQueryTeamIdSchema, dangerouslyDeleteByTagsResponseSchema, dangerouslyDeleteByTagsStatus200Schema, dangerouslyDeleteByTagsStatus400Schema, dangerouslyDeleteByTagsStatus401Schema, dangerouslyDeleteByTagsStatus403Schema, dangerouslyDeleteByTagsStatus404Schema, dangerouslyDeleteByTagsStatus410Schema, dateFromStringSchema, deleteAccessGroupErrorSchema, deleteAccessGroupPathIdOrNameSchema, deleteAccessGroupProjectErrorSchema, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema, deleteAccessGroupProjectPathProjectIdSchema, deleteAccessGroupProjectQuerySlugSchema, deleteAccessGroupProjectQueryTeamIdSchema, deleteAccessGroupProjectResponseSchema, deleteAccessGroupProjectStatus200Schema, deleteAccessGroupProjectStatus400Schema, deleteAccessGroupProjectStatus401Schema, deleteAccessGroupProjectStatus403Schema, deleteAccessGroupProjectStatus410Schema, deleteAccessGroupQuerySlugSchema, deleteAccessGroupQueryTeamIdSchema, deleteAccessGroupResponseSchema, deleteAccessGroupStatus200Schema, deleteAccessGroupStatus400Schema, deleteAccessGroupStatus401Schema, deleteAccessGroupStatus403Schema, deleteAccessGroupStatus410Schema, deleteAiGatewayRuleErrorSchema, deleteAiGatewayRuleQueryRuleIdSchema, deleteAiGatewayRuleQuerySlugSchema, deleteAiGatewayRuleQueryTeamIdSchema, deleteAiGatewayRuleResponseSchema, deleteAiGatewayRuleStatus204Schema, deleteAiGatewayRuleStatus400Schema, deleteAiGatewayRuleStatus401Schema, deleteAiGatewayRuleStatus403Schema, deleteAiGatewayRuleStatus404Schema, deleteAiGatewayRuleStatus410Schema, deleteAiGatewayRuleStatus500Schema, deleteAiGatewayVirtualModelConfigBySlugErrorSchema, deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema, deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema, deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema, deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema, deleteAiGatewayVirtualModelConfigBySlugResponseSchema, deleteAiGatewayVirtualModelConfigBySlugStatus204Schema, deleteAiGatewayVirtualModelConfigBySlugStatus400Schema, deleteAiGatewayVirtualModelConfigBySlugStatus401Schema, deleteAiGatewayVirtualModelConfigBySlugStatus403Schema, deleteAiGatewayVirtualModelConfigBySlugStatus404Schema, deleteAiGatewayVirtualModelConfigBySlugStatus410Schema, deleteAiGatewayVirtualModelConfigBySlugStatus500Schema, deleteAiGatewayVirtualModelConfigErrorSchema, deleteAiGatewayVirtualModelConfigQueryActingIpSchema, deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigQuerySlugSchema, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, deleteAiGatewayVirtualModelConfigResponseSchema, deleteAiGatewayVirtualModelConfigStatus204Schema, deleteAiGatewayVirtualModelConfigStatus400Schema, deleteAiGatewayVirtualModelConfigStatus401Schema, deleteAiGatewayVirtualModelConfigStatus403Schema, deleteAiGatewayVirtualModelConfigStatus404Schema, deleteAiGatewayVirtualModelConfigStatus410Schema, deleteAiGatewayVirtualModelConfigStatus500Schema, deleteAliasErrorSchema, deleteAliasPathAliasIdSchema, deleteAliasQuerySlugSchema, deleteAliasQueryTeamIdSchema, deleteAliasResponseSchema, deleteAliasStatus200Schema, deleteAliasStatus400Schema, deleteAliasStatus401Schema, deleteAliasStatus403Schema, deleteAliasStatus404Schema, deleteAliasStatus410Schema, deleteAllArtifactsErrorSchema, deleteAllArtifactsQuerySlugSchema, deleteAllArtifactsQueryTeamIdSchema, deleteAllArtifactsResponseSchema, deleteAllArtifactsStatus200Schema, deleteAllArtifactsStatus400Schema, deleteAllArtifactsStatus401Schema, deleteAllArtifactsStatus403Schema, deleteAllArtifactsStatus410Schema, deleteAuthTokenErrorSchema, deleteAuthTokenPathTokenIdSchema, deleteAuthTokenResponseSchema, deleteAuthTokenStatus200Schema, deleteAuthTokenStatus400Schema, deleteAuthTokenStatus401Schema, deleteAuthTokenStatus403Schema, deleteAuthTokenStatus404Schema, deleteAuthTokenStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, deleteConfigurableLogDrainErrorSchema, deleteConfigurableLogDrainPathIdSchema, deleteConfigurableLogDrainQuerySlugSchema, deleteConfigurableLogDrainQueryTeamIdSchema, deleteConfigurableLogDrainResponseSchema, deleteConfigurableLogDrainStatus204Schema, deleteConfigurableLogDrainStatus400Schema, deleteConfigurableLogDrainStatus401Schema, deleteConfigurableLogDrainStatus403Schema, deleteConfigurableLogDrainStatus404Schema, deleteConfigurableLogDrainStatus410Schema, deleteConfigurationErrorSchema, deleteConfigurationPathIdSchema, deleteConfigurationQuerySlugSchema, deleteConfigurationQueryTeamIdSchema, deleteConfigurationResponseSchema, deleteConfigurationStatus204Schema, deleteConfigurationStatus400Schema, deleteConfigurationStatus401Schema, deleteConfigurationStatus403Schema, deleteConfigurationStatus404Schema, deleteConfigurationStatus410Schema, deleteConnectorErrorSchema, deleteConnectorPathConnectorSchema, deleteConnectorProjectConnectionErrorSchema, deleteConnectorProjectConnectionPathConnectorSchema, deleteConnectorProjectConnectionPathProjectIdSchema, deleteConnectorProjectConnectionQuerySlugSchema, deleteConnectorProjectConnectionQueryTeamIdSchema, deleteConnectorProjectConnectionResponseSchema, deleteConnectorProjectConnectionStatus204Schema, deleteConnectorProjectConnectionStatus400Schema, deleteConnectorProjectConnectionStatus401Schema, deleteConnectorProjectConnectionStatus403Schema, deleteConnectorProjectConnectionStatus404Schema, deleteConnectorProjectConnectionStatus410Schema, deleteConnectorQuerySlugSchema, deleteConnectorQueryTeamIdSchema, deleteConnectorResponseSchema, deleteConnectorStatus204Schema, deleteConnectorStatus400Schema, deleteConnectorStatus401Schema, deleteConnectorStatus403Schema, deleteConnectorStatus404Schema, deleteConnectorStatus409Schema, deleteConnectorStatus410Schema, deleteConnectorStatus422Schema, deleteConnectorStatus502Schema, deleteDeploymentErrorSchema, deleteDeploymentPathIdSchema, deleteDeploymentQuerySlugSchema, deleteDeploymentQueryTeamIdSchema, deleteDeploymentQueryUrlSchema, deleteDeploymentResponseSchema, deleteDeploymentStatus200Schema, deleteDeploymentStatus400Schema, deleteDeploymentStatus401Schema, deleteDeploymentStatus403Schema, deleteDeploymentStatus404Schema, deleteDeploymentStatus410Schema, deleteDomainErrorSchema, deleteDomainPathDomainSchema, deleteDomainQuerySlugSchema, deleteDomainQueryTeamIdSchema, deleteDomainResponseSchema, deleteDomainStatus200Schema, deleteDomainStatus400Schema, deleteDomainStatus401Schema, deleteDomainStatus403Schema, deleteDomainStatus404Schema, deleteDomainStatus409Schema, deleteDomainStatus410Schema, deleteDrainErrorSchema, deleteDrainPathIdSchema, deleteDrainQuerySlugSchema, deleteDrainQueryTeamIdSchema, deleteDrainResponseSchema, deleteDrainStatus204Schema, deleteDrainStatus400Schema, deleteDrainStatus401Schema, deleteDrainStatus403Schema, deleteDrainStatus404Schema, deleteDrainStatus410Schema, deleteDriveErrorSchema, deleteDrivePathNameSchema, deleteDriveQueryProjectIdSchema, deleteDriveQuerySlugSchema, deleteDriveQueryTeamIdSchema, deleteDriveResponseSchema, deleteDriveStatus200Schema, deleteDriveStatus400Schema, deleteDriveStatus401Schema, deleteDriveStatus403Schema, deleteDriveStatus404Schema, deleteDriveStatus409Schema, deleteDriveStatus410Schema, deleteDriveStatus429Schema, deleteEdgeConfigErrorSchema, deleteEdgeConfigPathEdgeConfigIdSchema, deleteEdgeConfigQuerySlugSchema, deleteEdgeConfigQueryTeamIdSchema, deleteEdgeConfigResponseSchema, deleteEdgeConfigSchemaErrorSchema, deleteEdgeConfigSchemaPathEdgeConfigIdSchema, deleteEdgeConfigSchemaQuerySlugSchema, deleteEdgeConfigSchemaQueryTeamIdSchema, deleteEdgeConfigSchemaResponseSchema, deleteEdgeConfigSchemaStatus204Schema, deleteEdgeConfigSchemaStatus400Schema, deleteEdgeConfigSchemaStatus401Schema, deleteEdgeConfigSchemaStatus402Schema, deleteEdgeConfigSchemaStatus403Schema, deleteEdgeConfigSchemaStatus404Schema, deleteEdgeConfigSchemaStatus409Schema, deleteEdgeConfigSchemaStatus410Schema, deleteEdgeConfigStatus204Schema, deleteEdgeConfigStatus400Schema, deleteEdgeConfigStatus401Schema, deleteEdgeConfigStatus403Schema, deleteEdgeConfigStatus404Schema, deleteEdgeConfigStatus409Schema, deleteEdgeConfigStatus410Schema, deleteEdgeConfigTokensErrorSchema, deleteEdgeConfigTokensPathEdgeConfigIdSchema, deleteEdgeConfigTokensQuerySlugSchema, deleteEdgeConfigTokensQueryTeamIdSchema, deleteEdgeConfigTokensResponseSchema, deleteEdgeConfigTokensStatus204Schema, deleteEdgeConfigTokensStatus400Schema, deleteEdgeConfigTokensStatus401Schema, deleteEdgeConfigTokensStatus402Schema, deleteEdgeConfigTokensStatus403Schema, deleteEdgeConfigTokensStatus404Schema, deleteEdgeConfigTokensStatus409Schema, deleteEdgeConfigTokensStatus410Schema, deleteFlagErrorSchema, deleteFlagPathFlagIdOrSlugSchema, deleteFlagPathProjectIdOrNameSchema, deleteFlagQueryIfMatchSchema, deleteFlagQuerySlugSchema, deleteFlagQueryTeamIdSchema, deleteFlagQueryWithMetadataSchema, deleteFlagResponseSchema, deleteFlagSegmentErrorSchema, deleteFlagSegmentPathProjectIdOrNameSchema, deleteFlagSegmentPathSegmentIdOrSlugSchema, deleteFlagSegmentQuerySlugSchema, deleteFlagSegmentQueryTeamIdSchema, deleteFlagSegmentQueryWithMetadataSchema, deleteFlagSegmentResponseSchema, deleteFlagSegmentStatus204Schema, deleteFlagSegmentStatus304Schema, deleteFlagSegmentStatus400Schema, deleteFlagSegmentStatus401Schema, deleteFlagSegmentStatus402Schema, deleteFlagSegmentStatus403Schema, deleteFlagSegmentStatus404Schema, deleteFlagSegmentStatus409Schema, deleteFlagSegmentStatus410Schema, deleteFlagStatus204Schema, deleteFlagStatus304Schema, deleteFlagStatus400Schema, deleteFlagStatus401Schema, deleteFlagStatus402Schema, deleteFlagStatus403Schema, deleteFlagStatus404Schema, deleteFlagStatus409Schema, deleteFlagStatus410Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, deleteIntegrationLogDrainErrorSchema, deleteIntegrationLogDrainPathIdSchema, deleteIntegrationLogDrainQuerySlugSchema, deleteIntegrationLogDrainQueryTeamIdSchema, deleteIntegrationLogDrainResponseSchema, deleteIntegrationLogDrainStatus204Schema, deleteIntegrationLogDrainStatus400Schema, deleteIntegrationLogDrainStatus401Schema, deleteIntegrationLogDrainStatus403Schema, deleteIntegrationLogDrainStatus404Schema, deleteIntegrationLogDrainStatus410Schema, deleteIntegrationResourceErrorSchema, deleteIntegrationResourcePathIntegrationConfigurationIdSchema, deleteIntegrationResourcePathResourceIdSchema, deleteIntegrationResourceResponseSchema, deleteIntegrationResourceStatus204Schema, deleteIntegrationResourceStatus400Schema, deleteIntegrationResourceStatus401Schema, deleteIntegrationResourceStatus403Schema, deleteIntegrationResourceStatus404Schema, deleteIntegrationResourceStatus410Schema, deleteKmsIssuerErrorSchema, deleteKmsIssuerPathIssuerIdSchema, deleteKmsIssuerPolicyErrorSchema, deleteKmsIssuerPolicyPathIssuerIdSchema, deleteKmsIssuerPolicyPathKindSchema, deleteKmsIssuerPolicyPathPolicyKeySchema, deleteKmsIssuerPolicyQuerySlugSchema, deleteKmsIssuerPolicyQueryTeamIdSchema, deleteKmsIssuerPolicyResponseSchema, deleteKmsIssuerPolicyStatus204Schema, deleteKmsIssuerPolicyStatus400Schema, deleteKmsIssuerPolicyStatus401Schema, deleteKmsIssuerPolicyStatus403Schema, deleteKmsIssuerPolicyStatus404Schema, deleteKmsIssuerPolicyStatus410Schema, deleteKmsIssuerQuerySlugSchema, deleteKmsIssuerQueryTeamIdSchema, deleteKmsIssuerResponseSchema, deleteKmsIssuerStatus204Schema, deleteKmsIssuerStatus400Schema, deleteKmsIssuerStatus401Schema, deleteKmsIssuerStatus403Schema, deleteKmsIssuerStatus404Schema, deleteKmsIssuerStatus410Schema, deleteMicrofrontendsGroupErrorSchema, deleteMicrofrontendsGroupPathGroupIdSchema, deleteMicrofrontendsGroupPathTeamIdSchema, deleteMicrofrontendsGroupQuerySlugSchema, deleteMicrofrontendsGroupResponseSchema, deleteMicrofrontendsGroupStatus200Schema, deleteMicrofrontendsGroupStatus400Schema, deleteMicrofrontendsGroupStatus401Schema, deleteMicrofrontendsGroupStatus403Schema, deleteMicrofrontendsGroupStatus404Schema, deleteMicrofrontendsGroupStatus410Schema, deleteMicrofrontendsGroupStatus500Schema, deleteNetworkErrorSchema, deleteNetworkPathNetworkIdSchema, deleteNetworkQuerySlugSchema, deleteNetworkQueryTeamIdSchema, deleteNetworkResponseSchema, deleteNetworkStatus204Schema, deleteNetworkStatus400Schema, deleteNetworkStatus401Schema, deleteNetworkStatus402Schema, deleteNetworkStatus403Schema, deleteNetworkStatus409Schema, deleteNetworkStatus410Schema, deletePrivateLinkEndpointErrorSchema, deletePrivateLinkEndpointPathEndpointIdSchema, deletePrivateLinkEndpointQueryProjectIdSchema, deletePrivateLinkEndpointQuerySlugSchema, deletePrivateLinkEndpointQueryTeamIdSchema, deletePrivateLinkEndpointResponseSchema, deletePrivateLinkEndpointStatus204Schema, deletePrivateLinkEndpointStatus400Schema, deletePrivateLinkEndpointStatus401Schema, deletePrivateLinkEndpointStatus403Schema, deletePrivateLinkEndpointStatus404Schema, deletePrivateLinkEndpointStatus409Schema, deletePrivateLinkEndpointStatus410Schema, deleteProjectCheckErrorSchema, deleteProjectCheckPathCheckIdSchema, deleteProjectCheckPathProjectIdOrNameSchema, deleteProjectCheckQuerySlugSchema, deleteProjectCheckQueryTeamIdSchema, deleteProjectCheckResponseSchema, deleteProjectCheckStatus200Schema, deleteProjectCheckStatus400Schema, deleteProjectCheckStatus401Schema, deleteProjectCheckStatus403Schema, deleteProjectCheckStatus404Schema, deleteProjectCheckStatus410Schema, deleteProjectCheckStatus500Schema, deleteProjectErrorSchema, deleteProjectPathIdOrNameSchema, deleteProjectQuerySlugSchema, deleteProjectQueryTeamIdSchema, deleteProjectResponseSchema, deleteProjectStatus204Schema, deleteProjectStatus400Schema, deleteProjectStatus401Schema, deleteProjectStatus403Schema, deleteProjectStatus409Schema, deleteProjectStatus410Schema, deleteRedirectsErrorSchema, deleteRedirectsQueryProjectIdSchema, deleteRedirectsQuerySlugSchema, deleteRedirectsQueryTeamIdSchema, deleteRedirectsResponseSchema, deleteRedirectsStatus200Schema, deleteRedirectsStatus400Schema, deleteRedirectsStatus401Schema, deleteRedirectsStatus403Schema, deleteRedirectsStatus404Schema, deleteRedirectsStatus410Schema, deleteRedirectsStatus500Schema, deleteRepositoryErrorSchema, deleteRepositoryImageErrorSchema, deleteRepositoryImagePathIdOrNameSchema, deleteRepositoryImagePathImageIdSchema, deleteRepositoryImageQueryProjectIdSchema, deleteRepositoryImageQuerySlugSchema, deleteRepositoryImageQueryTeamIdSchema, deleteRepositoryImageResponseSchema, deleteRepositoryImageStatus202Schema, deleteRepositoryImageStatus400Schema, deleteRepositoryImageStatus401Schema, deleteRepositoryImageStatus403Schema, deleteRepositoryImageStatus404Schema, deleteRepositoryImageStatus410Schema, deleteRepositoryPathIdOrNameSchema, deleteRepositoryQueryProjectIdSchema, deleteRepositoryQuerySlugSchema, deleteRepositoryQueryTeamIdSchema, deleteRepositoryResponseSchema, deleteRepositoryStatus202Schema, deleteRepositoryStatus400Schema, deleteRepositoryStatus401Schema, deleteRepositoryStatus403Schema, deleteRepositoryStatus404Schema, deleteRepositoryStatus410Schema, deleteRollingReleaseConfigErrorSchema, deleteRollingReleaseConfigPathIdOrNameSchema, deleteRollingReleaseConfigQuerySlugSchema, deleteRollingReleaseConfigQueryTeamIdSchema, deleteRollingReleaseConfigResponseSchema, deleteRollingReleaseConfigStatus200Schema, deleteRollingReleaseConfigStatus400Schema, deleteRollingReleaseConfigStatus401Schema, deleteRollingReleaseConfigStatus403Schema, deleteRollingReleaseConfigStatus404Schema, deleteRollingReleaseConfigStatus410Schema, deleteRoutesErrorSchema, deleteRoutesPathProjectIdSchema, deleteRoutesQuerySlugSchema, deleteRoutesQueryTeamIdSchema, deleteRoutesResponseSchema, deleteRoutesStatus200Schema, deleteRoutesStatus400Schema, deleteRoutesStatus401Schema, deleteRoutesStatus403Schema, deleteRoutesStatus404Schema, deleteRoutesStatus409Schema, deleteRoutesStatus410Schema, deleteRoutesStatus500Schema, deleteSandboxErrorSchema, deleteSandboxPathNameSchema, deleteSandboxQueryDeleteOrphanSnapshotsSchema, deleteSandboxQueryProjectIdSchema, deleteSandboxQuerySlugSchema, deleteSandboxQueryTeamIdSchema, deleteSandboxResponseSchema, deleteSandboxStatus200Schema, deleteSandboxStatus400Schema, deleteSandboxStatus401Schema, deleteSandboxStatus403Schema, deleteSandboxStatus404Schema, deleteSandboxStatus410Schema, deleteSandboxStatus429Schema, deleteSdkKeyErrorSchema, deleteSdkKeyPathHashKeySchema, deleteSdkKeyPathProjectIdOrNameSchema, deleteSdkKeyQuerySlugSchema, deleteSdkKeyQueryTeamIdSchema, deleteSdkKeyResponseSchema, deleteSdkKeyStatus204Schema, deleteSdkKeyStatus400Schema, deleteSdkKeyStatus401Schema, deleteSdkKeyStatus402Schema, deleteSdkKeyStatus403Schema, deleteSdkKeyStatus404Schema, deleteSdkKeyStatus409Schema, deleteSdkKeyStatus410Schema, deleteSecurityFirewallConfigByConfigVersionErrorSchema, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema, deleteSecurityFirewallConfigByConfigVersionResponseSchema, deleteSecurityFirewallConfigByConfigVersionStatus204Schema, deleteSecurityFirewallConfigByConfigVersionStatus400Schema, deleteSecurityFirewallConfigByConfigVersionStatus401Schema, deleteSecurityFirewallConfigByConfigVersionStatus403Schema, deleteSecurityFirewallConfigByConfigVersionStatus404Schema, deleteSecurityFirewallConfigByConfigVersionStatus410Schema, deleteSecurityFirewallConfigByConfigVersionStatus500Schema, deleteSessionSnapshotErrorSchema, deleteSessionSnapshotPathSnapshotIdSchema, deleteSessionSnapshotQuerySlugSchema, deleteSessionSnapshotQueryTeamIdSchema, deleteSessionSnapshotResponseSchema, deleteSessionSnapshotStatus200Schema, deleteSessionSnapshotStatus400Schema, deleteSessionSnapshotStatus401Schema, deleteSessionSnapshotStatus403Schema, deleteSessionSnapshotStatus404Schema, deleteSessionSnapshotStatus410Schema, deleteSessionSnapshotStatus429Schema, deleteSharedEnvVariableErrorSchema, deleteSharedEnvVariableQuerySlugSchema, deleteSharedEnvVariableQueryTeamIdSchema, deleteSharedEnvVariableResponseSchema, deleteSharedEnvVariableStatus200Schema, deleteSharedEnvVariableStatus400Schema, deleteSharedEnvVariableStatus401Schema, deleteSharedEnvVariableStatus402Schema, deleteSharedEnvVariableStatus403Schema, deleteSharedEnvVariableStatus410Schema, deleteStorageStoresBlobByIdErrorSchema, deleteStorageStoresBlobByIdPathIdSchema, deleteStorageStoresBlobByIdResponseSchema, deleteStorageStoresBlobByIdStatus200Schema, deleteStorageStoresBlobByIdStatus400Schema, deleteStorageStoresBlobByIdStatus401Schema, deleteStorageStoresBlobByIdStatus403Schema, deleteStorageStoresBlobByIdStatus404Schema, deleteStorageStoresBlobByIdStatus409Schema, deleteStorageStoresBlobByIdStatus410Schema, deleteTeamErrorSchema, deleteTeamInviteCodeErrorSchema, deleteTeamInviteCodePathInviteIdSchema, deleteTeamInviteCodePathTeamIdSchema, deleteTeamInviteCodeResponseSchema, deleteTeamInviteCodeStatus200Schema, deleteTeamInviteCodeStatus400Schema, deleteTeamInviteCodeStatus401Schema, deleteTeamInviteCodeStatus403Schema, deleteTeamInviteCodeStatus404Schema, deleteTeamInviteCodeStatus410Schema, deleteTeamPathTeamIdSchema, deleteTeamQueryNewDefaultTeamIdSchema, deleteTeamQuerySlugSchema, deleteTeamResponseSchema, deleteTeamStatus200Schema, deleteTeamStatus400Schema, deleteTeamStatus401Schema, deleteTeamStatus402Schema, deleteTeamStatus403Schema, deleteTeamStatus409Schema, deleteTeamStatus410Schema, deleteTeamStatus503Schema, deleteWebhookErrorSchema, deleteWebhookPathIdSchema, deleteWebhookQuerySlugSchema, deleteWebhookQueryTeamIdSchema, deleteWebhookResponseSchema, deleteWebhookStatus204Schema, deleteWebhookStatus400Schema, deleteWebhookStatus401Schema, deleteWebhookStatus403Schema, deleteWebhookStatus410Schema, domainAlreadyOwnedSchema, domainAlreadyRenewingSchema, domainCannotBeTransferedOutUntilSchema, domainNameSchema, domainNotAvailableSchema, domainNotFoundSchema, domainNotRegisteredSchema, domainNotRenewableSchema, domainTooShortSchema, downloadArtifactErrorSchema, downloadArtifactHeaderXArtifactClientCiSchema, downloadArtifactHeaderXArtifactClientInteractiveSchema, downloadArtifactPathHashSchema, downloadArtifactQuerySlugSchema, downloadArtifactQueryTeamIdSchema, downloadArtifactResponseSchema, downloadArtifactStatus200Schema, downloadArtifactStatus400Schema, downloadArtifactStatus401Schema, downloadArtifactStatus402Schema, downloadArtifactStatus403Schema, downloadArtifactStatus404Schema, downloadArtifactStatus410Schema, driveSchema, duplicateDomainsSchema, e164PhoneNumberSchema, editProjectEnvErrorSchema, editProjectEnvPathIdOrNameSchema, editProjectEnvPathIdSchema, editProjectEnvQuerySlugSchema, editProjectEnvQueryTeamIdSchema, editProjectEnvResponseSchema, editProjectEnvStatus200Schema, editProjectEnvStatus400Schema, editProjectEnvStatus401Schema, editProjectEnvStatus403Schema, editProjectEnvStatus404Schema, editProjectEnvStatus409Schema, editProjectEnvStatus410Schema, editProjectEnvStatus429Schema, editProjectEnvStatus500Schema, editRedirectErrorSchema, editRedirectQueryProjectIdSchema, editRedirectQuerySlugSchema, editRedirectQueryTeamIdSchema, editRedirectResponseSchema, editRedirectStatus200Schema, editRedirectStatus400Schema, editRedirectStatus401Schema, editRedirectStatus403Schema, editRedirectStatus404Schema, editRedirectStatus410Schema, editRedirectStatus500Schema, editRouteErrorSchema, editRoutePathProjectIdSchema, editRoutePathRouteIdSchema, editRouteQuerySlugSchema, editRouteQueryTeamIdSchema, editRouteResponseSchema, editRouteStatus200Schema, editRouteStatus400Schema, editRouteStatus401Schema, editRouteStatus403Schema, editRouteStatus404Schema, editRouteStatus409Schema, editRouteStatus410Schema, editRouteStatus500Schema, emailAddressSchema, exchangeSsoTokenErrorSchema, exchangeSsoTokenResponseSchema, exchangeSsoTokenStatus200Schema, exchangeSsoTokenStatus400Schema, exchangeSsoTokenStatus403Schema, exchangeSsoTokenStatus500Schema, expectedPriceMismatchSchema, extendSessionTimeoutErrorSchema, extendSessionTimeoutPathSessionIdSchema, extendSessionTimeoutQuerySlugSchema, extendSessionTimeoutQueryTeamIdSchema, extendSessionTimeoutResponseSchema, extendSessionTimeoutStatus200Schema, extendSessionTimeoutStatus400Schema, extendSessionTimeoutStatus401Schema, extendSessionTimeoutStatus403Schema, extendSessionTimeoutStatus404Schema, extendSessionTimeoutStatus410Schema, extendSessionTimeoutStatus422Schema, extendSessionTimeoutStatus429Schema, extendSessionTimeoutStatus500Schema, fileTreeSchema, filterProjectEnvsErrorSchema, filterProjectEnvsPathIdOrNameSchema, filterProjectEnvsQueryCustomEnvironmentIdSchema, filterProjectEnvsQueryCustomEnvironmentSlugSchema, filterProjectEnvsQueryDecryptSchema, filterProjectEnvsQueryGitBranchSchema, filterProjectEnvsQuerySlugSchema, filterProjectEnvsQuerySourceSchema, filterProjectEnvsQueryTeamIdSchema, filterProjectEnvsResponseSchema, filterProjectEnvsStatus200Schema, filterProjectEnvsStatus400Schema, filterProjectEnvsStatus401Schema, filterProjectEnvsStatus403Schema, filterProjectEnvsStatus410Schema, finalizeInstallationErrorSchema, finalizeInstallationPathIntegrationConfigurationIdSchema, finalizeInstallationResponseSchema, finalizeInstallationStatus204Schema, finalizeInstallationStatus400Schema, finalizeInstallationStatus401Schema, finalizeInstallationStatus403Schema, finalizeInstallationStatus404Schema, finalizeInstallationStatus410Schema, flagJSONValueSchema, flagSchema, flagsSdkKeyWithSecretsSchema, forbiddenSchema, generateFirewallRuleErrorSchema, generateFirewallRuleQueryProjectIdSchema, generateFirewallRuleQuerySlugSchema, generateFirewallRuleQueryTeamIdSchema, generateFirewallRuleResponseSchema, generateFirewallRuleStatus200Schema, generateFirewallRuleStatus400Schema, generateFirewallRuleStatus401Schema, generateFirewallRuleStatus403Schema, generateFirewallRuleStatus404Schema, generateFirewallRuleStatus408Schema, generateFirewallRuleStatus410Schema, generateFirewallRuleStatus500Schema, generateRouteErrorSchema, generateRoutePathProjectIdSchema, generateRouteQuerySlugSchema, generateRouteQueryTeamIdSchema, generateRouteResponseSchema, generateRouteStatus200Schema, generateRouteStatus400Schema, generateRouteStatus401Schema, generateRouteStatus403Schema, generateRouteStatus408Schema, generateRouteStatus410Schema, generateRouteStatus500Schema, getAccountInfoErrorSchema, getAccountInfoPathIntegrationConfigurationIdSchema, getAccountInfoResponseSchema, getAccountInfoStatus200Schema, getAccountInfoStatus400Schema, getAccountInfoStatus401Schema, getAccountInfoStatus403Schema, getAccountInfoStatus404Schema, getAccountInfoStatus410Schema, getActiveAttackStatusErrorSchema, getActiveAttackStatusQueryProjectIdSchema, getActiveAttackStatusQuerySinceSchema, getActiveAttackStatusQuerySlugSchema, getActiveAttackStatusQueryTeamIdSchema, getActiveAttackStatusResponseSchema, getActiveAttackStatusStatus200Schema, getActiveAttackStatusStatus400Schema, getActiveAttackStatusStatus401Schema, getActiveAttackStatusStatus403Schema, getActiveAttackStatusStatus404Schema, getActiveAttackStatusStatus410Schema, getAiGatewayVirtualModelConfigBySlugErrorSchema, getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema, getAiGatewayVirtualModelConfigBySlugQuerySlugSchema, getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, getAiGatewayVirtualModelConfigBySlugResponseSchema, getAiGatewayVirtualModelConfigBySlugStatus200Schema, getAiGatewayVirtualModelConfigBySlugStatus400Schema, getAiGatewayVirtualModelConfigBySlugStatus401Schema, getAiGatewayVirtualModelConfigBySlugStatus403Schema, getAiGatewayVirtualModelConfigBySlugStatus404Schema, getAiGatewayVirtualModelConfigBySlugStatus410Schema, getAiGatewayVirtualModelConfigBySlugStatus500Schema, getAiGatewayVirtualModelConfigErrorSchema, getAiGatewayVirtualModelConfigQueryCursorSchema, getAiGatewayVirtualModelConfigQueryLimitSchema, getAiGatewayVirtualModelConfigQueryOwnerIdSchema, getAiGatewayVirtualModelConfigQuerySlugSchema, getAiGatewayVirtualModelConfigQueryTeamIdSchema, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, getAiGatewayVirtualModelConfigResponseSchema, getAiGatewayVirtualModelConfigStatus200Schema, getAiGatewayVirtualModelConfigStatus400Schema, getAiGatewayVirtualModelConfigStatus401Schema, getAiGatewayVirtualModelConfigStatus403Schema, getAiGatewayVirtualModelConfigStatus404Schema, getAiGatewayVirtualModelConfigStatus410Schema, getAiGatewayVirtualModelConfigStatus500Schema, getAliasErrorSchema, getAliasPathIdOrAliasSchema, getAliasQueryFromSchema, getAliasQueryProjectIdSchema, getAliasQuerySinceSchema, getAliasQuerySlugSchema, getAliasQueryTeamIdSchema, getAliasQueryUntilSchema, getAliasResponseSchema, getAliasStatus200Schema, getAliasStatus400Schema, getAliasStatus401Schema, getAliasStatus403Schema, getAliasStatus404Schema, getAliasStatus410Schema, getAllChecksErrorSchema, getAllChecksPathDeploymentIdSchema, getAllChecksQuerySlugSchema, getAllChecksQueryTeamIdSchema, getAllChecksResponseSchema, getAllChecksStatus200Schema, getAllChecksStatus400Schema, getAllChecksStatus401Schema, getAllChecksStatus403Schema, getAllChecksStatus404Schema, getAllChecksStatus410Schema, getAllLogDrainsErrorSchema, getAllLogDrainsQueryIncludeMetadataSchema, getAllLogDrainsQueryProjectIdOrNameSchema, getAllLogDrainsQueryProjectIdSchema, getAllLogDrainsQuerySlugSchema, getAllLogDrainsQueryTeamIdSchema, getAllLogDrainsResponseSchema, getAllLogDrainsStatus200Schema, getAllLogDrainsStatus400Schema, getAllLogDrainsStatus401Schema, getAllLogDrainsStatus403Schema, getAllLogDrainsStatus404Schema, getAllLogDrainsStatus410Schema, getAuthTokenErrorSchema, getAuthTokenPathTokenIdSchema, getAuthTokenResponseSchema, getAuthTokenStatus200Schema, getAuthTokenStatus400Schema, getAuthTokenStatus401Schema, getAuthTokenStatus403Schema, getAuthTokenStatus404Schema, getAuthTokenStatus410Schema, getAuthUserErrorSchema, getAuthUserResponseSchema, getAuthUserStatus200Schema, getAuthUserStatus302Schema, getAuthUserStatus400Schema, getAuthUserStatus401Schema, getAuthUserStatus403Schema, getAuthUserStatus409Schema, getAuthUserStatus410Schema, getBillingPlansErrorSchema, getBillingPlansPathIntegrationIdOrSlugSchema, getBillingPlansPathProductIdOrSlugSchema, getBillingPlansQueryIntegrationConfigurationIdSchema, getBillingPlansQueryMetadataSchema, getBillingPlansQuerySlugSchema, getBillingPlansQuerySourceSchema, getBillingPlansQueryTeamIdSchema, getBillingPlansResponseSchema, getBillingPlansStatus200Schema, getBillingPlansStatus400Schema, getBillingPlansStatus401Schema, getBillingPlansStatus403Schema, getBillingPlansStatus404Schema, getBillingPlansStatus410Schema, getBulkAvailabilityErrorSchema, getBulkAvailabilityQueryTeamIdSchema, getBulkAvailabilityResponseSchema, getBulkAvailabilityStatus200Schema, getBulkAvailabilityStatus400Schema, getBulkAvailabilityStatus401Schema, getBulkAvailabilityStatus403Schema, getBulkAvailabilityStatus429Schema, getBulkAvailabilityStatus500Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListErrorSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema, getBypassIpErrorSchema, getBypassIpQueryDomainSchema, getBypassIpQueryLimitSchema, getBypassIpQueryOffsetSchema, getBypassIpQueryProjectIdSchema, getBypassIpQueryProjectScopeSchema, getBypassIpQuerySlugSchema, getBypassIpQuerySourceIpSchema, getBypassIpQueryTeamIdSchema, getBypassIpResponseSchema, getBypassIpStatus200Schema, getBypassIpStatus400Schema, getBypassIpStatus401Schema, getBypassIpStatus402Schema, getBypassIpStatus403Schema, getBypassIpStatus404Schema, getBypassIpStatus410Schema, getBypassIpStatus500Schema, getCertByIdErrorSchema, getCertByIdPathIdSchema, getCertByIdQuerySlugSchema, getCertByIdQueryTeamIdSchema, getCertByIdResponseSchema, getCertByIdStatus200Schema, getCertByIdStatus400Schema, getCertByIdStatus401Schema, getCertByIdStatus403Schema, getCertByIdStatus404Schema, getCertByIdStatus410Schema, getCertsErrorSchema, getCertsQuerySlugSchema, getCertsQueryTeamIdSchema, getCertsResponseSchema, getCertsStatus200Schema, getCertsStatus400Schema, getCertsStatus401Schema, getCertsStatus403Schema, getCertsStatus410Schema, getCheckErrorSchema, getCheckPathCheckIdSchema, getCheckPathDeploymentIdSchema, getCheckQuerySlugSchema, getCheckQueryTeamIdSchema, getCheckResponseSchema, getCheckStatus200Schema, getCheckStatus400Schema, getCheckStatus401Schema, getCheckStatus403Schema, getCheckStatus404Schema, getCheckStatus410Schema, getConfigurableLogDrainErrorSchema, getConfigurableLogDrainPathIdSchema, getConfigurableLogDrainQuerySlugSchema, getConfigurableLogDrainQueryTeamIdSchema, getConfigurableLogDrainResponseSchema, getConfigurableLogDrainStatus200Schema, getConfigurableLogDrainStatus400Schema, getConfigurableLogDrainStatus401Schema, getConfigurableLogDrainStatus403Schema, getConfigurableLogDrainStatus404Schema, getConfigurableLogDrainStatus410Schema, getConfigurationErrorSchema, getConfigurationPathIdSchema, getConfigurationProductsErrorSchema, getConfigurationProductsPathIdSchema, getConfigurationProductsQuerySlugSchema, getConfigurationProductsQueryTeamIdSchema, getConfigurationProductsResponseSchema, getConfigurationProductsStatus200Schema, getConfigurationProductsStatus400Schema, getConfigurationProductsStatus401Schema, getConfigurationProductsStatus403Schema, getConfigurationProductsStatus404Schema, getConfigurationProductsStatus410Schema, getConfigurationProductsStatus500Schema, getConfigurationQuerySlugSchema, getConfigurationQueryTeamIdSchema, getConfigurationResponseSchema, getConfigurationStatus200Schema, getConfigurationStatus400Schema, getConfigurationStatus401Schema, getConfigurationStatus403Schema, getConfigurationStatus404Schema, getConfigurationStatus410Schema, getConfigurationsErrorSchema, getConfigurationsQueryInstallationTypeSchema, getConfigurationsQueryIntegrationIdOrSlugSchema, getConfigurationsQuerySlugSchema, getConfigurationsQueryTeamIdSchema, getConfigurationsQueryViewSchema, getConfigurationsResponseSchema, getConfigurationsStatus200Schema, getConfigurationsStatus400Schema, getConfigurationsStatus401Schema, getConfigurationsStatus403Schema, getConfigurationsStatus410Schema, getConnectorErrorSchema, getConnectorPathConnectorSchema, getConnectorProjectConnectionErrorSchema, getConnectorProjectConnectionPathConnectorSchema, getConnectorProjectConnectionPathProjectIdSchema, getConnectorProjectConnectionQuerySlugSchema, getConnectorProjectConnectionQueryTeamIdSchema, getConnectorProjectConnectionResponseSchema, getConnectorProjectConnectionStatus200Schema, getConnectorProjectConnectionStatus400Schema, getConnectorProjectConnectionStatus401Schema, getConnectorProjectConnectionStatus403Schema, getConnectorProjectConnectionStatus404Schema, getConnectorProjectConnectionStatus410Schema, getConnectorQuerySlugSchema, getConnectorQueryTeamIdSchema, getConnectorResponseSchema, getConnectorStatus200Schema, getConnectorStatus400Schema, getConnectorStatus401Schema, getConnectorStatus403Schema, getConnectorStatus404Schema, getConnectorStatus410Schema, getConnectorStatus422Schema, getConnectorTokenErrorSchema, getConnectorTokenPathConnectorSchema, getConnectorTokenResponseSchema, getConnectorTokenStatus200Schema, getConnectorTokenStatus400Schema, getConnectorTokenStatus401Schema, getConnectorTokenStatus403Schema, getConnectorTokenStatus404Schema, getConnectorTokenStatus410Schema, getConnectorTokenStatus422Schema, getConnectorTokenStatus429Schema, getContactInfoSchemaErrorSchema, getContactInfoSchemaPathDomainSchema, getContactInfoSchemaQueryTeamIdSchema, getContactInfoSchemaResponseSchema, getContactInfoSchemaStatus200Schema, getContactInfoSchemaStatus400Schema, getContactInfoSchemaStatus401Schema, getContactInfoSchemaStatus403Schema, getContactInfoSchemaStatus429Schema, getContactInfoSchemaStatus500Schema, getCustomEnvironmentErrorSchema, getCustomEnvironmentPathEnvironmentSlugOrIdSchema, getCustomEnvironmentPathIdOrNameSchema, getCustomEnvironmentQuerySlugSchema, getCustomEnvironmentQueryTeamIdSchema, getCustomEnvironmentResponseSchema, getCustomEnvironmentStatus200Schema, getCustomEnvironmentStatus400Schema, getCustomEnvironmentStatus401Schema, getCustomEnvironmentStatus403Schema, getCustomEnvironmentStatus404Schema, getCustomEnvironmentStatus410Schema, getDeploymentCheckRunErrorSchema, getDeploymentCheckRunPathCheckRunIdSchema, getDeploymentCheckRunPathDeploymentIdSchema, getDeploymentCheckRunQuerySlugSchema, getDeploymentCheckRunQueryTeamIdSchema, getDeploymentCheckRunResponseSchema, getDeploymentCheckRunStatus200Schema, getDeploymentCheckRunStatus400Schema, getDeploymentCheckRunStatus401Schema, getDeploymentCheckRunStatus403Schema, getDeploymentCheckRunStatus404Schema, getDeploymentCheckRunStatus410Schema, getDeploymentCheckRunStatus500Schema, getDeploymentErrorSchema, getDeploymentEventsErrorSchema, getDeploymentEventsPathIdOrUrlSchema, getDeploymentEventsQueryBuildsSchema, getDeploymentEventsQueryDelimiterSchema, getDeploymentEventsQueryDirectionSchema, getDeploymentEventsQueryFollowSchema, getDeploymentEventsQueryLimitSchema, getDeploymentEventsQueryNameSchema, getDeploymentEventsQuerySinceSchema, getDeploymentEventsQuerySlugSchema, getDeploymentEventsQueryStatusCodeSchema, getDeploymentEventsQueryTeamIdSchema, getDeploymentEventsQueryUntilSchema, getDeploymentEventsResponseSchema, getDeploymentEventsStatus200Schema, getDeploymentEventsStatus400Schema, getDeploymentEventsStatus401Schema, getDeploymentEventsStatus403Schema, getDeploymentEventsStatus410Schema, getDeploymentEventsStatus500Schema, getDeploymentFeatureFlagsErrorSchema, getDeploymentFeatureFlagsPathDeploymentIdSchema, getDeploymentFeatureFlagsQuerySlugSchema, getDeploymentFeatureFlagsQueryTeamIdSchema, getDeploymentFeatureFlagsResponseSchema, getDeploymentFeatureFlagsStatus200Schema, getDeploymentFeatureFlagsStatus400Schema, getDeploymentFeatureFlagsStatus401Schema, getDeploymentFeatureFlagsStatus403Schema, getDeploymentFeatureFlagsStatus404Schema, getDeploymentFeatureFlagsStatus410Schema, getDeploymentFileContentsErrorSchema, getDeploymentFileContentsPathFileIdSchema, getDeploymentFileContentsPathIdSchema, getDeploymentFileContentsQueryPathSchema, getDeploymentFileContentsQuerySlugSchema, getDeploymentFileContentsQueryTeamIdSchema, getDeploymentFileContentsResponseSchema, getDeploymentFileContentsStatus400Schema, getDeploymentFileContentsStatus401Schema, getDeploymentFileContentsStatus403Schema, getDeploymentFileContentsStatus404Schema, getDeploymentFileContentsStatus410Schema, getDeploymentPathIdOrUrlSchema, getDeploymentQuerySlugSchema, getDeploymentQueryTeamIdSchema, getDeploymentQueryWithGitRepoInfoSchema, getDeploymentResponseSchema, getDeploymentStatus200Schema, getDeploymentStatus400Schema, getDeploymentStatus403Schema, getDeploymentStatus404Schema, getDeploymentStatus410Schema, getDeploymentStatus429Schema, getDeploymentsErrorSchema, getDeploymentsQueryAppSchema, getDeploymentsQueryBranchSchema, getDeploymentsQueryFromSchema, getDeploymentsQueryLimitSchema, getDeploymentsQueryProjectIdSchema, getDeploymentsQueryProjectIdsSchema, getDeploymentsQueryRollbackCandidateSchema, getDeploymentsQueryShaSchema, getDeploymentsQuerySinceSchema, getDeploymentsQuerySlugSchema, getDeploymentsQueryStateSchema, getDeploymentsQueryTargetSchema, getDeploymentsQueryTeamIdSchema, getDeploymentsQueryToSchema, getDeploymentsQueryUntilSchema, getDeploymentsQueryUsersSchema, getDeploymentsResponseSchema, getDeploymentsStatus200Schema, getDeploymentsStatus400Schema, getDeploymentsStatus401Schema, getDeploymentsStatus403Schema, getDeploymentsStatus404Schema, getDeploymentsStatus410Schema, getDeploymentsStatus422Schema, getDomainAuthCodeErrorSchema, getDomainAuthCodePathDomainSchema, getDomainAuthCodeQueryTeamIdSchema, getDomainAuthCodeResponseSchema, getDomainAuthCodeStatus200Schema, getDomainAuthCodeStatus400Schema, getDomainAuthCodeStatus401Schema, getDomainAuthCodeStatus403Schema, getDomainAuthCodeStatus404Schema, getDomainAuthCodeStatus409Schema, getDomainAuthCodeStatus429Schema, getDomainAuthCodeStatus500Schema, getDomainAvailabilityErrorSchema, getDomainAvailabilityPathDomainSchema, getDomainAvailabilityQueryTeamIdSchema, getDomainAvailabilityResponseSchema, getDomainAvailabilityStatus200Schema, getDomainAvailabilityStatus400Schema, getDomainAvailabilityStatus401Schema, getDomainAvailabilityStatus403Schema, getDomainAvailabilityStatus404Schema, getDomainAvailabilityStatus429Schema, getDomainAvailabilityStatus500Schema, getDomainConfigErrorSchema, getDomainConfigPathDomainSchema, getDomainConfigQueryProjectIdOrNameSchema, getDomainConfigQuerySlugSchema, getDomainConfigQueryStrictSchema, getDomainConfigQueryTeamIdSchema, getDomainConfigResponseSchema, getDomainConfigStatus200Schema, getDomainConfigStatus400Schema, getDomainConfigStatus401Schema, getDomainConfigStatus403Schema, getDomainConfigStatus410Schema, getDomainContactVerificationErrorSchema, getDomainContactVerificationPathDomainSchema, getDomainContactVerificationQueryTeamIdSchema, getDomainContactVerificationResponseSchema, getDomainContactVerificationStatus200Schema, getDomainContactVerificationStatus400Schema, getDomainContactVerificationStatus401Schema, getDomainContactVerificationStatus403Schema, getDomainContactVerificationStatus404Schema, getDomainContactVerificationStatus429Schema, getDomainContactVerificationStatus500Schema, getDomainErrorSchema, getDomainPathDomainSchema, getDomainPriceErrorSchema, getDomainPricePathDomainSchema, getDomainPriceQueryTeamIdSchema, getDomainPriceQueryYearsSchema, getDomainPriceResponseSchema, getDomainPriceStatus200Schema, getDomainPriceStatus400Schema, getDomainPriceStatus401Schema, getDomainPriceStatus403Schema, getDomainPriceStatus429Schema, getDomainPriceStatus500Schema, getDomainProjectDomainsErrorSchema, getDomainProjectDomainsPathDomainSchema, getDomainProjectDomainsQueryLimitSchema, getDomainProjectDomainsQuerySinceSchema, getDomainProjectDomainsQuerySlugSchema, getDomainProjectDomainsQueryTeamIdSchema, getDomainProjectDomainsQueryUntilSchema, getDomainProjectDomainsResponseSchema, getDomainProjectDomainsStatus200Schema, getDomainProjectDomainsStatus400Schema, getDomainProjectDomainsStatus401Schema, getDomainProjectDomainsStatus403Schema, getDomainProjectDomainsStatus404Schema, getDomainProjectDomainsStatus410Schema, getDomainQuerySlugSchema, getDomainQueryTeamIdSchema, getDomainResponseSchema, getDomainStatus200Schema, getDomainStatus400Schema, getDomainStatus401Schema, getDomainStatus403Schema, getDomainStatus404Schema, getDomainStatus410Schema, getDomainTransferInErrorSchema, getDomainTransferInPathDomainSchema, getDomainTransferInQueryTeamIdSchema, getDomainTransferInResponseSchema, getDomainTransferInStatus200Schema, getDomainTransferInStatus400Schema, getDomainTransferInStatus401Schema, getDomainTransferInStatus403Schema, getDomainTransferInStatus404Schema, getDomainTransferInStatus429Schema, getDomainTransferInStatus500Schema, getDomainVerificationRecordErrorSchema, getDomainVerificationRecordPathDomainSchema, getDomainVerificationRecordQuerySlugSchema, getDomainVerificationRecordQueryTeamIdSchema, getDomainVerificationRecordResponseSchema, getDomainVerificationRecordStatus200Schema, getDomainVerificationRecordStatus400Schema, getDomainVerificationRecordStatus401Schema, getDomainVerificationRecordStatus403Schema, getDomainVerificationRecordStatus404Schema, getDomainVerificationRecordStatus410Schema, getDomainsErrorSchema, getDomainsQueryLimitSchema, getDomainsQuerySinceSchema, getDomainsQuerySlugSchema, getDomainsQueryTeamIdSchema, getDomainsQueryUntilSchema, getDomainsRecordsByRecordIdErrorSchema, getDomainsRecordsByRecordIdPathRecordIdSchema, getDomainsRecordsByRecordIdResponseSchema, getDomainsRecordsByRecordIdStatus200Schema, getDomainsRecordsByRecordIdStatus400Schema, getDomainsRecordsByRecordIdStatus401Schema, getDomainsRecordsByRecordIdStatus403Schema, getDomainsRecordsByRecordIdStatus404Schema, getDomainsRecordsByRecordIdStatus410Schema, getDomainsResponseSchema, getDomainsStatus200Schema, getDomainsStatus400Schema, getDomainsStatus401Schema, getDomainsStatus403Schema, getDomainsStatus409Schema, getDomainsStatus410Schema, getDrainErrorSchema, getDrainPathIdSchema, getDrainQuerySlugSchema, getDrainQueryTeamIdSchema, getDrainResponseSchema, getDrainStatus200Schema, getDrainStatus400Schema, getDrainStatus401Schema, getDrainStatus403Schema, getDrainStatus404Schema, getDrainStatus410Schema, getDrainsErrorSchema, getDrainsQueryIncludeMetadataSchema, getDrainsQueryProjectIdSchema, getDrainsQuerySlugSchema, getDrainsQueryTeamIdSchema, getDrainsResponseSchema, getDrainsStatus200Schema, getDrainsStatus400Schema, getDrainsStatus401Schema, getDrainsStatus403Schema, getDrainsStatus404Schema, getDrainsStatus410Schema, getEdgeConfigBackupErrorSchema, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, getEdgeConfigBackupPathEdgeConfigIdSchema, getEdgeConfigBackupQuerySlugSchema, getEdgeConfigBackupQueryTeamIdSchema, getEdgeConfigBackupResponseSchema, getEdgeConfigBackupStatus200Schema, getEdgeConfigBackupStatus400Schema, getEdgeConfigBackupStatus401Schema, getEdgeConfigBackupStatus403Schema, getEdgeConfigBackupStatus404Schema, getEdgeConfigBackupStatus410Schema, getEdgeConfigBackupsErrorSchema, getEdgeConfigBackupsPathEdgeConfigIdSchema, getEdgeConfigBackupsQueryLimitSchema, getEdgeConfigBackupsQueryMetadataSchema, getEdgeConfigBackupsQueryNextSchema, getEdgeConfigBackupsQuerySlugSchema, getEdgeConfigBackupsQueryTeamIdSchema, getEdgeConfigBackupsResponseSchema, getEdgeConfigBackupsStatus200Schema, getEdgeConfigBackupsStatus400Schema, getEdgeConfigBackupsStatus401Schema, getEdgeConfigBackupsStatus403Schema, getEdgeConfigBackupsStatus404Schema, getEdgeConfigBackupsStatus410Schema, getEdgeConfigErrorSchema, getEdgeConfigItemErrorSchema, getEdgeConfigItemPathEdgeConfigIdSchema, getEdgeConfigItemPathEdgeConfigItemKeySchema, getEdgeConfigItemQuerySlugSchema, getEdgeConfigItemQueryTeamIdSchema, getEdgeConfigItemResponseSchema, getEdgeConfigItemStatus200Schema, getEdgeConfigItemStatus400Schema, getEdgeConfigItemStatus401Schema, getEdgeConfigItemStatus403Schema, getEdgeConfigItemStatus404Schema, getEdgeConfigItemStatus410Schema, getEdgeConfigItemsErrorSchema, getEdgeConfigItemsPathEdgeConfigIdSchema, getEdgeConfigItemsQuerySlugSchema, getEdgeConfigItemsQueryTeamIdSchema, getEdgeConfigItemsResponseSchema, getEdgeConfigItemsStatus200Schema, getEdgeConfigItemsStatus400Schema, getEdgeConfigItemsStatus401Schema, getEdgeConfigItemsStatus403Schema, getEdgeConfigItemsStatus404Schema, getEdgeConfigItemsStatus410Schema, getEdgeConfigPathEdgeConfigIdSchema, getEdgeConfigQuerySlugSchema, getEdgeConfigQueryTeamIdSchema, getEdgeConfigResponseSchema, getEdgeConfigSchemaErrorSchema, getEdgeConfigSchemaPathEdgeConfigIdSchema, getEdgeConfigSchemaQuerySlugSchema, getEdgeConfigSchemaQueryTeamIdSchema, getEdgeConfigSchemaResponseSchema, getEdgeConfigSchemaStatus200Schema, getEdgeConfigSchemaStatus400Schema, getEdgeConfigSchemaStatus401Schema, getEdgeConfigSchemaStatus403Schema, getEdgeConfigSchemaStatus404Schema, getEdgeConfigSchemaStatus410Schema, getEdgeConfigStatus200Schema, getEdgeConfigStatus400Schema, getEdgeConfigStatus401Schema, getEdgeConfigStatus403Schema, getEdgeConfigStatus404Schema, getEdgeConfigStatus410Schema, getEdgeConfigTokenErrorSchema, getEdgeConfigTokenPathEdgeConfigIdSchema, getEdgeConfigTokenPathTokenSchema, getEdgeConfigTokenQuerySlugSchema, getEdgeConfigTokenQueryTeamIdSchema, getEdgeConfigTokenResponseSchema, getEdgeConfigTokenStatus200Schema, getEdgeConfigTokenStatus400Schema, getEdgeConfigTokenStatus401Schema, getEdgeConfigTokenStatus403Schema, getEdgeConfigTokenStatus404Schema, getEdgeConfigTokenStatus410Schema, getEdgeConfigTokensErrorSchema, getEdgeConfigTokensPathEdgeConfigIdSchema, getEdgeConfigTokensQuerySlugSchema, getEdgeConfigTokensQueryTeamIdSchema, getEdgeConfigTokensResponseSchema, getEdgeConfigTokensStatus200Schema, getEdgeConfigTokensStatus400Schema, getEdgeConfigTokensStatus401Schema, getEdgeConfigTokensStatus403Schema, getEdgeConfigTokensStatus404Schema, getEdgeConfigTokensStatus410Schema, getEdgeConfigsErrorSchema, getEdgeConfigsQuerySlugSchema, getEdgeConfigsQueryTeamIdSchema, getEdgeConfigsResponseSchema, getEdgeConfigsStatus200Schema, getEdgeConfigsStatus400Schema, getEdgeConfigsStatus401Schema, getEdgeConfigsStatus403Schema, getEdgeConfigsStatus410Schema, getFirewallConfigErrorSchema, getFirewallConfigPathConfigVersionSchema, getFirewallConfigQueryProjectIdSchema, getFirewallConfigQuerySlugSchema, getFirewallConfigQueryTeamIdSchema, getFirewallConfigResponseSchema, getFirewallConfigStatus200Schema, getFirewallConfigStatus400Schema, getFirewallConfigStatus401Schema, getFirewallConfigStatus403Schema, getFirewallConfigStatus404Schema, getFirewallConfigStatus410Schema, getFlagErrorSchema, getFlagPathFlagIdOrSlugSchema, getFlagPathProjectIdOrNameSchema, getFlagQueryIfMatchSchema, getFlagQuerySlugSchema, getFlagQueryTeamIdSchema, getFlagQueryWithMetadataSchema, getFlagResponseSchema, getFlagSegmentErrorSchema, getFlagSegmentPathProjectIdOrNameSchema, getFlagSegmentPathSegmentIdOrSlugSchema, getFlagSegmentQuerySlugSchema, getFlagSegmentQueryTeamIdSchema, getFlagSegmentQueryWithMetadataSchema, getFlagSegmentResponseSchema, getFlagSegmentStatus200Schema, getFlagSegmentStatus400Schema, getFlagSegmentStatus401Schema, getFlagSegmentStatus402Schema, getFlagSegmentStatus403Schema, getFlagSegmentStatus404Schema, getFlagSegmentStatus410Schema, getFlagSettingsErrorSchema, getFlagSettingsPathProjectIdOrNameSchema, getFlagSettingsQuerySlugSchema, getFlagSettingsQueryTeamIdSchema, getFlagSettingsResponseSchema, getFlagSettingsStatus200Schema, getFlagSettingsStatus400Schema, getFlagSettingsStatus401Schema, getFlagSettingsStatus402Schema, getFlagSettingsStatus403Schema, getFlagSettingsStatus404Schema, getFlagSettingsStatus410Schema, getFlagStatus200Schema, getFlagStatus304Schema, getFlagStatus400Schema, getFlagStatus401Schema, getFlagStatus402Schema, getFlagStatus403Schema, getFlagStatus404Schema, getFlagStatus410Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, getIntegrationLogDrainsErrorSchema, getIntegrationLogDrainsQuerySlugSchema, getIntegrationLogDrainsQueryTeamIdSchema, getIntegrationLogDrainsResponseSchema, getIntegrationLogDrainsStatus200Schema, getIntegrationLogDrainsStatus400Schema, getIntegrationLogDrainsStatus401Schema, getIntegrationLogDrainsStatus403Schema, getIntegrationLogDrainsStatus410Schema, getIntegrationResourceErrorSchema, getIntegrationResourcePathIntegrationConfigurationIdSchema, getIntegrationResourcePathResourceIdSchema, getIntegrationResourceResponseSchema, getIntegrationResourceStatus200Schema, getIntegrationResourceStatus400Schema, getIntegrationResourceStatus401Schema, getIntegrationResourceStatus403Schema, getIntegrationResourceStatus404Schema, getIntegrationResourceStatus410Schema, getIntegrationResourcesErrorSchema, getIntegrationResourcesPathIntegrationConfigurationIdSchema, getIntegrationResourcesResponseSchema, getIntegrationResourcesStatus200Schema, getIntegrationResourcesStatus400Schema, getIntegrationResourcesStatus401Schema, getIntegrationResourcesStatus403Schema, getIntegrationResourcesStatus404Schema, getIntegrationResourcesStatus410Schema, getInvoiceErrorSchema, getInvoicePathIntegrationConfigurationIdSchema, getInvoicePathInvoiceIdSchema, getInvoiceResponseSchema, getInvoiceStatus200Schema, getInvoiceStatus400Schema, getInvoiceStatus401Schema, getInvoiceStatus403Schema, getInvoiceStatus404Schema, getInvoiceStatus410Schema, getInvoiceStatus429Schema, getKmsIssuerErrorSchema, getKmsIssuerPathIssuerIdSchema, getKmsIssuerQuerySlugSchema, getKmsIssuerQueryTeamIdSchema, getKmsIssuerResponseSchema, getKmsIssuerStatus200Schema, getKmsIssuerStatus400Schema, getKmsIssuerStatus401Schema, getKmsIssuerStatus403Schema, getKmsIssuerStatus404Schema, getKmsIssuerStatus410Schema, getMemberErrorSchema, getMemberPathIntegrationConfigurationIdSchema, getMemberPathMemberIdSchema, getMemberResponseSchema, getMemberStatus200Schema, getMemberStatus400Schema, getMemberStatus401Schema, getMemberStatus403Schema, getMemberStatus404Schema, getMemberStatus410Schema, getMicrofrontendsConfigErrorSchema, getMicrofrontendsConfigForProjectErrorSchema, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema, getMicrofrontendsConfigForProjectQuerySlugSchema, getMicrofrontendsConfigForProjectQueryTeamIdSchema, getMicrofrontendsConfigForProjectResponseSchema, getMicrofrontendsConfigForProjectStatus200Schema, getMicrofrontendsConfigForProjectStatus400Schema, getMicrofrontendsConfigForProjectStatus401Schema, getMicrofrontendsConfigForProjectStatus403Schema, getMicrofrontendsConfigForProjectStatus404Schema, getMicrofrontendsConfigForProjectStatus410Schema, getMicrofrontendsConfigForProjectStatus500Schema, getMicrofrontendsConfigPathDeploymentIdSchema, getMicrofrontendsConfigQuerySlugSchema, getMicrofrontendsConfigQueryTeamIdSchema, getMicrofrontendsConfigResponseSchema, getMicrofrontendsConfigStatus200Schema, getMicrofrontendsConfigStatus400Schema, getMicrofrontendsConfigStatus401Schema, getMicrofrontendsConfigStatus403Schema, getMicrofrontendsConfigStatus404Schema, getMicrofrontendsConfigStatus410Schema, getMicrofrontendsConfigStatus500Schema, getMicrofrontendsGroupsErrorSchema, getMicrofrontendsGroupsQuerySlugSchema, getMicrofrontendsGroupsQueryTeamIdSchema, getMicrofrontendsGroupsResponseSchema, getMicrofrontendsGroupsStatus200Schema, getMicrofrontendsGroupsStatus400Schema, getMicrofrontendsGroupsStatus401Schema, getMicrofrontendsGroupsStatus403Schema, getMicrofrontendsGroupsStatus410Schema, getMicrofrontendsGroupsStatus500Schema, getMicrofrontendsInGroupErrorSchema, getMicrofrontendsInGroupPathGroupIdSchema, getMicrofrontendsInGroupQuerySlugSchema, getMicrofrontendsInGroupQueryTeamIdSchema, getMicrofrontendsInGroupResponseSchema, getMicrofrontendsInGroupStatus200Schema, getMicrofrontendsInGroupStatus400Schema, getMicrofrontendsInGroupStatus401Schema, getMicrofrontendsInGroupStatus403Schema, getMicrofrontendsInGroupStatus410Schema, getNamedSandboxErrorSchema, getNamedSandboxPathNameSchema, getNamedSandboxQueryProjectIdSchema, getNamedSandboxQueryResumeSchema, getNamedSandboxQuerySlugSchema, getNamedSandboxQueryTeamIdSchema, getNamedSandboxResponseSchema, getNamedSandboxStatus200Schema, getNamedSandboxStatus400Schema, getNamedSandboxStatus401Schema, getNamedSandboxStatus402Schema, getNamedSandboxStatus403Schema, getNamedSandboxStatus404Schema, getNamedSandboxStatus409Schema, getNamedSandboxStatus410Schema, getNamedSandboxStatus429Schema, getNamedSandboxStatus500Schema, getObservabilityConfigurationProjectsErrorSchema, getObservabilityConfigurationProjectsQuerySlugSchema, getObservabilityConfigurationProjectsQueryTeamIdSchema, getObservabilityConfigurationProjectsResponseSchema, getObservabilityConfigurationProjectsStatus200Schema, getObservabilityConfigurationProjectsStatus400Schema, getObservabilityConfigurationProjectsStatus401Schema, getObservabilityConfigurationProjectsStatus403Schema, getObservabilityConfigurationProjectsStatus404Schema, getObservabilityConfigurationProjectsStatus410Schema, getObservabilitySchemaByMetricIdErrorSchema, getObservabilitySchemaByMetricIdPathMetricIdSchema, getObservabilitySchemaByMetricIdResponseSchema, getObservabilitySchemaByMetricIdStatus200Schema, getObservabilitySchemaByMetricIdStatus400Schema, getObservabilitySchemaByMetricIdStatus401Schema, getObservabilitySchemaByMetricIdStatus403Schema, getObservabilitySchemaByMetricIdStatus410Schema, getObservabilitySchemaErrorSchema, getObservabilitySchemaResponseSchema, getObservabilitySchemaStatus200Schema, getObservabilitySchemaStatus400Schema, getObservabilitySchemaStatus401Schema, getObservabilitySchemaStatus403Schema, getObservabilitySchemaStatus410Schema, getOrCreateDriveErrorSchema, getOrCreateDrivePathNameSchema, getOrCreateDriveQuerySlugSchema, getOrCreateDriveQueryTeamIdSchema, getOrCreateDriveResponseSchema, getOrCreateDriveStatus200Schema, getOrCreateDriveStatus201Schema, getOrCreateDriveStatus400Schema, getOrCreateDriveStatus401Schema, getOrCreateDriveStatus402Schema, getOrCreateDriveStatus403Schema, getOrCreateDriveStatus404Schema, getOrCreateDriveStatus409Schema, getOrCreateDriveStatus410Schema, getOrCreateDriveStatus429Schema, getOrderErrorSchema, getOrderPathOrderIdSchema, getOrderQueryTeamIdSchema, getOrderResponseSchema, getOrderStatus200Schema, getOrderStatus400Schema, getOrderStatus401Schema, getOrderStatus403Schema, getOrderStatus404Schema, getOrderStatus429Schema, getOrderStatus500Schema, getProjectCheckErrorSchema, getProjectCheckPathCheckIdSchema, getProjectCheckPathProjectIdOrNameSchema, getProjectCheckQuerySlugSchema, getProjectCheckQueryTeamIdSchema, getProjectCheckResponseSchema, getProjectCheckStatus200Schema, getProjectCheckStatus400Schema, getProjectCheckStatus401Schema, getProjectCheckStatus403Schema, getProjectCheckStatus410Schema, getProjectCheckStatus500Schema, getProjectDomainErrorSchema, getProjectDomainPathDomainSchema, getProjectDomainPathIdOrNameSchema, getProjectDomainQuerySlugSchema, getProjectDomainQueryTeamIdSchema, getProjectDomainResponseSchema, getProjectDomainStatus200Schema, getProjectDomainStatus400Schema, getProjectDomainStatus401Schema, getProjectDomainStatus403Schema, getProjectDomainStatus410Schema, getProjectDomainsErrorSchema, getProjectDomainsPathIdOrNameSchema, getProjectDomainsQueryCustomEnvironmentIdSchema, getProjectDomainsQueryGitBranchSchema, getProjectDomainsQueryLimitSchema, getProjectDomainsQueryOrderSchema, getProjectDomainsQueryProductionSchema, getProjectDomainsQueryRedirectSchema, getProjectDomainsQueryRedirectsSchema, getProjectDomainsQuerySinceSchema, getProjectDomainsQuerySlugSchema, getProjectDomainsQueryTargetSchema, getProjectDomainsQueryTeamIdSchema, getProjectDomainsQueryUntilSchema, getProjectDomainsQueryVerifiedSchema, getProjectDomainsResponseSchema, getProjectDomainsStatus200Schema, getProjectDomainsStatus400Schema, getProjectDomainsStatus401Schema, getProjectDomainsStatus403Schema, getProjectDomainsStatus410Schema, getProjectEnvErrorSchema, getProjectEnvPathIdOrNameSchema, getProjectEnvPathIdSchema, getProjectEnvQuerySlugSchema, getProjectEnvQueryTeamIdSchema, getProjectEnvResponseSchema, getProjectEnvStatus200Schema, getProjectEnvStatus400Schema, getProjectEnvStatus401Schema, getProjectEnvStatus403Schema, getProjectEnvStatus410Schema, getProjectErrorSchema, getProjectMembersErrorSchema, getProjectMembersPathIdOrNameSchema, getProjectMembersQueryLimitSchema, getProjectMembersQuerySearchSchema, getProjectMembersQuerySinceSchema, getProjectMembersQuerySlugSchema, getProjectMembersQueryTeamIdSchema, getProjectMembersQueryUntilSchema, getProjectMembersResponseSchema, getProjectMembersStatus200Schema, getProjectMembersStatus400Schema, getProjectMembersStatus401Schema, getProjectMembersStatus403Schema, getProjectMembersStatus410Schema, getProjectPathIdOrNameSchema, getProjectQuerySlugSchema, getProjectQueryTeamIdSchema, getProjectResponseSchema, getProjectStatus200Schema, getProjectStatus400Schema, getProjectStatus401Schema, getProjectStatus403Schema, getProjectStatus410Schema, getProjectTokenErrorSchema, getProjectTokenPathIdOrNameSchema, getProjectTokenQuerySlugSchema, getProjectTokenQueryTeamIdSchema, getProjectTokenResponseSchema, getProjectTokenStatus200Schema, getProjectTokenStatus400Schema, getProjectTokenStatus401Schema, getProjectTokenStatus403Schema, getProjectTokenStatus404Schema, getProjectTokenStatus410Schema, getProjectTraceErrorSchema, getProjectTraceQueryProjectIdSchema, getProjectTraceQueryRequestIdSchema, getProjectTraceQuerySlugSchema, getProjectTraceQueryTeamIdSchema, getProjectTraceResponseSchema, getProjectTraceStatus200Schema, getProjectTraceStatus400Schema, getProjectTraceStatus401Schema, getProjectTraceStatus403Schema, getProjectTraceStatus404Schema, getProjectTraceStatus410Schema, getProjectsByIdOrNameCustomEnvironmentsErrorSchema, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema, getProjectsByIdOrNameCustomEnvironmentsResponseSchema, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema, getProjectsErrorSchema, getProjectsQueryBuildMachineTypesSchema, getProjectsQueryBuildQueueConfigurationSchema, getProjectsQueryDeprecatedSchema, getProjectsQueryEdgeConfigIdSchema, getProjectsQueryEdgeConfigTokenIdSchema, getProjectsQueryElasticConcurrencyEnabledSchema, getProjectsQueryExcludeReposSchema, getProjectsQueryFromSchema, getProjectsQueryGitForkProtectionSchema, getProjectsQueryLimitSchema, getProjectsQueryRepoIdSchema, getProjectsQueryRepoSchema, getProjectsQueryRepoUrlSchema, getProjectsQuerySearchSchema, getProjectsQuerySlugSchema, getProjectsQueryStaticIpsEnabledSchema, getProjectsQueryTeamIdSchema, getProjectsResponseSchema, getProjectsStatus200Schema, getProjectsStatus400Schema, getProjectsStatus401Schema, getProjectsStatus403Schema, getProjectsStatus410Schema, getRecordsErrorSchema, getRecordsPathDomainSchema, getRecordsQueryLimitSchema, getRecordsQuerySinceSchema, getRecordsQuerySlugSchema, getRecordsQueryTeamIdSchema, getRecordsQueryUntilSchema, getRecordsResponseSchema, getRecordsStatus200Schema, getRecordsStatus400Schema, getRecordsStatus401Schema, getRecordsStatus403Schema, getRecordsStatus404Schema, getRecordsStatus410Schema, getRedirectsErrorSchema, getRedirectsQueryDiffSchema, getRedirectsQueryPageSchema, getRedirectsQueryPerPageSchema, getRedirectsQueryProjectIdSchema, getRedirectsQueryQSchema, getRedirectsQuerySlugSchema, getRedirectsQuerySortBySchema, getRedirectsQuerySortOrderSchema, getRedirectsQueryTeamIdSchema, getRedirectsQueryVersionIdSchema, getRedirectsResponseSchema, getRedirectsStatus200Schema, getRedirectsStatus400Schema, getRedirectsStatus401Schema, getRedirectsStatus403Schema, getRedirectsStatus404Schema, getRedirectsStatus410Schema, getRepositoryErrorSchema, getRepositoryImageErrorSchema, getRepositoryImagePathIdOrNameSchema, getRepositoryImagePathImageIdOrDigestSchema, getRepositoryImageQueryProjectIdSchema, getRepositoryImageQuerySlugSchema, getRepositoryImageQueryTeamIdSchema, getRepositoryImageResponseSchema, getRepositoryImageStatus200Schema, getRepositoryImageStatus400Schema, getRepositoryImageStatus401Schema, getRepositoryImageStatus403Schema, getRepositoryImageStatus404Schema, getRepositoryImageStatus410Schema, getRepositoryPathIdOrNameSchema, getRepositoryQueryProjectIdSchema, getRepositoryQuerySlugSchema, getRepositoryQueryTeamIdSchema, getRepositoryResponseSchema, getRepositoryStatus200Schema, getRepositoryStatus400Schema, getRepositoryStatus401Schema, getRepositoryStatus403Schema, getRepositoryStatus404Schema, getRepositoryStatus410Schema, getRepositoryTagErrorSchema, getRepositoryTagPathIdOrNameSchema, getRepositoryTagPathTagSchema, getRepositoryTagQueryProjectIdSchema, getRepositoryTagQuerySlugSchema, getRepositoryTagQueryTeamIdSchema, getRepositoryTagResponseSchema, getRepositoryTagStatus200Schema, getRepositoryTagStatus400Schema, getRepositoryTagStatus401Schema, getRepositoryTagStatus403Schema, getRepositoryTagStatus404Schema, getRepositoryTagStatus410Schema, getRollingReleaseBillingStatusErrorSchema, getRollingReleaseBillingStatusPathIdOrNameSchema, getRollingReleaseBillingStatusQuerySlugSchema, getRollingReleaseBillingStatusQueryTeamIdSchema, getRollingReleaseBillingStatusResponseSchema, getRollingReleaseBillingStatusStatus200Schema, getRollingReleaseBillingStatusStatus400Schema, getRollingReleaseBillingStatusStatus401Schema, getRollingReleaseBillingStatusStatus403Schema, getRollingReleaseBillingStatusStatus404Schema, getRollingReleaseBillingStatusStatus410Schema, getRollingReleaseConfigErrorSchema, getRollingReleaseConfigPathIdOrNameSchema, getRollingReleaseConfigQuerySlugSchema, getRollingReleaseConfigQueryTeamIdSchema, getRollingReleaseConfigResponseSchema, getRollingReleaseConfigStatus200Schema, getRollingReleaseConfigStatus400Schema, getRollingReleaseConfigStatus401Schema, getRollingReleaseConfigStatus403Schema, getRollingReleaseConfigStatus404Schema, getRollingReleaseConfigStatus410Schema, getRollingReleaseErrorSchema, getRollingReleasePathIdOrNameSchema, getRollingReleaseQuerySlugSchema, getRollingReleaseQueryStateSchema, getRollingReleaseQueryTeamIdSchema, getRollingReleaseResponseSchema, getRollingReleaseStatus200Schema, getRollingReleaseStatus400Schema, getRollingReleaseStatus401Schema, getRollingReleaseStatus403Schema, getRollingReleaseStatus404Schema, getRollingReleaseStatus410Schema, getRootErrorSchema, getRootResponseSchema, getRootStatus200Schema, getRootStatus400Schema, getRootStatus401Schema, getRootStatus402Schema, getRootStatus403Schema, getRootStatus404Schema, getRootStatus410Schema, getRouteVersionsErrorSchema, getRouteVersionsPathProjectIdSchema, getRouteVersionsQuerySlugSchema, getRouteVersionsQueryTeamIdSchema, getRouteVersionsResponseSchema, getRouteVersionsStatus200Schema, getRouteVersionsStatus400Schema, getRouteVersionsStatus401Schema, getRouteVersionsStatus403Schema, getRouteVersionsStatus410Schema, getRoutesErrorSchema, getRoutesPathProjectIdSchema, getRoutesQueryDiffSchema, getRoutesQueryFilterSchema, getRoutesQueryQSchema, getRoutesQuerySlugSchema, getRoutesQueryTeamIdSchema, getRoutesQueryVersionIdSchema, getRoutesResponseSchema, getRoutesStatus200Schema, getRoutesStatus400Schema, getRoutesStatus401Schema, getRoutesStatus403Schema, getRoutesStatus404Schema, getRoutesStatus410Schema, getRuntimeLogsErrorSchema, getRuntimeLogsPathDeploymentIdSchema, getRuntimeLogsPathProjectIdSchema, getRuntimeLogsQuerySlugSchema, getRuntimeLogsQueryTeamIdSchema, getRuntimeLogsResponseSchema, getRuntimeLogsStatus200Schema, getRuntimeLogsStatus400Schema, getRuntimeLogsStatus401Schema, getRuntimeLogsStatus403Schema, getRuntimeLogsStatus410Schema, getSdkKeysErrorSchema, getSdkKeysPathProjectIdOrNameSchema, getSdkKeysQuerySlugSchema, getSdkKeysQueryTeamIdSchema, getSdkKeysResponseSchema, getSdkKeysStatus200Schema, getSdkKeysStatus400Schema, getSdkKeysStatus401Schema, getSdkKeysStatus402Schema, getSdkKeysStatus403Schema, getSdkKeysStatus404Schema, getSdkKeysStatus410Schema, getSecurityFirewallConfigErrorSchema, getSecurityFirewallConfigResponseSchema, getSecurityFirewallConfigStatus200Schema, getSecurityFirewallConfigStatus400Schema, getSecurityFirewallConfigStatus401Schema, getSecurityFirewallConfigStatus403Schema, getSecurityFirewallConfigStatus404Schema, getSecurityFirewallConfigStatus410Schema, getSecurityFirewallEventsErrorSchema, getSecurityFirewallEventsQueryEndTimestampSchema, getSecurityFirewallEventsQueryHostsSchema, getSecurityFirewallEventsQueryProjectIdSchema, getSecurityFirewallEventsQuerySlugSchema, getSecurityFirewallEventsQueryStartTimestampSchema, getSecurityFirewallEventsQueryTeamIdSchema, getSecurityFirewallEventsResponseSchema, getSecurityFirewallEventsStatus200Schema, getSecurityFirewallEventsStatus400Schema, getSecurityFirewallEventsStatus401Schema, getSecurityFirewallEventsStatus403Schema, getSecurityFirewallEventsStatus404Schema, getSecurityFirewallEventsStatus408Schema, getSecurityFirewallEventsStatus410Schema, getSecurityFirewallEventsStatus500Schema, getSessionCommandErrorSchema, getSessionCommandLogsErrorSchema, getSessionCommandLogsPathCmdIdSchema, getSessionCommandLogsPathSessionIdSchema, getSessionCommandLogsQuerySlugSchema, getSessionCommandLogsQueryTeamIdSchema, getSessionCommandLogsResponseSchema, getSessionCommandLogsStatus200Schema, getSessionCommandLogsStatus400Schema, getSessionCommandLogsStatus401Schema, getSessionCommandLogsStatus403Schema, getSessionCommandLogsStatus404Schema, getSessionCommandLogsStatus410Schema, getSessionCommandLogsStatus422Schema, getSessionCommandLogsStatus429Schema, getSessionCommandLogsStatus500Schema, getSessionCommandPathCmdIdSchema, getSessionCommandPathSessionIdSchema, getSessionCommandQuerySlugSchema, getSessionCommandQueryTeamIdSchema, getSessionCommandQueryWaitSchema, getSessionCommandResponseSchema, getSessionCommandStatus200Schema, getSessionCommandStatus400Schema, getSessionCommandStatus401Schema, getSessionCommandStatus403Schema, getSessionCommandStatus404Schema, getSessionCommandStatus410Schema, getSessionCommandStatus422Schema, getSessionCommandStatus429Schema, getSessionCommandStatus500Schema, getSessionErrorSchema, getSessionPathSessionIdSchema, getSessionQuerySlugSchema, getSessionQueryTeamIdSchema, getSessionResponseSchema, getSessionSnapshotErrorSchema, getSessionSnapshotPathSnapshotIdSchema, getSessionSnapshotQuerySlugSchema, getSessionSnapshotQueryTeamIdSchema, getSessionSnapshotResponseSchema, getSessionSnapshotStatus200Schema, getSessionSnapshotStatus400Schema, getSessionSnapshotStatus401Schema, getSessionSnapshotStatus403Schema, getSessionSnapshotStatus404Schema, getSessionSnapshotStatus410Schema, getSessionSnapshotStatus429Schema, getSessionStatus200Schema, getSessionStatus400Schema, getSessionStatus401Schema, getSessionStatus403Schema, getSessionStatus404Schema, getSessionStatus410Schema, getSessionStatus429Schema, getSessionStatus500Schema, getSharedEnvVarErrorSchema, getSharedEnvVarPathIdSchema, getSharedEnvVarQuerySlugSchema, getSharedEnvVarQueryTeamIdSchema, getSharedEnvVarResponseSchema, getSharedEnvVarStatus200Schema, getSharedEnvVarStatus400Schema, getSharedEnvVarStatus401Schema, getSharedEnvVarStatus403Schema, getSharedEnvVarStatus410Schema, getStorageStoresByIdErrorSchema, getStorageStoresByIdPathIdSchema, getStorageStoresByIdQueryIncludeGuidesSchema, getStorageStoresByIdQuerySkipMetadataSchema, getStorageStoresByIdResponseSchema, getStorageStoresByIdStatus200Schema, getStorageStoresByIdStatus400Schema, getStorageStoresByIdStatus401Schema, getStorageStoresByIdStatus403Schema, getStorageStoresByIdStatus404Schema, getStorageStoresByIdStatus410Schema, getSupportedTldsErrorSchema, getSupportedTldsQueryTeamIdSchema, getSupportedTldsResponseSchema, getSupportedTldsStatus200Schema, getSupportedTldsStatus400Schema, getSupportedTldsStatus401Schema, getSupportedTldsStatus403Schema, getSupportedTldsStatus429Schema, getSupportedTldsStatus500Schema, getTeamAccessRequestErrorSchema, getTeamAccessRequestPathTeamIdSchema, getTeamAccessRequestPathUserIdSchema, getTeamAccessRequestResponseSchema, getTeamAccessRequestStatus200Schema, getTeamAccessRequestStatus400Schema, getTeamAccessRequestStatus401Schema, getTeamAccessRequestStatus403Schema, getTeamAccessRequestStatus404Schema, getTeamAccessRequestStatus410Schema, getTeamErrorSchema, getTeamMembersErrorSchema, getTeamMembersPathTeamIdSchema, getTeamMembersQueryEligibleMembersForProjectIdSchema, getTeamMembersQueryExcludeProjectSchema, getTeamMembersQueryLimitSchema, getTeamMembersQueryRoleSchema, getTeamMembersQuerySearchSchema, getTeamMembersQuerySinceSchema, getTeamMembersQuerySlugSchema, getTeamMembersQueryUntilSchema, getTeamMembersResponseSchema, getTeamMembersStatus200Schema, getTeamMembersStatus400Schema, getTeamMembersStatus401Schema, getTeamMembersStatus403Schema, getTeamMembersStatus404Schema, getTeamMembersStatus410Schema, getTeamPathTeamIdSchema, getTeamQuerySlugSchema, getTeamResponseSchema, getTeamStatus200Schema, getTeamStatus400Schema, getTeamStatus401Schema, getTeamStatus403Schema, getTeamStatus404Schema, getTeamStatus410Schema, getTeamsErrorSchema, getTeamsQueryLimitSchema, getTeamsQuerySinceSchema, getTeamsQueryUntilSchema, getTeamsResponseSchema, getTeamsStatus200Schema, getTeamsStatus400Schema, getTeamsStatus401Schema, getTeamsStatus403Schema, getTeamsStatus410Schema, getTeamsStatus500Schema, getTldErrorSchema, getTldPathTldSchema, getTldPriceErrorSchema, getTldPricePathTldSchema, getTldPriceQueryTeamIdSchema, getTldPriceQueryYearsSchema, getTldPriceResponseSchema, getTldPriceStatus200Schema, getTldPriceStatus400Schema, getTldPriceStatus401Schema, getTldPriceStatus403Schema, getTldPriceStatus429Schema, getTldPriceStatus500Schema, getTldQueryTeamIdSchema, getTldResponseSchema, getTldStatus200Schema, getTldStatus400Schema, getTldStatus401Schema, getTldStatus403Schema, getTldStatus429Schema, getTldStatus500Schema, getVersionsErrorSchema, getVersionsQueryProjectIdSchema, getVersionsQuerySlugSchema, getVersionsQueryTeamIdSchema, getVersionsResponseSchema, getVersionsStatus200Schema, getVersionsStatus400Schema, getVersionsStatus401Schema, getVersionsStatus403Schema, getVersionsStatus410Schema, getVersionsStatus500Schema, getWebhookErrorSchema, getWebhookPathIdSchema, getWebhookQuerySlugSchema, getWebhookQueryTeamIdSchema, getWebhookResponseSchema, getWebhookStatus200Schema, getWebhookStatus400Schema, getWebhookStatus401Schema, getWebhookStatus403Schema, getWebhookStatus410Schema, getWebhooksErrorSchema, getWebhooksQueryProjectIdSchema, getWebhooksQuerySlugSchema, getWebhooksQueryTeamIdSchema, getWebhooksResponseSchema, getWebhooksStatus200Schema, getWebhooksStatus400Schema, getWebhooksStatus401Schema, getWebhooksStatus403Schema, getWebhooksStatus410Schema, gitNamespacesErrorSchema, gitNamespacesQueryHostSchema, gitNamespacesQueryProviderSchema, gitNamespacesQueryViewerMetadataSchema, gitNamespacesResponseSchema, gitNamespacesStatus200Schema, gitNamespacesStatus400Schema, gitNamespacesStatus401Schema, gitNamespacesStatus403Schema, gitNamespacesStatus404Schema, gitNamespacesStatus410Schema, gitNamespacesStatus429Schema, gitNamespacesStatus500Schema, globalConfigItemSchema, globalConfigItemValueSchema, globalConfigTokenSchema, httpApiDecodeErrorSchema, importResourceErrorSchema, importResourcePathIntegrationConfigurationIdSchema, importResourcePathResourceIdSchema, importResourceResponseSchema, importResourceStatus200Schema, importResourceStatus400Schema, importResourceStatus401Schema, importResourceStatus403Schema, importResourceStatus404Schema, importResourceStatus409Schema, importResourceStatus410Schema, importResourceStatus422Schema, internalServerErrorSchema, invalidAdditionalContactInfoSchema, invalidateBySrcImagesErrorSchema, invalidateBySrcImagesQueryProjectIdOrNameSchema, invalidateBySrcImagesQuerySlugSchema, invalidateBySrcImagesQueryTeamIdSchema, invalidateBySrcImagesResponseSchema, invalidateBySrcImagesStatus200Schema, invalidateBySrcImagesStatus400Schema, invalidateBySrcImagesStatus401Schema, invalidateBySrcImagesStatus402Schema, invalidateBySrcImagesStatus403Schema, invalidateBySrcImagesStatus404Schema, invalidateBySrcImagesStatus410Schema, invalidateByTagsErrorSchema, invalidateByTagsQueryProjectIdOrNameSchema, invalidateByTagsQuerySlugSchema, invalidateByTagsQueryTeamIdSchema, invalidateByTagsResponseSchema, invalidateByTagsStatus200Schema, invalidateByTagsStatus400Schema, invalidateByTagsStatus401Schema, invalidateByTagsStatus403Schema, invalidateByTagsStatus404Schema, invalidateByTagsStatus410Schema, inviteUserToTeamErrorSchema, inviteUserToTeamPathTeamIdSchema, inviteUserToTeamQuerySlugSchema, inviteUserToTeamResponseSchema, inviteUserToTeamStatus200Schema, inviteUserToTeamStatus400Schema, inviteUserToTeamStatus401Schema, inviteUserToTeamStatus403Schema, inviteUserToTeamStatus410Schema, inviteUserToTeamStatus503Schema, invitedTeamMemberSchema, issueCertErrorSchema, issueCertQuerySlugSchema, issueCertQueryTeamIdSchema, issueCertResponseSchema, issueCertStatus200Schema, issueCertStatus400Schema, issueCertStatus401Schema, issueCertStatus402Schema, issueCertStatus403Schema, issueCertStatus404Schema, issueCertStatus410Schema, issueCertStatus449Schema, issueCertStatus500Schema, issueSchema, joinTeamErrorSchema, joinTeamPathTeamIdSchema, joinTeamResponseSchema, joinTeamStatus200Schema, joinTeamStatus400Schema, joinTeamStatus401Schema, joinTeamStatus402Schema, joinTeamStatus403Schema, joinTeamStatus404Schema, joinTeamStatus410Schema, joinTeamStatus503Schema, killSessionCommandErrorSchema, killSessionCommandPathCmdIdSchema, killSessionCommandPathSessionIdSchema, killSessionCommandQuerySlugSchema, killSessionCommandQueryTeamIdSchema, killSessionCommandResponseSchema, killSessionCommandStatus200Schema, killSessionCommandStatus400Schema, killSessionCommandStatus401Schema, killSessionCommandStatus403Schema, killSessionCommandStatus404Schema, killSessionCommandStatus410Schema, killSessionCommandStatus422Schema, killSessionCommandStatus429Schema, killSessionCommandStatus500Schema, languageCodeRequiredSchema, listAccessGroupMembersErrorSchema, listAccessGroupMembersPathIdOrNameSchema, listAccessGroupMembersQueryLimitSchema, listAccessGroupMembersQueryNextSchema, listAccessGroupMembersQuerySearchSchema, listAccessGroupMembersQuerySlugSchema, listAccessGroupMembersQueryTeamIdSchema, listAccessGroupMembersResponseSchema, listAccessGroupMembersStatus200Schema, listAccessGroupMembersStatus400Schema, listAccessGroupMembersStatus401Schema, listAccessGroupMembersStatus403Schema, listAccessGroupMembersStatus410Schema, listAccessGroupProjectsErrorSchema, listAccessGroupProjectsPathIdOrNameSchema, listAccessGroupProjectsQueryLimitSchema, listAccessGroupProjectsQueryNextSchema, listAccessGroupProjectsQuerySlugSchema, listAccessGroupProjectsQueryTeamIdSchema, listAccessGroupProjectsResponseSchema, listAccessGroupProjectsStatus200Schema, listAccessGroupProjectsStatus400Schema, listAccessGroupProjectsStatus401Schema, listAccessGroupProjectsStatus403Schema, listAccessGroupProjectsStatus410Schema, listAccessGroupsErrorSchema, listAccessGroupsQueryLimitSchema, listAccessGroupsQueryMembersLimitSchema, listAccessGroupsQueryNextSchema, listAccessGroupsQueryProjectIdSchema, listAccessGroupsQueryProjectsLimitSchema, listAccessGroupsQuerySearchSchema, listAccessGroupsQuerySlugSchema, listAccessGroupsQueryTeamIdSchema, listAccessGroupsResponseSchema, listAccessGroupsStatus200Schema, listAccessGroupsStatus400Schema, listAccessGroupsStatus401Schema, listAccessGroupsStatus403Schema, listAccessGroupsStatus410Schema, listAiGatewayRulesErrorSchema, listAiGatewayRulesQueryIncludeDisabledSchema, listAiGatewayRulesQuerySlugSchema, listAiGatewayRulesQueryTeamIdSchema, listAiGatewayRulesResponseSchema, listAiGatewayRulesStatus200Schema, listAiGatewayRulesStatus400Schema, listAiGatewayRulesStatus401Schema, listAiGatewayRulesStatus403Schema, listAiGatewayRulesStatus410Schema, listAiGatewayRulesStatus500Schema, listAiGatewayVirtualModelConfigsErrorSchema, listAiGatewayVirtualModelConfigsQueryCursorSchema, listAiGatewayVirtualModelConfigsQueryLimitSchema, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema, listAiGatewayVirtualModelConfigsQuerySlugSchema, listAiGatewayVirtualModelConfigsQueryTeamIdSchema, listAiGatewayVirtualModelConfigsResponseSchema, listAiGatewayVirtualModelConfigsStatus200Schema, listAiGatewayVirtualModelConfigsStatus400Schema, listAiGatewayVirtualModelConfigsStatus401Schema, listAiGatewayVirtualModelConfigsStatus403Schema, listAiGatewayVirtualModelConfigsStatus410Schema, listAiGatewayVirtualModelConfigsStatus500Schema, listAliasesErrorSchema, listAliasesQueryDomainSchema, listAliasesQueryFromSchema, listAliasesQueryLimitSchema, listAliasesQueryProjectIdSchema, listAliasesQueryRollbackDeploymentIdSchema, listAliasesQuerySinceSchema, listAliasesQuerySlugSchema, listAliasesQueryTeamIdSchema, listAliasesQueryUntilSchema, listAliasesResponseSchema, listAliasesStatus200Schema, listAliasesStatus400Schema, listAliasesStatus401Schema, listAliasesStatus403Schema, listAliasesStatus404Schema, listAliasesStatus410Schema, listAuthTokensErrorSchema, listAuthTokensResponseSchema, listAuthTokensStatus200Schema, listAuthTokensStatus400Schema, listAuthTokensStatus401Schema, listAuthTokensStatus403Schema, listAuthTokensStatus410Schema, listBillingChargesErrorSchema, listBillingChargesQueryFromSchema, listBillingChargesQuerySlugSchema, listBillingChargesQueryTeamIdSchema, listBillingChargesQueryToSchema, listBillingChargesResponseSchema, listBillingChargesStatus200Schema, listBillingChargesStatus400Schema, listBillingChargesStatus401Schema, listBillingChargesStatus403Schema, listBillingChargesStatus404Schema, listBillingChargesStatus410Schema, listBillingChargesStatus500Schema, listBillingChargesStatus503Schema, listCheckRunsErrorSchema, listCheckRunsPathCheckIdSchema, listCheckRunsPathProjectIdOrNameSchema, listCheckRunsQuerySlugSchema, listCheckRunsQueryTeamIdSchema, listCheckRunsResponseSchema, listCheckRunsStatus200Schema, listCheckRunsStatus400Schema, listCheckRunsStatus401Schema, listCheckRunsStatus403Schema, listCheckRunsStatus410Schema, listCheckRunsStatus500Schema, listConnectorProjectConnectionsErrorSchema, listConnectorProjectConnectionsPathConnectorSchema, listConnectorProjectConnectionsQueryCursorSchema, listConnectorProjectConnectionsQueryLimitSchema, listConnectorProjectConnectionsQuerySlugSchema, listConnectorProjectConnectionsQueryTeamIdSchema, listConnectorProjectConnectionsResponseSchema, listConnectorProjectConnectionsStatus200Schema, listConnectorProjectConnectionsStatus400Schema, listConnectorProjectConnectionsStatus401Schema, listConnectorProjectConnectionsStatus403Schema, listConnectorProjectConnectionsStatus404Schema, listConnectorProjectConnectionsStatus410Schema, listConnectorProjectConnectionsStatus422Schema, listConnectorsErrorSchema, listConnectorsQueryCursorSchema, listConnectorsQueryLimitSchema, listConnectorsQueryProjectIdSchema, listConnectorsQuerySearchSchema, listConnectorsQueryServiceSchema, listConnectorsQuerySlugSchema, listConnectorsQuerySortSchema, listConnectorsQueryTeamIdSchema, listConnectorsQueryTypeSchema, listConnectorsResponseSchema, listConnectorsStatus200Schema, listConnectorsStatus400Schema, listConnectorsStatus401Schema, listConnectorsStatus403Schema, listConnectorsStatus410Schema, listConnectorsStatus422Schema, listContractCommitmentsErrorSchema, listContractCommitmentsQuerySlugSchema, listContractCommitmentsQueryTeamIdSchema, listContractCommitmentsResponseSchema, listContractCommitmentsStatus200Schema, listContractCommitmentsStatus400Schema, listContractCommitmentsStatus401Schema, listContractCommitmentsStatus403Schema, listContractCommitmentsStatus404Schema, listContractCommitmentsStatus410Schema, listDeploymentAliasesErrorSchema, listDeploymentAliasesPathIdSchema, listDeploymentAliasesQuerySlugSchema, listDeploymentAliasesQueryTeamIdSchema, listDeploymentAliasesResponseSchema, listDeploymentAliasesStatus200Schema, listDeploymentAliasesStatus400Schema, listDeploymentAliasesStatus401Schema, listDeploymentAliasesStatus403Schema, listDeploymentAliasesStatus404Schema, listDeploymentAliasesStatus410Schema, listDeploymentCheckRunsErrorSchema, listDeploymentCheckRunsPathDeploymentIdSchema, listDeploymentCheckRunsQuerySlugSchema, listDeploymentCheckRunsQueryTeamIdSchema, listDeploymentCheckRunsResponseSchema, listDeploymentCheckRunsStatus200Schema, listDeploymentCheckRunsStatus400Schema, listDeploymentCheckRunsStatus401Schema, listDeploymentCheckRunsStatus403Schema, listDeploymentCheckRunsStatus410Schema, listDeploymentCheckRunsStatus500Schema, listDeploymentFilesErrorSchema, listDeploymentFilesPathIdSchema, listDeploymentFilesQuerySlugSchema, listDeploymentFilesQueryTeamIdSchema, listDeploymentFilesResponseSchema, listDeploymentFilesStatus200Schema, listDeploymentFilesStatus400Schema, listDeploymentFilesStatus401Schema, listDeploymentFilesStatus403Schema, listDeploymentFilesStatus404Schema, listDeploymentFilesStatus410Schema, listDrivesErrorSchema, listDrivesQueryCursorSchema, listDrivesQueryLimitSchema, listDrivesQueryNamePrefixSchema, listDrivesQueryProjectIdSchema, listDrivesQuerySlugSchema, listDrivesQuerySortBySchema, listDrivesQuerySortOrderSchema, listDrivesQueryTeamIdSchema, listDrivesResponseSchema, listDrivesStatus200Schema, listDrivesStatus400Schema, listDrivesStatus401Schema, listDrivesStatus403Schema, listDrivesStatus404Schema, listDrivesStatus410Schema, listDrivesStatus429Schema, listEventTypeSchema, listEventTypesErrorSchema, listEventTypesQuerySlugSchema, listEventTypesQueryTeamIdSchema, listEventTypesResponseSchema, listEventTypesStatus200Schema, listEventTypesStatus400Schema, listEventTypesStatus401Schema, listEventTypesStatus403Schema, listEventTypesStatus410Schema, listFlagSegmentsErrorSchema, listFlagSegmentsPathProjectIdOrNameSchema, listFlagSegmentsQuerySlugSchema, listFlagSegmentsQueryTeamIdSchema, listFlagSegmentsQueryWithMetadataSchema, listFlagSegmentsResponseSchema, listFlagSegmentsStatus200Schema, listFlagSegmentsStatus400Schema, listFlagSegmentsStatus401Schema, listFlagSegmentsStatus402Schema, listFlagSegmentsStatus403Schema, listFlagSegmentsStatus404Schema, listFlagSegmentsStatus410Schema, listFlagVersionsErrorSchema, listFlagVersionsPathFlagIdOrSlugSchema, listFlagVersionsPathProjectIdOrNameSchema, listFlagVersionsQueryCursorSchema, listFlagVersionsQueryEnvironmentSchema, listFlagVersionsQueryLimitSchema, listFlagVersionsQuerySlugSchema, listFlagVersionsQueryTeamIdSchema, listFlagVersionsQueryWithMetadataSchema, listFlagVersionsResponseSchema, listFlagVersionsStatus200Schema, listFlagVersionsStatus304Schema, listFlagVersionsStatus400Schema, listFlagVersionsStatus401Schema, listFlagVersionsStatus402Schema, listFlagVersionsStatus403Schema, listFlagVersionsStatus404Schema, listFlagVersionsStatus410Schema, listFlagsErrorSchema, listFlagsPathProjectIdOrNameSchema, listFlagsQueryCursorSchema, listFlagsQueryLimitSchema, listFlagsQuerySearchSchema, listFlagsQuerySlugSchema, listFlagsQueryStateSchema, listFlagsQueryTagsSchema, listFlagsQueryTeamIdSchema, listFlagsQueryWithMetadataSchema, listFlagsResponseSchema, listFlagsStatus200Schema, listFlagsStatus400Schema, listFlagsStatus401Schema, listFlagsStatus402Schema, listFlagsStatus403Schema, listFlagsStatus404Schema, listFlagsStatus410Schema, listFlagsV2ErrorSchema, listFlagsV2PathProjectIdOrNameSchema, listFlagsV2QueryCreatedBySchema, listFlagsV2QueryCursorSchema, listFlagsV2QueryIncludeMarketplaceFlagsSchema, listFlagsV2QueryLimitSchema, listFlagsV2QueryMaintainerIdsSchema, listFlagsV2QuerySearchSchema, listFlagsV2QuerySlugSchema, listFlagsV2QueryStateSchema, listFlagsV2QueryTagsSchema, listFlagsV2QueryTeamIdSchema, listFlagsV2ResponseSchema, listFlagsV2Status200Schema, listFlagsV2Status400Schema, listFlagsV2Status401Schema, listFlagsV2Status402Schema, listFlagsV2Status403Schema, listFlagsV2Status404Schema, listFlagsV2Status410Schema, listKmsIssuersErrorSchema, listKmsIssuersQueryLimitSchema, listKmsIssuersQueryNextSchema, listKmsIssuersQuerySlugSchema, listKmsIssuersQueryTeamIdSchema, listKmsIssuersResponseSchema, listKmsIssuersStatus200Schema, listKmsIssuersStatus400Schema, listKmsIssuersStatus401Schema, listKmsIssuersStatus403Schema, listKmsIssuersStatus410Schema, listNamedSandboxesErrorSchema, listNamedSandboxesQueryCursorSchema, listNamedSandboxesQueryLimitSchema, listNamedSandboxesQueryNamePrefixSchema, listNamedSandboxesQueryProjectSchema, listNamedSandboxesQuerySlugSchema, listNamedSandboxesQuerySortBySchema, listNamedSandboxesQuerySortOrderSchema, listNamedSandboxesQueryStatusSchema, listNamedSandboxesQueryTagsSchema, listNamedSandboxesQueryTeamIdSchema, listNamedSandboxesResponseSchema, listNamedSandboxesStatus200Schema, listNamedSandboxesStatus400Schema, listNamedSandboxesStatus401Schema, listNamedSandboxesStatus403Schema, listNamedSandboxesStatus404Schema, listNamedSandboxesStatus410Schema, listNamedSandboxesStatus429Schema, listNetworksErrorSchema, listNetworksQueryIncludeHostedZonesSchema, listNetworksQueryIncludePeeringConnectionsSchema, listNetworksQueryIncludeProjectsSchema, listNetworksQuerySearchSchema, listNetworksQuerySlugSchema, listNetworksQueryTeamIdSchema, listNetworksResponseSchema, listNetworksStatus200Schema, listNetworksStatus400Schema, listNetworksStatus401Schema, listNetworksStatus403Schema, listNetworksStatus410Schema, listPrivateLinkEndpointsErrorSchema, listPrivateLinkEndpointsQueryProjectIdSchema, listPrivateLinkEndpointsQuerySlugSchema, listPrivateLinkEndpointsQueryTeamIdSchema, listPrivateLinkEndpointsResponseSchema, listPrivateLinkEndpointsStatus200Schema, listPrivateLinkEndpointsStatus400Schema, listPrivateLinkEndpointsStatus401Schema, listPrivateLinkEndpointsStatus403Schema, listPrivateLinkEndpointsStatus404Schema, listPrivateLinkEndpointsStatus410Schema, listProjectChecksErrorSchema, listProjectChecksPathProjectIdOrNameSchema, listProjectChecksQueryBlocksSchema, listProjectChecksQuerySlugSchema, listProjectChecksQueryTeamIdSchema, listProjectChecksResponseSchema, listProjectChecksStatus200Schema, listProjectChecksStatus400Schema, listProjectChecksStatus401Schema, listProjectChecksStatus403Schema, listProjectChecksStatus410Schema, listProjectChecksStatus500Schema, listProjectConnectorConnectionsErrorSchema, listProjectConnectorConnectionsPathProjectIdSchema, listProjectConnectorConnectionsQueryCursorSchema, listProjectConnectorConnectionsQueryLimitSchema, listProjectConnectorConnectionsQuerySlugSchema, listProjectConnectorConnectionsQueryTeamIdSchema, listProjectConnectorConnectionsResponseSchema, listProjectConnectorConnectionsStatus200Schema, listProjectConnectorConnectionsStatus400Schema, listProjectConnectorConnectionsStatus401Schema, listProjectConnectorConnectionsStatus403Schema, listProjectConnectorConnectionsStatus404Schema, listProjectConnectorConnectionsStatus410Schema, listPromoteAliasesErrorSchema, listPromoteAliasesPathProjectIdSchema, listPromoteAliasesQueryFailedOnlySchema, listPromoteAliasesQueryLimitSchema, listPromoteAliasesQuerySinceSchema, listPromoteAliasesQuerySlugSchema, listPromoteAliasesQueryTeamIdSchema, listPromoteAliasesQueryUntilSchema, listPromoteAliasesResponseSchema, listPromoteAliasesStatus200Schema, listPromoteAliasesStatus400Schema, listPromoteAliasesStatus401Schema, listPromoteAliasesStatus403Schema, listPromoteAliasesStatus404Schema, listPromoteAliasesStatus410Schema, listRepositoriesErrorSchema, listRepositoriesQueryCursorSchema, listRepositoriesQueryLimitSchema, listRepositoriesQueryProjectIdSchema, listRepositoriesQuerySlugSchema, listRepositoriesQueryTeamIdSchema, listRepositoriesResponseSchema, listRepositoriesStatus200Schema, listRepositoriesStatus400Schema, listRepositoriesStatus401Schema, listRepositoriesStatus403Schema, listRepositoriesStatus404Schema, listRepositoriesStatus410Schema, listRepositoryImagesErrorSchema, listRepositoryImagesPathIdOrNameSchema, listRepositoryImagesQueryCursorSchema, listRepositoryImagesQueryLimitSchema, listRepositoryImagesQueryProjectIdSchema, listRepositoryImagesQuerySlugSchema, listRepositoryImagesQueryTeamIdSchema, listRepositoryImagesQueryUntaggedSchema, listRepositoryImagesResponseSchema, listRepositoryImagesStatus200Schema, listRepositoryImagesStatus400Schema, listRepositoryImagesStatus401Schema, listRepositoryImagesStatus403Schema, listRepositoryImagesStatus404Schema, listRepositoryImagesStatus410Schema, listRepositoryPermissionsErrorSchema, listRepositoryPermissionsPathIdOrNameSchema, listRepositoryPermissionsQueryCursorSchema, listRepositoryPermissionsQueryLimitSchema, listRepositoryPermissionsQueryProjectIdSchema, listRepositoryPermissionsQuerySlugSchema, listRepositoryPermissionsQueryTeamIdSchema, listRepositoryPermissionsResponseSchema, listRepositoryPermissionsStatus200Schema, listRepositoryPermissionsStatus400Schema, listRepositoryPermissionsStatus401Schema, listRepositoryPermissionsStatus403Schema, listRepositoryPermissionsStatus404Schema, listRepositoryPermissionsStatus410Schema, listRepositoryTagsErrorSchema, listRepositoryTagsPathIdOrNameSchema, listRepositoryTagsQueryCursorSchema, listRepositoryTagsQueryLimitSchema, listRepositoryTagsQueryProjectIdSchema, listRepositoryTagsQuerySlugSchema, listRepositoryTagsQuerySortBySchema, listRepositoryTagsQuerySortOrderSchema, listRepositoryTagsQueryTeamIdSchema, listRepositoryTagsResponseSchema, listRepositoryTagsStatus200Schema, listRepositoryTagsStatus400Schema, listRepositoryTagsStatus401Schema, listRepositoryTagsStatus403Schema, listRepositoryTagsStatus404Schema, listRepositoryTagsStatus410Schema, listSessionCommandsErrorSchema, listSessionCommandsPathSessionIdSchema, listSessionCommandsQuerySlugSchema, listSessionCommandsQueryTeamIdSchema, listSessionCommandsResponseSchema, listSessionCommandsStatus200Schema, listSessionCommandsStatus400Schema, listSessionCommandsStatus401Schema, listSessionCommandsStatus403Schema, listSessionCommandsStatus404Schema, listSessionCommandsStatus410Schema, listSessionCommandsStatus429Schema, listSessionSnapshotsErrorSchema, listSessionSnapshotsQueryCursorSchema, listSessionSnapshotsQueryLimitSchema, listSessionSnapshotsQueryNameSchema, listSessionSnapshotsQueryProjectSchema, listSessionSnapshotsQuerySlugSchema, listSessionSnapshotsQuerySortOrderSchema, listSessionSnapshotsQueryTeamIdSchema, listSessionSnapshotsResponseSchema, listSessionSnapshotsStatus200Schema, listSessionSnapshotsStatus400Schema, listSessionSnapshotsStatus401Schema, listSessionSnapshotsStatus403Schema, listSessionSnapshotsStatus404Schema, listSessionSnapshotsStatus410Schema, listSessionSnapshotsStatus429Schema, listSessionsErrorSchema, listSessionsQueryCursorSchema, listSessionsQueryLimitSchema, listSessionsQueryNameSchema, listSessionsQueryProjectSchema, listSessionsQuerySlugSchema, listSessionsQuerySortOrderSchema, listSessionsQueryTeamIdSchema, listSessionsResponseSchema, listSessionsStatus200Schema, listSessionsStatus400Schema, listSessionsStatus401Schema, listSessionsStatus403Schema, listSessionsStatus404Schema, listSessionsStatus410Schema, listSessionsStatus429Schema, listSessionsStatus500Schema, listSharedEnvVariableErrorSchema, listSharedEnvVariableQueryExcludeIdsSchema, listSharedEnvVariableQueryExcludeProjectIdSchema, listSharedEnvVariableQueryIdsSchema, listSharedEnvVariableQueryProjectIdSchema, listSharedEnvVariableQuerySearchSchema, listSharedEnvVariableQuerySlugSchema, listSharedEnvVariableQueryTeamIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsErrorSchema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsErrorSchema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2ErrorSchema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsErrorSchema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainErrorSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainErrorSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsErrorSchema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaErrorSchema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamErrorSchema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassErrorSchema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectErrorSchema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesErrorSchema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, privateLinkEndpointSchema, propertyKeySchema, putFirewallConfigErrorSchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupErrorSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectErrorSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkErrorSchema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readPrivateLinkEndpointErrorSchema, readPrivateLinkEndpointPathEndpointIdSchema, readPrivateLinkEndpointQueryProjectIdSchema, readPrivateLinkEndpointQuerySlugSchema, readPrivateLinkEndpointQueryTeamIdSchema, readPrivateLinkEndpointResponseSchema, readPrivateLinkEndpointStatus200Schema, readPrivateLinkEndpointStatus400Schema, readPrivateLinkEndpointStatus401Schema, readPrivateLinkEndpointStatus403Schema, readPrivateLinkEndpointStatus404Schema, readPrivateLinkEndpointStatus410Schema, readSessionFileErrorSchema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsErrorSchema, recordEventsHeaderXArtifactClientCiSchema, recordEventsHeaderXArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpErrorSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus402Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertErrorSchema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentErrorSchema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainErrorSchema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvErrorSchema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberErrorSchema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordErrorSchema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionErrorSchema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberErrorSchema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainErrorSchema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceErrorSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceConnectorTriggerDestinationsErrorSchema, replaceConnectorTriggerDestinationsPathConnectorSchema, replaceConnectorTriggerDestinationsQuerySlugSchema, replaceConnectorTriggerDestinationsQueryTeamIdSchema, replaceConnectorTriggerDestinationsResponseSchema, replaceConnectorTriggerDestinationsStatus200Schema, replaceConnectorTriggerDestinationsStatus400Schema, replaceConnectorTriggerDestinationsStatus401Schema, replaceConnectorTriggerDestinationsStatus403Schema, replaceConnectorTriggerDestinationsStatus404Schema, replaceConnectorTriggerDestinationsStatus410Schema, replaceConnectorTriggerDestinationsStatus422Schema, replaceDomainsByDomainRecordsErrorSchema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigErrorSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamErrorSchema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteErrorSchema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromoteErrorSchema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestPromoteStatus422Schema, requestRollbackErrorSchema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckErrorSchema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupErrorSchema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsErrorSchema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, revokeInstallationCredentialErrorSchema, revokeInstallationCredentialPathIntegrationConfigurationIdSchema, revokeInstallationCredentialResponseSchema, revokeInstallationCredentialStatus200Schema, revokeInstallationCredentialStatus400Schema, revokeInstallationCredentialStatus401Schema, revokeInstallationCredentialStatus403Schema, revokeInstallationCredentialStatus404Schema, revokeInstallationCredentialStatus409Schema, revokeInstallationCredentialStatus410Schema, revokeKmsSigningKeyErrorSchema, revokeKmsSigningKeyPathIssuerIdSchema, revokeKmsSigningKeyPathKeyIdSchema, revokeKmsSigningKeyQuerySlugSchema, revokeKmsSigningKeyQueryTeamIdSchema, revokeKmsSigningKeyResponseSchema, revokeKmsSigningKeyStatus200Schema, revokeKmsSigningKeyStatus400Schema, revokeKmsSigningKeyStatus401Schema, revokeKmsSigningKeyStatus403Schema, revokeKmsSigningKeyStatus404Schema, revokeKmsSigningKeyStatus409Schema, revokeKmsSigningKeyStatus410Schema, rotateInstallationCredentialErrorSchema, rotateInstallationCredentialPathIntegrationConfigurationIdSchema, rotateInstallationCredentialResponseSchema, rotateInstallationCredentialStatus200Schema, rotateInstallationCredentialStatus400Schema, rotateInstallationCredentialStatus401Schema, rotateInstallationCredentialStatus403Schema, rotateInstallationCredentialStatus404Schema, rotateInstallationCredentialStatus409Schema, rotateInstallationCredentialStatus410Schema, runSessionCommandErrorSchema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoErrorSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, signKmsMessageErrorSchema, signKmsMessagePathIssuerIdSchema, signKmsMessageResponseSchema, signKmsMessageStatus200Schema, signKmsMessageStatus400Schema, signKmsMessageStatus401Schema, signKmsMessageStatus403Schema, signKmsMessageStatus404Schema, signKmsMessageStatus429Schema, signKmsTokenErrorSchema, signKmsTokenPathIssuerIdSchema, signKmsTokenResponseSchema, signKmsTokenStatus200Schema, signKmsTokenStatus400Schema, signKmsTokenStatus401Schema, signKmsTokenStatus403Schema, signKmsTokenStatus404Schema, signKmsTokenStatus429Schema, snapshotSchema, stageRedirectsErrorSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesErrorSchema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleaseErrorSchema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusErrorSchema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionErrorSchema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataErrorSchema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoiceErrorSchema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesErrorSchema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainErrorSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainErrorSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariableErrorSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectErrorSchema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupErrorSchema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectErrorSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleErrorSchema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigBySlugErrorSchema, updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema, updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema, updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema, updateAiGatewayVirtualModelConfigBySlugResponseSchema, updateAiGatewayVirtualModelConfigBySlugStatus200Schema, updateAiGatewayVirtualModelConfigBySlugStatus400Schema, updateAiGatewayVirtualModelConfigBySlugStatus401Schema, updateAiGatewayVirtualModelConfigBySlugStatus403Schema, updateAiGatewayVirtualModelConfigBySlugStatus404Schema, updateAiGatewayVirtualModelConfigBySlugStatus410Schema, updateAiGatewayVirtualModelConfigBySlugStatus500Schema, updateAiGatewayVirtualModelConfigErrorSchema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeErrorSchema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidErrorSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckErrorSchema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateConnectorErrorSchema, updateConnectorPathConnectorSchema, updateConnectorQuerySlugSchema, updateConnectorQueryTeamIdSchema, updateConnectorResponseSchema, updateConnectorStatus200Schema, updateConnectorStatus400Schema, updateConnectorStatus401Schema, updateConnectorStatus403Schema, updateConnectorStatus404Schema, updateConnectorStatus409Schema, updateConnectorStatus410Schema, updateConnectorStatus422Schema, updateConnectorStatus502Schema, updateCustomEnvironmentErrorSchema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunErrorSchema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewErrorSchema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversErrorSchema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainErrorSchema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigErrorSchema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigErrorSchema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagErrorSchema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentErrorSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsErrorSchema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationErrorSchema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdErrorSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionErrorSchema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoiceErrorSchema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateKmsIssuerErrorSchema, updateKmsIssuerPathIssuerIdSchema, updateKmsIssuerPolicyErrorSchema, updateKmsIssuerPolicyPathIssuerIdSchema, updateKmsIssuerPolicyPathKindSchema, updateKmsIssuerPolicyPathPolicyKeySchema, updateKmsIssuerPolicyQuerySlugSchema, updateKmsIssuerPolicyQueryTeamIdSchema, updateKmsIssuerPolicyResponseSchema, updateKmsIssuerPolicyStatus200Schema, updateKmsIssuerPolicyStatus400Schema, updateKmsIssuerPolicyStatus401Schema, updateKmsIssuerPolicyStatus403Schema, updateKmsIssuerPolicyStatus404Schema, updateKmsIssuerPolicyStatus410Schema, updateKmsIssuerQuerySlugSchema, updateKmsIssuerQueryTeamIdSchema, updateKmsIssuerResponseSchema, updateKmsIssuerStatus200Schema, updateKmsIssuerStatus400Schema, updateKmsIssuerStatus401Schema, updateKmsIssuerStatus403Schema, updateKmsIssuerStatus404Schema, updateKmsIssuerStatus410Schema, updateMicrofrontendsErrorSchema, updateMicrofrontendsGroupErrorSchema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkErrorSchema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectErrorSchema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updatePrivateLinkEndpointErrorSchema, updatePrivateLinkEndpointPathEndpointIdSchema, updatePrivateLinkEndpointQueryProjectIdSchema, updatePrivateLinkEndpointQuerySlugSchema, updatePrivateLinkEndpointQueryTeamIdSchema, updatePrivateLinkEndpointResponseSchema, updatePrivateLinkEndpointStatus200Schema, updatePrivateLinkEndpointStatus400Schema, updatePrivateLinkEndpointStatus401Schema, updatePrivateLinkEndpointStatus403Schema, updatePrivateLinkEndpointStatus404Schema, updatePrivateLinkEndpointStatus409Schema, updatePrivateLinkEndpointStatus410Schema, updateProjectCheckErrorSchema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainErrorSchema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectErrorSchema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassErrorSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectStatus429Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordErrorSchema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourceErrorSchema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdErrorSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsErrorSchema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigErrorSchema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsErrorSchema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxErrorSchema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyErrorSchema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableErrorSchema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsErrorSchema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberErrorSchema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionErrorSchema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactErrorSchema, uploadArtifactHeaderContentLengthSchema, uploadArtifactHeaderXArtifactClientCiSchema, uploadArtifactHeaderXArtifactClientInteractiveSchema, uploadArtifactHeaderXArtifactDirtyHashSchema, uploadArtifactHeaderXArtifactDurationSchema, uploadArtifactHeaderXArtifactShaSchema, uploadArtifactHeaderXArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertErrorSchema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileErrorSchema, uploadFileHeaderContentLengthSchema, uploadFileHeaderXNowDigestSchema, uploadFileHeaderXNowSizeSchema, uploadFileHeaderXVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarErrorSchema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, upsertConnectorProjectConnectionErrorSchema, upsertConnectorProjectConnectionPathConnectorSchema, upsertConnectorProjectConnectionPathProjectIdSchema, upsertConnectorProjectConnectionQuerySlugSchema, upsertConnectorProjectConnectionQueryTeamIdSchema, upsertConnectorProjectConnectionResponseSchema, upsertConnectorProjectConnectionStatus200Schema, upsertConnectorProjectConnectionStatus400Schema, upsertConnectorProjectConnectionStatus401Schema, upsertConnectorProjectConnectionStatus403Schema, upsertConnectorProjectConnectionStatus404Schema, upsertConnectorProjectConnectionStatus410Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesErrorSchema, writeSessionFilesHeaderXCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
15885
16717
  //# sourceMappingURL=schemas.d.mts.map