vercel-api-js 1.15.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -178,6 +178,85 @@ const networkSchema = z__namespace.object({
178
178
  teamId: z__namespace.string().describe("The unique identifier of the Team that owns the Network."),
179
179
  vpcId: z__namespace.string().optional().describe("The ID of the VPC which hosts the network.")
180
180
  });
181
+ const privateLinkEndpointSchema = z__namespace.object({
182
+ endpointId: z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
183
+ examples: [
184
+ "ple_a1b2c3d4e5f6g7h8"
185
+ ]
186
+ }),
187
+ name: z__namespace.string().describe("The name of the PrivateLink endpoint, shown in the Vercel dashboard.").meta({
188
+ examples: [
189
+ "payments-db"
190
+ ]
191
+ }),
192
+ teamId: z__namespace.string().describe("The identifier of the team that owns the PrivateLink endpoint.").meta({
193
+ examples: [
194
+ "team_a1b2c3d4e5f6g7h8"
195
+ ]
196
+ }),
197
+ projectId: z__namespace.string().describe("The identifier of the project the PrivateLink endpoint belongs to.").meta({
198
+ examples: [
199
+ "prj_a1b2c3d4e5f6g7h8"
200
+ ]
201
+ }),
202
+ vercelRegion: z__namespace.string().describe("The Vercel region the endpoint is provisioned in.").meta({
203
+ examples: [
204
+ "iad1"
205
+ ]
206
+ }),
207
+ awsServiceName: z__namespace.string().describe("The AWS VPC endpoint service the endpoint connects to.").meta({
208
+ examples: [
209
+ "com.amazonaws.vpce.us-east-1.vpce-svc-0123456789abcdef0"
210
+ ]
211
+ }),
212
+ vpcEndpointId: z__namespace.string().optional().describe("The identifier of the underlying AWS VPC endpoint. Absent until AWS has created the endpoint.").meta({
213
+ examples: [
214
+ "vpce-0123456789abcdef0"
215
+ ]
216
+ }),
217
+ awsDnsEntries: z__namespace.array(z__namespace.string()).optional().describe("The regional DNS names assigned to the endpoint by AWS. Use these to reach the service when private DNS is not enabled.").meta({
218
+ examples: [
219
+ [
220
+ "vpce-0123456789abcdef0-a1b2c3d4.vpce-svc-0123456789abcdef0.us-east-1.vpce.amazonaws.com"
221
+ ]
222
+ ]
223
+ }),
224
+ privateDnsNames: z__namespace.array(z__namespace.string()).optional().describe("The private DNS names of the endpoint service, populated when private DNS is enabled for the endpoint.").meta({
225
+ examples: [
226
+ [
227
+ "payments.internal.example.com"
228
+ ]
229
+ ]
230
+ }),
231
+ status: z__namespace.enum([
232
+ "available",
233
+ "creating",
234
+ "deleting",
235
+ "failed",
236
+ "pending-acceptance",
237
+ "provisioning",
238
+ "rejected"
239
+ ]).describe("The current state of the endpoint. - `creating`: the endpoint is being created. - `pending-acceptance`: waiting for the endpoint service owner to accept the connection. Only occurs for services that require manual acceptance. - `provisioning`: the connection was accepted and AWS is finishing setup. - `available`: the endpoint is fully provisioned and ready to use. - `rejected`: the endpoint service owner rejected the connection. - `failed`: the endpoint could not be provisioned. - `deleting`: the endpoint is being deleted.").meta({
240
+ examples: [
241
+ "available"
242
+ ]
243
+ }),
244
+ statusMessage: z__namespace.string().optional().describe("A human-readable explanation of why the endpoint could not be provisioned. Only set when `status` is `failed`, and absent for every other status including `rejected`, since AWS does not report a rejection reason.").meta({
245
+ examples: [
246
+ "Endpoint did not become available in time. Try deleting and recreating, or visit https://vercel.com/help if the issue persists."
247
+ ]
248
+ }),
249
+ createdAt: z__namespace.number().describe("Timestamp in milliseconds since the UNIX epoch for when the endpoint was created.").meta({
250
+ examples: [
251
+ 1610963878358
252
+ ]
253
+ }),
254
+ updatedAt: z__namespace.number().describe("Timestamp in milliseconds since the UNIX epoch for when the endpoint was last updated.").meta({
255
+ examples: [
256
+ 1610963878358
257
+ ]
258
+ })
259
+ }).describe("A PrivateLink endpoint, which connects a project to an AWS VPC endpoint service in a single region so that traffic reaches the service over AWS PrivateLink rather than the public internet.");
181
260
  const connectTriggerConfigurationSchema = z__namespace.object({
182
261
  enabled: z__namespace.union([
183
262
  z__namespace.literal(false),
@@ -190,6 +269,156 @@ const connectTriggerDestinationSchema = z__namespace.object({
190
269
  branch: z__namespace.string().optional().describe("Git branch used to select a preview deployment."),
191
270
  path: z__namespace.string().optional().describe("Route path that receives the forwarded trigger request.")
192
271
  }).describe("Destinations that incoming triggers should be forwarded to. Limited to 3 entries. Set the initial destination with `triggerDestination` during creation. Replace the complete set with `PATCH /v1/connect/connectors/{connector}/trigger-destinations`.");
272
+ const connectConnectorSchema = z__namespace.object({
273
+ id: z__namespace.string().describe("Stable `scl_` connector ID. Use this value directly in `{connector}`."),
274
+ uid: z__namespace.string().describe("Team-scoped UID. URL-encode this value before using it in `{connector}`."),
275
+ defaultInstallationId: z__namespace.string().optional().describe("Installation used when a token request does not specify an installation."),
276
+ createdAt: z__namespace.number().describe("Creation time in epoch milliseconds."),
277
+ updatedAt: z__namespace.number().describe("Last update time in epoch milliseconds."),
278
+ reinstallAt: z__namespace.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
279
+ createdBy: z__namespace.discriminatedUnion("type", [
280
+ z__namespace.object({
281
+ type: z__namespace.enum([
282
+ "user"
283
+ ]).describe("Principal kind."),
284
+ id: z__namespace.string().describe("Vercel user ID.")
285
+ }).strict(),
286
+ z__namespace.object({
287
+ type: z__namespace.enum([
288
+ "project"
289
+ ]).describe("Principal kind."),
290
+ id: z__namespace.string().describe("Vercel project ID."),
291
+ environment: z__namespace.string().describe("Deployment environment of the project principal.")
292
+ }).strict()
293
+ ]).optional().describe("Principal that created the connector."),
294
+ updatedBy: z__namespace.discriminatedUnion("type", [
295
+ z__namespace.object({
296
+ type: z__namespace.enum([
297
+ "user"
298
+ ]).describe("Principal kind."),
299
+ id: z__namespace.string().describe("Vercel user ID.")
300
+ }).strict(),
301
+ z__namespace.object({
302
+ type: z__namespace.enum([
303
+ "project"
304
+ ]).describe("Principal kind."),
305
+ id: z__namespace.string().describe("Vercel project ID."),
306
+ environment: z__namespace.string().describe("Deployment environment of the project principal.")
307
+ }).strict()
308
+ ]).optional().describe("Principal that most recently updated the connector."),
309
+ creationMode: z__namespace.enum([
310
+ "managed",
311
+ "manual"
312
+ ]).optional().describe("How the connector row was originally created. New create paths stamp this explicitly; older rows may omit it."),
313
+ managed: z__namespace.object({
314
+ sync: z__namespace.union([
315
+ z__namespace.literal(false),
316
+ z__namespace.literal(true)
317
+ ]).optional().describe("Whether Vercel synchronizes provider-side configuration.")
318
+ }).optional().describe("Managed connector metadata exposed without leaking the manager connector or installation identifiers."),
319
+ type: z__namespace.enum([
320
+ "api-key",
321
+ "aws-alpha",
322
+ "custom",
323
+ "discord",
324
+ "github",
325
+ "linear",
326
+ "linq",
327
+ "microsoft-entra",
328
+ "microsoft-teams",
329
+ "oauth",
330
+ "photon",
331
+ "salesforce",
332
+ "sendblue",
333
+ "slack",
334
+ "snowflake",
335
+ "snowflake-wif"
336
+ ]).describe("Connector implementation type."),
337
+ service: z__namespace.string().describe("Best-effort identifier of the third-party service this connector represents, independent of `type`. Examples: `'slack'`, `'mcp.linear.app'`, and `'auth.example.com'`. Always present in API responses."),
338
+ connectionMethod: z__namespace.string().optional().describe("The connection method this connector was created from, when the create request named one."),
339
+ target: z__namespace.string().optional().describe("Which of the service's products/surfaces this connector points at."),
340
+ name: z__namespace.string().describe("Connector name within the owning team."),
341
+ displayName: z__namespace.string().describe("Human-readable connector name."),
342
+ clientUrl: z__namespace.string().nullish().describe("Provider-side URL for viewing or managing the resource represented by the connector. The destination can be an app, account, phone line, or service instance, depending on the connector type."),
343
+ redirectUri: z__namespace.string().optional().describe("Redirect URI registered with the third-party service for this connector, if any. Used by `startAuthorization`/`startInstallation` to replay the exact URI back to the provider's token endpoint. Absent on connectors created before this field was introduced; those callers fall back to the `https://connect.vercel.com/callback` default."),
344
+ typeName: z__namespace.string().describe("Human-readable name of the connector type."),
345
+ typeIcon: z__namespace.string().optional().describe("Icon identifier supplied by the connector type."),
346
+ website: z__namespace.string().optional().describe("Public website for the connected service."),
347
+ devsite: z__namespace.string().optional().describe("Developer website for the connected service."),
348
+ docsite: z__namespace.string().optional().describe("Developer documentation for the connected service."),
349
+ icon: z__namespace.string().optional().describe("Connector branding icon. SHA-1 hash that resolves to the uploaded icon through the Vercel avatar service. Consumers render this with `https://vercel.com/api/www/avatar/{icon}`."),
350
+ backgroundColor: z__namespace.string().optional().describe("Hex background color (e.g., `#000000`) for branding."),
351
+ accentColor: z__namespace.string().optional().describe("Hex accent color (e.g., `#000000`) for branding."),
352
+ supportedSubjectTypes: z__namespace.array(z__namespace.string()).describe("Token subject types supported by the connector."),
353
+ appTokens: z__namespace.object({
354
+ crossInstallation: z__namespace.union([
355
+ z__namespace.literal(false),
356
+ z__namespace.literal(true)
357
+ ]).describe("Whether one app token can be used across installations."),
358
+ supportsRefinement: z__namespace.union([
359
+ z__namespace.literal(false),
360
+ z__namespace.literal(true)
361
+ ]).describe("Whether callers can narrow app-token grants per request."),
362
+ supportsResources: z__namespace.union([
363
+ z__namespace.literal(false),
364
+ z__namespace.literal(true)
365
+ ]).optional().describe("Whether callers can request resource-specific app tokens."),
366
+ requiresReinstallation: z__namespace.union([
367
+ z__namespace.literal(false),
368
+ z__namespace.literal(true)
369
+ ]).optional().describe("True when changing app token grants requires reinstalling the app, so tokens cannot be partitioned independently by requester environment."),
370
+ scopes: z__namespace.array(z__namespace.string()).optional().describe("Known allowed app-level scopes. For Slack this is the bot scope set configured on the app; for OAuth it is the connector's enabled `clientCredentials.scopes` configuration."),
371
+ supportedAuthorizationDetails: z__namespace.array(z__namespace.string()).optional().describe("Supported OAuth authorization-detail type names."),
372
+ permissionsUrl: z__namespace.string().optional().describe("Link to the page on the service where this connector's app-level permissions are declared and granted, when the service has one and it differs from `clientUrl`.")
373
+ }).optional().describe("App-token capabilities and known grants for the connector."),
374
+ userTokens: z__namespace.object({
375
+ crossInstallation: z__namespace.union([
376
+ z__namespace.literal(false),
377
+ z__namespace.literal(true)
378
+ ]).describe("Whether one user token can be used across installations."),
379
+ supportsRefinement: z__namespace.union([
380
+ z__namespace.literal(false),
381
+ z__namespace.literal(true)
382
+ ]).describe("Whether callers can narrow user-token grants per request."),
383
+ supportsResources: z__namespace.union([
384
+ z__namespace.literal(false),
385
+ z__namespace.literal(true)
386
+ ]).optional().describe("Whether callers can request resource-specific user tokens."),
387
+ scopes: z__namespace.array(z__namespace.string()).optional().describe("Known allowed user-level scopes. For Slack this is the user scope set configured on the app; for OAuth it is the connector's enabled `userAuthorization.scopes` configuration."),
388
+ supportedAuthorizationDetails: z__namespace.array(z__namespace.string()).optional().describe("Supported OAuth authorization-detail type names."),
389
+ manualCredentialInput: z__namespace.union([
390
+ z__namespace.literal(false),
391
+ z__namespace.literal(true)
392
+ ]).optional().describe("User authorization is completed by the Connect consent screen submitting a credential instead of an OAuth redirect.")
393
+ }).optional().describe("User-token capabilities and known grants for the connector."),
394
+ supportsInstallation: z__namespace.union([
395
+ z__namespace.literal(false),
396
+ z__namespace.literal(true)
397
+ ]).describe("Whether the connector supports an installation flow."),
398
+ supportsRevocation: z__namespace.union([
399
+ z__namespace.literal(false),
400
+ z__namespace.literal(true)
401
+ ]).describe("Whether Connect can revoke tokens for this connector."),
402
+ supportsTriggers: z__namespace.union([
403
+ z__namespace.literal(false),
404
+ z__namespace.literal(true)
405
+ ]).describe("Whether this connector type supports trigger webhooks. Derived from the type definition; indicates that `triggers` and `triggerDestinations` may be meaningful for this connector."),
406
+ supportsIcon: z__namespace.union([
407
+ z__namespace.literal(false),
408
+ z__namespace.literal("maybe"),
409
+ z__namespace.literal(true)
410
+ ]).describe("Whether the connector icon can propagate to the provider."),
411
+ triggers: z__namespace.unknown().optional().describe("Incoming trigger configuration for the connector."),
412
+ events: z__namespace.array(z__namespace.string()).optional().describe("Known events this connector subscribes to (e.g. Slack bot events, GitHub webhook events). Names are type-specific and validated by the managed-create flow when forwarded to the third-party service."),
413
+ triggerDestinations: z__namespace.array(z__namespace.unknown()).optional().describe("Destinations that incoming triggers should be forwarded to. Limited to 3 entries. Set the initial destination with `triggerDestination` during creation. Replace the complete set with `PATCH /v1/connect/connectors/{connector}/trigger-destinations`.")
414
+ }).describe("A connector that defines how Vercel accesses an external service.");
415
+ const connectPaginationSchema = z__namespace.object({
416
+ next: z__namespace.string().nullable().describe("Opaque value to pass as `cursor` on the next request.")
417
+ }).describe("Cursor for the next page.");
418
+ const connectConnectorListSchema = z__namespace.object({
419
+ connectors: z__namespace.array(z__namespace.unknown()).describe("Connectors in this page."),
420
+ pagination: z__namespace.unknown().describe("Cursor for the next page.")
421
+ }).describe("Page of connectors.");
193
422
  const connectConnectorCreateResultSchema = z__namespace.object({
194
423
  id: z__namespace.string().describe("Stable `scl_` connector ID. Use this value directly in `{connector}`."),
195
424
  uid: z__namespace.string().describe("Team-scoped UID. URL-encode this value before using it in `{connector}`."),
@@ -197,7 +426,7 @@ const connectConnectorCreateResultSchema = z__namespace.object({
197
426
  createdAt: z__namespace.number().describe("Creation time in epoch milliseconds."),
198
427
  updatedAt: z__namespace.number().describe("Last update time in epoch milliseconds."),
199
428
  reinstallAt: z__namespace.number().optional().describe("Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."),
200
- createdBy: z__namespace.union([
429
+ createdBy: z__namespace.discriminatedUnion("type", [
201
430
  z__namespace.object({
202
431
  type: z__namespace.enum([
203
432
  "user"
@@ -212,7 +441,7 @@ const connectConnectorCreateResultSchema = z__namespace.object({
212
441
  environment: z__namespace.string().describe("Deployment environment of the project principal.")
213
442
  }).strict()
214
443
  ]).optional().describe("Principal that created the connector."),
215
- updatedBy: z__namespace.union([
444
+ updatedBy: z__namespace.discriminatedUnion("type", [
216
445
  z__namespace.object({
217
446
  type: z__namespace.enum([
218
447
  "user"
@@ -239,6 +468,7 @@ const connectConnectorCreateResultSchema = z__namespace.object({
239
468
  }).optional().describe("Managed connector metadata exposed without leaking the manager connector or installation identifiers."),
240
469
  type: z__namespace.enum([
241
470
  "api-key",
471
+ "aws-alpha",
242
472
  "custom",
243
473
  "discord",
244
474
  "github",
@@ -279,6 +509,10 @@ const connectConnectorCreateResultSchema = z__namespace.object({
279
509
  z__namespace.literal(false),
280
510
  z__namespace.literal(true)
281
511
  ]).describe("Whether callers can narrow app-token grants per request."),
512
+ supportsResources: z__namespace.union([
513
+ z__namespace.literal(false),
514
+ z__namespace.literal(true)
515
+ ]).optional().describe("Whether callers can request resource-specific app tokens."),
282
516
  requiresReinstallation: z__namespace.union([
283
517
  z__namespace.literal(false),
284
518
  z__namespace.literal(true)
@@ -296,6 +530,10 @@ const connectConnectorCreateResultSchema = z__namespace.object({
296
530
  z__namespace.literal(false),
297
531
  z__namespace.literal(true)
298
532
  ]).describe("Whether callers can narrow user-token grants per request."),
533
+ supportsResources: z__namespace.union([
534
+ z__namespace.literal(false),
535
+ z__namespace.literal(true)
536
+ ]).optional().describe("Whether callers can request resource-specific user tokens."),
299
537
  scopes: z__namespace.array(z__namespace.string()).optional().describe("Known allowed user-level scopes. For Slack this is the user scope set configured on the app; for OAuth it is the connector's enabled `userAuthorization.scopes` configuration."),
300
538
  supportedAuthorizationDetails: z__namespace.array(z__namespace.string()).optional().describe("Supported OAuth authorization-detail type names."),
301
539
  manualCredentialInput: z__namespace.union([
@@ -425,7 +663,8 @@ const connectConnectorCreateDataSchema = z__namespace.union([
425
663
  scope: z__namespace.string().optional().describe("Optional scope associated with the API key value."),
426
664
  expiresAt: z__namespace.int().gt(0).optional().describe("The timestamp when the API key value expires in milliseconds.")
427
665
  }).strict()).optional().describe("Initial API key values stored by the connector."),
428
- serviceUrls: z__namespace.array(z__namespace.url()).min(1).max(8).optional().describe("The HTTPS resources the API key authenticates against.")
666
+ serviceUrls: z__namespace.array(z__namespace.url()).min(1).max(8).optional().describe("The HTTPS resources the API key authenticates against."),
667
+ instructions: z__namespace.string().max(4000).optional().describe("Markdown instructions shown to each user on the authorization screen, explaining how to obtain the key they should paste.")
429
668
  }).strict(),
430
669
  z__namespace.object({
431
670
  appId: z__namespace.int().gt(0).describe("GitHub App numeric ID."),
@@ -508,6 +747,21 @@ const connectConnectorCreateDataSchema = z__namespace.union([
508
747
  verificationToken: z__namespace.string().optional().describe("Legacy Slack webhook verification token."),
509
748
  botScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Slack bot tokens."),
510
749
  userScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Slack user tokens."),
750
+ slashCommands: z__namespace.array(z__namespace.object({
751
+ command: z__namespace.string().max(32).regex(/^\\[/]/).describe("Slash command including its leading slash."),
752
+ description: z__namespace.string().max(2000).describe("Description shown for the slash command in Slack."),
753
+ usageHint: z__namespace.string().max(1000).optional().describe("Optional usage hint shown for the slash command."),
754
+ shouldEscape: z__namespace.boolean().optional().describe("Whether Slack should escape command arguments.")
755
+ }).strict()).max(50).optional().describe("Slash commands configured for the managed Slack app."),
756
+ shortcuts: z__namespace.array(z__namespace.object({
757
+ type: z__namespace.enum([
758
+ "global",
759
+ "message"
760
+ ]).describe("Where Slack exposes the shortcut."),
761
+ name: z__namespace.string().describe("Shortcut display name."),
762
+ callbackId: z__namespace.string().max(255).describe("Identifier included in the shortcut callback."),
763
+ description: z__namespace.string().max(150).describe("Description shown for the shortcut in Slack.")
764
+ }).strict()).max(10).optional().describe("Global and message shortcuts configured for the Slack app."),
511
765
  extras: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional provider metadata stored with the connector.")
512
766
  }).strict(),
513
767
  z__namespace.object({
@@ -564,6 +818,316 @@ const connectCreateConnectorRequestSchema = z__namespace.union([
564
818
  ]).optional().describe("Initial trigger destination. Requires triggers to be enabled and a projectId here or at the top level. Connector responses expose the resulting set as triggerDestinations. Replace the complete set with PATCH /v1/connect/connectors/{connector}/trigger-destinations."),
565
819
  events: z__namespace.array(z__namespace.string()).optional().describe("Default trigger events for this connector.")
566
820
  })).describe("Create a connector with full provider configuration or with a known service connection method.");
821
+ const connectReconsentSchema = z__namespace.object({
822
+ scope: z__namespace.enum([
823
+ "user"
824
+ ]).describe("The affected authorization scope. user means each affected user must authorize again.")
825
+ }).describe("Existing authorizations no longer cover the connector's configured scopes, so they must be re-authorized.");
826
+ const connectServiceSyncErrorSchema = z__namespace.object({
827
+ message: z__namespace.string().describe("Human-readable provider synchronization error."),
828
+ fields: z__namespace.array(z__namespace.string()).optional().describe("Connector fields that caused the synchronization error."),
829
+ vendor: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Provider-specific error details that are safe to expose.")
830
+ }).describe("Provider synchronization errors, when synchronization is required.");
831
+ const connectServiceSyncSchema = z__namespace.object({
832
+ status: z__namespace.enum([
833
+ "done",
834
+ "required"
835
+ ]).describe("done means the external service was updated. required means the Vercel update was saved, but provider-side configuration still needs attention."),
836
+ errors: z__namespace.array(z__namespace.unknown()).optional().describe("Provider synchronization errors. Present when serviceSync.status is required.")
837
+ }).describe("Provider-side configuration synchronization result.");
838
+ const connectConnectorUpdateResultSchema = z__namespace.object({
839
+ connector: z__namespace.unknown().describe("Updated connector."),
840
+ reinstallNeeded: z__namespace.union([
841
+ z__namespace.literal(false),
842
+ z__namespace.literal(true)
843
+ ]).optional().describe("When true, prompt a team owner or administrator to reinstall the connector before relying on the change."),
844
+ reconsentNeeded: z__namespace.unknown().optional().describe("Present when affected users must authorize the connector's new permissions."),
845
+ serviceSync: z__namespace.unknown().optional().describe("Result of synchronizing the change with the external service.")
846
+ }).describe("Updated connector and any required provider follow-up actions.");
847
+ const connectConnectorUpdateDataSchema = z__namespace.union([
848
+ z__namespace.object({
849
+ serverUrl: z__namespace.string().optional().describe("Authorization server base URL used for discovery."),
850
+ serverConfig: z__namespace.object({
851
+ issuer: z__namespace.string().optional().describe("Authorization server issuer URL."),
852
+ authorizationEndpoint: z__namespace.string().optional().describe("OAuth authorization endpoint URL."),
853
+ tokenEndpoint: z__namespace.string().optional().describe("OAuth token endpoint URL."),
854
+ userinfoEndpoint: z__namespace.string().optional().describe("OpenID Connect UserInfo endpoint URL."),
855
+ jwksUri: z__namespace.string().optional().describe("URL of the authorization server JSON Web Key Set."),
856
+ jwks: z__namespace.object({
857
+ keys: z__namespace.array(z__namespace.object({
858
+ kty: z__namespace.string().describe("JSON Web Key type."),
859
+ kid: z__namespace.string().optional().describe("JSON Web Key identifier."),
860
+ use: z__namespace.enum([
861
+ "sig",
862
+ "enc"
863
+ ]).optional().describe("Intended key use: signing or encryption."),
864
+ keyOps: z__namespace.array(z__namespace.string()).optional().describe("Operations permitted for this key."),
865
+ alg: z__namespace.string().optional().describe("Algorithm intended for this key.")
866
+ }).catchall(z__namespace.unknown())).describe("JSON Web Keys published by the authorization server.")
867
+ }).catchall(z__namespace.unknown()).optional().describe("Inline authorization server JSON Web Key Set."),
868
+ revocationEndpoint: z__namespace.string().optional().describe("OAuth token revocation endpoint URL."),
869
+ introspectionEndpoint: z__namespace.string().optional().describe("OAuth token introspection endpoint URL."),
870
+ endSessionEndpoint: z__namespace.string().optional().describe("OpenID Connect session termination endpoint URL."),
871
+ deviceAuthorizationEndpoint: z__namespace.string().optional().describe("OAuth device authorization endpoint URL."),
872
+ registrationEndpoint: z__namespace.string().optional().describe("OAuth dynamic client registration endpoint URL."),
873
+ responseTypesSupported: z__namespace.array(z__namespace.string()).optional().describe("OAuth response types supported by the server."),
874
+ tokenEndpointAuthMethodsSupported: z__namespace.array(z__namespace.string()).optional().describe("Token endpoint client authentication methods supported by the server."),
875
+ tokenEndpointAuthSigningAlgValuesSupported: z__namespace.array(z__namespace.string()).optional().describe("Signing algorithms supported for token endpoint authentication."),
876
+ scopesSupported: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes supported by the server."),
877
+ grantTypesSupported: z__namespace.array(z__namespace.string()).optional().describe("OAuth grant types supported by the server."),
878
+ responseModesSupported: z__namespace.array(z__namespace.string()).optional().describe("OAuth response modes supported by the server."),
879
+ subjectTypesSupported: z__namespace.array(z__namespace.string()).optional().describe("OpenID Connect subject identifier types supported by the server."),
880
+ idTokenSigningAlgValuesSupported: z__namespace.array(z__namespace.string()).optional().describe("Signing algorithms supported for ID tokens."),
881
+ idTokenEncryptionAlgValuesSupported: z__namespace.array(z__namespace.string()).optional().describe("Key management algorithms supported for encrypted ID tokens."),
882
+ idTokenEncryptionEncValuesSupported: z__namespace.array(z__namespace.string()).optional().describe("Content encryption algorithms supported for encrypted ID tokens."),
883
+ claimTypesSupported: z__namespace.array(z__namespace.string()).optional().describe("OpenID Connect claim value types supported by the server."),
884
+ claimsSupported: z__namespace.array(z__namespace.string()).optional().describe("Claims that the authorization server can return."),
885
+ codeChallengeMethodsSupported: z__namespace.array(z__namespace.string()).optional().describe("PKCE code challenge methods supported by the server."),
886
+ promptValuesSupported: z__namespace.array(z__namespace.string()).optional().describe("Authorization prompt values supported by the server."),
887
+ claimsParameterSupported: z__namespace.boolean().optional().describe("Whether authorization requests can use the claims parameter."),
888
+ requestParameterSupported: z__namespace.boolean().optional().describe("Whether authorization requests can use signed request objects."),
889
+ requestUriParameterSupported: z__namespace.boolean().optional().describe("Whether authorization requests can use request_uri."),
890
+ requireRequestUriRegistration: z__namespace.boolean().optional().describe("Whether request_uri values must be registered in advance."),
891
+ serviceDocumentation: z__namespace.string().optional().describe("Authorization server documentation URL."),
892
+ opPolicyUri: z__namespace.string().optional().describe("Authorization server privacy policy URL."),
893
+ opTosUri: z__namespace.string().optional().describe("Authorization server terms of service URL."),
894
+ logoUri: z__namespace.string().optional().describe("Authorization server logo URL."),
895
+ clientIdMetadataDocumentSupported: z__namespace.boolean().optional().describe("Whether the server supports OAuth client ID metadata documents."),
896
+ authorizationDetailsTypesSupported: z__namespace.array(z__namespace.string()).optional().describe("OAuth authorization-detail types supported by the server.")
897
+ }).catchall(z__namespace.unknown()).optional().default({}).describe("Authorization server metadata. Values override discovered metadata. Empty known string fields remove their stored overrides."),
898
+ clientId: z__namespace.string().optional().describe("OAuth client ID."),
899
+ clientName: z__namespace.string().optional().describe("OAuth client name."),
900
+ clientSecret: z__namespace.string().optional().describe("OAuth client secret."),
901
+ tokenEndpointAuthMethod: z__namespace.string().optional().describe("OAuth token endpoint authentication method. Common values are client_secret_post, client_secret_basic, none, and private_key_jwt. If omitted, Vercel selects a supported method from serverConfig and otherwise uses client_secret_post."),
902
+ responseType: z__namespace.string().optional().describe("OAuth authorization response type. Defaults to code. Other provider-supported values are accepted. An empty string clears the configured type."),
903
+ pkceRequired: z__namespace.boolean().optional().describe("Whether user authorization must use PKCE."),
904
+ codeChallengeMethod: z__namespace.string().optional().describe("PKCE code challenge method. Supported values are S256 and plain. Vercel prefers S256 when the provider supports it. An empty string clears the configured method."),
905
+ userAuthorization: z__namespace.object({
906
+ enabled: z__namespace.boolean().describe("Whether this OAuth grant is enabled."),
907
+ scopes: z__namespace.array(z__namespace.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].')
908
+ }).strict().optional().describe("User authorization grant settings."),
909
+ refreshTokens: z__namespace.object({
910
+ enabled: z__namespace.boolean().describe("Whether this OAuth grant is enabled.")
911
+ }).strict().optional().describe("Refresh token settings."),
912
+ clientCredentials: z__namespace.object({
913
+ enabled: z__namespace.boolean().describe("Whether this OAuth grant is enabled."),
914
+ scopes: z__namespace.array(z__namespace.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].')
915
+ }).strict().optional().describe("Client credentials grant settings."),
916
+ forwardedClaims: z__namespace.object({
917
+ idToken: z__namespace.array(z__namespace.string()).optional().describe("ID token claim names that Connect can expose.")
918
+ }).strict().optional().describe("Allow-list of extra claims to propagate, keyed by source (idToken). Only claims named here and present in that source are exposed."),
919
+ defaultAudience: z__namespace.string().optional().describe("Default audience used when a token request omits one. An empty string clears the default."),
920
+ defaultTokenExpiresIn: z__namespace.number().min(60).optional().describe("Default token lifetime in seconds to use when the token response omits expires_in."),
921
+ authorizationUrlParams: z__namespace.object({}).catchall(z__namespace.string()).optional().describe("Extra query parameters added to authorization URLs."),
922
+ jwtBearer: z__namespace.object({
923
+ enabled: z__namespace.boolean().optional().describe("Whether JWT bearer grants are enabled."),
924
+ scopes: z__namespace.array(z__namespace.string()).optional().describe('Default scopes to request when token params specify scopes: [\\"*\\"].'),
925
+ sub: z__namespace.string().optional().describe("Default JWT subject claim."),
926
+ iss: z__namespace.string().optional().describe("Default JWT issuer claim."),
927
+ aud: z__namespace.string().optional().describe("Default JWT audience claim."),
928
+ additionalClaims: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional claims included in generated JWT assertions."),
929
+ ttl: z__namespace.number().gt(0).optional().describe("JWT lifetime in seconds."),
930
+ useClientCredentials: z__namespace.boolean().optional().describe("Whether JWT bearer requests also use client credentials.")
931
+ }).strict().optional().describe("JWT bearer grant settings."),
932
+ clientAssertion: z__namespace.object({
933
+ type: z__namespace.string().optional().describe("OAuth client assertion type. Defaults to urn:ietf:params:oauth:client-assertion-type:jwt-bearer. An empty string clears the configured type."),
934
+ ttl: z__namespace.number().gt(0).optional().describe("Client assertion lifetime in seconds."),
935
+ claims: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional claims included in the client assertion.")
936
+ }).strict().optional().describe("`private_key_jwt` client assertion settings.")
937
+ }).strict(),
938
+ z__namespace.object({
939
+ toDelete: z__namespace.array(z__namespace.string()).optional().describe("Stored API key value IDs to delete."),
940
+ toAdd: z__namespace.array(z__namespace.object({
941
+ value: z__namespace.string().describe("API key value."),
942
+ scope: z__namespace.string().optional().describe("Optional scope associated with the API key value."),
943
+ expiresAt: z__namespace.int().gt(0).optional().describe("The timestamp when the API key value expires in milliseconds.")
944
+ }).strict()).optional().describe("API key values to add."),
945
+ toUpdate: z__namespace.array(z__namespace.object({
946
+ id: z__namespace.string().describe("Stored API key value ID."),
947
+ value: z__namespace.union([
948
+ z__namespace.string(),
949
+ z__namespace.string()
950
+ ]).optional().describe("Replacement API key value. Use null to keep the stored value."),
951
+ scope: z__namespace.union([
952
+ z__namespace.string(),
953
+ z__namespace.string()
954
+ ]).optional().describe("Replacement scope. Use null to remove the scope."),
955
+ expiresAt: z__namespace.union([
956
+ z__namespace.int().gt(0),
957
+ z__namespace.string()
958
+ ]).optional().describe("The timestamp when the API key value expires in milliseconds.")
959
+ }).strict()).optional().describe("Existing API key values to update."),
960
+ instructions: z__namespace.union([
961
+ z__namespace.string().max(4000),
962
+ z__namespace.string()
963
+ ]).optional().describe("Markdown instructions shown to each user on the authorization screen, explaining how to obtain the key they should paste.")
964
+ }).strict(),
965
+ z__namespace.object({
966
+ appId: z__namespace.int().gt(0).optional().describe("GitHub App numeric ID."),
967
+ appSlug: z__namespace.string().optional().describe("GitHub App slug."),
968
+ appName: z__namespace.string().optional().describe("GitHub App display name."),
969
+ clientId: z__namespace.string().optional().describe("GitHub App OAuth client ID."),
970
+ owner: z__namespace.object({
971
+ type: z__namespace.enum([
972
+ "user",
973
+ "organization",
974
+ "User",
975
+ "Organization"
976
+ ]).describe("GitHub App owner type."),
977
+ id: z__namespace.int().describe("GitHub App owner numeric ID."),
978
+ slug: z__namespace.string().describe("GitHub App owner login."),
979
+ name: z__namespace.string().optional().describe("GitHub App owner display name.")
980
+ }).strict().optional().describe("GitHub App owner."),
981
+ clientSecret: z__namespace.string().optional().describe("GitHub App OAuth client secret."),
982
+ privateKeyPem: z__namespace.string().optional().describe("GitHub App private key in PEM format."),
983
+ webhookSecret: z__namespace.string().optional().describe("GitHub App webhook secret."),
984
+ extras: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional provider metadata stored with the connector.")
985
+ }).strict(),
986
+ z__namespace.object({
987
+ appId: z__namespace.string().optional().describe("Linear application ID."),
988
+ appName: z__namespace.string().optional().describe("Linear application name."),
989
+ clientId: z__namespace.string().optional().describe("Linear OAuth client ID."),
990
+ clientSecret: z__namespace.string().optional().describe("Linear OAuth client secret."),
991
+ webhookSecret: z__namespace.string().optional().describe("Linear webhook verification secret."),
992
+ appScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Linear application tokens."),
993
+ userScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Linear user tokens."),
994
+ ownerOrganization: z__namespace.object({
995
+ id: z__namespace.string().describe("Linear organization ID."),
996
+ slug: z__namespace.string().describe("Linear organization slug."),
997
+ name: z__namespace.string().describe("Linear organization name."),
998
+ logoUrl: z__namespace.string().nullish().describe("Linear organization logo URL.")
999
+ }).strict().optional().describe("Linear organization that owns the OAuth application."),
1000
+ application: z__namespace.object({
1001
+ id: z__namespace.string().describe("Linear OAuth application ID."),
1002
+ clientId: z__namespace.string().describe("Linear OAuth client ID."),
1003
+ name: z__namespace.string().describe("Linear OAuth application name."),
1004
+ description: z__namespace.string().nullish().describe("Linear OAuth application description."),
1005
+ developer: z__namespace.string().nullish().describe("Linear OAuth application developer name."),
1006
+ developerUrl: z__namespace.string().nullish().describe("Linear OAuth application developer URL."),
1007
+ imageUrl: z__namespace.string().nullish().describe("Linear OAuth application image URL."),
1008
+ redirectUris: z__namespace.array(z__namespace.string()).optional().describe("Registered redirect URIs for the Linear OAuth application."),
1009
+ distribution: z__namespace.string().nullish().describe("Linear OAuth application distribution mode."),
1010
+ webhookResourceTypes: z__namespace.array(z__namespace.string()).optional().describe("Linear resource types delivered to the webhook."),
1011
+ webhookUrl: z__namespace.string().nullish().describe("Linear webhook URL."),
1012
+ webhookEnabled: z__namespace.boolean().optional().describe("Whether the Linear webhook is enabled."),
1013
+ createdAt: z__namespace.string().optional().describe("Linear OAuth application creation timestamp."),
1014
+ updatedAt: z__namespace.string().optional().describe("Linear OAuth application update timestamp.")
1015
+ }).strict().optional().describe("Linear OAuth application metadata."),
1016
+ extras: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional provider metadata stored with the connector.")
1017
+ }).strict(),
1018
+ z__namespace.object({
1019
+ consumerKey: z__namespace.string().optional().describe("Salesforce connected app consumer key."),
1020
+ consumerSecret: z__namespace.string().optional().describe("Salesforce connected app consumer secret."),
1021
+ loginHost: z__namespace.string().optional().describe("Salesforce login host, such as login.salesforce.com.")
1022
+ }).strict(),
1023
+ z__namespace.object({
1024
+ appId: z__namespace.string().optional().describe("Slack app ID."),
1025
+ appName: z__namespace.string().optional().describe("Slack app display name."),
1026
+ clientId: z__namespace.string().optional().describe("Slack app OAuth client ID."),
1027
+ clientSecret: z__namespace.string().optional().describe("Slack app OAuth client secret."),
1028
+ slackTeam: z__namespace.object({
1029
+ id: z__namespace.string().describe("Slack workspace ID."),
1030
+ name: z__namespace.string().optional().describe("Slack workspace name."),
1031
+ domain: z__namespace.string().optional().describe("Slack workspace domain.")
1032
+ }).strict().optional().describe("Slack workspace metadata."),
1033
+ signingSecret: z__namespace.string().optional().describe("Slack request signing secret."),
1034
+ verificationToken: z__namespace.string().optional().describe("Legacy Slack webhook verification token."),
1035
+ botScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Slack bot tokens."),
1036
+ userScopes: z__namespace.array(z__namespace.string()).optional().describe("OAuth scopes requested for Slack user tokens."),
1037
+ slashCommands: z__namespace.array(z__namespace.object({
1038
+ command: z__namespace.string().max(32).regex(/^\\[/]/).describe("Slash command including its leading slash."),
1039
+ description: z__namespace.string().max(2000).describe("Description shown for the slash command in Slack."),
1040
+ usageHint: z__namespace.string().max(1000).optional().describe("Optional usage hint shown for the slash command."),
1041
+ shouldEscape: z__namespace.boolean().optional().describe("Whether Slack should escape command arguments.")
1042
+ }).strict()).max(50).optional().describe("Slash commands configured for the managed Slack app."),
1043
+ shortcuts: z__namespace.array(z__namespace.object({
1044
+ type: z__namespace.enum([
1045
+ "global",
1046
+ "message"
1047
+ ]).describe("Where Slack exposes the shortcut."),
1048
+ name: z__namespace.string().describe("Shortcut display name."),
1049
+ callbackId: z__namespace.string().max(255).describe("Identifier included in the shortcut callback."),
1050
+ description: z__namespace.string().max(150).describe("Description shown for the shortcut in Slack.")
1051
+ }).strict()).max(10).optional().describe("Global and message shortcuts configured for the Slack app."),
1052
+ extras: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Additional provider metadata stored with the connector.")
1053
+ }).strict(),
1054
+ z__namespace.object({
1055
+ accountIdentifier: z__namespace.string().optional().describe("Snowflake account identifier."),
1056
+ defaultSessionRole: z__namespace.string().optional().describe("Default Snowflake role for created sessions.")
1057
+ }).strict(),
1058
+ z__namespace.object({
1059
+ accountIdentifier: z__namespace.string().optional().describe("Snowflake account identifier.")
1060
+ }).strict(),
1061
+ z__namespace.object({
1062
+ apiToken: z__namespace.string().optional().describe("Linq partner API token for the shared line."),
1063
+ phoneNumbers: z__namespace.array(z__namespace.string().regex(/^\\+[1-9]\\d{1,14}$/)).optional()
1064
+ }).strict(),
1065
+ z__namespace.object({
1066
+ apiKeyId: z__namespace.string().optional().describe("Sendblue API key id (`sb-api-key-id`)."),
1067
+ apiSecretKey: z__namespace.string().optional().describe("Sendblue API secret key (`sb-api-secret-key`)."),
1068
+ phoneNumbers: z__namespace.array(z__namespace.string().regex(/^\\+[1-9]\\d{1,14}$/)).optional().describe("E.164 Sendblue lines this connector sends and receives on. Used as the connector's display name, and the only lines its webhooks are registered for; an empty array clears them, which also removes the webhook subscription.")
1069
+ }).strict(),
1070
+ z__namespace.object({
1071
+ projectSecret: z__namespace.string().optional().describe("Photon project secret."),
1072
+ webhookSecret: z__namespace.string().optional().describe("Photon webhook verification secret."),
1073
+ repairWebhook: z__namespace.boolean().optional().describe("Whether Connect should recreate the Photon webhook.")
1074
+ }).strict(),
1075
+ z__namespace.object({}).catchall(z__namespace.unknown())
1076
+ ]).describe("Provider configuration fields for the connector type.");
1077
+ const connectUpdateConnectorRequestSchema = z__namespace.object({
1078
+ triggers: z__namespace.boolean().optional().describe("Whether the triggers are enabled for this connector."),
1079
+ events: z__namespace.array(z__namespace.string()).optional().describe("Default trigger events for this connector."),
1080
+ data: z__namespace.unknown().optional().describe("Provider configuration fields to update."),
1081
+ icon: z__namespace.string().regex(/^[0-9a-fA-F]{40}$/).optional().describe("SHA-1 digest of a PNG or JPEG icon that is at least 640 by 640 pixels. This field does not accept a URL or image bytes.\n\nFirst compute the digest and upload the raw image with [POST /v2/files](https://vercel.com/docs/rest-api/deployments/upload-deployment-files). Send `Content-Length` and the same 40-character digest in `x-vercel-digest`. Then set `icon` to that digest.\n\n```js\nimport { createHash } from 'node:crypto';\nimport { readFile } from 'node:fs/promises';\n\nconst VERCEL_TOKEN = process.env.VERCEL_TOKEN;\nconst connectorId = 'scl_...';\nconst bytes = await readFile('icon.png');\nconst digest = createHash('sha1').update(bytes).digest('hex');\n\nawait fetch('https://api.vercel.com/v2/files', {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${VERCEL_TOKEN}`,\n 'Content-Type': 'application/octet-stream',\n 'Content-Length': String(bytes.length),\n 'x-vercel-digest': digest,\n },\n body: bytes,\n});\n\nawait fetch(`https://api.vercel.com/v2/connect/connectors/${connectorId}`, {\n method: 'PATCH',\n headers: {\n Authorization: `Bearer ${VERCEL_TOKEN}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({ icon: digest }),\n});\n```\n"),
1082
+ backgroundColor: z__namespace.string().optional(),
1083
+ accentColor: z__namespace.string().optional(),
1084
+ uid: z__namespace.string().optional().describe("Full team-scoped UID, such as `slack/my-bot`. It cannot contain whitespace, `%`, `#`, control characters, or Vercel-owned namespaces. Changing it breaks callers that use the old UID. The stable connector ID does not change."),
1085
+ name: z__namespace.string().optional().describe("Display name for the connector. It is trimmed and cannot be empty or contain control characters.")
1086
+ }).strict().describe("Connector fields to update.");
1087
+ const connectTriggerDestinationInputSchema = z__namespace.union([
1088
+ z__namespace.object({
1089
+ projectId: z__namespace.string().min(1).describe("Project that receives matching trigger requests."),
1090
+ path: z__namespace.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
1091
+ }).strict(),
1092
+ z__namespace.object({
1093
+ projectId: z__namespace.string().min(1).describe("Project that receives matching trigger requests."),
1094
+ branch: z__namespace.string().min(1).max(250).describe("Git branch used to select a preview deployment."),
1095
+ path: z__namespace.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
1096
+ }).strict(),
1097
+ z__namespace.object({
1098
+ projectId: z__namespace.string().min(1).describe("Project that receives matching trigger requests."),
1099
+ customEnvironmentId: z__namespace.string().regex(/^env_/).describe("Stable custom environment ID that belongs to the destination project."),
1100
+ path: z__namespace.string().min(1).max(2048).optional().describe("Route path on the linked project that receives forwarded trigger requests.")
1101
+ }).strict()
1102
+ ]).describe("A destination in the complete replacement set. Each destination targets the default deployment, a branch, or a custom environment.");
1103
+ const connectReplaceTriggerDestinationsRequestSchema = z__namespace.object({
1104
+ destinations: z__namespace.array(z__namespace.unknown()).max(3).describe("Complete replacement set of trigger destinations. An empty array removes all destinations. Connector get and list responses expose the saved set as triggerDestinations.")
1105
+ }).strict().describe("Complete replacement set of trigger destinations.");
1106
+ const connectProjectConnectionSchema = z__namespace.object({
1107
+ connectorId: z__namespace.string().describe("Stable `scl_` connector ID, even when the request used a UID."),
1108
+ project: z__namespace.object({
1109
+ id: z__namespace.string().describe("Same Vercel project ID as the connection's top-level `projectId`."),
1110
+ name: z__namespace.string().describe("Current Vercel project name."),
1111
+ customEnvironments: z__namespace.array(z__namespace.object({
1112
+ id: z__namespace.string().describe("Stable custom environment ID."),
1113
+ slug: z__namespace.string().describe("Current human-readable custom environment slug.")
1114
+ })).optional().describe("Custom environments available on the project. This list can include environments where the connector is not enabled.")
1115
+ }).describe("Vercel project connected to the connector."),
1116
+ enabledEnvironments: z__namespace.array(z__namespace.string()).describe("Environments where the connector is enabled for the project."),
1117
+ createdAt: z__namespace.number().describe("Time when the project connection was created, in epoch milliseconds."),
1118
+ updatedAt: z__namespace.number().describe("Time when the project connection was last updated, in epoch milliseconds.")
1119
+ }).describe("A connection between a connector and a Vercel project, including the environments where the connector is enabled.");
1120
+ const connectConnectorProjectConnectionListSchema = z__namespace.object({
1121
+ projects: z__namespace.array(z__namespace.unknown()).describe("Project connections in this page."),
1122
+ pagination: z__namespace.unknown().describe("Cursor for the next page.")
1123
+ }).describe("Page of projects connected to a connector.");
1124
+ const connectUpsertProjectConnectionRequestSchema = z__namespace.object({
1125
+ environments: z__namespace.array(z__namespace.string().regex(/^env_/)).min(1).describe("One or more built-in environment names or stable custom environment IDs that belong to the project. Duplicate values are accepted and removed.")
1126
+ }).describe("Environments enabled for a connector project connection.");
1127
+ const connectProjectConnectorConnectionListSchema = z__namespace.object({
1128
+ connectors: z__namespace.array(z__namespace.unknown()).describe("Connector connections in this page."),
1129
+ pagination: z__namespace.unknown().describe("Cursor for the next page.")
1130
+ }).describe("Page of connectors connected to a project.");
567
1131
  const connectErrorSchema = z__namespace.object({
568
1132
  error: z__namespace.object({
569
1133
  code: z__namespace.string().describe("Stable machine-readable error code."),
@@ -818,7 +1382,7 @@ const boughtTooRecentlySchema = z__namespace.object({
818
1382
  ]),
819
1383
  message: z__namespace.string()
820
1384
  }).strict().describe("The domain was bought too recently to determine verification status.");
821
- const registrantFieldSchema = z__namespace.union([
1385
+ const registrantFieldSchema = z__namespace.discriminatedUnion("type", [
822
1386
  z__namespace.object({
823
1387
  description: z__namespace.string(),
824
1388
  required: z__namespace.boolean(),
@@ -1004,8 +1568,10 @@ const userEventSchema = z__namespace.object({
1004
1568
  "ai-gateway-byok-credential-created",
1005
1569
  "ai-gateway-byok-credential-deleted",
1006
1570
  "ai-gateway-byok-credential-updated",
1571
+ "ai-gateway-byok-model-mappings-updated",
1007
1572
  "ai-gateway-credits-purchased",
1008
1573
  "ai-gateway-guardrails-updated",
1574
+ "ai-gateway-hipaa-compliance-toggled",
1009
1575
  "ai-gateway-inference-regions-updated",
1010
1576
  "ai-gateway-model-allowlist-models-updated",
1011
1577
  "ai-gateway-model-allowlist-toggled",
@@ -1015,6 +1581,7 @@ const userEventSchema = z__namespace.object({
1015
1581
  "ai-gateway-private-provider-created",
1016
1582
  "ai-gateway-private-provider-deleted",
1017
1583
  "ai-gateway-private-provider-updated",
1584
+ "ai-gateway-prompt-training-opt-out-toggled",
1018
1585
  "ai-gateway-provider-allowlist-providers-updated",
1019
1586
  "ai-gateway-provider-allowlist-toggled",
1020
1587
  "ai-gateway-rule-created",
@@ -1028,8 +1595,10 @@ const userEventSchema = z__namespace.object({
1028
1595
  "ai-gateway-transcripts-retention-updated",
1029
1596
  "ai-gateway-virtual-model-config-archived",
1030
1597
  "ai-gateway-virtual-model-config-created",
1598
+ "ai-gateway-virtual-model-config-deleted",
1031
1599
  "ai-gateway-virtual-model-config-restored",
1032
1600
  "ai-gateway-virtual-model-config-updated",
1601
+ "ai-gateway-zero-data-retention-toggled",
1033
1602
  "ai-omniagent",
1034
1603
  "alert-investigation-project-allowlist-updated",
1035
1604
  "alert-rule-created",
@@ -1219,6 +1788,7 @@ const userEventSchema = z__namespace.object({
1219
1788
  "flags-segment",
1220
1789
  "flags-settings",
1221
1790
  "flags-transferred",
1791
+ "flat-rate-cdn-auto-upgrade-consent",
1222
1792
  "git-integration-repo-push",
1223
1793
  "git_account_integration_link_added",
1224
1794
  "global-config-backup-restored",
@@ -1303,6 +1873,7 @@ const userEventSchema = z__namespace.object({
1303
1873
  "organization-team-add",
1304
1874
  "organization-team-create",
1305
1875
  "organization-team-delete",
1876
+ "organization-team-sso-update",
1306
1877
  "owner-blocked",
1307
1878
  "owner-soft-blocked",
1308
1879
  "owner-soft-unblocked",
@@ -1382,6 +1953,12 @@ const userEventSchema = z__namespace.object({
1382
1953
  "project-git-commit-comments-toggled",
1383
1954
  "project-git-commit-status-toggled",
1384
1955
  "project-git-create-deployments-toggled",
1956
+ "project-git-credential-bound-created",
1957
+ "project-git-credential-bound-deleted",
1958
+ "project-git-credential-bound-updated",
1959
+ "project-git-credential-grant-created",
1960
+ "project-git-credential-grant-deleted",
1961
+ "project-git-credential-grant-updated",
1385
1962
  "project-git-fork-protection-updated",
1386
1963
  "project-git-lfs-toggled",
1387
1964
  "project-git-pr-comments-toggled",
@@ -1447,6 +2024,9 @@ const userEventSchema = z__namespace.object({
1447
2024
  "project-web-analytics-enabled",
1448
2025
  "protected-git-scope-added",
1449
2026
  "protected-git-scope-removed",
2027
+ "repository-ci-env-variable-create",
2028
+ "repository-ci-env-variable-delete",
2029
+ "repository-ci-env-variable-update",
1450
2030
  "runtime-cache-purge-all",
1451
2031
  "saml-connection-created",
1452
2032
  "saml-connection-deleted",
@@ -1474,6 +2054,8 @@ const userEventSchema = z__namespace.object({
1474
2054
  "shared-env-variable-create",
1475
2055
  "shared-env-variable-delete",
1476
2056
  "shared-env-variable-read",
2057
+ "shared-env-variable-repo-link",
2058
+ "shared-env-variable-repo-unlink",
1477
2059
  "shared-env-variable-update",
1478
2060
  "show-ip-addresses",
1479
2061
  "signup",
@@ -1504,6 +2086,7 @@ const userEventSchema = z__namespace.object({
1504
2086
  "storage-update-project-connection",
1505
2087
  "storage-upgrade-project-connection-to-oidc",
1506
2088
  "storage-view-secret",
2089
+ "strict-connectors",
1507
2090
  "strict-deployment-protection-settings",
1508
2091
  "strict-password-protection-settings",
1509
2092
  "strict-shareable-links",
@@ -1679,7 +2262,7 @@ const userEventSchema = z__namespace.object({
1679
2262
  username: z__namespace.string(),
1680
2263
  uid: z__namespace.string()
1681
2264
  }).optional().describe("Metadata for {@link userId}."),
1682
- principal: z__namespace.union([
2265
+ principal: z__namespace.discriminatedUnion("type", [
1683
2266
  z__namespace.object({
1684
2267
  type: z__namespace.enum([
1685
2268
  "user"
@@ -1712,7 +2295,7 @@ const userEventSchema = z__namespace.object({
1712
2295
  ])
1713
2296
  }).strict()
1714
2297
  ]).optional(),
1715
- via: z__namespace.array(z__namespace.union([
2298
+ via: z__namespace.array(z__namespace.discriminatedUnion("type", [
1716
2299
  z__namespace.object({
1717
2300
  type: z__namespace.enum([
1718
2301
  "user"
@@ -1752,6 +2335,9 @@ const userEventSchema = z__namespace.object({
1752
2335
  }),
1753
2336
  principalId: z__namespace.string().describe("The ID of the principal who generated the event. The principal is typically a user, but it could also be an app, an integration, etc. The principal may have delegated its authority to an acting party, and so {@link viaIds} should be checked as well."),
1754
2337
  viaIds: z__namespace.array(z__namespace.string()).optional().describe('If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".'),
2338
+ tokenId: z__namespace.string().optional().describe("The public ID of the token that the principal authenticated with, when the request behind this event carried one."),
2339
+ sessionId: z__namespace.string().optional().describe("The ID of the session that the principal's token belongs to, when it belongs to one."),
2340
+ requestId: z__namespace.string().optional(),
1755
2341
  payload: z__namespace.union([
1756
2342
  z__namespace.object({}).strict(),
1757
2343
  z__namespace.object({
@@ -1800,6 +2386,11 @@ const userEventSchema = z__namespace.object({
1800
2386
  projectId: z__namespace.string().optional(),
1801
2387
  environment: z__namespace.array(z__namespace.string())
1802
2388
  }).strict(),
2389
+ z__namespace.object({
2390
+ projectId: z__namespace.string(),
2391
+ projectName: z__namespace.string(),
2392
+ policyId: z__namespace.string()
2393
+ }).strict(),
1803
2394
  z__namespace.object({
1804
2395
  provider: z__namespace.enum([
1805
2396
  "chatgpt",
@@ -2021,8 +2612,14 @@ const userEventSchema = z__namespace.object({
2021
2612
  })
2022
2613
  }).strict(),
2023
2614
  z__namespace.object({
2024
- amount: z__namespace.string(),
2025
- purchaseIntentId: z__namespace.string()
2615
+ credential: z__namespace.object({
2616
+ id: z__namespace.string(),
2617
+ name: z__namespace.string(),
2618
+ providerSlug: z__namespace.string()
2619
+ }),
2620
+ added: z__namespace.array(z__namespace.string()),
2621
+ removed: z__namespace.array(z__namespace.string()),
2622
+ changed: z__namespace.array(z__namespace.string())
2026
2623
  }).strict(),
2027
2624
  z__namespace.object({
2028
2625
  enabled: z__namespace.union([
@@ -2030,6 +2627,10 @@ const userEventSchema = z__namespace.object({
2030
2627
  z__namespace.literal(true)
2031
2628
  ])
2032
2629
  }).strict(),
2630
+ z__namespace.object({
2631
+ amount: z__namespace.string(),
2632
+ purchaseIntentId: z__namespace.string()
2633
+ }).strict(),
2033
2634
  z__namespace.object({
2034
2635
  added: z__namespace.array(z__namespace.string()),
2035
2636
  removed: z__namespace.array(z__namespace.string())
@@ -2307,6 +2908,7 @@ const userEventSchema = z__namespace.object({
2307
2908
  "read-write:ai-gateway-rules",
2308
2909
  "read-write:ai-gateway-virtual-model-configs",
2309
2910
  "read-write:alerts",
2911
+ "read-write:automations",
2310
2912
  "read-write:billing",
2311
2913
  "read-write:blob",
2312
2914
  "read-write:connect",
@@ -2337,7 +2939,9 @@ const userEventSchema = z__namespace.object({
2337
2939
  "read:ai-gateway-rules",
2338
2940
  "read:ai-gateway-virtual-model-configs",
2339
2941
  "read:alerts",
2942
+ "read:automations",
2340
2943
  "read:billing",
2944
+ "read:connect",
2341
2945
  "read:deployment",
2342
2946
  "read:domain",
2343
2947
  "read:event",
@@ -2357,6 +2961,7 @@ const userEventSchema = z__namespace.object({
2357
2961
  "read:user",
2358
2962
  "read:vcr",
2359
2963
  "read:web-analytics",
2964
+ "read:webhooks",
2360
2965
  "use:ai-gateway"
2361
2966
  ])).optional()
2362
2967
  }).strict(),
@@ -2382,6 +2987,7 @@ const userEventSchema = z__namespace.object({
2382
2987
  "read-write:ai-gateway-rules",
2383
2988
  "read-write:ai-gateway-virtual-model-configs",
2384
2989
  "read-write:alerts",
2990
+ "read-write:automations",
2385
2991
  "read-write:billing",
2386
2992
  "read-write:blob",
2387
2993
  "read-write:connect",
@@ -2412,7 +3018,9 @@ const userEventSchema = z__namespace.object({
2412
3018
  "read:ai-gateway-rules",
2413
3019
  "read:ai-gateway-virtual-model-configs",
2414
3020
  "read:alerts",
3021
+ "read:automations",
2415
3022
  "read:billing",
3023
+ "read:connect",
2416
3024
  "read:deployment",
2417
3025
  "read:domain",
2418
3026
  "read:event",
@@ -2432,6 +3040,7 @@ const userEventSchema = z__namespace.object({
2432
3040
  "read:user",
2433
3041
  "read:vcr",
2434
3042
  "read:web-analytics",
3043
+ "read:webhooks",
2435
3044
  "use:ai-gateway"
2436
3045
  ])).optional()
2437
3046
  }).strict(),
@@ -2462,6 +3071,7 @@ const userEventSchema = z__namespace.object({
2462
3071
  "read-write:ai-gateway-rules",
2463
3072
  "read-write:ai-gateway-virtual-model-configs",
2464
3073
  "read-write:alerts",
3074
+ "read-write:automations",
2465
3075
  "read-write:billing",
2466
3076
  "read-write:blob",
2467
3077
  "read-write:connect",
@@ -2492,7 +3102,9 @@ const userEventSchema = z__namespace.object({
2492
3102
  "read:ai-gateway-rules",
2493
3103
  "read:ai-gateway-virtual-model-configs",
2494
3104
  "read:alerts",
3105
+ "read:automations",
2495
3106
  "read:billing",
3107
+ "read:connect",
2496
3108
  "read:deployment",
2497
3109
  "read:domain",
2498
3110
  "read:event",
@@ -2511,6 +3123,7 @@ const userEventSchema = z__namespace.object({
2511
3123
  "read:team",
2512
3124
  "read:vcr",
2513
3125
  "read:web-analytics",
3126
+ "read:webhooks",
2514
3127
  "use:ai-gateway"
2515
3128
  ])).optional()
2516
3129
  }).optional(),
@@ -2537,6 +3150,7 @@ const userEventSchema = z__namespace.object({
2537
3150
  "read-write:ai-gateway-rules",
2538
3151
  "read-write:ai-gateway-virtual-model-configs",
2539
3152
  "read-write:alerts",
3153
+ "read-write:automations",
2540
3154
  "read-write:billing",
2541
3155
  "read-write:blob",
2542
3156
  "read-write:connect",
@@ -2567,7 +3181,9 @@ const userEventSchema = z__namespace.object({
2567
3181
  "read:ai-gateway-rules",
2568
3182
  "read:ai-gateway-virtual-model-configs",
2569
3183
  "read:alerts",
3184
+ "read:automations",
2570
3185
  "read:billing",
3186
+ "read:connect",
2571
3187
  "read:deployment",
2572
3188
  "read:domain",
2573
3189
  "read:event",
@@ -2586,6 +3202,7 @@ const userEventSchema = z__namespace.object({
2586
3202
  "read:team",
2587
3203
  "read:vcr",
2588
3204
  "read:web-analytics",
3205
+ "read:webhooks",
2589
3206
  "use:ai-gateway"
2590
3207
  ])).optional()
2591
3208
  }).optional()
@@ -2615,6 +3232,7 @@ const userEventSchema = z__namespace.object({
2615
3232
  "read-write:ai-gateway-rules",
2616
3233
  "read-write:ai-gateway-virtual-model-configs",
2617
3234
  "read-write:alerts",
3235
+ "read-write:automations",
2618
3236
  "read-write:billing",
2619
3237
  "read-write:blob",
2620
3238
  "read-write:connect",
@@ -2645,7 +3263,9 @@ const userEventSchema = z__namespace.object({
2645
3263
  "read:ai-gateway-rules",
2646
3264
  "read:ai-gateway-virtual-model-configs",
2647
3265
  "read:alerts",
3266
+ "read:automations",
2648
3267
  "read:billing",
3268
+ "read:connect",
2649
3269
  "read:deployment",
2650
3270
  "read:domain",
2651
3271
  "read:event",
@@ -2664,6 +3284,7 @@ const userEventSchema = z__namespace.object({
2664
3284
  "read:team",
2665
3285
  "read:vcr",
2666
3286
  "read:web-analytics",
3287
+ "read:webhooks",
2667
3288
  "use:ai-gateway"
2668
3289
  ])).optional()
2669
3290
  }).strict(),
@@ -2984,6 +3605,7 @@ const userEventSchema = z__namespace.object({
2984
3605
  clientUid: z__namespace.string().optional(),
2985
3606
  clientName: z__namespace.string().optional(),
2986
3607
  projectId: z__namespace.string().optional(),
3608
+ projectName: z__namespace.string().optional(),
2987
3609
  installationId: z__namespace.string().optional(),
2988
3610
  subjectType: z__namespace.enum([
2989
3611
  "app",
@@ -3079,7 +3701,7 @@ const userEventSchema = z__namespace.object({
3079
3701
  type: z__namespace.string().optional()
3080
3702
  }).strict(),
3081
3703
  z__namespace.object({
3082
- job: z__namespace.union([
3704
+ job: z__namespace.discriminatedUnion("type", [
3083
3705
  z__namespace.object({
3084
3706
  type: z__namespace.enum([
3085
3707
  "bitbucket-push"
@@ -4208,6 +4830,17 @@ const userEventSchema = z__namespace.object({
4208
4830
  deploymentId: z__namespace.string(),
4209
4831
  deploymentUrl: z__namespace.string()
4210
4832
  }).strict(),
4833
+ z__namespace.object({
4834
+ provider: z__namespace.string(),
4835
+ organizationId: z__namespace.string(),
4836
+ repository: z__namespace.string(),
4837
+ key: z__namespace.string(),
4838
+ visibility: z__namespace.enum([
4839
+ "config",
4840
+ "secret"
4841
+ ]),
4842
+ changedFields: z__namespace.array(z__namespace.string()).optional()
4843
+ }).strict(),
4211
4844
  z__namespace.object({
4212
4845
  created: z__namespace.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
4213
4846
  examples: [
@@ -4301,6 +4934,18 @@ const userEventSchema = z__namespace.object({
4301
4934
  projectNames: z__namespace.array(z__namespace.string()).optional(),
4302
4935
  ipAddress: z__namespace.string().optional()
4303
4936
  }).strict(),
4937
+ z__namespace.object({
4938
+ envId: z__namespace.string(),
4939
+ envKey: z__namespace.string(),
4940
+ provider: z__namespace.string(),
4941
+ organizationId: z__namespace.string(),
4942
+ repository: z__namespace.string(),
4943
+ target: z__namespace.array(z__namespace.enum([
4944
+ "development",
4945
+ "preview",
4946
+ "production"
4947
+ ]))
4948
+ }).strict(),
4304
4949
  z__namespace.object({
4305
4950
  oldEnvVar: z__namespace.object({
4306
4951
  created: z__namespace.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
@@ -4590,6 +5235,7 @@ const userEventSchema = z__namespace.object({
4590
5235
  }).strict(),
4591
5236
  z__namespace.object({
4592
5237
  projectId: z__namespace.string(),
5238
+ projectName: z__namespace.string().optional(),
4593
5239
  previousOwnerId: z__namespace.string(),
4594
5240
  newOwnerId: z__namespace.string()
4595
5241
  }).strict(),
@@ -4599,6 +5245,13 @@ const userEventSchema = z__namespace.object({
4599
5245
  "enable"
4600
5246
  ])
4601
5247
  }).strict(),
5248
+ z__namespace.object({
5249
+ source: z__namespace.enum([
5250
+ "create",
5251
+ "enable",
5252
+ "upgrade"
5253
+ ])
5254
+ }).strict(),
4602
5255
  z__namespace.object({
4603
5256
  provider: z__namespace.enum([
4604
5257
  "bitbucket",
@@ -4812,10 +5465,14 @@ const userEventSchema = z__namespace.object({
4812
5465
  "observability-edge-requests",
4813
5466
  "observability-error-rate",
4814
5467
  "observability-function-invocations",
5468
+ "shortcut",
4815
5469
  "speed-insights-cls",
4816
5470
  "speed-insights-lcp",
4817
5471
  "speed-insights-res"
4818
- ])
5472
+ ]),
5473
+ config: z__namespace.object({
5474
+ url: z__namespace.string()
5475
+ }).optional()
4819
5476
  })).optional(),
4820
5477
  remoteCaching: z__namespace.object({
4821
5478
  enabled: z__namespace.union([
@@ -4876,10 +5533,10 @@ const userEventSchema = z__namespace.object({
4876
5533
  ]).optional(),
4877
5534
  customEnvironmentsPerProject: z__namespace.number().optional(),
4878
5535
  security: z__namespace.object({
5536
+ rateLimit: z__namespace.number().optional(),
4879
5537
  customRules: z__namespace.number().optional(),
4880
5538
  ipBlocks: z__namespace.number().optional(),
4881
- ipBypass: z__namespace.number().optional(),
4882
- rateLimit: z__namespace.number().optional()
5539
+ ipBypass: z__namespace.number().optional()
4883
5540
  }).optional(),
4884
5541
  bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
4885
5542
  buildMachine: z__namespace.object({
@@ -4954,7 +5611,6 @@ const userEventSchema = z__namespace.object({
4954
5611
  "ENTERPRISE_UNPAID_INVOICE",
4955
5612
  "EXPOSURE_CAP_EXCEEDED",
4956
5613
  "FAIR_USE_LIMITS_EXCEEDED",
4957
- "HOBBY_ALLOCATION_PAUSED",
4958
5614
  "SUBSCRIPTION_CANCELED",
4959
5615
  "SUBSCRIPTION_EXPIRED",
4960
5616
  "UNPAID_INVOICE"
@@ -4979,76 +5635,28 @@ const userEventSchema = z__namespace.object({
4979
5635
  "edgeRequestAdditionalCpuDuration",
4980
5636
  "elasticConcurrencyBuildSlots",
4981
5637
  "fastDataTransfer",
4982
- "fastOriginTransfer",
4983
- "fluidCpuDuration",
4984
- "fluidDuration",
4985
- "functionDuration",
4986
- "functionInvocation",
4987
- "imageOptimizationCacheRead",
4988
- "imageOptimizationCacheWrite",
4989
- "imageOptimizationTransformation",
4990
- "logDrainsVolume",
4991
- "monitoringMetric",
4992
- "observabilityEvent",
4993
- "onDemandConcurrencyMinutes",
4994
- "runtimeCacheRead",
4995
- "runtimeCacheWrite",
4996
- "serverlessFunctionExecution",
4997
- "sourceImages",
4998
- "wafOwaspExcessBytes",
4999
- "wafOwaspRequests",
5000
- "wafRateLimitRequest",
5001
- "webAnalyticsEvent"
5002
- ]).optional(),
5003
- hobbyAllocationPause: z__namespace.object({
5004
- pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
5005
- pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
5006
- triggers: z__namespace.array(z__namespace.object({
5007
- allocation: z__namespace.enum([
5008
- "analyticsUsage",
5009
- "artifacts",
5010
- "bandwidth",
5011
- "blobDataTransfer",
5012
- "blobTotalAdvancedRequests",
5013
- "blobTotalAvgSizeInBytes",
5014
- "blobTotalGetResponseObjectSizeInBytes",
5015
- "blobTotalSimpleRequests",
5016
- "connectDataTransfer",
5017
- "dataCacheRead",
5018
- "dataCacheWrite",
5019
- "edgeConfigRead",
5020
- "edgeConfigWrite",
5021
- "edgeFunctionExecutionUnits",
5022
- "edgeMiddlewareInvocations",
5023
- "edgeRequest",
5024
- "edgeRequestAdditionalCpuDuration",
5025
- "elasticConcurrencyBuildSlots",
5026
- "fastDataTransfer",
5027
- "fastOriginTransfer",
5028
- "fluidCpuDuration",
5029
- "fluidDuration",
5030
- "functionDuration",
5031
- "functionInvocation",
5032
- "imageOptimizationCacheRead",
5033
- "imageOptimizationCacheWrite",
5034
- "imageOptimizationTransformation",
5035
- "logDrainsVolume",
5036
- "monitoringMetric",
5037
- "observabilityEvent",
5038
- "onDemandConcurrencyMinutes",
5039
- "runtimeCacheRead",
5040
- "runtimeCacheWrite",
5041
- "serverlessFunctionExecution",
5042
- "sourceImages",
5043
- "wafOwaspExcessBytes",
5044
- "wafOwaspRequests",
5045
- "wafRateLimitRequest",
5046
- "webAnalyticsEvent"
5047
- ]).describe("Metered allocation whose included amount was fully consumed."),
5048
- usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
5049
- })).describe("Allocations that were at or over 100% when the pause was applied."),
5050
- cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
5051
- }).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
5638
+ "fastOriginTransfer",
5639
+ "fluidCpuDuration",
5640
+ "fluidDuration",
5641
+ "functionDuration",
5642
+ "functionInvocation",
5643
+ "imageOptimizationCacheRead",
5644
+ "imageOptimizationCacheWrite",
5645
+ "imageOptimizationTransformation",
5646
+ "logDrainsVolume",
5647
+ "monitoringMetric",
5648
+ "observabilityEvent",
5649
+ "onDemandConcurrencyMinutes",
5650
+ "runtimeCacheRead",
5651
+ "runtimeCacheWrite",
5652
+ "serverlessFunctionExecution",
5653
+ "sourceImages",
5654
+ "wafOwaspExcessBytes",
5655
+ "wafOwaspRequests",
5656
+ "wafRateLimitRequest",
5657
+ "webAnalyticsEvent"
5658
+ ]).optional(),
5659
+ unpauseAt: z__namespace.number().optional().describe("Since September 2026. Set only by `billing-usage-alerts` for usage plans with a `blockDurationMs`; its presence marks a pause that expires on its own.")
5052
5660
  }).nullish(),
5053
5661
  stagingPrefix: z__namespace.string(),
5054
5662
  sysToken: z__namespace.string(),
@@ -5151,197 +5759,236 @@ const userEventSchema = z__namespace.object({
5151
5759
  analyticsUsage: z__namespace.object({
5152
5760
  currentThreshold: z__namespace.number(),
5153
5761
  warningAt: z__namespace.number().nullish(),
5154
- blockedAt: z__namespace.number().nullish()
5762
+ blockedAt: z__namespace.number().nullish(),
5763
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5155
5764
  }).optional(),
5156
5765
  artifacts: z__namespace.object({
5157
5766
  currentThreshold: z__namespace.number(),
5158
5767
  warningAt: z__namespace.number().nullish(),
5159
- blockedAt: z__namespace.number().nullish()
5768
+ blockedAt: z__namespace.number().nullish(),
5769
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5160
5770
  }).optional(),
5161
5771
  bandwidth: z__namespace.object({
5162
5772
  currentThreshold: z__namespace.number(),
5163
5773
  warningAt: z__namespace.number().nullish(),
5164
- blockedAt: z__namespace.number().nullish()
5774
+ blockedAt: z__namespace.number().nullish(),
5775
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5165
5776
  }).optional(),
5166
5777
  blobTotalAdvancedRequests: z__namespace.object({
5167
5778
  currentThreshold: z__namespace.number(),
5168
5779
  warningAt: z__namespace.number().nullish(),
5169
- blockedAt: z__namespace.number().nullish()
5780
+ blockedAt: z__namespace.number().nullish(),
5781
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5170
5782
  }).optional(),
5171
5783
  blobTotalAvgSizeInBytes: z__namespace.object({
5172
5784
  currentThreshold: z__namespace.number(),
5173
5785
  warningAt: z__namespace.number().nullish(),
5174
- blockedAt: z__namespace.number().nullish()
5786
+ blockedAt: z__namespace.number().nullish(),
5787
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5175
5788
  }).optional(),
5176
5789
  blobTotalGetResponseObjectSizeInBytes: z__namespace.object({
5177
5790
  currentThreshold: z__namespace.number(),
5178
5791
  warningAt: z__namespace.number().nullish(),
5179
- blockedAt: z__namespace.number().nullish()
5792
+ blockedAt: z__namespace.number().nullish(),
5793
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5180
5794
  }).optional(),
5181
5795
  blobTotalSimpleRequests: z__namespace.object({
5182
5796
  currentThreshold: z__namespace.number(),
5183
5797
  warningAt: z__namespace.number().nullish(),
5184
- blockedAt: z__namespace.number().nullish()
5798
+ blockedAt: z__namespace.number().nullish(),
5799
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5185
5800
  }).optional(),
5186
5801
  connectDataTransfer: z__namespace.object({
5187
5802
  currentThreshold: z__namespace.number(),
5188
5803
  warningAt: z__namespace.number().nullish(),
5189
- blockedAt: z__namespace.number().nullish()
5804
+ blockedAt: z__namespace.number().nullish(),
5805
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5190
5806
  }).optional(),
5191
5807
  dataCacheRead: z__namespace.object({
5192
5808
  currentThreshold: z__namespace.number(),
5193
5809
  warningAt: z__namespace.number().nullish(),
5194
- blockedAt: z__namespace.number().nullish()
5810
+ blockedAt: z__namespace.number().nullish(),
5811
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5195
5812
  }).optional(),
5196
5813
  dataCacheWrite: z__namespace.object({
5197
5814
  currentThreshold: z__namespace.number(),
5198
5815
  warningAt: z__namespace.number().nullish(),
5199
- blockedAt: z__namespace.number().nullish()
5816
+ blockedAt: z__namespace.number().nullish(),
5817
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5200
5818
  }).optional(),
5201
5819
  edgeConfigRead: z__namespace.object({
5202
5820
  currentThreshold: z__namespace.number(),
5203
5821
  warningAt: z__namespace.number().nullish(),
5204
- blockedAt: z__namespace.number().nullish()
5822
+ blockedAt: z__namespace.number().nullish(),
5823
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5205
5824
  }).optional(),
5206
5825
  edgeConfigWrite: z__namespace.object({
5207
5826
  currentThreshold: z__namespace.number(),
5208
5827
  warningAt: z__namespace.number().nullish(),
5209
- blockedAt: z__namespace.number().nullish()
5828
+ blockedAt: z__namespace.number().nullish(),
5829
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5210
5830
  }).optional(),
5211
5831
  edgeFunctionExecutionUnits: z__namespace.object({
5212
5832
  currentThreshold: z__namespace.number(),
5213
5833
  warningAt: z__namespace.number().nullish(),
5214
- blockedAt: z__namespace.number().nullish()
5834
+ blockedAt: z__namespace.number().nullish(),
5835
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5215
5836
  }).optional(),
5216
5837
  edgeMiddlewareInvocations: z__namespace.object({
5217
5838
  currentThreshold: z__namespace.number(),
5218
5839
  warningAt: z__namespace.number().nullish(),
5219
- blockedAt: z__namespace.number().nullish()
5840
+ blockedAt: z__namespace.number().nullish(),
5841
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5220
5842
  }).optional(),
5221
5843
  edgeRequestAdditionalCpuDuration: z__namespace.object({
5222
5844
  currentThreshold: z__namespace.number(),
5223
5845
  warningAt: z__namespace.number().nullish(),
5224
- blockedAt: z__namespace.number().nullish()
5846
+ blockedAt: z__namespace.number().nullish(),
5847
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5225
5848
  }).optional(),
5226
5849
  edgeRequest: z__namespace.object({
5227
5850
  currentThreshold: z__namespace.number(),
5228
5851
  warningAt: z__namespace.number().nullish(),
5229
- blockedAt: z__namespace.number().nullish()
5852
+ blockedAt: z__namespace.number().nullish(),
5853
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5230
5854
  }).optional(),
5231
5855
  elasticConcurrencyBuildSlots: z__namespace.object({
5232
5856
  currentThreshold: z__namespace.number(),
5233
5857
  warningAt: z__namespace.number().nullish(),
5234
- blockedAt: z__namespace.number().nullish()
5858
+ blockedAt: z__namespace.number().nullish(),
5859
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5235
5860
  }).optional(),
5236
5861
  fastDataTransfer: z__namespace.object({
5237
5862
  currentThreshold: z__namespace.number(),
5238
5863
  warningAt: z__namespace.number().nullish(),
5239
- blockedAt: z__namespace.number().nullish()
5864
+ blockedAt: z__namespace.number().nullish(),
5865
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5240
5866
  }).optional(),
5241
5867
  fastOriginTransfer: z__namespace.object({
5242
5868
  currentThreshold: z__namespace.number(),
5243
5869
  warningAt: z__namespace.number().nullish(),
5244
- blockedAt: z__namespace.number().nullish()
5870
+ blockedAt: z__namespace.number().nullish(),
5871
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5245
5872
  }).optional(),
5246
5873
  fluidCpuDuration: z__namespace.object({
5247
5874
  currentThreshold: z__namespace.number(),
5248
5875
  warningAt: z__namespace.number().nullish(),
5249
- blockedAt: z__namespace.number().nullish()
5876
+ blockedAt: z__namespace.number().nullish(),
5877
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5250
5878
  }).optional(),
5251
5879
  fluidDuration: z__namespace.object({
5252
5880
  currentThreshold: z__namespace.number(),
5253
5881
  warningAt: z__namespace.number().nullish(),
5254
- blockedAt: z__namespace.number().nullish()
5882
+ blockedAt: z__namespace.number().nullish(),
5883
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5255
5884
  }).optional(),
5256
5885
  functionDuration: z__namespace.object({
5257
5886
  currentThreshold: z__namespace.number(),
5258
5887
  warningAt: z__namespace.number().nullish(),
5259
- blockedAt: z__namespace.number().nullish()
5888
+ blockedAt: z__namespace.number().nullish(),
5889
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5260
5890
  }).optional(),
5261
5891
  functionInvocation: z__namespace.object({
5262
5892
  currentThreshold: z__namespace.number(),
5263
5893
  warningAt: z__namespace.number().nullish(),
5264
- blockedAt: z__namespace.number().nullish()
5894
+ blockedAt: z__namespace.number().nullish(),
5895
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5265
5896
  }).optional(),
5266
5897
  imageOptimizationCacheRead: z__namespace.object({
5267
5898
  currentThreshold: z__namespace.number(),
5268
5899
  warningAt: z__namespace.number().nullish(),
5269
- blockedAt: z__namespace.number().nullish()
5900
+ blockedAt: z__namespace.number().nullish(),
5901
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5270
5902
  }).optional(),
5271
5903
  imageOptimizationCacheWrite: z__namespace.object({
5272
5904
  currentThreshold: z__namespace.number(),
5273
5905
  warningAt: z__namespace.number().nullish(),
5274
- blockedAt: z__namespace.number().nullish()
5906
+ blockedAt: z__namespace.number().nullish(),
5907
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5275
5908
  }).optional(),
5276
5909
  imageOptimizationTransformation: z__namespace.object({
5277
5910
  currentThreshold: z__namespace.number(),
5278
5911
  warningAt: z__namespace.number().nullish(),
5279
- blockedAt: z__namespace.number().nullish()
5912
+ blockedAt: z__namespace.number().nullish(),
5913
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5280
5914
  }).optional(),
5281
5915
  logDrainsVolume: z__namespace.object({
5282
5916
  currentThreshold: z__namespace.number(),
5283
5917
  warningAt: z__namespace.number().nullish(),
5284
- blockedAt: z__namespace.number().nullish()
5918
+ blockedAt: z__namespace.number().nullish(),
5919
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5285
5920
  }).optional(),
5286
5921
  monitoringMetric: z__namespace.object({
5287
5922
  currentThreshold: z__namespace.number(),
5288
5923
  warningAt: z__namespace.number().nullish(),
5289
- blockedAt: z__namespace.number().nullish()
5924
+ blockedAt: z__namespace.number().nullish(),
5925
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5290
5926
  }).optional(),
5291
5927
  blobDataTransfer: z__namespace.object({
5292
5928
  currentThreshold: z__namespace.number(),
5293
5929
  warningAt: z__namespace.number().nullish(),
5294
- blockedAt: z__namespace.number().nullish()
5930
+ blockedAt: z__namespace.number().nullish(),
5931
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5295
5932
  }).optional(),
5296
5933
  observabilityEvent: z__namespace.object({
5297
5934
  currentThreshold: z__namespace.number(),
5298
5935
  warningAt: z__namespace.number().nullish(),
5299
- blockedAt: z__namespace.number().nullish()
5936
+ blockedAt: z__namespace.number().nullish(),
5937
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5300
5938
  }).optional(),
5301
5939
  onDemandConcurrencyMinutes: z__namespace.object({
5302
5940
  currentThreshold: z__namespace.number(),
5303
5941
  warningAt: z__namespace.number().nullish(),
5304
- blockedAt: z__namespace.number().nullish()
5942
+ blockedAt: z__namespace.number().nullish(),
5943
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5305
5944
  }).optional(),
5306
5945
  runtimeCacheRead: z__namespace.object({
5307
5946
  currentThreshold: z__namespace.number(),
5308
5947
  warningAt: z__namespace.number().nullish(),
5309
- blockedAt: z__namespace.number().nullish()
5948
+ blockedAt: z__namespace.number().nullish(),
5949
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5310
5950
  }).optional(),
5311
5951
  runtimeCacheWrite: z__namespace.object({
5312
5952
  currentThreshold: z__namespace.number(),
5313
5953
  warningAt: z__namespace.number().nullish(),
5314
- blockedAt: z__namespace.number().nullish()
5954
+ blockedAt: z__namespace.number().nullish(),
5955
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5315
5956
  }).optional(),
5316
5957
  serverlessFunctionExecution: z__namespace.object({
5317
5958
  currentThreshold: z__namespace.number(),
5318
5959
  warningAt: z__namespace.number().nullish(),
5319
- blockedAt: z__namespace.number().nullish()
5960
+ blockedAt: z__namespace.number().nullish(),
5961
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5320
5962
  }).optional(),
5321
5963
  sourceImages: z__namespace.object({
5322
5964
  currentThreshold: z__namespace.number(),
5323
5965
  warningAt: z__namespace.number().nullish(),
5324
- blockedAt: z__namespace.number().nullish()
5966
+ blockedAt: z__namespace.number().nullish(),
5967
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5325
5968
  }).optional(),
5326
5969
  wafOwaspExcessBytes: z__namespace.object({
5327
5970
  currentThreshold: z__namespace.number(),
5328
5971
  warningAt: z__namespace.number().nullish(),
5329
- blockedAt: z__namespace.number().nullish()
5972
+ blockedAt: z__namespace.number().nullish(),
5973
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5330
5974
  }).optional(),
5331
5975
  wafOwaspRequests: z__namespace.object({
5332
5976
  currentThreshold: z__namespace.number(),
5333
5977
  warningAt: z__namespace.number().nullish(),
5334
- blockedAt: z__namespace.number().nullish()
5978
+ blockedAt: z__namespace.number().nullish(),
5979
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5335
5980
  }).optional(),
5336
5981
  wafRateLimitRequest: z__namespace.object({
5337
5982
  currentThreshold: z__namespace.number(),
5338
5983
  warningAt: z__namespace.number().nullish(),
5339
- blockedAt: z__namespace.number().nullish()
5984
+ blockedAt: z__namespace.number().nullish(),
5985
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5340
5986
  }).optional(),
5341
5987
  webAnalyticsEvent: z__namespace.object({
5342
5988
  currentThreshold: z__namespace.number(),
5343
5989
  warningAt: z__namespace.number().nullish(),
5344
- blockedAt: z__namespace.number().nullish()
5990
+ blockedAt: z__namespace.number().nullish(),
5991
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5345
5992
  }).optional()
5346
5993
  }).optional(),
5347
5994
  overageMetadata: z__namespace.object({
@@ -5350,12 +5997,7 @@ const userEventSchema = z__namespace.object({
5350
5997
  weeklyOverageSummaryEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a weekly summary email."),
5351
5998
  overageSummaryExpiresAt: z__namespace.number().optional().describe("Tracks when the overage summary email will stop auto-sending. We currently lock the user into email for a month after the last on-demand usage."),
5352
5999
  increasedOnDemandEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
5353
- increasedOnDemandEmailAttemptedAt: z__namespace.number().optional().describe("Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day."),
5354
- hobbyPolicyNoticeSlackSentAt: z__namespace.number().optional().describe("Tracks when the new-Hobby-policy notice was reported for this owner. Reported at most once per owner, ever."),
5355
- hobbyWarningV2SlackSentAt: z__namespace.number().optional().describe("Tracks the last time a `warningThresholdsV2` crossing was reported for this owner. Hobby has no billing period, so this re-arms on the same rolling window the service already uses for Hobby alerts."),
5356
- hobbyWarningV2At100SlackSentAt: z__namespace.number().optional().describe("Tracks the last time the 100% `warningThresholdsV2` crossing was reported for this owner. This is separate so a recent lower warning does not suppress the full-allocation warning. It also starts the team-wide 24-hour grace period before a soft pause."),
5357
- hobbyPauseNoticeSlackSentAt: z__namespace.number().optional().describe("Tracks the last time a `blockThresholdV2` breach was reported for this owner. Re-arms on the same rolling window as `hobbyWarningV2SlackSentAt`."),
5358
- hobbyPolicySlackThreadTs: z__namespace.string().optional().describe("Slack `ts` of the thread root holding this owner's new-Hobby-policy alerts. Every later alert for the owner is posted as a reply to it, so the channel carries one entry per owner rather than one per alert. Replaced if Slack reports the root as gone.")
6000
+ increasedOnDemandEmailAttemptedAt: z__namespace.number().optional().describe("Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day.")
5359
6001
  }).optional().describe("Contains the timestamps for usage summary emails."),
5360
6002
  speedInsightsFreeUsageAlert: z__namespace.object({
5361
6003
  currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
@@ -5879,7 +6521,7 @@ const userEventSchema = z__namespace.object({
5879
6521
  integrationSlug: z__namespace.string(),
5880
6522
  integrationProductSlug: z__namespace.string(),
5881
6523
  configurationId: z__namespace.string(),
5882
- error: z__namespace.string().optional(),
6524
+ errorCode: z__namespace.string().optional(),
5883
6525
  requestKind: z__namespace.enum([
5884
6526
  "raw_commands"
5885
6527
  ]),
@@ -5887,8 +6529,11 @@ const userEventSchema = z__namespace.object({
5887
6529
  z__namespace.literal(false),
5888
6530
  z__namespace.literal(true)
5889
6531
  ]),
5890
- commands: z__namespace.array(z__namespace.string()),
5891
- failedIndex: z__namespace.number().optional()
6532
+ commands: z__namespace.array(z__namespace.object({
6533
+ command: z__namespace.string(),
6534
+ errorCode: z__namespace.string().optional()
6535
+ })),
6536
+ errorIndex: z__namespace.number().optional()
5892
6537
  }).strict(),
5893
6538
  z__namespace.object({
5894
6539
  resourceId: z__namespace.string(),
@@ -5896,7 +6541,7 @@ const userEventSchema = z__namespace.object({
5896
6541
  integrationSlug: z__namespace.string(),
5897
6542
  integrationProductSlug: z__namespace.string(),
5898
6543
  configurationId: z__namespace.string(),
5899
- error: z__namespace.string().optional(),
6544
+ errorCode: z__namespace.string().optional(),
5900
6545
  requestKind: z__namespace.enum([
5901
6546
  "list_keys"
5902
6547
  ]),
@@ -5909,7 +6554,7 @@ const userEventSchema = z__namespace.object({
5909
6554
  integrationSlug: z__namespace.string(),
5910
6555
  integrationProductSlug: z__namespace.string(),
5911
6556
  configurationId: z__namespace.string(),
5912
- error: z__namespace.string().optional(),
6557
+ errorCode: z__namespace.string().optional(),
5913
6558
  requestKind: z__namespace.enum([
5914
6559
  "get_keys_metadata"
5915
6560
  ]),
@@ -5921,7 +6566,7 @@ const userEventSchema = z__namespace.object({
5921
6566
  integrationSlug: z__namespace.string(),
5922
6567
  integrationProductSlug: z__namespace.string(),
5923
6568
  configurationId: z__namespace.string(),
5924
- error: z__namespace.string().optional(),
6569
+ errorCode: z__namespace.string().optional(),
5925
6570
  requestKind: z__namespace.enum([
5926
6571
  "get_key_data"
5927
6572
  ]),
@@ -6335,6 +6980,19 @@ const userEventSchema = z__namespace.object({
6335
6980
  "platform"
6336
6981
  ])
6337
6982
  }).strict(),
6983
+ z__namespace.object({
6984
+ organizationId: z__namespace.string(),
6985
+ teamId: z__namespace.string(),
6986
+ teamName: z__namespace.string(),
6987
+ previousMode: z__namespace.enum([
6988
+ "organization",
6989
+ "team"
6990
+ ]),
6991
+ mode: z__namespace.enum([
6992
+ "organization",
6993
+ "team"
6994
+ ])
6995
+ }).strict(),
6338
6996
  z__namespace.object({
6339
6997
  ownerId: z__namespace.string(),
6340
6998
  source: z__namespace.string(),
@@ -6751,6 +7409,7 @@ const userEventSchema = z__namespace.object({
6751
7409
  previousPreviewDeploymentSuffix: z__namespace.string().nullish()
6752
7410
  }).strict(),
6753
7411
  z__namespace.object({
7412
+ projectName: z__namespace.string().optional(),
6754
7413
  endpoint: z__namespace.object({
6755
7414
  id: z__namespace.string(),
6756
7415
  name: z__namespace.string(),
@@ -6761,6 +7420,7 @@ const userEventSchema = z__namespace.object({
6761
7420
  })
6762
7421
  }).strict(),
6763
7422
  z__namespace.object({
7423
+ projectName: z__namespace.string().optional(),
6764
7424
  privateLinkEndpoint: z__namespace.object({
6765
7425
  id: z__namespace.string(),
6766
7426
  name: z__namespace.string()
@@ -6768,6 +7428,7 @@ const userEventSchema = z__namespace.object({
6768
7428
  projectId: z__namespace.string()
6769
7429
  }).strict(),
6770
7430
  z__namespace.object({
7431
+ projectName: z__namespace.string().optional(),
6771
7432
  prev: z__namespace.object({
6772
7433
  id: z__namespace.string(),
6773
7434
  name: z__namespace.string(),
@@ -6786,6 +7447,7 @@ const userEventSchema = z__namespace.object({
6786
7447
  })
6787
7448
  }).strict(),
6788
7449
  z__namespace.object({
7450
+ projectName: z__namespace.string().optional(),
6789
7451
  privateLinkEndpoint: z__namespace.object({
6790
7452
  id: z__namespace.string(),
6791
7453
  name: z__namespace.string(),
@@ -6928,6 +7590,7 @@ const userEventSchema = z__namespace.object({
6928
7590
  "observability-function-invocations",
6929
7591
  "online",
6930
7592
  "res",
7593
+ "shortcut",
6931
7594
  "speed-insights-cls",
6932
7595
  "speed-insights-lcp",
6933
7596
  "speed-insights-res"
@@ -7155,6 +7818,7 @@ const userEventSchema = z__namespace.object({
7155
7818
  "github-custom-host",
7156
7819
  "github-limited",
7157
7820
  "gitlab",
7821
+ "v0",
7158
7822
  "vercel"
7159
7823
  ]),
7160
7824
  gitRepoId: z__namespace.string(),
@@ -7168,6 +7832,7 @@ const userEventSchema = z__namespace.object({
7168
7832
  "github-custom-host",
7169
7833
  "github-limited",
7170
7834
  "gitlab",
7835
+ "v0",
7171
7836
  "vercel"
7172
7837
  ]),
7173
7838
  gitRepoId: z__namespace.string(),
@@ -7184,6 +7849,7 @@ const userEventSchema = z__namespace.object({
7184
7849
  "github-custom-host",
7185
7850
  "github-limited",
7186
7851
  "gitlab",
7852
+ "v0",
7187
7853
  "vercel"
7188
7854
  ]),
7189
7855
  gitRepoId: z__namespace.string(),
@@ -7550,8 +8216,14 @@ const userEventSchema = z__namespace.object({
7550
8216
  z__namespace.object({
7551
8217
  projectId: z__namespace.string(),
7552
8218
  projectName: z__namespace.string(),
7553
- previous: z__namespace.object({}).nullable(),
7554
- next: z__namespace.object({}).nullable()
8219
+ previous: z__namespace.object({
8220
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
8221
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
8222
+ }).nullable(),
8223
+ next: z__namespace.object({
8224
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
8225
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
8226
+ }).nullable()
7555
8227
  }).strict(),
7556
8228
  z__namespace.object({
7557
8229
  projectId: z__namespace.string(),
@@ -7782,6 +8454,10 @@ const userEventSchema = z__namespace.object({
7782
8454
  z__namespace.object({
7783
8455
  projectId: z__namespace.string(),
7784
8456
  projectName: z__namespace.string(),
8457
+ enableVercelCiSameRepository: z__namespace.union([
8458
+ z__namespace.literal(false),
8459
+ z__namespace.literal(true)
8460
+ ]).optional(),
7785
8461
  addedProjects: z__namespace.array(z__namespace.object({
7786
8462
  id: z__namespace.string(),
7787
8463
  name: z__namespace.string()
@@ -8049,6 +8725,12 @@ const userEventSchema = z__namespace.object({
8049
8725
  "plus",
8050
8726
  "unbundled"
8051
8727
  ]).optional().describe("The acive pricing plan the team is billed with"),
8728
+ scope: z__namespace.enum([
8729
+ "organization",
8730
+ "project",
8731
+ "team"
8732
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8733
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8052
8734
  teamId: z__namespace.string().describe("Partition key"),
8053
8735
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8054
8736
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8084,6 +8766,12 @@ const userEventSchema = z__namespace.object({
8084
8766
  "plus",
8085
8767
  "unbundled"
8086
8768
  ]).optional().describe("The acive pricing plan the team is billed with"),
8769
+ scope: z__namespace.enum([
8770
+ "organization",
8771
+ "project",
8772
+ "team"
8773
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8774
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8087
8775
  teamId: z__namespace.string().describe("Partition key"),
8088
8776
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8089
8777
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8118,6 +8806,12 @@ const userEventSchema = z__namespace.object({
8118
8806
  "plus",
8119
8807
  "unbundled"
8120
8808
  ]).optional().describe("The acive pricing plan the team is billed with"),
8809
+ scope: z__namespace.enum([
8810
+ "organization",
8811
+ "project",
8812
+ "team"
8813
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8814
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8121
8815
  teamId: z__namespace.string().describe("Partition key"),
8122
8816
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8123
8817
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8153,6 +8847,12 @@ const userEventSchema = z__namespace.object({
8153
8847
  "plus",
8154
8848
  "unbundled"
8155
8849
  ]).optional().describe("The acive pricing plan the team is billed with"),
8850
+ scope: z__namespace.enum([
8851
+ "organization",
8852
+ "project",
8853
+ "team"
8854
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8855
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8156
8856
  teamId: z__namespace.string().describe("Partition key"),
8157
8857
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8158
8858
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8185,6 +8885,12 @@ const userEventSchema = z__namespace.object({
8185
8885
  "plus",
8186
8886
  "unbundled"
8187
8887
  ]).optional().describe("The acive pricing plan the team is billed with"),
8888
+ scope: z__namespace.enum([
8889
+ "organization",
8890
+ "project",
8891
+ "team"
8892
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8893
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8188
8894
  teamId: z__namespace.string().describe("Partition key"),
8189
8895
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8190
8896
  }).optional().describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8413,6 +9119,7 @@ const userEventSchema = z__namespace.object({
8413
9119
  "long-build-duration",
8414
9120
  "oom-failure",
8415
9121
  "plan-change",
9122
+ "project-transfer",
8416
9123
  "short-build-duration",
8417
9124
  "sustained-high-cpu"
8418
9125
  ]).optional()
@@ -8447,8 +9154,14 @@ const userEventSchema = z__namespace.object({
8447
9154
  timestamp: z__namespace.number().optional()
8448
9155
  }).strict(),
8449
9156
  z__namespace.object({
8450
- previous: z__namespace.object({}).nullable(),
8451
- next: z__namespace.object({}).nullable()
9157
+ previous: z__namespace.object({
9158
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
9159
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
9160
+ }).nullable(),
9161
+ next: z__namespace.object({
9162
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
9163
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
9164
+ }).nullable()
8452
9165
  }).strict(),
8453
9166
  z__namespace.object({
8454
9167
  enabled: z__namespace.union([
@@ -9283,6 +9996,7 @@ const userEventSchema = z__namespace.object({
9283
9996
  z__namespace.object({
9284
9997
  deploymentId: z__namespace.string(),
9285
9998
  projectId: z__namespace.string(),
9999
+ projectName: z__namespace.string().optional(),
9286
10000
  runId: z__namespace.string()
9287
10001
  }).strict(),
9288
10002
  z__namespace.object({
@@ -9477,6 +10191,7 @@ const userEventSchema = z__namespace.object({
9477
10191
  teamId: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9478
10192
  teamSlug: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9479
10193
  projectId: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
10194
+ projectName: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
9480
10195
  projectScope: z__namespace.enum([
9481
10196
  "account",
9482
10197
  "project-only"
@@ -9631,8 +10346,10 @@ const listEventTypeSchema = z__namespace.object({
9631
10346
  "ai-gateway-byok-credential-created",
9632
10347
  "ai-gateway-byok-credential-deleted",
9633
10348
  "ai-gateway-byok-credential-updated",
10349
+ "ai-gateway-byok-model-mappings-updated",
9634
10350
  "ai-gateway-credits-purchased",
9635
10351
  "ai-gateway-guardrails-updated",
10352
+ "ai-gateway-hipaa-compliance-toggled",
9636
10353
  "ai-gateway-inference-regions-updated",
9637
10354
  "ai-gateway-model-allowlist-models-updated",
9638
10355
  "ai-gateway-model-allowlist-toggled",
@@ -9642,6 +10359,7 @@ const listEventTypeSchema = z__namespace.object({
9642
10359
  "ai-gateway-private-provider-created",
9643
10360
  "ai-gateway-private-provider-deleted",
9644
10361
  "ai-gateway-private-provider-updated",
10362
+ "ai-gateway-prompt-training-opt-out-toggled",
9645
10363
  "ai-gateway-provider-allowlist-providers-updated",
9646
10364
  "ai-gateway-provider-allowlist-toggled",
9647
10365
  "ai-gateway-rule-created",
@@ -9655,8 +10373,10 @@ const listEventTypeSchema = z__namespace.object({
9655
10373
  "ai-gateway-transcripts-retention-updated",
9656
10374
  "ai-gateway-virtual-model-config-archived",
9657
10375
  "ai-gateway-virtual-model-config-created",
10376
+ "ai-gateway-virtual-model-config-deleted",
9658
10377
  "ai-gateway-virtual-model-config-restored",
9659
10378
  "ai-gateway-virtual-model-config-updated",
10379
+ "ai-gateway-zero-data-retention-toggled",
9660
10380
  "ai-omniagent",
9661
10381
  "alert-investigation-project-allowlist-updated",
9662
10382
  "alert-rule-created",
@@ -9846,6 +10566,7 @@ const listEventTypeSchema = z__namespace.object({
9846
10566
  "flags-segment",
9847
10567
  "flags-settings",
9848
10568
  "flags-transferred",
10569
+ "flat-rate-cdn-auto-upgrade-consent",
9849
10570
  "git-integration-repo-push",
9850
10571
  "git_account_integration_link_added",
9851
10572
  "global-config-backup-restored",
@@ -9930,6 +10651,7 @@ const listEventTypeSchema = z__namespace.object({
9930
10651
  "organization-team-add",
9931
10652
  "organization-team-create",
9932
10653
  "organization-team-delete",
10654
+ "organization-team-sso-update",
9933
10655
  "owner-blocked",
9934
10656
  "owner-soft-blocked",
9935
10657
  "owner-soft-unblocked",
@@ -10009,6 +10731,12 @@ const listEventTypeSchema = z__namespace.object({
10009
10731
  "project-git-commit-comments-toggled",
10010
10732
  "project-git-commit-status-toggled",
10011
10733
  "project-git-create-deployments-toggled",
10734
+ "project-git-credential-bound-created",
10735
+ "project-git-credential-bound-deleted",
10736
+ "project-git-credential-bound-updated",
10737
+ "project-git-credential-grant-created",
10738
+ "project-git-credential-grant-deleted",
10739
+ "project-git-credential-grant-updated",
10012
10740
  "project-git-fork-protection-updated",
10013
10741
  "project-git-lfs-toggled",
10014
10742
  "project-git-pr-comments-toggled",
@@ -10074,6 +10802,9 @@ const listEventTypeSchema = z__namespace.object({
10074
10802
  "project-web-analytics-enabled",
10075
10803
  "protected-git-scope-added",
10076
10804
  "protected-git-scope-removed",
10805
+ "repository-ci-env-variable-create",
10806
+ "repository-ci-env-variable-delete",
10807
+ "repository-ci-env-variable-update",
10077
10808
  "runtime-cache-purge-all",
10078
10809
  "saml-connection-created",
10079
10810
  "saml-connection-deleted",
@@ -10101,6 +10832,8 @@ const listEventTypeSchema = z__namespace.object({
10101
10832
  "shared-env-variable-create",
10102
10833
  "shared-env-variable-delete",
10103
10834
  "shared-env-variable-read",
10835
+ "shared-env-variable-repo-link",
10836
+ "shared-env-variable-repo-unlink",
10104
10837
  "shared-env-variable-update",
10105
10838
  "show-ip-addresses",
10106
10839
  "signup",
@@ -10131,6 +10864,7 @@ const listEventTypeSchema = z__namespace.object({
10131
10864
  "storage-update-project-connection",
10132
10865
  "storage-upgrade-project-connection-to-oidc",
10133
10866
  "storage-view-secret",
10867
+ "strict-connectors",
10134
10868
  "strict-deployment-protection-settings",
10135
10869
  "strict-password-protection-settings",
10136
10870
  "strict-shareable-links",
@@ -10332,8 +11066,10 @@ const listEventTypeSchema = z__namespace.object({
10332
11066
  "ai-gateway-byok-credential-created",
10333
11067
  "ai-gateway-byok-credential-deleted",
10334
11068
  "ai-gateway-byok-credential-updated",
11069
+ "ai-gateway-byok-model-mappings-updated",
10335
11070
  "ai-gateway-credits-purchased",
10336
11071
  "ai-gateway-guardrails-updated",
11072
+ "ai-gateway-hipaa-compliance-toggled",
10337
11073
  "ai-gateway-inference-regions-updated",
10338
11074
  "ai-gateway-model-allowlist-models-updated",
10339
11075
  "ai-gateway-model-allowlist-toggled",
@@ -10343,6 +11079,7 @@ const listEventTypeSchema = z__namespace.object({
10343
11079
  "ai-gateway-private-provider-created",
10344
11080
  "ai-gateway-private-provider-deleted",
10345
11081
  "ai-gateway-private-provider-updated",
11082
+ "ai-gateway-prompt-training-opt-out-toggled",
10346
11083
  "ai-gateway-provider-allowlist-providers-updated",
10347
11084
  "ai-gateway-provider-allowlist-toggled",
10348
11085
  "ai-gateway-rule-created",
@@ -10356,8 +11093,10 @@ const listEventTypeSchema = z__namespace.object({
10356
11093
  "ai-gateway-transcripts-retention-updated",
10357
11094
  "ai-gateway-virtual-model-config-archived",
10358
11095
  "ai-gateway-virtual-model-config-created",
11096
+ "ai-gateway-virtual-model-config-deleted",
10359
11097
  "ai-gateway-virtual-model-config-restored",
10360
11098
  "ai-gateway-virtual-model-config-updated",
11099
+ "ai-gateway-zero-data-retention-toggled",
10361
11100
  "ai-omniagent",
10362
11101
  "alert-investigation-project-allowlist-updated",
10363
11102
  "alert-rule-created",
@@ -10547,6 +11286,7 @@ const listEventTypeSchema = z__namespace.object({
10547
11286
  "flags-segment",
10548
11287
  "flags-settings",
10549
11288
  "flags-transferred",
11289
+ "flat-rate-cdn-auto-upgrade-consent",
10550
11290
  "git-integration-repo-push",
10551
11291
  "git_account_integration_link_added",
10552
11292
  "global-config-backup-restored",
@@ -10631,6 +11371,7 @@ const listEventTypeSchema = z__namespace.object({
10631
11371
  "organization-team-add",
10632
11372
  "organization-team-create",
10633
11373
  "organization-team-delete",
11374
+ "organization-team-sso-update",
10634
11375
  "owner-blocked",
10635
11376
  "owner-soft-blocked",
10636
11377
  "owner-soft-unblocked",
@@ -10710,6 +11451,12 @@ const listEventTypeSchema = z__namespace.object({
10710
11451
  "project-git-commit-comments-toggled",
10711
11452
  "project-git-commit-status-toggled",
10712
11453
  "project-git-create-deployments-toggled",
11454
+ "project-git-credential-bound-created",
11455
+ "project-git-credential-bound-deleted",
11456
+ "project-git-credential-bound-updated",
11457
+ "project-git-credential-grant-created",
11458
+ "project-git-credential-grant-deleted",
11459
+ "project-git-credential-grant-updated",
10713
11460
  "project-git-fork-protection-updated",
10714
11461
  "project-git-lfs-toggled",
10715
11462
  "project-git-pr-comments-toggled",
@@ -10775,6 +11522,9 @@ const listEventTypeSchema = z__namespace.object({
10775
11522
  "project-web-analytics-enabled",
10776
11523
  "protected-git-scope-added",
10777
11524
  "protected-git-scope-removed",
11525
+ "repository-ci-env-variable-create",
11526
+ "repository-ci-env-variable-delete",
11527
+ "repository-ci-env-variable-update",
10778
11528
  "runtime-cache-purge-all",
10779
11529
  "saml-connection-created",
10780
11530
  "saml-connection-deleted",
@@ -10802,6 +11552,8 @@ const listEventTypeSchema = z__namespace.object({
10802
11552
  "shared-env-variable-create",
10803
11553
  "shared-env-variable-delete",
10804
11554
  "shared-env-variable-read",
11555
+ "shared-env-variable-repo-link",
11556
+ "shared-env-variable-repo-unlink",
10805
11557
  "shared-env-variable-update",
10806
11558
  "show-ip-addresses",
10807
11559
  "signup",
@@ -10832,6 +11584,7 @@ const listEventTypeSchema = z__namespace.object({
10832
11584
  "storage-update-project-connection",
10833
11585
  "storage-upgrade-project-connection-to-oidc",
10834
11586
  "storage-view-secret",
11587
+ "strict-connectors",
10835
11588
  "strict-deployment-protection-settings",
10836
11589
  "strict-password-protection-settings",
10837
11590
  "strict-shareable-links",
@@ -10994,7 +11747,21 @@ const listEventTypesResponseSchema = z__namespace.object({
10994
11747
  }).describe("Response returned by the List Event Types endpoint.");
10995
11748
  const flagSchema = z__namespace.object({
10996
11749
  description: z__namespace.string().optional(),
10997
- variants: z__namespace.array(z__namespace.object({})),
11750
+ variants: z__namespace.array(z__namespace.object({
11751
+ description: z__namespace.string().optional(),
11752
+ label: z__namespace.string().optional(),
11753
+ value: z__namespace.union([
11754
+ z__namespace.string(),
11755
+ z__namespace.number(),
11756
+ z__namespace.object({}).catchall(z__namespace.unknown()),
11757
+ z__namespace.array(z__namespace.string()),
11758
+ z__namespace.union([
11759
+ z__namespace.literal(false),
11760
+ z__namespace.literal(true)
11761
+ ])
11762
+ ]).nullable(),
11763
+ id: z__namespace.string()
11764
+ })),
10998
11765
  id: z__namespace.string(),
10999
11766
  environments: z__namespace.object({}).catchall(z__namespace.object({
11000
11767
  reuse: z__namespace.object({
@@ -11015,7 +11782,7 @@ const flagSchema = z__namespace.object({
11015
11782
  ]),
11016
11783
  variantId: z__namespace.string()
11017
11784
  }),
11018
- fallthrough: z__namespace.union([
11785
+ fallthrough: z__namespace.discriminatedUnion("type", [
11019
11786
  z__namespace.object({
11020
11787
  type: z__namespace.enum([
11021
11788
  "variant"
@@ -11068,7 +11835,7 @@ const flagSchema = z__namespace.object({
11068
11835
  ]),
11069
11836
  rules: z__namespace.array(z__namespace.object({
11070
11837
  id: z__namespace.string(),
11071
- outcome: z__namespace.union([
11838
+ outcome: z__namespace.discriminatedUnion("type", [
11072
11839
  z__namespace.object({
11073
11840
  type: z__namespace.enum([
11074
11841
  "variant"
@@ -11155,7 +11922,7 @@ const flagSchema = z__namespace.object({
11155
11922
  z__namespace.literal(true)
11156
11923
  ]).optional()
11157
11924
  }).optional(),
11158
- lhs: z__namespace.union([
11925
+ lhs: z__namespace.discriminatedUnion("type", [
11159
11926
  z__namespace.object({
11160
11927
  type: z__namespace.enum([
11161
11928
  "segment"
@@ -11258,7 +12025,7 @@ const segmentSchema = z__namespace.object({
11258
12025
  data: z__namespace.object({
11259
12026
  rules: z__namespace.array(z__namespace.object({
11260
12027
  id: z__namespace.string(),
11261
- outcome: z__namespace.union([
12028
+ outcome: z__namespace.discriminatedUnion("type", [
11262
12029
  z__namespace.object({
11263
12030
  type: z__namespace.enum([
11264
12031
  "all"
@@ -11318,7 +12085,7 @@ const segmentSchema = z__namespace.object({
11318
12085
  z__namespace.literal(true)
11319
12086
  ]).optional()
11320
12087
  }).optional(),
11321
- lhs: z__namespace.union([
12088
+ lhs: z__namespace.discriminatedUnion("type", [
11322
12089
  z__namespace.object({
11323
12090
  type: z__namespace.enum([
11324
12091
  "segment"
@@ -11608,6 +12375,7 @@ const namedSandboxSchema = z__namespace.object({
11608
12375
  deniedCIDRs: z__namespace.array(z__namespace.string()).optional(),
11609
12376
  s3Key: z__namespace.string().optional()
11610
12377
  }).optional().describe("Network policy configuration."),
12378
+ networkId: z__namespace.string().optional().describe("The Connect network id for the target Secure Compute private network."),
11611
12379
  totalEgressBytes: z__namespace.number().optional().describe("Cumulative egress bytes across all sandbox runs.").meta({
11612
12380
  examples: [
11613
12381
  4096
@@ -11642,7 +12410,8 @@ const namedSandboxSchema = z__namespace.object({
11642
12410
  drive: z__namespace.string(),
11643
12411
  mode: z__namespace.enum([
11644
12412
  "read-only",
11645
- "read-write"
12413
+ "read-write",
12414
+ "snapshot"
11646
12415
  ]).optional()
11647
12416
  })).optional().describe("Key-value pairs of mount path and drive."),
11648
12417
  createdAt: z__namespace.number().describe("The time when the named sandbox was created, in milliseconds since the epoch.").meta({
@@ -11841,6 +12610,11 @@ const sandboxPublicRouteSchema = z__namespace.object({
11841
12610
  system: z__namespace.literal(true).optional().describe("Whether the route is reserved by the system (e.g. for internal use).")
11842
12611
  }).describe("This object represents a public route in a Vercel Sandbox.");
11843
12612
  const driveSchema = z__namespace.object({
12613
+ id: z__namespace.string().describe("The unique drive ID.").meta({
12614
+ examples: [
12615
+ "drive_abc123"
12616
+ ]
12617
+ }),
11844
12618
  name: z__namespace.string().describe("The unique drive name within the project.").meta({
11845
12619
  examples: [
11846
12620
  "workspace"
@@ -11853,7 +12627,7 @@ const driveSchema = z__namespace.object({
11853
12627
  }),
11854
12628
  maxSizeBytes: z__namespace.number().describe("The maximum drive size in bytes.").meta({
11855
12629
  examples: [
11856
- 107374182400
12630
+ 1099511627776
11857
12631
  ]
11858
12632
  }),
11859
12633
  region: z__namespace.string().describe("The region where the drive is stored.").meta({
@@ -12401,6 +13175,13 @@ const teamSchema = z__namespace.object({
12401
13175
  ]),
12402
13176
  updatedAt: z__namespace.number()
12403
13177
  }).optional().describe("When enabled, adding, changing, or removing project password protection requires Owner role."),
13178
+ strictConnectors: z__namespace.object({
13179
+ enabled: z__namespace.union([
13180
+ z__namespace.literal(false),
13181
+ z__namespace.literal(true)
13182
+ ]),
13183
+ updatedAt: z__namespace.number()
13184
+ }).optional().describe("When enabled, creating and managing connectors requires Owner role or the ConnectorManager permission."),
12404
13185
  nsnbConfig: z__namespace.object({
12405
13186
  preference: z__namespace.enum([
12406
13187
  "auto-approval",
@@ -12431,7 +13212,7 @@ const teamSchema = z__namespace.object({
12431
13212
  z__namespace.literal(false),
12432
13213
  z__namespace.literal(true)
12433
13214
  ]),
12434
- environments: z__namespace.array(z__namespace.union([
13215
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12435
13216
  z__namespace.object({
12436
13217
  type: z__namespace.enum([
12437
13218
  "system"
@@ -12462,7 +13243,7 @@ const teamSchema = z__namespace.object({
12462
13243
  z__namespace.literal(false),
12463
13244
  z__namespace.literal(true)
12464
13245
  ]),
12465
- environments: z__namespace.array(z__namespace.union([
13246
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12466
13247
  z__namespace.object({
12467
13248
  type: z__namespace.enum([
12468
13249
  "system"
@@ -12836,7 +13617,7 @@ const authTokenSchema = z__namespace.object({
12836
13617
  "github"
12837
13618
  ]
12838
13619
  }),
12839
- scopes: z__namespace.array(z__namespace.union([
13620
+ scopes: z__namespace.array(z__namespace.discriminatedUnion("type", [
12840
13621
  z__namespace.object({
12841
13622
  type: z__namespace.enum([
12842
13623
  "user"
@@ -12944,7 +13725,6 @@ const authUserSchema = z__namespace.object({
12944
13725
  "ENTERPRISE_UNPAID_INVOICE",
12945
13726
  "EXPOSURE_CAP_EXCEEDED",
12946
13727
  "FAIR_USE_LIMITS_EXCEEDED",
12947
- "HOBBY_ALLOCATION_PAUSED",
12948
13728
  "SUBSCRIPTION_CANCELED",
12949
13729
  "SUBSCRIPTION_EXPIRED",
12950
13730
  "UNPAID_INVOICE"
@@ -12990,55 +13770,7 @@ const authUserSchema = z__namespace.object({
12990
13770
  "wafRateLimitRequest",
12991
13771
  "webAnalyticsEvent"
12992
13772
  ]).optional(),
12993
- hobbyAllocationPause: z__namespace.object({
12994
- pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
12995
- pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
12996
- triggers: z__namespace.array(z__namespace.object({
12997
- allocation: z__namespace.enum([
12998
- "analyticsUsage",
12999
- "artifacts",
13000
- "bandwidth",
13001
- "blobDataTransfer",
13002
- "blobTotalAdvancedRequests",
13003
- "blobTotalAvgSizeInBytes",
13004
- "blobTotalGetResponseObjectSizeInBytes",
13005
- "blobTotalSimpleRequests",
13006
- "connectDataTransfer",
13007
- "dataCacheRead",
13008
- "dataCacheWrite",
13009
- "edgeConfigRead",
13010
- "edgeConfigWrite",
13011
- "edgeFunctionExecutionUnits",
13012
- "edgeMiddlewareInvocations",
13013
- "edgeRequest",
13014
- "edgeRequestAdditionalCpuDuration",
13015
- "elasticConcurrencyBuildSlots",
13016
- "fastDataTransfer",
13017
- "fastOriginTransfer",
13018
- "fluidCpuDuration",
13019
- "fluidDuration",
13020
- "functionDuration",
13021
- "functionInvocation",
13022
- "imageOptimizationCacheRead",
13023
- "imageOptimizationCacheWrite",
13024
- "imageOptimizationTransformation",
13025
- "logDrainsVolume",
13026
- "monitoringMetric",
13027
- "observabilityEvent",
13028
- "onDemandConcurrencyMinutes",
13029
- "runtimeCacheRead",
13030
- "runtimeCacheWrite",
13031
- "serverlessFunctionExecution",
13032
- "sourceImages",
13033
- "wafOwaspExcessBytes",
13034
- "wafOwaspRequests",
13035
- "wafRateLimitRequest",
13036
- "webAnalyticsEvent"
13037
- ]).describe("Metered allocation whose included amount was fully consumed."),
13038
- usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
13039
- })).describe("Allocations that were at or over 100% when the pause was applied."),
13040
- cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
13041
- }).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
13773
+ unpauseAt: z__namespace.number().optional().describe("Since September 2026. Set only by `billing-usage-alerts` for usage plans with a `blockDurationMs`; its presence marks a pause that expires on its own.")
13042
13774
  }).nullable().describe('When the User account has been "soft blocked", this property will contain the date when the restriction was enacted, and the identifier for why.'),
13043
13775
  billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
13044
13776
  resourceConfig: z__namespace.object({
@@ -13084,10 +13816,10 @@ const authUserSchema = z__namespace.object({
13084
13816
  ]).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13085
13817
  customEnvironmentsPerProject: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13086
13818
  security: z__namespace.object({
13819
+ rateLimit: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13087
13820
  customRules: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13088
13821
  ipBlocks: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13089
- ipBypass: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13090
- rateLimit: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
13822
+ ipBypass: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
13091
13823
  }).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13092
13824
  bulkRedirectsFreeLimitOverride: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account.")
13093
13825
  }).describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
@@ -14013,7 +14745,9 @@ const createAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
14013
14745
  createAiGatewayVirtualModelConfigStatus500Schema
14014
14746
  ]);
14015
14747
  const getAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
14016
- const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
14748
+ const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string().optional();
14749
+ const getAiGatewayVirtualModelConfigQueryLimitSchema = z__namespace.int().min(1).optional();
14750
+ const getAiGatewayVirtualModelConfigQueryCursorSchema = z__namespace.string().optional();
14017
14751
  const getAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14018
14752
  examples: [
14019
14753
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14068,6 +14802,9 @@ const updateAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
14068
14802
  ]);
14069
14803
  const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
14070
14804
  const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
14805
+ const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = z__namespace.string().optional();
14806
+ const deleteAiGatewayVirtualModelConfigQueryActingIpSchema = z__namespace.string().optional();
14807
+ const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = z__namespace.string().optional();
14071
14808
  const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14072
14809
  examples: [
14073
14810
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14121,6 +14858,92 @@ const listAiGatewayVirtualModelConfigsErrorSchema = z__namespace.union([
14121
14858
  listAiGatewayVirtualModelConfigsStatus410Schema,
14122
14859
  listAiGatewayVirtualModelConfigsStatus500Schema
14123
14860
  ]);
14861
+ const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z__namespace.string().optional();
14862
+ const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14863
+ const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14864
+ examples: [
14865
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14866
+ ]
14867
+ });
14868
+ const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14869
+ examples: [
14870
+ "my-team-url-slug"
14871
+ ]
14872
+ });
14873
+ const getAiGatewayVirtualModelConfigBySlugStatus200Schema = z__namespace.unknown();
14874
+ const getAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14875
+ const getAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14876
+ const getAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14877
+ const getAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14878
+ const getAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14879
+ const getAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14880
+ const getAiGatewayVirtualModelConfigBySlugResponseSchema = getAiGatewayVirtualModelConfigBySlugStatus200Schema;
14881
+ const getAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14882
+ getAiGatewayVirtualModelConfigBySlugStatus400Schema,
14883
+ getAiGatewayVirtualModelConfigBySlugStatus401Schema,
14884
+ getAiGatewayVirtualModelConfigBySlugStatus403Schema,
14885
+ getAiGatewayVirtualModelConfigBySlugStatus404Schema,
14886
+ getAiGatewayVirtualModelConfigBySlugStatus410Schema,
14887
+ getAiGatewayVirtualModelConfigBySlugStatus500Schema
14888
+ ]);
14889
+ const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14890
+ const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14891
+ examples: [
14892
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14893
+ ]
14894
+ });
14895
+ const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14896
+ examples: [
14897
+ "my-team-url-slug"
14898
+ ]
14899
+ });
14900
+ const updateAiGatewayVirtualModelConfigBySlugStatus200Schema = z__namespace.unknown();
14901
+ const updateAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14902
+ const updateAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14903
+ const updateAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14904
+ const updateAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14905
+ const updateAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14906
+ const updateAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14907
+ const updateAiGatewayVirtualModelConfigBySlugResponseSchema = updateAiGatewayVirtualModelConfigBySlugStatus200Schema;
14908
+ const updateAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14909
+ updateAiGatewayVirtualModelConfigBySlugStatus400Schema,
14910
+ updateAiGatewayVirtualModelConfigBySlugStatus401Schema,
14911
+ updateAiGatewayVirtualModelConfigBySlugStatus403Schema,
14912
+ updateAiGatewayVirtualModelConfigBySlugStatus404Schema,
14913
+ updateAiGatewayVirtualModelConfigBySlugStatus410Schema,
14914
+ updateAiGatewayVirtualModelConfigBySlugStatus500Schema
14915
+ ]);
14916
+ const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z__namespace.string().optional();
14917
+ const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14918
+ const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema = z__namespace.string().optional();
14919
+ const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema = z__namespace.string().optional();
14920
+ const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema = z__namespace.string().optional();
14921
+ const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14922
+ examples: [
14923
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14924
+ ]
14925
+ });
14926
+ const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14927
+ examples: [
14928
+ "my-team-url-slug"
14929
+ ]
14930
+ });
14931
+ const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema = z__namespace.unknown();
14932
+ const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14933
+ const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14934
+ const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14935
+ const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14936
+ const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14937
+ const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14938
+ const deleteAiGatewayVirtualModelConfigBySlugResponseSchema = deleteAiGatewayVirtualModelConfigBySlugStatus204Schema;
14939
+ const deleteAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14940
+ deleteAiGatewayVirtualModelConfigBySlugStatus400Schema,
14941
+ deleteAiGatewayVirtualModelConfigBySlugStatus401Schema,
14942
+ deleteAiGatewayVirtualModelConfigBySlugStatus403Schema,
14943
+ deleteAiGatewayVirtualModelConfigBySlugStatus404Schema,
14944
+ deleteAiGatewayVirtualModelConfigBySlugStatus410Schema,
14945
+ deleteAiGatewayVirtualModelConfigBySlugStatus500Schema
14946
+ ]);
14124
14947
  const createAiGatewayRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14125
14948
  examples: [
14126
14949
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -15304,6 +16127,260 @@ const readNetworkErrorSchema = z__namespace.union([
15304
16127
  readNetworkStatus403Schema,
15305
16128
  readNetworkStatus410Schema
15306
16129
  ]);
16130
+ const createPrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16131
+ examples: [
16132
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16133
+ ]
16134
+ });
16135
+ const createPrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16136
+ examples: [
16137
+ "my-team-url-slug"
16138
+ ]
16139
+ });
16140
+ const createPrivateLinkEndpointStatus201Schema = z__namespace.unknown();
16141
+ const createPrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16142
+ const createPrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16143
+ const createPrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16144
+ const createPrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16145
+ const createPrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16146
+ const createPrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16147
+ const createPrivateLinkEndpointResponseSchema = createPrivateLinkEndpointStatus201Schema;
16148
+ const createPrivateLinkEndpointErrorSchema = z__namespace.union([
16149
+ createPrivateLinkEndpointStatus400Schema,
16150
+ createPrivateLinkEndpointStatus401Schema,
16151
+ createPrivateLinkEndpointStatus403Schema,
16152
+ createPrivateLinkEndpointStatus404Schema,
16153
+ createPrivateLinkEndpointStatus409Schema,
16154
+ createPrivateLinkEndpointStatus410Schema
16155
+ ]);
16156
+ const listPrivateLinkEndpointsQueryProjectIdSchema = z__namespace.string().describe("The project ID to list PrivateLink endpoints for.").meta({
16157
+ examples: [
16158
+ "prj_a1b2c3d4e5f6g7h8"
16159
+ ]
16160
+ });
16161
+ const listPrivateLinkEndpointsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16162
+ examples: [
16163
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16164
+ ]
16165
+ });
16166
+ const listPrivateLinkEndpointsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16167
+ examples: [
16168
+ "my-team-url-slug"
16169
+ ]
16170
+ });
16171
+ const listPrivateLinkEndpointsStatus200Schema = z__namespace.unknown();
16172
+ const listPrivateLinkEndpointsStatus400Schema = z__namespace.unknown();
16173
+ const listPrivateLinkEndpointsStatus401Schema = z__namespace.unknown();
16174
+ const listPrivateLinkEndpointsStatus403Schema = z__namespace.unknown();
16175
+ const listPrivateLinkEndpointsStatus404Schema = z__namespace.unknown();
16176
+ const listPrivateLinkEndpointsStatus410Schema = z__namespace.unknown();
16177
+ const listPrivateLinkEndpointsResponseSchema = listPrivateLinkEndpointsStatus200Schema;
16178
+ const listPrivateLinkEndpointsErrorSchema = z__namespace.union([
16179
+ listPrivateLinkEndpointsStatus400Schema,
16180
+ listPrivateLinkEndpointsStatus401Schema,
16181
+ listPrivateLinkEndpointsStatus403Schema,
16182
+ listPrivateLinkEndpointsStatus404Schema,
16183
+ listPrivateLinkEndpointsStatus410Schema
16184
+ ]);
16185
+ const readPrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16186
+ examples: [
16187
+ "prj_a1b2c3d4e5f6g7h8"
16188
+ ]
16189
+ });
16190
+ const readPrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16191
+ examples: [
16192
+ "ple_a1b2c3d4e5f6g7h8"
16193
+ ]
16194
+ });
16195
+ const readPrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16196
+ examples: [
16197
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16198
+ ]
16199
+ });
16200
+ const readPrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16201
+ examples: [
16202
+ "my-team-url-slug"
16203
+ ]
16204
+ });
16205
+ const readPrivateLinkEndpointStatus200Schema = z__namespace.unknown();
16206
+ const readPrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16207
+ const readPrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16208
+ const readPrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16209
+ const readPrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16210
+ const readPrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16211
+ const readPrivateLinkEndpointResponseSchema = readPrivateLinkEndpointStatus200Schema;
16212
+ const readPrivateLinkEndpointErrorSchema = z__namespace.union([
16213
+ readPrivateLinkEndpointStatus400Schema,
16214
+ readPrivateLinkEndpointStatus401Schema,
16215
+ readPrivateLinkEndpointStatus403Schema,
16216
+ readPrivateLinkEndpointStatus404Schema,
16217
+ readPrivateLinkEndpointStatus410Schema
16218
+ ]);
16219
+ const deletePrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16220
+ examples: [
16221
+ "prj_a1b2c3d4e5f6g7h8"
16222
+ ]
16223
+ });
16224
+ const deletePrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16225
+ examples: [
16226
+ "ple_a1b2c3d4e5f6g7h8"
16227
+ ]
16228
+ });
16229
+ const deletePrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16230
+ examples: [
16231
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16232
+ ]
16233
+ });
16234
+ const deletePrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16235
+ examples: [
16236
+ "my-team-url-slug"
16237
+ ]
16238
+ });
16239
+ const deletePrivateLinkEndpointStatus204Schema = z__namespace.unknown();
16240
+ const deletePrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16241
+ const deletePrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16242
+ const deletePrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16243
+ const deletePrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16244
+ const deletePrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16245
+ const deletePrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16246
+ const deletePrivateLinkEndpointResponseSchema = deletePrivateLinkEndpointStatus204Schema;
16247
+ const deletePrivateLinkEndpointErrorSchema = z__namespace.union([
16248
+ deletePrivateLinkEndpointStatus400Schema,
16249
+ deletePrivateLinkEndpointStatus401Schema,
16250
+ deletePrivateLinkEndpointStatus403Schema,
16251
+ deletePrivateLinkEndpointStatus404Schema,
16252
+ deletePrivateLinkEndpointStatus409Schema,
16253
+ deletePrivateLinkEndpointStatus410Schema
16254
+ ]);
16255
+ const updatePrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16256
+ examples: [
16257
+ "prj_a1b2c3d4e5f6g7h8"
16258
+ ]
16259
+ });
16260
+ const updatePrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16261
+ examples: [
16262
+ "ple_a1b2c3d4e5f6g7h8"
16263
+ ]
16264
+ });
16265
+ const updatePrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16266
+ examples: [
16267
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16268
+ ]
16269
+ });
16270
+ const updatePrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16271
+ examples: [
16272
+ "my-team-url-slug"
16273
+ ]
16274
+ });
16275
+ const updatePrivateLinkEndpointStatus200Schema = z__namespace.unknown();
16276
+ const updatePrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16277
+ const updatePrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16278
+ const updatePrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16279
+ const updatePrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16280
+ const updatePrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16281
+ const updatePrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16282
+ const updatePrivateLinkEndpointResponseSchema = updatePrivateLinkEndpointStatus200Schema;
16283
+ const updatePrivateLinkEndpointErrorSchema = z__namespace.union([
16284
+ updatePrivateLinkEndpointStatus400Schema,
16285
+ updatePrivateLinkEndpointStatus401Schema,
16286
+ updatePrivateLinkEndpointStatus403Schema,
16287
+ updatePrivateLinkEndpointStatus404Schema,
16288
+ updatePrivateLinkEndpointStatus409Schema,
16289
+ updatePrivateLinkEndpointStatus410Schema
16290
+ ]);
16291
+ const listConnectorsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of connectors to return. Defaults to 20.");
16292
+ const listConnectorsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16293
+ const listConnectorsQueryProjectIdSchema = z__namespace.string().optional().describe("Return only connectors connected to this project.");
16294
+ const listConnectorsQuerySearchSchema = z__namespace.string().max(100).optional().describe("Search connector names, UIDs, and services.");
16295
+ const listConnectorsQueryTypeSchema = z__namespace.string().optional().describe("Comma-separated connector types: `slack`, `discord`, `github`, `linear`, `linq`, `salesforce`, `sendblue`, `snowflake`, `snowflake-wif`, `microsoft-entra`, `api-key`, `photon`, `oauth`, or `custom`.");
16296
+ const listConnectorsQueryServiceSchema = z__namespace.string().optional().describe("Comma-separated provider or service identifiers.");
16297
+ const listConnectorsQuerySortSchema = z__namespace.enum([
16298
+ "name",
16299
+ "createdAt",
16300
+ "updatedAt"
16301
+ ]).optional().describe("Sort by name in ascending order, or by creation or update time in descending order.");
16302
+ const listConnectorsQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16303
+ examples: [
16304
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16305
+ ]
16306
+ });
16307
+ const listConnectorsQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16308
+ examples: [
16309
+ "my-team-url-slug"
16310
+ ]
16311
+ });
16312
+ const listConnectorsStatus200Schema = z__namespace.unknown();
16313
+ const listConnectorsStatus400Schema = z__namespace.unknown();
16314
+ const listConnectorsStatus401Schema = z__namespace.unknown();
16315
+ const listConnectorsStatus403Schema = z__namespace.unknown();
16316
+ const listConnectorsStatus410Schema = z__namespace.unknown();
16317
+ const listConnectorsStatus422Schema = z__namespace.unknown();
16318
+ const listConnectorsResponseSchema = listConnectorsStatus200Schema;
16319
+ const listConnectorsErrorSchema = z__namespace.union([
16320
+ listConnectorsStatus400Schema,
16321
+ listConnectorsStatus401Schema,
16322
+ listConnectorsStatus403Schema,
16323
+ listConnectorsStatus410Schema,
16324
+ listConnectorsStatus422Schema
16325
+ ]);
16326
+ const getConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16327
+ const getConnectorQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16328
+ examples: [
16329
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16330
+ ]
16331
+ });
16332
+ const getConnectorQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16333
+ examples: [
16334
+ "my-team-url-slug"
16335
+ ]
16336
+ });
16337
+ const getConnectorStatus200Schema = z__namespace.unknown();
16338
+ const getConnectorStatus400Schema = z__namespace.unknown();
16339
+ const getConnectorStatus401Schema = z__namespace.unknown();
16340
+ const getConnectorStatus403Schema = z__namespace.unknown();
16341
+ const getConnectorStatus404Schema = z__namespace.unknown();
16342
+ const getConnectorStatus410Schema = z__namespace.unknown();
16343
+ const getConnectorStatus422Schema = z__namespace.unknown();
16344
+ const getConnectorResponseSchema = getConnectorStatus200Schema;
16345
+ const getConnectorErrorSchema = z__namespace.union([
16346
+ getConnectorStatus400Schema,
16347
+ getConnectorStatus401Schema,
16348
+ getConnectorStatus403Schema,
16349
+ getConnectorStatus404Schema,
16350
+ getConnectorStatus410Schema,
16351
+ getConnectorStatus422Schema
16352
+ ]);
16353
+ const deleteConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16354
+ const deleteConnectorQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16355
+ examples: [
16356
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16357
+ ]
16358
+ });
16359
+ const deleteConnectorQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16360
+ examples: [
16361
+ "my-team-url-slug"
16362
+ ]
16363
+ });
16364
+ const deleteConnectorStatus204Schema = z__namespace.unknown();
16365
+ const deleteConnectorStatus400Schema = z__namespace.unknown();
16366
+ const deleteConnectorStatus401Schema = z__namespace.unknown();
16367
+ const deleteConnectorStatus403Schema = z__namespace.unknown();
16368
+ const deleteConnectorStatus404Schema = z__namespace.unknown();
16369
+ const deleteConnectorStatus409Schema = z__namespace.unknown();
16370
+ const deleteConnectorStatus410Schema = z__namespace.unknown();
16371
+ const deleteConnectorStatus422Schema = z__namespace.unknown();
16372
+ const deleteConnectorStatus502Schema = z__namespace.unknown();
16373
+ const deleteConnectorResponseSchema = deleteConnectorStatus204Schema;
16374
+ const deleteConnectorErrorSchema = z__namespace.union([
16375
+ deleteConnectorStatus400Schema,
16376
+ deleteConnectorStatus401Schema,
16377
+ deleteConnectorStatus403Schema,
16378
+ deleteConnectorStatus404Schema,
16379
+ deleteConnectorStatus409Schema,
16380
+ deleteConnectorStatus410Schema,
16381
+ deleteConnectorStatus422Schema,
16382
+ deleteConnectorStatus502Schema
16383
+ ]);
15307
16384
  const createConnectorQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
15308
16385
  examples: [
15309
16386
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -15336,6 +16413,198 @@ const createConnectorErrorSchema = z__namespace.union([
15336
16413
  createConnectorStatus500Schema,
15337
16414
  createConnectorStatus502Schema
15338
16415
  ]);
16416
+ const updateConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16417
+ const updateConnectorQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16418
+ examples: [
16419
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16420
+ ]
16421
+ });
16422
+ const updateConnectorQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16423
+ examples: [
16424
+ "my-team-url-slug"
16425
+ ]
16426
+ });
16427
+ const updateConnectorStatus200Schema = z__namespace.unknown();
16428
+ const updateConnectorStatus400Schema = z__namespace.unknown();
16429
+ const updateConnectorStatus401Schema = z__namespace.unknown();
16430
+ const updateConnectorStatus403Schema = z__namespace.unknown();
16431
+ const updateConnectorStatus404Schema = z__namespace.unknown();
16432
+ const updateConnectorStatus409Schema = z__namespace.unknown();
16433
+ const updateConnectorStatus410Schema = z__namespace.unknown();
16434
+ const updateConnectorStatus422Schema = z__namespace.unknown();
16435
+ const updateConnectorStatus502Schema = z__namespace.unknown();
16436
+ const updateConnectorResponseSchema = updateConnectorStatus200Schema;
16437
+ const updateConnectorErrorSchema = z__namespace.union([
16438
+ updateConnectorStatus400Schema,
16439
+ updateConnectorStatus401Schema,
16440
+ updateConnectorStatus403Schema,
16441
+ updateConnectorStatus404Schema,
16442
+ updateConnectorStatus409Schema,
16443
+ updateConnectorStatus410Schema,
16444
+ updateConnectorStatus422Schema,
16445
+ updateConnectorStatus502Schema
16446
+ ]);
16447
+ const replaceConnectorTriggerDestinationsPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16448
+ const replaceConnectorTriggerDestinationsQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16449
+ examples: [
16450
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16451
+ ]
16452
+ });
16453
+ const replaceConnectorTriggerDestinationsQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16454
+ examples: [
16455
+ "my-team-url-slug"
16456
+ ]
16457
+ });
16458
+ const replaceConnectorTriggerDestinationsStatus200Schema = z__namespace.unknown();
16459
+ const replaceConnectorTriggerDestinationsStatus400Schema = z__namespace.unknown();
16460
+ const replaceConnectorTriggerDestinationsStatus401Schema = z__namespace.unknown();
16461
+ const replaceConnectorTriggerDestinationsStatus403Schema = z__namespace.unknown();
16462
+ const replaceConnectorTriggerDestinationsStatus404Schema = z__namespace.unknown();
16463
+ const replaceConnectorTriggerDestinationsStatus410Schema = z__namespace.unknown();
16464
+ const replaceConnectorTriggerDestinationsStatus422Schema = z__namespace.unknown();
16465
+ const replaceConnectorTriggerDestinationsResponseSchema = replaceConnectorTriggerDestinationsStatus200Schema;
16466
+ const replaceConnectorTriggerDestinationsErrorSchema = z__namespace.union([
16467
+ replaceConnectorTriggerDestinationsStatus400Schema,
16468
+ replaceConnectorTriggerDestinationsStatus401Schema,
16469
+ replaceConnectorTriggerDestinationsStatus403Schema,
16470
+ replaceConnectorTriggerDestinationsStatus404Schema,
16471
+ replaceConnectorTriggerDestinationsStatus410Schema,
16472
+ replaceConnectorTriggerDestinationsStatus422Schema
16473
+ ]);
16474
+ const listConnectorProjectConnectionsPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16475
+ const listConnectorProjectConnectionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of project connections to return. Defaults to 50.");
16476
+ const listConnectorProjectConnectionsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16477
+ const listConnectorProjectConnectionsQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16478
+ examples: [
16479
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16480
+ ]
16481
+ });
16482
+ const listConnectorProjectConnectionsQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16483
+ examples: [
16484
+ "my-team-url-slug"
16485
+ ]
16486
+ });
16487
+ const listConnectorProjectConnectionsStatus200Schema = z__namespace.unknown();
16488
+ const listConnectorProjectConnectionsStatus400Schema = z__namespace.unknown();
16489
+ const listConnectorProjectConnectionsStatus401Schema = z__namespace.unknown();
16490
+ const listConnectorProjectConnectionsStatus403Schema = z__namespace.unknown();
16491
+ const listConnectorProjectConnectionsStatus404Schema = z__namespace.unknown();
16492
+ const listConnectorProjectConnectionsStatus410Schema = z__namespace.unknown();
16493
+ const listConnectorProjectConnectionsStatus422Schema = z__namespace.unknown();
16494
+ const listConnectorProjectConnectionsResponseSchema = listConnectorProjectConnectionsStatus200Schema;
16495
+ const listConnectorProjectConnectionsErrorSchema = z__namespace.union([
16496
+ listConnectorProjectConnectionsStatus400Schema,
16497
+ listConnectorProjectConnectionsStatus401Schema,
16498
+ listConnectorProjectConnectionsStatus403Schema,
16499
+ listConnectorProjectConnectionsStatus404Schema,
16500
+ listConnectorProjectConnectionsStatus410Schema,
16501
+ listConnectorProjectConnectionsStatus422Schema
16502
+ ]);
16503
+ const getConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16504
+ const getConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16505
+ const getConnectorProjectConnectionQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16506
+ examples: [
16507
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16508
+ ]
16509
+ });
16510
+ const getConnectorProjectConnectionQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16511
+ examples: [
16512
+ "my-team-url-slug"
16513
+ ]
16514
+ });
16515
+ const getConnectorProjectConnectionStatus200Schema = z__namespace.unknown();
16516
+ const getConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16517
+ const getConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16518
+ const getConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16519
+ const getConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16520
+ const getConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16521
+ const getConnectorProjectConnectionResponseSchema = getConnectorProjectConnectionStatus200Schema;
16522
+ const getConnectorProjectConnectionErrorSchema = z__namespace.union([
16523
+ getConnectorProjectConnectionStatus400Schema,
16524
+ getConnectorProjectConnectionStatus401Schema,
16525
+ getConnectorProjectConnectionStatus403Schema,
16526
+ getConnectorProjectConnectionStatus404Schema,
16527
+ getConnectorProjectConnectionStatus410Schema
16528
+ ]);
16529
+ const upsertConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16530
+ const upsertConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16531
+ const upsertConnectorProjectConnectionQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16532
+ examples: [
16533
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16534
+ ]
16535
+ });
16536
+ const upsertConnectorProjectConnectionQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16537
+ examples: [
16538
+ "my-team-url-slug"
16539
+ ]
16540
+ });
16541
+ const upsertConnectorProjectConnectionStatus200Schema = z__namespace.unknown();
16542
+ const upsertConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16543
+ const upsertConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16544
+ const upsertConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16545
+ const upsertConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16546
+ const upsertConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16547
+ const upsertConnectorProjectConnectionResponseSchema = upsertConnectorProjectConnectionStatus200Schema;
16548
+ const upsertConnectorProjectConnectionErrorSchema = z__namespace.union([
16549
+ upsertConnectorProjectConnectionStatus400Schema,
16550
+ upsertConnectorProjectConnectionStatus401Schema,
16551
+ upsertConnectorProjectConnectionStatus403Schema,
16552
+ upsertConnectorProjectConnectionStatus404Schema,
16553
+ upsertConnectorProjectConnectionStatus410Schema
16554
+ ]);
16555
+ const deleteConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16556
+ const deleteConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16557
+ const deleteConnectorProjectConnectionQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16558
+ examples: [
16559
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16560
+ ]
16561
+ });
16562
+ const deleteConnectorProjectConnectionQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16563
+ examples: [
16564
+ "my-team-url-slug"
16565
+ ]
16566
+ });
16567
+ const deleteConnectorProjectConnectionStatus204Schema = z__namespace.unknown();
16568
+ const deleteConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16569
+ const deleteConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16570
+ const deleteConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16571
+ const deleteConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16572
+ const deleteConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16573
+ const deleteConnectorProjectConnectionResponseSchema = deleteConnectorProjectConnectionStatus204Schema;
16574
+ const deleteConnectorProjectConnectionErrorSchema = z__namespace.union([
16575
+ deleteConnectorProjectConnectionStatus400Schema,
16576
+ deleteConnectorProjectConnectionStatus401Schema,
16577
+ deleteConnectorProjectConnectionStatus403Schema,
16578
+ deleteConnectorProjectConnectionStatus404Schema,
16579
+ deleteConnectorProjectConnectionStatus410Schema
16580
+ ]);
16581
+ const listProjectConnectorConnectionsPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16582
+ const listProjectConnectorConnectionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of connector connections to return. Defaults to 50.");
16583
+ const listProjectConnectorConnectionsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16584
+ const listProjectConnectorConnectionsQueryTeamIdSchema = z__namespace.string().optional().describe("The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16585
+ examples: [
16586
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16587
+ ]
16588
+ });
16589
+ const listProjectConnectorConnectionsQuerySlugSchema = z__namespace.string().optional().describe("The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected.").meta({
16590
+ examples: [
16591
+ "my-team-url-slug"
16592
+ ]
16593
+ });
16594
+ const listProjectConnectorConnectionsStatus200Schema = z__namespace.unknown();
16595
+ const listProjectConnectorConnectionsStatus400Schema = z__namespace.unknown();
16596
+ const listProjectConnectorConnectionsStatus401Schema = z__namespace.unknown();
16597
+ const listProjectConnectorConnectionsStatus403Schema = z__namespace.unknown();
16598
+ const listProjectConnectorConnectionsStatus404Schema = z__namespace.unknown();
16599
+ const listProjectConnectorConnectionsStatus410Schema = z__namespace.unknown();
16600
+ const listProjectConnectorConnectionsResponseSchema = listProjectConnectorConnectionsStatus200Schema;
16601
+ const listProjectConnectorConnectionsErrorSchema = z__namespace.union([
16602
+ listProjectConnectorConnectionsStatus400Schema,
16603
+ listProjectConnectorConnectionsStatus401Schema,
16604
+ listProjectConnectorConnectionsStatus403Schema,
16605
+ listProjectConnectorConnectionsStatus404Schema,
16606
+ listProjectConnectorConnectionsStatus410Schema
16607
+ ]);
15339
16608
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
15340
16609
  const getConnectorTokenStatus200Schema = z__namespace.unknown();
15341
16610
  const getConnectorTokenStatus400Schema = z__namespace.unknown();
@@ -18250,7 +19519,8 @@ const getBillingPlansQuerySourceSchema = z__namespace.enum([
18250
19519
  "cli",
18251
19520
  "oauth",
18252
19521
  "backoffice",
18253
- "import-recommended-integrations"
19522
+ "import-recommended-integrations",
19523
+ "organization"
18254
19524
  ]).optional();
18255
19525
  const getBillingPlansQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
18256
19526
  examples: [
@@ -18454,7 +19724,6 @@ const importResourceStatus404Schema = z__namespace.unknown();
18454
19724
  const importResourceStatus409Schema = z__namespace.unknown();
18455
19725
  const importResourceStatus410Schema = z__namespace.unknown();
18456
19726
  const importResourceStatus422Schema = z__namespace.unknown();
18457
- const importResourceStatus429Schema = z__namespace.unknown();
18458
19727
  const importResourceResponseSchema = importResourceStatus200Schema;
18459
19728
  const importResourceErrorSchema = z__namespace.union([
18460
19729
  importResourceStatus400Schema,
@@ -18463,8 +19732,7 @@ const importResourceErrorSchema = z__namespace.union([
18463
19732
  importResourceStatus404Schema,
18464
19733
  importResourceStatus409Schema,
18465
19734
  importResourceStatus410Schema,
18466
- importResourceStatus422Schema,
18467
- importResourceStatus429Schema
19735
+ importResourceStatus422Schema
18468
19736
  ]);
18469
19737
  const updateResourcePathIntegrationConfigurationIdSchema = z__namespace.string();
18470
19738
  const updateResourcePathResourceIdSchema = z__namespace.string();
@@ -19454,6 +20722,10 @@ const createObservabilityQueryStatus402Schema = z__namespace.unknown();
19454
20722
  const createObservabilityQueryStatus403Schema = z__namespace.unknown();
19455
20723
  const createObservabilityQueryStatus408Schema = z__namespace.unknown();
19456
20724
  const createObservabilityQueryStatus410Schema = z__namespace.unknown();
20725
+ const createObservabilityQueryStatus413Schema = z__namespace.unknown();
20726
+ const createObservabilityQueryStatus422Schema = z__namespace.unknown();
20727
+ const createObservabilityQueryStatus500Schema = z__namespace.unknown();
20728
+ const createObservabilityQueryStatus503Schema = z__namespace.unknown();
19457
20729
  const createObservabilityQueryResponseSchema = createObservabilityQueryStatus200Schema;
19458
20730
  const createObservabilityQueryErrorSchema = z__namespace.union([
19459
20731
  createObservabilityQueryStatus400Schema,
@@ -19461,7 +20733,11 @@ const createObservabilityQueryErrorSchema = z__namespace.union([
19461
20733
  createObservabilityQueryStatus402Schema,
19462
20734
  createObservabilityQueryStatus403Schema,
19463
20735
  createObservabilityQueryStatus408Schema,
19464
- createObservabilityQueryStatus410Schema
20736
+ createObservabilityQueryStatus410Schema,
20737
+ createObservabilityQueryStatus413Schema,
20738
+ createObservabilityQueryStatus422Schema,
20739
+ createObservabilityQueryStatus500Schema,
20740
+ createObservabilityQueryStatus503Schema
19465
20741
  ]);
19466
20742
  const getObservabilitySchemaStatus200Schema = z__namespace.unknown();
19467
20743
  const getObservabilitySchemaStatus400Schema = z__namespace.unknown();
@@ -20059,6 +21335,7 @@ const updateProjectStatus404Schema = z__namespace.unknown();
20059
21335
  const updateProjectStatus409Schema = z__namespace.unknown();
20060
21336
  const updateProjectStatus410Schema = z__namespace.unknown();
20061
21337
  const updateProjectStatus428Schema = z__namespace.unknown();
21338
+ const updateProjectStatus429Schema = z__namespace.unknown();
20062
21339
  const updateProjectResponseSchema = updateProjectStatus200Schema;
20063
21340
  const updateProjectErrorSchema = z__namespace.union([
20064
21341
  updateProjectStatus400Schema,
@@ -20068,7 +21345,8 @@ const updateProjectErrorSchema = z__namespace.union([
20068
21345
  updateProjectStatus404Schema,
20069
21346
  updateProjectStatus409Schema,
20070
21347
  updateProjectStatus410Schema,
20071
- updateProjectStatus428Schema
21348
+ updateProjectStatus428Schema,
21349
+ updateProjectStatus429Schema
20072
21350
  ]);
20073
21351
  const deleteProjectPathIdOrNameSchema = z__namespace.string().describe("The unique project identifier or the project name").meta({
20074
21352
  examples: [
@@ -20997,12 +22275,14 @@ const createProjectTransferRequestStatus200Schema = z__namespace.unknown();
20997
22275
  const createProjectTransferRequestStatus400Schema = z__namespace.unknown();
20998
22276
  const createProjectTransferRequestStatus401Schema = z__namespace.unknown();
20999
22277
  const createProjectTransferRequestStatus403Schema = z__namespace.unknown();
22278
+ const createProjectTransferRequestStatus409Schema = z__namespace.unknown();
21000
22279
  const createProjectTransferRequestStatus410Schema = z__namespace.unknown();
21001
22280
  const createProjectTransferRequestResponseSchema = createProjectTransferRequestStatus200Schema;
21002
22281
  const createProjectTransferRequestErrorSchema = z__namespace.union([
21003
22282
  createProjectTransferRequestStatus400Schema,
21004
22283
  createProjectTransferRequestStatus401Schema,
21005
22284
  createProjectTransferRequestStatus403Schema,
22285
+ createProjectTransferRequestStatus409Schema,
21006
22286
  createProjectTransferRequestStatus410Schema
21007
22287
  ]);
21008
22288
  const acceptProjectTransferRequestPathCodeSchema = z__namespace.string().describe("The code of the project transfer request.");
@@ -21262,62 +22542,62 @@ const unpauseProjectErrorSchema = z__namespace.union([
21262
22542
  unpauseProjectStatus410Schema,
21263
22543
  unpauseProjectStatus500Schema
21264
22544
  ]);
21265
- const listSandboxesQueryProjectSchema = z__namespace.string().optional().describe("The unique identifier or name of the project to list named sandboxes for.").meta({
22545
+ const listNamedSandboxesQueryProjectSchema = z__namespace.string().optional().describe("The unique identifier or name of the project to list named sandboxes for.").meta({
21266
22546
  examples: [
21267
22547
  "prj_abc123"
21268
22548
  ]
21269
22549
  });
21270
- const listSandboxesQueryLimitSchema = z__namespace.number().min(1).max(50).optional().default(20).describe("Maximum number of named sandboxes to return in the response. Used for pagination.").meta({
22550
+ const listNamedSandboxesQueryLimitSchema = z__namespace.number().min(1).max(50).optional().default(20).describe("Maximum number of named sandboxes to return in the response. Used for pagination.").meta({
21271
22551
  examples: [
21272
22552
  20
21273
22553
  ]
21274
22554
  });
21275
- const listSandboxesQuerySortBySchema = z__namespace.enum([
22555
+ const listNamedSandboxesQuerySortBySchema = z__namespace.enum([
21276
22556
  "createdAt",
21277
22557
  "name",
21278
22558
  "statusUpdatedAt",
21279
22559
  "currentSnapshotId"
21280
22560
  ]).optional().default("createdAt").describe("Field to sort by.");
21281
- const listSandboxesQueryNamePrefixSchema = z__namespace.string().optional().describe("Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.");
21282
- const listSandboxesQueryCursorSchema = z__namespace.string().optional().describe("Opaque pagination cursor from a previous response.");
21283
- const listSandboxesQuerySortOrderSchema = z__namespace.enum([
22561
+ const listNamedSandboxesQueryNamePrefixSchema = z__namespace.string().optional().describe("Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.");
22562
+ const listNamedSandboxesQueryCursorSchema = z__namespace.string().optional().describe("Opaque pagination cursor from a previous response.");
22563
+ const listNamedSandboxesQuerySortOrderSchema = z__namespace.enum([
21284
22564
  "asc",
21285
22565
  "desc"
21286
22566
  ]).optional().default("desc").describe("Sort direction. Defaults to desc.");
21287
- const listSandboxesQueryStatusSchema = z__namespace.enum([
22567
+ const listNamedSandboxesQueryStatusSchema = z__namespace.enum([
21288
22568
  "running",
21289
22569
  "stopping",
21290
22570
  "stopped"
21291
22571
  ]).optional().describe("Filter named sandboxes by status. Only valid when sortBy is createdAt.");
21292
- const listSandboxesQueryTagsSchema = z__namespace.union([
22572
+ const listNamedSandboxesQueryTagsSchema = z__namespace.union([
21293
22573
  z__namespace.string(),
21294
22574
  z__namespace.array(z__namespace.string())
21295
22575
  ]).optional().describe('Filter sandboxes by tag. Format: \\"key:value\\". Only one tag filter is supported at a time.');
21296
- const listSandboxesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
22576
+ const listNamedSandboxesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
21297
22577
  examples: [
21298
22578
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
21299
22579
  ]
21300
22580
  });
21301
- const listSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
22581
+ const listNamedSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
21302
22582
  examples: [
21303
22583
  "my-team-url-slug"
21304
22584
  ]
21305
22585
  });
21306
- const listSandboxesStatus200Schema = z__namespace.unknown();
21307
- const listSandboxesStatus400Schema = z__namespace.unknown();
21308
- const listSandboxesStatus401Schema = z__namespace.unknown();
21309
- const listSandboxesStatus403Schema = z__namespace.unknown();
21310
- const listSandboxesStatus404Schema = z__namespace.unknown();
21311
- const listSandboxesStatus410Schema = z__namespace.unknown();
21312
- const listSandboxesStatus429Schema = z__namespace.unknown();
21313
- const listSandboxesResponseSchema = listSandboxesStatus200Schema;
21314
- const listSandboxesErrorSchema = z__namespace.union([
21315
- listSandboxesStatus400Schema,
21316
- listSandboxesStatus401Schema,
21317
- listSandboxesStatus403Schema,
21318
- listSandboxesStatus404Schema,
21319
- listSandboxesStatus410Schema,
21320
- listSandboxesStatus429Schema
22586
+ const listNamedSandboxesStatus200Schema = z__namespace.unknown();
22587
+ const listNamedSandboxesStatus400Schema = z__namespace.unknown();
22588
+ const listNamedSandboxesStatus401Schema = z__namespace.unknown();
22589
+ const listNamedSandboxesStatus403Schema = z__namespace.unknown();
22590
+ const listNamedSandboxesStatus404Schema = z__namespace.unknown();
22591
+ const listNamedSandboxesStatus410Schema = z__namespace.unknown();
22592
+ const listNamedSandboxesStatus429Schema = z__namespace.unknown();
22593
+ const listNamedSandboxesResponseSchema = listNamedSandboxesStatus200Schema;
22594
+ const listNamedSandboxesErrorSchema = z__namespace.union([
22595
+ listNamedSandboxesStatus400Schema,
22596
+ listNamedSandboxesStatus401Schema,
22597
+ listNamedSandboxesStatus403Schema,
22598
+ listNamedSandboxesStatus404Schema,
22599
+ listNamedSandboxesStatus410Schema,
22600
+ listNamedSandboxesStatus429Schema
21321
22601
  ]);
21322
22602
  const createSandboxesV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
21323
22603
  examples: [
@@ -22614,6 +23894,7 @@ const getBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22614
23894
  const getBypassIpStatus200Schema = z__namespace.unknown();
22615
23895
  const getBypassIpStatus400Schema = z__namespace.unknown();
22616
23896
  const getBypassIpStatus401Schema = z__namespace.unknown();
23897
+ const getBypassIpStatus402Schema = z__namespace.unknown();
22617
23898
  const getBypassIpStatus403Schema = z__namespace.unknown();
22618
23899
  const getBypassIpStatus404Schema = z__namespace.unknown();
22619
23900
  const getBypassIpStatus410Schema = z__namespace.unknown();
@@ -22622,6 +23903,7 @@ const getBypassIpResponseSchema = getBypassIpStatus200Schema;
22622
23903
  const getBypassIpErrorSchema = z__namespace.union([
22623
23904
  getBypassIpStatus400Schema,
22624
23905
  getBypassIpStatus401Schema,
23906
+ getBypassIpStatus402Schema,
22625
23907
  getBypassIpStatus403Schema,
22626
23908
  getBypassIpStatus404Schema,
22627
23909
  getBypassIpStatus410Schema,
@@ -22641,6 +23923,7 @@ const addBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22641
23923
  const addBypassIpStatus200Schema = z__namespace.unknown();
22642
23924
  const addBypassIpStatus400Schema = z__namespace.unknown();
22643
23925
  const addBypassIpStatus401Schema = z__namespace.unknown();
23926
+ const addBypassIpStatus402Schema = z__namespace.unknown();
22644
23927
  const addBypassIpStatus403Schema = z__namespace.unknown();
22645
23928
  const addBypassIpStatus404Schema = z__namespace.unknown();
22646
23929
  const addBypassIpStatus410Schema = z__namespace.unknown();
@@ -22649,6 +23932,7 @@ const addBypassIpResponseSchema = addBypassIpStatus200Schema;
22649
23932
  const addBypassIpErrorSchema = z__namespace.union([
22650
23933
  addBypassIpStatus400Schema,
22651
23934
  addBypassIpStatus401Schema,
23935
+ addBypassIpStatus402Schema,
22652
23936
  addBypassIpStatus403Schema,
22653
23937
  addBypassIpStatus404Schema,
22654
23938
  addBypassIpStatus410Schema,
@@ -22668,6 +23952,7 @@ const removeBypassIpQuerySlugSchema = z__namespace.string().optional().describe(
22668
23952
  const removeBypassIpStatus200Schema = z__namespace.unknown();
22669
23953
  const removeBypassIpStatus400Schema = z__namespace.unknown();
22670
23954
  const removeBypassIpStatus401Schema = z__namespace.unknown();
23955
+ const removeBypassIpStatus402Schema = z__namespace.unknown();
22671
23956
  const removeBypassIpStatus403Schema = z__namespace.unknown();
22672
23957
  const removeBypassIpStatus404Schema = z__namespace.unknown();
22673
23958
  const removeBypassIpStatus410Schema = z__namespace.unknown();
@@ -22676,6 +23961,7 @@ const removeBypassIpResponseSchema = removeBypassIpStatus200Schema;
22676
23961
  const removeBypassIpErrorSchema = z__namespace.union([
22677
23962
  removeBypassIpStatus400Schema,
22678
23963
  removeBypassIpStatus401Schema,
23964
+ removeBypassIpStatus402Schema,
22679
23965
  removeBypassIpStatus403Schema,
22680
23966
  removeBypassIpStatus404Schema,
22681
23967
  removeBypassIpStatus410Schema,
@@ -22829,7 +24115,6 @@ const createIntegrationStoreDirectStatus403Schema = z__namespace.unknown();
22829
24115
  const createIntegrationStoreDirectStatus404Schema = z__namespace.unknown();
22830
24116
  const createIntegrationStoreDirectStatus409Schema = z__namespace.unknown();
22831
24117
  const createIntegrationStoreDirectStatus410Schema = z__namespace.unknown();
22832
- const createIntegrationStoreDirectStatus429Schema = z__namespace.unknown();
22833
24118
  const createIntegrationStoreDirectStatus500Schema = z__namespace.unknown();
22834
24119
  const createIntegrationStoreDirectResponseSchema = createIntegrationStoreDirectStatus200Schema;
22835
24120
  const createIntegrationStoreDirectErrorSchema = z__namespace.union([
@@ -22840,7 +24125,6 @@ const createIntegrationStoreDirectErrorSchema = z__namespace.union([
22840
24125
  createIntegrationStoreDirectStatus404Schema,
22841
24126
  createIntegrationStoreDirectStatus409Schema,
22842
24127
  createIntegrationStoreDirectStatus410Schema,
22843
- createIntegrationStoreDirectStatus429Schema,
22844
24128
  createIntegrationStoreDirectStatus500Schema
22845
24129
  ]);
22846
24130
  const getTeamMembersQueryLimitSchema = z__namespace.number().min(1).optional().describe("Limit how many teams should be returned").meta({
@@ -23440,7 +24724,7 @@ const createRepositoryErrorSchema = z__namespace.union([
23440
24724
  createRepositoryStatus409Schema,
23441
24725
  createRepositoryStatus410Schema
23442
24726
  ]);
23443
- const listRepositoriesQueryProjectIdSchema = z__namespace.string();
24727
+ const listRepositoriesQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23444
24728
  const listRepositoriesQueryLimitSchema = z__namespace.int().min(1).max(1000).optional();
23445
24729
  const listRepositoriesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
23446
24730
  const listRepositoriesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23467,7 +24751,7 @@ const listRepositoriesErrorSchema = z__namespace.union([
23467
24751
  listRepositoriesStatus404Schema,
23468
24752
  listRepositoriesStatus410Schema
23469
24753
  ]);
23470
- const getRepositoryQueryProjectIdSchema = z__namespace.string();
24754
+ const getRepositoryQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23471
24755
  const getRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23472
24756
  const getRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23473
24757
  examples: [
@@ -23493,7 +24777,7 @@ const getRepositoryErrorSchema = z__namespace.union([
23493
24777
  getRepositoryStatus404Schema,
23494
24778
  getRepositoryStatus410Schema
23495
24779
  ]);
23496
- const deleteRepositoryQueryProjectIdSchema = z__namespace.string();
24780
+ const deleteRepositoryQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23497
24781
  const deleteRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23498
24782
  const deleteRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23499
24783
  examples: [
@@ -23519,7 +24803,7 @@ const deleteRepositoryErrorSchema = z__namespace.union([
23519
24803
  deleteRepositoryStatus404Schema,
23520
24804
  deleteRepositoryStatus410Schema
23521
24805
  ]);
23522
- const listRepositoryImagesQueryProjectIdSchema = z__namespace.string();
24806
+ const listRepositoryImagesQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23523
24807
  const listRepositoryImagesPathIdOrNameSchema = z__namespace.string().max(255);
23524
24808
  const listRepositoryImagesQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23525
24809
  const listRepositoryImagesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23548,7 +24832,7 @@ const listRepositoryImagesErrorSchema = z__namespace.union([
23548
24832
  listRepositoryImagesStatus404Schema,
23549
24833
  listRepositoryImagesStatus410Schema
23550
24834
  ]);
23551
- const addRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
24835
+ const addRepositoryPermissionQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23552
24836
  const addRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23553
24837
  const addRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23554
24838
  examples: [
@@ -23574,7 +24858,7 @@ const addRepositoryPermissionErrorSchema = z__namespace.union([
23574
24858
  addRepositoryPermissionStatus404Schema,
23575
24859
  addRepositoryPermissionStatus410Schema
23576
24860
  ]);
23577
- const removeRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
24861
+ const removeRepositoryPermissionQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23578
24862
  const removeRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23579
24863
  const removeRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23580
24864
  examples: [
@@ -23600,7 +24884,7 @@ const removeRepositoryPermissionErrorSchema = z__namespace.union([
23600
24884
  removeRepositoryPermissionStatus404Schema,
23601
24885
  removeRepositoryPermissionStatus410Schema
23602
24886
  ]);
23603
- const listRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
24887
+ const listRepositoryPermissionsQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23604
24888
  const listRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23605
24889
  const listRepositoryPermissionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23606
24890
  const listRepositoryPermissionsQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23628,7 +24912,7 @@ const listRepositoryPermissionsErrorSchema = z__namespace.union([
23628
24912
  listRepositoryPermissionsStatus404Schema,
23629
24913
  listRepositoryPermissionsStatus410Schema
23630
24914
  ]);
23631
- const clearRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
24915
+ const clearRepositoryPermissionsQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23632
24916
  const clearRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23633
24917
  const clearRepositoryPermissionsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23634
24918
  examples: [
@@ -23654,7 +24938,7 @@ const clearRepositoryPermissionsErrorSchema = z__namespace.union([
23654
24938
  clearRepositoryPermissionsStatus404Schema,
23655
24939
  clearRepositoryPermissionsStatus410Schema
23656
24940
  ]);
23657
- const listRepositoryTagsQueryProjectIdSchema = z__namespace.string();
24941
+ const listRepositoryTagsQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23658
24942
  const listRepositoryTagsPathIdOrNameSchema = z__namespace.string().max(255);
23659
24943
  const listRepositoryTagsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23660
24944
  const listRepositoryTagsQueryCursorSchema = z__namespace.string().optional();
@@ -23690,7 +24974,7 @@ const listRepositoryTagsErrorSchema = z__namespace.union([
23690
24974
  listRepositoryTagsStatus404Schema,
23691
24975
  listRepositoryTagsStatus410Schema
23692
24976
  ]);
23693
- const getRepositoryTagQueryProjectIdSchema = z__namespace.string();
24977
+ const getRepositoryTagQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23694
24978
  const getRepositoryTagPathIdOrNameSchema = z__namespace.string().max(255);
23695
24979
  const getRepositoryTagPathTagSchema = z__namespace.string().max(255);
23696
24980
  const getRepositoryTagQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23717,7 +25001,7 @@ const getRepositoryTagErrorSchema = z__namespace.union([
23717
25001
  getRepositoryTagStatus404Schema,
23718
25002
  getRepositoryTagStatus410Schema
23719
25003
  ]);
23720
- const getRepositoryImageQueryProjectIdSchema = z__namespace.string();
25004
+ const getRepositoryImageQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23721
25005
  const getRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23722
25006
  const getRepositoryImagePathImageIdOrDigestSchema = z__namespace.string().max(255).describe("The internal image id (`image_...`) or the image manifest digest (`sha256:...`).");
23723
25007
  const getRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23744,7 +25028,7 @@ const getRepositoryImageErrorSchema = z__namespace.union([
23744
25028
  getRepositoryImageStatus404Schema,
23745
25029
  getRepositoryImageStatus410Schema
23746
25030
  ]);
23747
- const deleteRepositoryImageQueryProjectIdSchema = z__namespace.string();
25031
+ const deleteRepositoryImageQueryProjectIdSchema = z__namespace.string().describe("Project ID or name (slug) within the authenticated team. IDs take precedence over names. Missing or empty values return HTTP 400.");
23748
25032
  const deleteRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23749
25033
  const deleteRepositoryImagePathImageIdSchema = z__namespace.string().max(255);
23750
25034
  const deleteRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -24258,14 +25542,18 @@ const aggregatePageviewsStatus400Schema = z__namespace.unknown();
24258
25542
  const aggregatePageviewsStatus401Schema = z__namespace.unknown();
24259
25543
  const aggregatePageviewsStatus402Schema = z__namespace.unknown();
24260
25544
  const aggregatePageviewsStatus403Schema = z__namespace.unknown();
25545
+ const aggregatePageviewsStatus404Schema = z__namespace.unknown();
24261
25546
  const aggregatePageviewsStatus410Schema = z__namespace.unknown();
25547
+ const aggregatePageviewsStatus503Schema = z__namespace.unknown();
24262
25548
  const aggregatePageviewsResponseSchema = aggregatePageviewsStatus200Schema;
24263
25549
  const aggregatePageviewsErrorSchema = z__namespace.union([
24264
25550
  aggregatePageviewsStatus400Schema,
24265
25551
  aggregatePageviewsStatus401Schema,
24266
25552
  aggregatePageviewsStatus402Schema,
24267
25553
  aggregatePageviewsStatus403Schema,
24268
- aggregatePageviewsStatus410Schema
25554
+ aggregatePageviewsStatus404Schema,
25555
+ aggregatePageviewsStatus410Schema,
25556
+ aggregatePageviewsStatus503Schema
24269
25557
  ]);
24270
25558
  const aggregateEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24271
25559
  examples: [
@@ -24323,14 +25611,18 @@ const aggregateEventsStatus400Schema = z__namespace.unknown();
24323
25611
  const aggregateEventsStatus401Schema = z__namespace.unknown();
24324
25612
  const aggregateEventsStatus402Schema = z__namespace.unknown();
24325
25613
  const aggregateEventsStatus403Schema = z__namespace.unknown();
25614
+ const aggregateEventsStatus404Schema = z__namespace.unknown();
24326
25615
  const aggregateEventsStatus410Schema = z__namespace.unknown();
25616
+ const aggregateEventsStatus503Schema = z__namespace.unknown();
24327
25617
  const aggregateEventsResponseSchema = aggregateEventsStatus200Schema;
24328
25618
  const aggregateEventsErrorSchema = z__namespace.union([
24329
25619
  aggregateEventsStatus400Schema,
24330
25620
  aggregateEventsStatus401Schema,
24331
25621
  aggregateEventsStatus402Schema,
24332
25622
  aggregateEventsStatus403Schema,
24333
- aggregateEventsStatus410Schema
25623
+ aggregateEventsStatus404Schema,
25624
+ aggregateEventsStatus410Schema,
25625
+ aggregateEventsStatus503Schema
24334
25626
  ]);
24335
25627
  const countPageviewsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24336
25628
  examples: [
@@ -24373,14 +25665,18 @@ const countPageviewsStatus400Schema = z__namespace.unknown();
24373
25665
  const countPageviewsStatus401Schema = z__namespace.unknown();
24374
25666
  const countPageviewsStatus402Schema = z__namespace.unknown();
24375
25667
  const countPageviewsStatus403Schema = z__namespace.unknown();
25668
+ const countPageviewsStatus404Schema = z__namespace.unknown();
24376
25669
  const countPageviewsStatus410Schema = z__namespace.unknown();
25670
+ const countPageviewsStatus503Schema = z__namespace.unknown();
24377
25671
  const countPageviewsResponseSchema = countPageviewsStatus200Schema;
24378
25672
  const countPageviewsErrorSchema = z__namespace.union([
24379
25673
  countPageviewsStatus400Schema,
24380
25674
  countPageviewsStatus401Schema,
24381
25675
  countPageviewsStatus402Schema,
24382
25676
  countPageviewsStatus403Schema,
24383
- countPageviewsStatus410Schema
25677
+ countPageviewsStatus404Schema,
25678
+ countPageviewsStatus410Schema,
25679
+ countPageviewsStatus503Schema
24384
25680
  ]);
24385
25681
  const countEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24386
25682
  examples: [
@@ -24423,14 +25719,18 @@ const countEventsStatus400Schema = z__namespace.unknown();
24423
25719
  const countEventsStatus401Schema = z__namespace.unknown();
24424
25720
  const countEventsStatus402Schema = z__namespace.unknown();
24425
25721
  const countEventsStatus403Schema = z__namespace.unknown();
25722
+ const countEventsStatus404Schema = z__namespace.unknown();
24426
25723
  const countEventsStatus410Schema = z__namespace.unknown();
25724
+ const countEventsStatus503Schema = z__namespace.unknown();
24427
25725
  const countEventsResponseSchema = countEventsStatus200Schema;
24428
25726
  const countEventsErrorSchema = z__namespace.union([
24429
25727
  countEventsStatus400Schema,
24430
25728
  countEventsStatus401Schema,
24431
25729
  countEventsStatus402Schema,
24432
25730
  countEventsStatus403Schema,
24433
- countEventsStatus410Schema
25731
+ countEventsStatus404Schema,
25732
+ countEventsStatus410Schema,
25733
+ countEventsStatus503Schema
24434
25734
  ]);
24435
25735
  const createWebhookQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
24436
25736
  examples: [
@@ -25089,6 +26389,7 @@ exports.addBypassIpResponseSchema = addBypassIpResponseSchema;
25089
26389
  exports.addBypassIpStatus200Schema = addBypassIpStatus200Schema;
25090
26390
  exports.addBypassIpStatus400Schema = addBypassIpStatus400Schema;
25091
26391
  exports.addBypassIpStatus401Schema = addBypassIpStatus401Schema;
26392
+ exports.addBypassIpStatus402Schema = addBypassIpStatus402Schema;
25092
26393
  exports.addBypassIpStatus403Schema = addBypassIpStatus403Schema;
25093
26394
  exports.addBypassIpStatus404Schema = addBypassIpStatus404Schema;
25094
26395
  exports.addBypassIpStatus410Schema = addBypassIpStatus410Schema;
@@ -25156,7 +26457,9 @@ exports.aggregateEventsStatus400Schema = aggregateEventsStatus400Schema;
25156
26457
  exports.aggregateEventsStatus401Schema = aggregateEventsStatus401Schema;
25157
26458
  exports.aggregateEventsStatus402Schema = aggregateEventsStatus402Schema;
25158
26459
  exports.aggregateEventsStatus403Schema = aggregateEventsStatus403Schema;
26460
+ exports.aggregateEventsStatus404Schema = aggregateEventsStatus404Schema;
25159
26461
  exports.aggregateEventsStatus410Schema = aggregateEventsStatus410Schema;
26462
+ exports.aggregateEventsStatus503Schema = aggregateEventsStatus503Schema;
25160
26463
  exports.aggregatePageviewsErrorSchema = aggregatePageviewsErrorSchema;
25161
26464
  exports.aggregatePageviewsQueryBySchema = aggregatePageviewsQueryBySchema;
25162
26465
  exports.aggregatePageviewsQueryFilterSchema = aggregatePageviewsQueryFilterSchema;
@@ -25172,7 +26475,9 @@ exports.aggregatePageviewsStatus400Schema = aggregatePageviewsStatus400Schema;
25172
26475
  exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
25173
26476
  exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
25174
26477
  exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
26478
+ exports.aggregatePageviewsStatus404Schema = aggregatePageviewsStatus404Schema;
25175
26479
  exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
26480
+ exports.aggregatePageviewsStatus503Schema = aggregatePageviewsStatus503Schema;
25176
26481
  exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
25177
26482
  exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
25178
26483
  exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
@@ -25310,6 +26615,11 @@ exports.completeRollingReleaseStatus404Schema = completeRollingReleaseStatus404S
25310
26615
  exports.completeRollingReleaseStatus410Schema = completeRollingReleaseStatus410Schema;
25311
26616
  exports.connectConnectorCreateDataSchema = connectConnectorCreateDataSchema;
25312
26617
  exports.connectConnectorCreateResultSchema = connectConnectorCreateResultSchema;
26618
+ exports.connectConnectorListSchema = connectConnectorListSchema;
26619
+ exports.connectConnectorProjectConnectionListSchema = connectConnectorProjectConnectionListSchema;
26620
+ exports.connectConnectorSchema = connectConnectorSchema;
26621
+ exports.connectConnectorUpdateDataSchema = connectConnectorUpdateDataSchema;
26622
+ exports.connectConnectorUpdateResultSchema = connectConnectorUpdateResultSchema;
25313
26623
  exports.connectCreateConnectorRequestSchema = connectCreateConnectorRequestSchema;
25314
26624
  exports.connectEnvironmentSchema = connectEnvironmentSchema;
25315
26625
  exports.connectErrorSchema = connectErrorSchema;
@@ -25325,8 +26635,18 @@ exports.connectIntegrationResourceToProjectStatus401Schema = connectIntegrationR
25325
26635
  exports.connectIntegrationResourceToProjectStatus403Schema = connectIntegrationResourceToProjectStatus403Schema;
25326
26636
  exports.connectIntegrationResourceToProjectStatus404Schema = connectIntegrationResourceToProjectStatus404Schema;
25327
26637
  exports.connectIntegrationResourceToProjectStatus410Schema = connectIntegrationResourceToProjectStatus410Schema;
26638
+ exports.connectPaginationSchema = connectPaginationSchema;
26639
+ exports.connectProjectConnectionSchema = connectProjectConnectionSchema;
26640
+ exports.connectProjectConnectorConnectionListSchema = connectProjectConnectorConnectionListSchema;
26641
+ exports.connectReconsentSchema = connectReconsentSchema;
26642
+ exports.connectReplaceTriggerDestinationsRequestSchema = connectReplaceTriggerDestinationsRequestSchema;
26643
+ exports.connectServiceSyncErrorSchema = connectServiceSyncErrorSchema;
26644
+ exports.connectServiceSyncSchema = connectServiceSyncSchema;
25328
26645
  exports.connectTriggerConfigurationSchema = connectTriggerConfigurationSchema;
26646
+ exports.connectTriggerDestinationInputSchema = connectTriggerDestinationInputSchema;
25329
26647
  exports.connectTriggerDestinationSchema = connectTriggerDestinationSchema;
26648
+ exports.connectUpdateConnectorRequestSchema = connectUpdateConnectorRequestSchema;
26649
+ exports.connectUpsertProjectConnectionRequestSchema = connectUpsertProjectConnectionRequestSchema;
25330
26650
  exports.contactPendingVerificationSchema = contactPendingVerificationSchema;
25331
26651
  exports.contactVerifiedSchema = contactVerifiedSchema;
25332
26652
  exports.countEventsErrorSchema = countEventsErrorSchema;
@@ -25342,7 +26662,9 @@ exports.countEventsStatus400Schema = countEventsStatus400Schema;
25342
26662
  exports.countEventsStatus401Schema = countEventsStatus401Schema;
25343
26663
  exports.countEventsStatus402Schema = countEventsStatus402Schema;
25344
26664
  exports.countEventsStatus403Schema = countEventsStatus403Schema;
26665
+ exports.countEventsStatus404Schema = countEventsStatus404Schema;
25345
26666
  exports.countEventsStatus410Schema = countEventsStatus410Schema;
26667
+ exports.countEventsStatus503Schema = countEventsStatus503Schema;
25346
26668
  exports.countPageviewsErrorSchema = countPageviewsErrorSchema;
25347
26669
  exports.countPageviewsQueryFilterSchema = countPageviewsQueryFilterSchema;
25348
26670
  exports.countPageviewsQueryProjectIdSchema = countPageviewsQueryProjectIdSchema;
@@ -25356,7 +26678,9 @@ exports.countPageviewsStatus400Schema = countPageviewsStatus400Schema;
25356
26678
  exports.countPageviewsStatus401Schema = countPageviewsStatus401Schema;
25357
26679
  exports.countPageviewsStatus402Schema = countPageviewsStatus402Schema;
25358
26680
  exports.countPageviewsStatus403Schema = countPageviewsStatus403Schema;
26681
+ exports.countPageviewsStatus404Schema = countPageviewsStatus404Schema;
25359
26682
  exports.countPageviewsStatus410Schema = countPageviewsStatus410Schema;
26683
+ exports.countPageviewsStatus503Schema = countPageviewsStatus503Schema;
25360
26684
  exports.countryCodeSchema = countryCodeSchema;
25361
26685
  exports.createAccessGroupErrorSchema = createAccessGroupErrorSchema;
25362
26686
  exports.createAccessGroupProjectErrorSchema = createAccessGroupProjectErrorSchema;
@@ -25609,7 +26933,6 @@ exports.createIntegrationStoreDirectStatus403Schema = createIntegrationStoreDire
25609
26933
  exports.createIntegrationStoreDirectStatus404Schema = createIntegrationStoreDirectStatus404Schema;
25610
26934
  exports.createIntegrationStoreDirectStatus409Schema = createIntegrationStoreDirectStatus409Schema;
25611
26935
  exports.createIntegrationStoreDirectStatus410Schema = createIntegrationStoreDirectStatus410Schema;
25612
- exports.createIntegrationStoreDirectStatus429Schema = createIntegrationStoreDirectStatus429Schema;
25613
26936
  exports.createIntegrationStoreDirectStatus500Schema = createIntegrationStoreDirectStatus500Schema;
25614
26937
  exports.createKmsIssuerErrorSchema = createKmsIssuerErrorSchema;
25615
26938
  exports.createKmsIssuerPolicyErrorSchema = createKmsIssuerPolicyErrorSchema;
@@ -25683,6 +27006,10 @@ exports.createObservabilityQueryStatus402Schema = createObservabilityQueryStatus
25683
27006
  exports.createObservabilityQueryStatus403Schema = createObservabilityQueryStatus403Schema;
25684
27007
  exports.createObservabilityQueryStatus408Schema = createObservabilityQueryStatus408Schema;
25685
27008
  exports.createObservabilityQueryStatus410Schema = createObservabilityQueryStatus410Schema;
27009
+ exports.createObservabilityQueryStatus413Schema = createObservabilityQueryStatus413Schema;
27010
+ exports.createObservabilityQueryStatus422Schema = createObservabilityQueryStatus422Schema;
27011
+ exports.createObservabilityQueryStatus500Schema = createObservabilityQueryStatus500Schema;
27012
+ exports.createObservabilityQueryStatus503Schema = createObservabilityQueryStatus503Schema;
25686
27013
  exports.createOrTransferDomainErrorSchema = createOrTransferDomainErrorSchema;
25687
27014
  exports.createOrTransferDomainQuerySlugSchema = createOrTransferDomainQuerySlugSchema;
25688
27015
  exports.createOrTransferDomainQueryTeamIdSchema = createOrTransferDomainQueryTeamIdSchema;
@@ -25695,6 +27022,17 @@ exports.createOrTransferDomainStatus403Schema = createOrTransferDomainStatus403S
25695
27022
  exports.createOrTransferDomainStatus404Schema = createOrTransferDomainStatus404Schema;
25696
27023
  exports.createOrTransferDomainStatus409Schema = createOrTransferDomainStatus409Schema;
25697
27024
  exports.createOrTransferDomainStatus410Schema = createOrTransferDomainStatus410Schema;
27025
+ exports.createPrivateLinkEndpointErrorSchema = createPrivateLinkEndpointErrorSchema;
27026
+ exports.createPrivateLinkEndpointQuerySlugSchema = createPrivateLinkEndpointQuerySlugSchema;
27027
+ exports.createPrivateLinkEndpointQueryTeamIdSchema = createPrivateLinkEndpointQueryTeamIdSchema;
27028
+ exports.createPrivateLinkEndpointResponseSchema = createPrivateLinkEndpointResponseSchema;
27029
+ exports.createPrivateLinkEndpointStatus201Schema = createPrivateLinkEndpointStatus201Schema;
27030
+ exports.createPrivateLinkEndpointStatus400Schema = createPrivateLinkEndpointStatus400Schema;
27031
+ exports.createPrivateLinkEndpointStatus401Schema = createPrivateLinkEndpointStatus401Schema;
27032
+ exports.createPrivateLinkEndpointStatus403Schema = createPrivateLinkEndpointStatus403Schema;
27033
+ exports.createPrivateLinkEndpointStatus404Schema = createPrivateLinkEndpointStatus404Schema;
27034
+ exports.createPrivateLinkEndpointStatus409Schema = createPrivateLinkEndpointStatus409Schema;
27035
+ exports.createPrivateLinkEndpointStatus410Schema = createPrivateLinkEndpointStatus410Schema;
25698
27036
  exports.createProjectCheckErrorSchema = createProjectCheckErrorSchema;
25699
27037
  exports.createProjectCheckPathProjectIdOrNameSchema = createProjectCheckPathProjectIdOrNameSchema;
25700
27038
  exports.createProjectCheckQuerySlugSchema = createProjectCheckQuerySlugSchema;
@@ -25746,6 +27084,7 @@ exports.createProjectTransferRequestStatus200Schema = createProjectTransferReque
25746
27084
  exports.createProjectTransferRequestStatus400Schema = createProjectTransferRequestStatus400Schema;
25747
27085
  exports.createProjectTransferRequestStatus401Schema = createProjectTransferRequestStatus401Schema;
25748
27086
  exports.createProjectTransferRequestStatus403Schema = createProjectTransferRequestStatus403Schema;
27087
+ exports.createProjectTransferRequestStatus409Schema = createProjectTransferRequestStatus409Schema;
25749
27088
  exports.createProjectTransferRequestStatus410Schema = createProjectTransferRequestStatus410Schema;
25750
27089
  exports.createRecordErrorSchema = createRecordErrorSchema;
25751
27090
  exports.createRecordPathDomainSchema = createRecordPathDomainSchema;
@@ -26043,10 +27382,29 @@ exports.deleteAiGatewayRuleStatus403Schema = deleteAiGatewayRuleStatus403Schema;
26043
27382
  exports.deleteAiGatewayRuleStatus404Schema = deleteAiGatewayRuleStatus404Schema;
26044
27383
  exports.deleteAiGatewayRuleStatus410Schema = deleteAiGatewayRuleStatus410Schema;
26045
27384
  exports.deleteAiGatewayRuleStatus500Schema = deleteAiGatewayRuleStatus500Schema;
27385
+ exports.deleteAiGatewayVirtualModelConfigBySlugErrorSchema = deleteAiGatewayVirtualModelConfigBySlugErrorSchema;
27386
+ exports.deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
27387
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema = deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema;
27388
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema = deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema;
27389
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema;
27390
+ exports.deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema = deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
27391
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
27392
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema = deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema;
27393
+ exports.deleteAiGatewayVirtualModelConfigBySlugResponseSchema = deleteAiGatewayVirtualModelConfigBySlugResponseSchema;
27394
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus204Schema = deleteAiGatewayVirtualModelConfigBySlugStatus204Schema;
27395
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus400Schema = deleteAiGatewayVirtualModelConfigBySlugStatus400Schema;
27396
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus401Schema = deleteAiGatewayVirtualModelConfigBySlugStatus401Schema;
27397
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus403Schema = deleteAiGatewayVirtualModelConfigBySlugStatus403Schema;
27398
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus404Schema = deleteAiGatewayVirtualModelConfigBySlugStatus404Schema;
27399
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus410Schema = deleteAiGatewayVirtualModelConfigBySlugStatus410Schema;
27400
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus500Schema = deleteAiGatewayVirtualModelConfigBySlugStatus500Schema;
26046
27401
  exports.deleteAiGatewayVirtualModelConfigErrorSchema = deleteAiGatewayVirtualModelConfigErrorSchema;
27402
+ exports.deleteAiGatewayVirtualModelConfigQueryActingIpSchema = deleteAiGatewayVirtualModelConfigQueryActingIpSchema;
27403
+ exports.deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema;
26047
27404
  exports.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema;
26048
27405
  exports.deleteAiGatewayVirtualModelConfigQuerySlugSchema = deleteAiGatewayVirtualModelConfigQuerySlugSchema;
26049
27406
  exports.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigQueryTeamIdSchema;
27407
+ exports.deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema;
26050
27408
  exports.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
26051
27409
  exports.deleteAiGatewayVirtualModelConfigResponseSchema = deleteAiGatewayVirtualModelConfigResponseSchema;
26052
27410
  exports.deleteAiGatewayVirtualModelConfigStatus204Schema = deleteAiGatewayVirtualModelConfigStatus204Schema;
@@ -26146,6 +27504,32 @@ exports.deleteConfigurationStatus401Schema = deleteConfigurationStatus401Schema;
26146
27504
  exports.deleteConfigurationStatus403Schema = deleteConfigurationStatus403Schema;
26147
27505
  exports.deleteConfigurationStatus404Schema = deleteConfigurationStatus404Schema;
26148
27506
  exports.deleteConfigurationStatus410Schema = deleteConfigurationStatus410Schema;
27507
+ exports.deleteConnectorErrorSchema = deleteConnectorErrorSchema;
27508
+ exports.deleteConnectorPathConnectorSchema = deleteConnectorPathConnectorSchema;
27509
+ exports.deleteConnectorProjectConnectionErrorSchema = deleteConnectorProjectConnectionErrorSchema;
27510
+ exports.deleteConnectorProjectConnectionPathConnectorSchema = deleteConnectorProjectConnectionPathConnectorSchema;
27511
+ exports.deleteConnectorProjectConnectionPathProjectIdSchema = deleteConnectorProjectConnectionPathProjectIdSchema;
27512
+ exports.deleteConnectorProjectConnectionQuerySlugSchema = deleteConnectorProjectConnectionQuerySlugSchema;
27513
+ exports.deleteConnectorProjectConnectionQueryTeamIdSchema = deleteConnectorProjectConnectionQueryTeamIdSchema;
27514
+ exports.deleteConnectorProjectConnectionResponseSchema = deleteConnectorProjectConnectionResponseSchema;
27515
+ exports.deleteConnectorProjectConnectionStatus204Schema = deleteConnectorProjectConnectionStatus204Schema;
27516
+ exports.deleteConnectorProjectConnectionStatus400Schema = deleteConnectorProjectConnectionStatus400Schema;
27517
+ exports.deleteConnectorProjectConnectionStatus401Schema = deleteConnectorProjectConnectionStatus401Schema;
27518
+ exports.deleteConnectorProjectConnectionStatus403Schema = deleteConnectorProjectConnectionStatus403Schema;
27519
+ exports.deleteConnectorProjectConnectionStatus404Schema = deleteConnectorProjectConnectionStatus404Schema;
27520
+ exports.deleteConnectorProjectConnectionStatus410Schema = deleteConnectorProjectConnectionStatus410Schema;
27521
+ exports.deleteConnectorQuerySlugSchema = deleteConnectorQuerySlugSchema;
27522
+ exports.deleteConnectorQueryTeamIdSchema = deleteConnectorQueryTeamIdSchema;
27523
+ exports.deleteConnectorResponseSchema = deleteConnectorResponseSchema;
27524
+ exports.deleteConnectorStatus204Schema = deleteConnectorStatus204Schema;
27525
+ exports.deleteConnectorStatus400Schema = deleteConnectorStatus400Schema;
27526
+ exports.deleteConnectorStatus401Schema = deleteConnectorStatus401Schema;
27527
+ exports.deleteConnectorStatus403Schema = deleteConnectorStatus403Schema;
27528
+ exports.deleteConnectorStatus404Schema = deleteConnectorStatus404Schema;
27529
+ exports.deleteConnectorStatus409Schema = deleteConnectorStatus409Schema;
27530
+ exports.deleteConnectorStatus410Schema = deleteConnectorStatus410Schema;
27531
+ exports.deleteConnectorStatus422Schema = deleteConnectorStatus422Schema;
27532
+ exports.deleteConnectorStatus502Schema = deleteConnectorStatus502Schema;
26149
27533
  exports.deleteDeploymentErrorSchema = deleteDeploymentErrorSchema;
26150
27534
  exports.deleteDeploymentPathIdSchema = deleteDeploymentPathIdSchema;
26151
27535
  exports.deleteDeploymentQuerySlugSchema = deleteDeploymentQuerySlugSchema;
@@ -26346,6 +27730,19 @@ exports.deleteNetworkStatus402Schema = deleteNetworkStatus402Schema;
26346
27730
  exports.deleteNetworkStatus403Schema = deleteNetworkStatus403Schema;
26347
27731
  exports.deleteNetworkStatus409Schema = deleteNetworkStatus409Schema;
26348
27732
  exports.deleteNetworkStatus410Schema = deleteNetworkStatus410Schema;
27733
+ exports.deletePrivateLinkEndpointErrorSchema = deletePrivateLinkEndpointErrorSchema;
27734
+ exports.deletePrivateLinkEndpointPathEndpointIdSchema = deletePrivateLinkEndpointPathEndpointIdSchema;
27735
+ exports.deletePrivateLinkEndpointQueryProjectIdSchema = deletePrivateLinkEndpointQueryProjectIdSchema;
27736
+ exports.deletePrivateLinkEndpointQuerySlugSchema = deletePrivateLinkEndpointQuerySlugSchema;
27737
+ exports.deletePrivateLinkEndpointQueryTeamIdSchema = deletePrivateLinkEndpointQueryTeamIdSchema;
27738
+ exports.deletePrivateLinkEndpointResponseSchema = deletePrivateLinkEndpointResponseSchema;
27739
+ exports.deletePrivateLinkEndpointStatus204Schema = deletePrivateLinkEndpointStatus204Schema;
27740
+ exports.deletePrivateLinkEndpointStatus400Schema = deletePrivateLinkEndpointStatus400Schema;
27741
+ exports.deletePrivateLinkEndpointStatus401Schema = deletePrivateLinkEndpointStatus401Schema;
27742
+ exports.deletePrivateLinkEndpointStatus403Schema = deletePrivateLinkEndpointStatus403Schema;
27743
+ exports.deletePrivateLinkEndpointStatus404Schema = deletePrivateLinkEndpointStatus404Schema;
27744
+ exports.deletePrivateLinkEndpointStatus409Schema = deletePrivateLinkEndpointStatus409Schema;
27745
+ exports.deletePrivateLinkEndpointStatus410Schema = deletePrivateLinkEndpointStatus410Schema;
26349
27746
  exports.deleteProjectCheckErrorSchema = deleteProjectCheckErrorSchema;
26350
27747
  exports.deleteProjectCheckPathCheckIdSchema = deleteProjectCheckPathCheckIdSchema;
26351
27748
  exports.deleteProjectCheckPathProjectIdOrNameSchema = deleteProjectCheckPathProjectIdOrNameSchema;
@@ -26698,7 +28095,22 @@ exports.getActiveAttackStatusStatus401Schema = getActiveAttackStatusStatus401Sch
26698
28095
  exports.getActiveAttackStatusStatus403Schema = getActiveAttackStatusStatus403Schema;
26699
28096
  exports.getActiveAttackStatusStatus404Schema = getActiveAttackStatusStatus404Schema;
26700
28097
  exports.getActiveAttackStatusStatus410Schema = getActiveAttackStatusStatus410Schema;
28098
+ exports.getAiGatewayVirtualModelConfigBySlugErrorSchema = getAiGatewayVirtualModelConfigBySlugErrorSchema;
28099
+ exports.getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
28100
+ exports.getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema;
28101
+ exports.getAiGatewayVirtualModelConfigBySlugQuerySlugSchema = getAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
28102
+ exports.getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
28103
+ exports.getAiGatewayVirtualModelConfigBySlugResponseSchema = getAiGatewayVirtualModelConfigBySlugResponseSchema;
28104
+ exports.getAiGatewayVirtualModelConfigBySlugStatus200Schema = getAiGatewayVirtualModelConfigBySlugStatus200Schema;
28105
+ exports.getAiGatewayVirtualModelConfigBySlugStatus400Schema = getAiGatewayVirtualModelConfigBySlugStatus400Schema;
28106
+ exports.getAiGatewayVirtualModelConfigBySlugStatus401Schema = getAiGatewayVirtualModelConfigBySlugStatus401Schema;
28107
+ exports.getAiGatewayVirtualModelConfigBySlugStatus403Schema = getAiGatewayVirtualModelConfigBySlugStatus403Schema;
28108
+ exports.getAiGatewayVirtualModelConfigBySlugStatus404Schema = getAiGatewayVirtualModelConfigBySlugStatus404Schema;
28109
+ exports.getAiGatewayVirtualModelConfigBySlugStatus410Schema = getAiGatewayVirtualModelConfigBySlugStatus410Schema;
28110
+ exports.getAiGatewayVirtualModelConfigBySlugStatus500Schema = getAiGatewayVirtualModelConfigBySlugStatus500Schema;
26701
28111
  exports.getAiGatewayVirtualModelConfigErrorSchema = getAiGatewayVirtualModelConfigErrorSchema;
28112
+ exports.getAiGatewayVirtualModelConfigQueryCursorSchema = getAiGatewayVirtualModelConfigQueryCursorSchema;
28113
+ exports.getAiGatewayVirtualModelConfigQueryLimitSchema = getAiGatewayVirtualModelConfigQueryLimitSchema;
26702
28114
  exports.getAiGatewayVirtualModelConfigQueryOwnerIdSchema = getAiGatewayVirtualModelConfigQueryOwnerIdSchema;
26703
28115
  exports.getAiGatewayVirtualModelConfigQuerySlugSchema = getAiGatewayVirtualModelConfigQuerySlugSchema;
26704
28116
  exports.getAiGatewayVirtualModelConfigQueryTeamIdSchema = getAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -26857,6 +28269,7 @@ exports.getBypassIpResponseSchema = getBypassIpResponseSchema;
26857
28269
  exports.getBypassIpStatus200Schema = getBypassIpStatus200Schema;
26858
28270
  exports.getBypassIpStatus400Schema = getBypassIpStatus400Schema;
26859
28271
  exports.getBypassIpStatus401Schema = getBypassIpStatus401Schema;
28272
+ exports.getBypassIpStatus402Schema = getBypassIpStatus402Schema;
26860
28273
  exports.getBypassIpStatus403Schema = getBypassIpStatus403Schema;
26861
28274
  exports.getBypassIpStatus404Schema = getBypassIpStatus404Schema;
26862
28275
  exports.getBypassIpStatus410Schema = getBypassIpStatus410Schema;
@@ -26939,6 +28352,30 @@ exports.getConfigurationsStatus400Schema = getConfigurationsStatus400Schema;
26939
28352
  exports.getConfigurationsStatus401Schema = getConfigurationsStatus401Schema;
26940
28353
  exports.getConfigurationsStatus403Schema = getConfigurationsStatus403Schema;
26941
28354
  exports.getConfigurationsStatus410Schema = getConfigurationsStatus410Schema;
28355
+ exports.getConnectorErrorSchema = getConnectorErrorSchema;
28356
+ exports.getConnectorPathConnectorSchema = getConnectorPathConnectorSchema;
28357
+ exports.getConnectorProjectConnectionErrorSchema = getConnectorProjectConnectionErrorSchema;
28358
+ exports.getConnectorProjectConnectionPathConnectorSchema = getConnectorProjectConnectionPathConnectorSchema;
28359
+ exports.getConnectorProjectConnectionPathProjectIdSchema = getConnectorProjectConnectionPathProjectIdSchema;
28360
+ exports.getConnectorProjectConnectionQuerySlugSchema = getConnectorProjectConnectionQuerySlugSchema;
28361
+ exports.getConnectorProjectConnectionQueryTeamIdSchema = getConnectorProjectConnectionQueryTeamIdSchema;
28362
+ exports.getConnectorProjectConnectionResponseSchema = getConnectorProjectConnectionResponseSchema;
28363
+ exports.getConnectorProjectConnectionStatus200Schema = getConnectorProjectConnectionStatus200Schema;
28364
+ exports.getConnectorProjectConnectionStatus400Schema = getConnectorProjectConnectionStatus400Schema;
28365
+ exports.getConnectorProjectConnectionStatus401Schema = getConnectorProjectConnectionStatus401Schema;
28366
+ exports.getConnectorProjectConnectionStatus403Schema = getConnectorProjectConnectionStatus403Schema;
28367
+ exports.getConnectorProjectConnectionStatus404Schema = getConnectorProjectConnectionStatus404Schema;
28368
+ exports.getConnectorProjectConnectionStatus410Schema = getConnectorProjectConnectionStatus410Schema;
28369
+ exports.getConnectorQuerySlugSchema = getConnectorQuerySlugSchema;
28370
+ exports.getConnectorQueryTeamIdSchema = getConnectorQueryTeamIdSchema;
28371
+ exports.getConnectorResponseSchema = getConnectorResponseSchema;
28372
+ exports.getConnectorStatus200Schema = getConnectorStatus200Schema;
28373
+ exports.getConnectorStatus400Schema = getConnectorStatus400Schema;
28374
+ exports.getConnectorStatus401Schema = getConnectorStatus401Schema;
28375
+ exports.getConnectorStatus403Schema = getConnectorStatus403Schema;
28376
+ exports.getConnectorStatus404Schema = getConnectorStatus404Schema;
28377
+ exports.getConnectorStatus410Schema = getConnectorStatus410Schema;
28378
+ exports.getConnectorStatus422Schema = getConnectorStatus422Schema;
26942
28379
  exports.getConnectorTokenErrorSchema = getConnectorTokenErrorSchema;
26943
28380
  exports.getConnectorTokenPathConnectorSchema = getConnectorTokenPathConnectorSchema;
26944
28381
  exports.getConnectorTokenResponseSchema = getConnectorTokenResponseSchema;
@@ -28091,7 +29528,6 @@ exports.importResourceStatus404Schema = importResourceStatus404Schema;
28091
29528
  exports.importResourceStatus409Schema = importResourceStatus409Schema;
28092
29529
  exports.importResourceStatus410Schema = importResourceStatus410Schema;
28093
29530
  exports.importResourceStatus422Schema = importResourceStatus422Schema;
28094
- exports.importResourceStatus429Schema = importResourceStatus429Schema;
28095
29531
  exports.internalServerErrorSchema = internalServerErrorSchema;
28096
29532
  exports.invalidAdditionalContactInfoSchema = invalidAdditionalContactInfoSchema;
28097
29533
  exports.invalidateBySrcImagesErrorSchema = invalidateBySrcImagesErrorSchema;
@@ -28283,6 +29719,37 @@ exports.listCheckRunsStatus401Schema = listCheckRunsStatus401Schema;
28283
29719
  exports.listCheckRunsStatus403Schema = listCheckRunsStatus403Schema;
28284
29720
  exports.listCheckRunsStatus410Schema = listCheckRunsStatus410Schema;
28285
29721
  exports.listCheckRunsStatus500Schema = listCheckRunsStatus500Schema;
29722
+ exports.listConnectorProjectConnectionsErrorSchema = listConnectorProjectConnectionsErrorSchema;
29723
+ exports.listConnectorProjectConnectionsPathConnectorSchema = listConnectorProjectConnectionsPathConnectorSchema;
29724
+ exports.listConnectorProjectConnectionsQueryCursorSchema = listConnectorProjectConnectionsQueryCursorSchema;
29725
+ exports.listConnectorProjectConnectionsQueryLimitSchema = listConnectorProjectConnectionsQueryLimitSchema;
29726
+ exports.listConnectorProjectConnectionsQuerySlugSchema = listConnectorProjectConnectionsQuerySlugSchema;
29727
+ exports.listConnectorProjectConnectionsQueryTeamIdSchema = listConnectorProjectConnectionsQueryTeamIdSchema;
29728
+ exports.listConnectorProjectConnectionsResponseSchema = listConnectorProjectConnectionsResponseSchema;
29729
+ exports.listConnectorProjectConnectionsStatus200Schema = listConnectorProjectConnectionsStatus200Schema;
29730
+ exports.listConnectorProjectConnectionsStatus400Schema = listConnectorProjectConnectionsStatus400Schema;
29731
+ exports.listConnectorProjectConnectionsStatus401Schema = listConnectorProjectConnectionsStatus401Schema;
29732
+ exports.listConnectorProjectConnectionsStatus403Schema = listConnectorProjectConnectionsStatus403Schema;
29733
+ exports.listConnectorProjectConnectionsStatus404Schema = listConnectorProjectConnectionsStatus404Schema;
29734
+ exports.listConnectorProjectConnectionsStatus410Schema = listConnectorProjectConnectionsStatus410Schema;
29735
+ exports.listConnectorProjectConnectionsStatus422Schema = listConnectorProjectConnectionsStatus422Schema;
29736
+ exports.listConnectorsErrorSchema = listConnectorsErrorSchema;
29737
+ exports.listConnectorsQueryCursorSchema = listConnectorsQueryCursorSchema;
29738
+ exports.listConnectorsQueryLimitSchema = listConnectorsQueryLimitSchema;
29739
+ exports.listConnectorsQueryProjectIdSchema = listConnectorsQueryProjectIdSchema;
29740
+ exports.listConnectorsQuerySearchSchema = listConnectorsQuerySearchSchema;
29741
+ exports.listConnectorsQueryServiceSchema = listConnectorsQueryServiceSchema;
29742
+ exports.listConnectorsQuerySlugSchema = listConnectorsQuerySlugSchema;
29743
+ exports.listConnectorsQuerySortSchema = listConnectorsQuerySortSchema;
29744
+ exports.listConnectorsQueryTeamIdSchema = listConnectorsQueryTeamIdSchema;
29745
+ exports.listConnectorsQueryTypeSchema = listConnectorsQueryTypeSchema;
29746
+ exports.listConnectorsResponseSchema = listConnectorsResponseSchema;
29747
+ exports.listConnectorsStatus200Schema = listConnectorsStatus200Schema;
29748
+ exports.listConnectorsStatus400Schema = listConnectorsStatus400Schema;
29749
+ exports.listConnectorsStatus401Schema = listConnectorsStatus401Schema;
29750
+ exports.listConnectorsStatus403Schema = listConnectorsStatus403Schema;
29751
+ exports.listConnectorsStatus410Schema = listConnectorsStatus410Schema;
29752
+ exports.listConnectorsStatus422Schema = listConnectorsStatus422Schema;
28286
29753
  exports.listContractCommitmentsErrorSchema = listContractCommitmentsErrorSchema;
28287
29754
  exports.listContractCommitmentsQuerySlugSchema = listContractCommitmentsQuerySlugSchema;
28288
29755
  exports.listContractCommitmentsQueryTeamIdSchema = listContractCommitmentsQueryTeamIdSchema;
@@ -28433,6 +29900,25 @@ exports.listKmsIssuersStatus400Schema = listKmsIssuersStatus400Schema;
28433
29900
  exports.listKmsIssuersStatus401Schema = listKmsIssuersStatus401Schema;
28434
29901
  exports.listKmsIssuersStatus403Schema = listKmsIssuersStatus403Schema;
28435
29902
  exports.listKmsIssuersStatus410Schema = listKmsIssuersStatus410Schema;
29903
+ exports.listNamedSandboxesErrorSchema = listNamedSandboxesErrorSchema;
29904
+ exports.listNamedSandboxesQueryCursorSchema = listNamedSandboxesQueryCursorSchema;
29905
+ exports.listNamedSandboxesQueryLimitSchema = listNamedSandboxesQueryLimitSchema;
29906
+ exports.listNamedSandboxesQueryNamePrefixSchema = listNamedSandboxesQueryNamePrefixSchema;
29907
+ exports.listNamedSandboxesQueryProjectSchema = listNamedSandboxesQueryProjectSchema;
29908
+ exports.listNamedSandboxesQuerySlugSchema = listNamedSandboxesQuerySlugSchema;
29909
+ exports.listNamedSandboxesQuerySortBySchema = listNamedSandboxesQuerySortBySchema;
29910
+ exports.listNamedSandboxesQuerySortOrderSchema = listNamedSandboxesQuerySortOrderSchema;
29911
+ exports.listNamedSandboxesQueryStatusSchema = listNamedSandboxesQueryStatusSchema;
29912
+ exports.listNamedSandboxesQueryTagsSchema = listNamedSandboxesQueryTagsSchema;
29913
+ exports.listNamedSandboxesQueryTeamIdSchema = listNamedSandboxesQueryTeamIdSchema;
29914
+ exports.listNamedSandboxesResponseSchema = listNamedSandboxesResponseSchema;
29915
+ exports.listNamedSandboxesStatus200Schema = listNamedSandboxesStatus200Schema;
29916
+ exports.listNamedSandboxesStatus400Schema = listNamedSandboxesStatus400Schema;
29917
+ exports.listNamedSandboxesStatus401Schema = listNamedSandboxesStatus401Schema;
29918
+ exports.listNamedSandboxesStatus403Schema = listNamedSandboxesStatus403Schema;
29919
+ exports.listNamedSandboxesStatus404Schema = listNamedSandboxesStatus404Schema;
29920
+ exports.listNamedSandboxesStatus410Schema = listNamedSandboxesStatus410Schema;
29921
+ exports.listNamedSandboxesStatus429Schema = listNamedSandboxesStatus429Schema;
28436
29922
  exports.listNetworksErrorSchema = listNetworksErrorSchema;
28437
29923
  exports.listNetworksQueryIncludeHostedZonesSchema = listNetworksQueryIncludeHostedZonesSchema;
28438
29924
  exports.listNetworksQueryIncludePeeringConnectionsSchema = listNetworksQueryIncludePeeringConnectionsSchema;
@@ -28446,6 +29932,17 @@ exports.listNetworksStatus400Schema = listNetworksStatus400Schema;
28446
29932
  exports.listNetworksStatus401Schema = listNetworksStatus401Schema;
28447
29933
  exports.listNetworksStatus403Schema = listNetworksStatus403Schema;
28448
29934
  exports.listNetworksStatus410Schema = listNetworksStatus410Schema;
29935
+ exports.listPrivateLinkEndpointsErrorSchema = listPrivateLinkEndpointsErrorSchema;
29936
+ exports.listPrivateLinkEndpointsQueryProjectIdSchema = listPrivateLinkEndpointsQueryProjectIdSchema;
29937
+ exports.listPrivateLinkEndpointsQuerySlugSchema = listPrivateLinkEndpointsQuerySlugSchema;
29938
+ exports.listPrivateLinkEndpointsQueryTeamIdSchema = listPrivateLinkEndpointsQueryTeamIdSchema;
29939
+ exports.listPrivateLinkEndpointsResponseSchema = listPrivateLinkEndpointsResponseSchema;
29940
+ exports.listPrivateLinkEndpointsStatus200Schema = listPrivateLinkEndpointsStatus200Schema;
29941
+ exports.listPrivateLinkEndpointsStatus400Schema = listPrivateLinkEndpointsStatus400Schema;
29942
+ exports.listPrivateLinkEndpointsStatus401Schema = listPrivateLinkEndpointsStatus401Schema;
29943
+ exports.listPrivateLinkEndpointsStatus403Schema = listPrivateLinkEndpointsStatus403Schema;
29944
+ exports.listPrivateLinkEndpointsStatus404Schema = listPrivateLinkEndpointsStatus404Schema;
29945
+ exports.listPrivateLinkEndpointsStatus410Schema = listPrivateLinkEndpointsStatus410Schema;
28449
29946
  exports.listProjectChecksErrorSchema = listProjectChecksErrorSchema;
28450
29947
  exports.listProjectChecksPathProjectIdOrNameSchema = listProjectChecksPathProjectIdOrNameSchema;
28451
29948
  exports.listProjectChecksQueryBlocksSchema = listProjectChecksQueryBlocksSchema;
@@ -28458,6 +29955,19 @@ exports.listProjectChecksStatus401Schema = listProjectChecksStatus401Schema;
28458
29955
  exports.listProjectChecksStatus403Schema = listProjectChecksStatus403Schema;
28459
29956
  exports.listProjectChecksStatus410Schema = listProjectChecksStatus410Schema;
28460
29957
  exports.listProjectChecksStatus500Schema = listProjectChecksStatus500Schema;
29958
+ exports.listProjectConnectorConnectionsErrorSchema = listProjectConnectorConnectionsErrorSchema;
29959
+ exports.listProjectConnectorConnectionsPathProjectIdSchema = listProjectConnectorConnectionsPathProjectIdSchema;
29960
+ exports.listProjectConnectorConnectionsQueryCursorSchema = listProjectConnectorConnectionsQueryCursorSchema;
29961
+ exports.listProjectConnectorConnectionsQueryLimitSchema = listProjectConnectorConnectionsQueryLimitSchema;
29962
+ exports.listProjectConnectorConnectionsQuerySlugSchema = listProjectConnectorConnectionsQuerySlugSchema;
29963
+ exports.listProjectConnectorConnectionsQueryTeamIdSchema = listProjectConnectorConnectionsQueryTeamIdSchema;
29964
+ exports.listProjectConnectorConnectionsResponseSchema = listProjectConnectorConnectionsResponseSchema;
29965
+ exports.listProjectConnectorConnectionsStatus200Schema = listProjectConnectorConnectionsStatus200Schema;
29966
+ exports.listProjectConnectorConnectionsStatus400Schema = listProjectConnectorConnectionsStatus400Schema;
29967
+ exports.listProjectConnectorConnectionsStatus401Schema = listProjectConnectorConnectionsStatus401Schema;
29968
+ exports.listProjectConnectorConnectionsStatus403Schema = listProjectConnectorConnectionsStatus403Schema;
29969
+ exports.listProjectConnectorConnectionsStatus404Schema = listProjectConnectorConnectionsStatus404Schema;
29970
+ exports.listProjectConnectorConnectionsStatus410Schema = listProjectConnectorConnectionsStatus410Schema;
28461
29971
  exports.listPromoteAliasesErrorSchema = listPromoteAliasesErrorSchema;
28462
29972
  exports.listPromoteAliasesPathProjectIdSchema = listPromoteAliasesPathProjectIdSchema;
28463
29973
  exports.listPromoteAliasesQueryFailedOnlySchema = listPromoteAliasesQueryFailedOnlySchema;
@@ -28531,25 +30041,6 @@ exports.listRepositoryTagsStatus401Schema = listRepositoryTagsStatus401Schema;
28531
30041
  exports.listRepositoryTagsStatus403Schema = listRepositoryTagsStatus403Schema;
28532
30042
  exports.listRepositoryTagsStatus404Schema = listRepositoryTagsStatus404Schema;
28533
30043
  exports.listRepositoryTagsStatus410Schema = listRepositoryTagsStatus410Schema;
28534
- exports.listSandboxesErrorSchema = listSandboxesErrorSchema;
28535
- exports.listSandboxesQueryCursorSchema = listSandboxesQueryCursorSchema;
28536
- exports.listSandboxesQueryLimitSchema = listSandboxesQueryLimitSchema;
28537
- exports.listSandboxesQueryNamePrefixSchema = listSandboxesQueryNamePrefixSchema;
28538
- exports.listSandboxesQueryProjectSchema = listSandboxesQueryProjectSchema;
28539
- exports.listSandboxesQuerySlugSchema = listSandboxesQuerySlugSchema;
28540
- exports.listSandboxesQuerySortBySchema = listSandboxesQuerySortBySchema;
28541
- exports.listSandboxesQuerySortOrderSchema = listSandboxesQuerySortOrderSchema;
28542
- exports.listSandboxesQueryStatusSchema = listSandboxesQueryStatusSchema;
28543
- exports.listSandboxesQueryTagsSchema = listSandboxesQueryTagsSchema;
28544
- exports.listSandboxesQueryTeamIdSchema = listSandboxesQueryTeamIdSchema;
28545
- exports.listSandboxesResponseSchema = listSandboxesResponseSchema;
28546
- exports.listSandboxesStatus200Schema = listSandboxesStatus200Schema;
28547
- exports.listSandboxesStatus400Schema = listSandboxesStatus400Schema;
28548
- exports.listSandboxesStatus401Schema = listSandboxesStatus401Schema;
28549
- exports.listSandboxesStatus403Schema = listSandboxesStatus403Schema;
28550
- exports.listSandboxesStatus404Schema = listSandboxesStatus404Schema;
28551
- exports.listSandboxesStatus410Schema = listSandboxesStatus410Schema;
28552
- exports.listSandboxesStatus429Schema = listSandboxesStatus429Schema;
28553
30044
  exports.listSessionCommandsErrorSchema = listSessionCommandsErrorSchema;
28554
30045
  exports.listSessionCommandsPathSessionIdSchema = listSessionCommandsPathSessionIdSchema;
28555
30046
  exports.listSessionCommandsQuerySlugSchema = listSessionCommandsQuerySlugSchema;
@@ -28780,6 +30271,7 @@ exports.postTeamDsyncRolesStatus400Schema = postTeamDsyncRolesStatus400Schema;
28780
30271
  exports.postTeamDsyncRolesStatus401Schema = postTeamDsyncRolesStatus401Schema;
28781
30272
  exports.postTeamDsyncRolesStatus403Schema = postTeamDsyncRolesStatus403Schema;
28782
30273
  exports.postTeamDsyncRolesStatus410Schema = postTeamDsyncRolesStatus410Schema;
30274
+ exports.privateLinkEndpointSchema = privateLinkEndpointSchema;
28783
30275
  exports.propertyKeySchema = propertyKeySchema;
28784
30276
  exports.putFirewallConfigErrorSchema = putFirewallConfigErrorSchema;
28785
30277
  exports.putFirewallConfigQueryProjectIdSchema = putFirewallConfigQueryProjectIdSchema;
@@ -28826,6 +30318,18 @@ exports.readNetworkStatus400Schema = readNetworkStatus400Schema;
28826
30318
  exports.readNetworkStatus401Schema = readNetworkStatus401Schema;
28827
30319
  exports.readNetworkStatus403Schema = readNetworkStatus403Schema;
28828
30320
  exports.readNetworkStatus410Schema = readNetworkStatus410Schema;
30321
+ exports.readPrivateLinkEndpointErrorSchema = readPrivateLinkEndpointErrorSchema;
30322
+ exports.readPrivateLinkEndpointPathEndpointIdSchema = readPrivateLinkEndpointPathEndpointIdSchema;
30323
+ exports.readPrivateLinkEndpointQueryProjectIdSchema = readPrivateLinkEndpointQueryProjectIdSchema;
30324
+ exports.readPrivateLinkEndpointQuerySlugSchema = readPrivateLinkEndpointQuerySlugSchema;
30325
+ exports.readPrivateLinkEndpointQueryTeamIdSchema = readPrivateLinkEndpointQueryTeamIdSchema;
30326
+ exports.readPrivateLinkEndpointResponseSchema = readPrivateLinkEndpointResponseSchema;
30327
+ exports.readPrivateLinkEndpointStatus200Schema = readPrivateLinkEndpointStatus200Schema;
30328
+ exports.readPrivateLinkEndpointStatus400Schema = readPrivateLinkEndpointStatus400Schema;
30329
+ exports.readPrivateLinkEndpointStatus401Schema = readPrivateLinkEndpointStatus401Schema;
30330
+ exports.readPrivateLinkEndpointStatus403Schema = readPrivateLinkEndpointStatus403Schema;
30331
+ exports.readPrivateLinkEndpointStatus404Schema = readPrivateLinkEndpointStatus404Schema;
30332
+ exports.readPrivateLinkEndpointStatus410Schema = readPrivateLinkEndpointStatus410Schema;
28829
30333
  exports.readSessionFileErrorSchema = readSessionFileErrorSchema;
28830
30334
  exports.readSessionFilePathSessionIdSchema = readSessionFilePathSessionIdSchema;
28831
30335
  exports.readSessionFileQuerySlugSchema = readSessionFileQuerySlugSchema;
@@ -28861,6 +30365,7 @@ exports.removeBypassIpResponseSchema = removeBypassIpResponseSchema;
28861
30365
  exports.removeBypassIpStatus200Schema = removeBypassIpStatus200Schema;
28862
30366
  exports.removeBypassIpStatus400Schema = removeBypassIpStatus400Schema;
28863
30367
  exports.removeBypassIpStatus401Schema = removeBypassIpStatus401Schema;
30368
+ exports.removeBypassIpStatus402Schema = removeBypassIpStatus402Schema;
28864
30369
  exports.removeBypassIpStatus403Schema = removeBypassIpStatus403Schema;
28865
30370
  exports.removeBypassIpStatus404Schema = removeBypassIpStatus404Schema;
28866
30371
  exports.removeBypassIpStatus410Schema = removeBypassIpStatus410Schema;
@@ -29001,6 +30506,18 @@ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus
29001
30506
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
29002
30507
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
29003
30508
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema;
30509
+ exports.replaceConnectorTriggerDestinationsErrorSchema = replaceConnectorTriggerDestinationsErrorSchema;
30510
+ exports.replaceConnectorTriggerDestinationsPathConnectorSchema = replaceConnectorTriggerDestinationsPathConnectorSchema;
30511
+ exports.replaceConnectorTriggerDestinationsQuerySlugSchema = replaceConnectorTriggerDestinationsQuerySlugSchema;
30512
+ exports.replaceConnectorTriggerDestinationsQueryTeamIdSchema = replaceConnectorTriggerDestinationsQueryTeamIdSchema;
30513
+ exports.replaceConnectorTriggerDestinationsResponseSchema = replaceConnectorTriggerDestinationsResponseSchema;
30514
+ exports.replaceConnectorTriggerDestinationsStatus200Schema = replaceConnectorTriggerDestinationsStatus200Schema;
30515
+ exports.replaceConnectorTriggerDestinationsStatus400Schema = replaceConnectorTriggerDestinationsStatus400Schema;
30516
+ exports.replaceConnectorTriggerDestinationsStatus401Schema = replaceConnectorTriggerDestinationsStatus401Schema;
30517
+ exports.replaceConnectorTriggerDestinationsStatus403Schema = replaceConnectorTriggerDestinationsStatus403Schema;
30518
+ exports.replaceConnectorTriggerDestinationsStatus404Schema = replaceConnectorTriggerDestinationsStatus404Schema;
30519
+ exports.replaceConnectorTriggerDestinationsStatus410Schema = replaceConnectorTriggerDestinationsStatus410Schema;
30520
+ exports.replaceConnectorTriggerDestinationsStatus422Schema = replaceConnectorTriggerDestinationsStatus422Schema;
29004
30521
  exports.replaceDomainsByDomainRecordsErrorSchema = replaceDomainsByDomainRecordsErrorSchema;
29005
30522
  exports.replaceDomainsByDomainRecordsPathDomainSchema = replaceDomainsByDomainRecordsPathDomainSchema;
29006
30523
  exports.replaceDomainsByDomainRecordsResponseSchema = replaceDomainsByDomainRecordsResponseSchema;
@@ -29371,6 +30888,18 @@ exports.updateAiGatewayRuleStatus403Schema = updateAiGatewayRuleStatus403Schema;
29371
30888
  exports.updateAiGatewayRuleStatus404Schema = updateAiGatewayRuleStatus404Schema;
29372
30889
  exports.updateAiGatewayRuleStatus410Schema = updateAiGatewayRuleStatus410Schema;
29373
30890
  exports.updateAiGatewayRuleStatus500Schema = updateAiGatewayRuleStatus500Schema;
30891
+ exports.updateAiGatewayVirtualModelConfigBySlugErrorSchema = updateAiGatewayVirtualModelConfigBySlugErrorSchema;
30892
+ exports.updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
30893
+ exports.updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema = updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
30894
+ exports.updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
30895
+ exports.updateAiGatewayVirtualModelConfigBySlugResponseSchema = updateAiGatewayVirtualModelConfigBySlugResponseSchema;
30896
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus200Schema = updateAiGatewayVirtualModelConfigBySlugStatus200Schema;
30897
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus400Schema = updateAiGatewayVirtualModelConfigBySlugStatus400Schema;
30898
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus401Schema = updateAiGatewayVirtualModelConfigBySlugStatus401Schema;
30899
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus403Schema = updateAiGatewayVirtualModelConfigBySlugStatus403Schema;
30900
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus404Schema = updateAiGatewayVirtualModelConfigBySlugStatus404Schema;
30901
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus410Schema = updateAiGatewayVirtualModelConfigBySlugStatus410Schema;
30902
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus500Schema = updateAiGatewayVirtualModelConfigBySlugStatus500Schema;
29374
30903
  exports.updateAiGatewayVirtualModelConfigErrorSchema = updateAiGatewayVirtualModelConfigErrorSchema;
29375
30904
  exports.updateAiGatewayVirtualModelConfigQuerySlugSchema = updateAiGatewayVirtualModelConfigQuerySlugSchema;
29376
30905
  exports.updateAiGatewayVirtualModelConfigQueryTeamIdSchema = updateAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -29419,6 +30948,20 @@ exports.updateCheckStatus403Schema = updateCheckStatus403Schema;
29419
30948
  exports.updateCheckStatus404Schema = updateCheckStatus404Schema;
29420
30949
  exports.updateCheckStatus410Schema = updateCheckStatus410Schema;
29421
30950
  exports.updateCheckStatus413Schema = updateCheckStatus413Schema;
30951
+ exports.updateConnectorErrorSchema = updateConnectorErrorSchema;
30952
+ exports.updateConnectorPathConnectorSchema = updateConnectorPathConnectorSchema;
30953
+ exports.updateConnectorQuerySlugSchema = updateConnectorQuerySlugSchema;
30954
+ exports.updateConnectorQueryTeamIdSchema = updateConnectorQueryTeamIdSchema;
30955
+ exports.updateConnectorResponseSchema = updateConnectorResponseSchema;
30956
+ exports.updateConnectorStatus200Schema = updateConnectorStatus200Schema;
30957
+ exports.updateConnectorStatus400Schema = updateConnectorStatus400Schema;
30958
+ exports.updateConnectorStatus401Schema = updateConnectorStatus401Schema;
30959
+ exports.updateConnectorStatus403Schema = updateConnectorStatus403Schema;
30960
+ exports.updateConnectorStatus404Schema = updateConnectorStatus404Schema;
30961
+ exports.updateConnectorStatus409Schema = updateConnectorStatus409Schema;
30962
+ exports.updateConnectorStatus410Schema = updateConnectorStatus410Schema;
30963
+ exports.updateConnectorStatus422Schema = updateConnectorStatus422Schema;
30964
+ exports.updateConnectorStatus502Schema = updateConnectorStatus502Schema;
29422
30965
  exports.updateCustomEnvironmentErrorSchema = updateCustomEnvironmentErrorSchema;
29423
30966
  exports.updateCustomEnvironmentPathEnvironmentSlugOrIdSchema = updateCustomEnvironmentPathEnvironmentSlugOrIdSchema;
29424
30967
  exports.updateCustomEnvironmentPathIdOrNameSchema = updateCustomEnvironmentPathIdOrNameSchema;
@@ -29662,6 +31205,19 @@ exports.updateObservabilityConfigurationProjectStatus403Schema = updateObservabi
29662
31205
  exports.updateObservabilityConfigurationProjectStatus404Schema = updateObservabilityConfigurationProjectStatus404Schema;
29663
31206
  exports.updateObservabilityConfigurationProjectStatus410Schema = updateObservabilityConfigurationProjectStatus410Schema;
29664
31207
  exports.updateObservabilityConfigurationProjectStatus429Schema = updateObservabilityConfigurationProjectStatus429Schema;
31208
+ exports.updatePrivateLinkEndpointErrorSchema = updatePrivateLinkEndpointErrorSchema;
31209
+ exports.updatePrivateLinkEndpointPathEndpointIdSchema = updatePrivateLinkEndpointPathEndpointIdSchema;
31210
+ exports.updatePrivateLinkEndpointQueryProjectIdSchema = updatePrivateLinkEndpointQueryProjectIdSchema;
31211
+ exports.updatePrivateLinkEndpointQuerySlugSchema = updatePrivateLinkEndpointQuerySlugSchema;
31212
+ exports.updatePrivateLinkEndpointQueryTeamIdSchema = updatePrivateLinkEndpointQueryTeamIdSchema;
31213
+ exports.updatePrivateLinkEndpointResponseSchema = updatePrivateLinkEndpointResponseSchema;
31214
+ exports.updatePrivateLinkEndpointStatus200Schema = updatePrivateLinkEndpointStatus200Schema;
31215
+ exports.updatePrivateLinkEndpointStatus400Schema = updatePrivateLinkEndpointStatus400Schema;
31216
+ exports.updatePrivateLinkEndpointStatus401Schema = updatePrivateLinkEndpointStatus401Schema;
31217
+ exports.updatePrivateLinkEndpointStatus403Schema = updatePrivateLinkEndpointStatus403Schema;
31218
+ exports.updatePrivateLinkEndpointStatus404Schema = updatePrivateLinkEndpointStatus404Schema;
31219
+ exports.updatePrivateLinkEndpointStatus409Schema = updatePrivateLinkEndpointStatus409Schema;
31220
+ exports.updatePrivateLinkEndpointStatus410Schema = updatePrivateLinkEndpointStatus410Schema;
29665
31221
  exports.updateProjectCheckErrorSchema = updateProjectCheckErrorSchema;
29666
31222
  exports.updateProjectCheckPathCheckIdSchema = updateProjectCheckPathCheckIdSchema;
29667
31223
  exports.updateProjectCheckPathProjectIdOrNameSchema = updateProjectCheckPathProjectIdOrNameSchema;
@@ -29713,6 +31269,7 @@ exports.updateProjectStatus404Schema = updateProjectStatus404Schema;
29713
31269
  exports.updateProjectStatus409Schema = updateProjectStatus409Schema;
29714
31270
  exports.updateProjectStatus410Schema = updateProjectStatus410Schema;
29715
31271
  exports.updateProjectStatus428Schema = updateProjectStatus428Schema;
31272
+ exports.updateProjectStatus429Schema = updateProjectStatus429Schema;
29716
31273
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema;
29717
31274
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema;
29718
31275
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema;
@@ -29933,6 +31490,18 @@ exports.uploadProjectAvatarStatus403Schema = uploadProjectAvatarStatus403Schema;
29933
31490
  exports.uploadProjectAvatarStatus410Schema = uploadProjectAvatarStatus410Schema;
29934
31491
  exports.uploadProjectAvatarStatus413Schema = uploadProjectAvatarStatus413Schema;
29935
31492
  exports.uploadProjectAvatarStatus415Schema = uploadProjectAvatarStatus415Schema;
31493
+ exports.upsertConnectorProjectConnectionErrorSchema = upsertConnectorProjectConnectionErrorSchema;
31494
+ exports.upsertConnectorProjectConnectionPathConnectorSchema = upsertConnectorProjectConnectionPathConnectorSchema;
31495
+ exports.upsertConnectorProjectConnectionPathProjectIdSchema = upsertConnectorProjectConnectionPathProjectIdSchema;
31496
+ exports.upsertConnectorProjectConnectionQuerySlugSchema = upsertConnectorProjectConnectionQuerySlugSchema;
31497
+ exports.upsertConnectorProjectConnectionQueryTeamIdSchema = upsertConnectorProjectConnectionQueryTeamIdSchema;
31498
+ exports.upsertConnectorProjectConnectionResponseSchema = upsertConnectorProjectConnectionResponseSchema;
31499
+ exports.upsertConnectorProjectConnectionStatus200Schema = upsertConnectorProjectConnectionStatus200Schema;
31500
+ exports.upsertConnectorProjectConnectionStatus400Schema = upsertConnectorProjectConnectionStatus400Schema;
31501
+ exports.upsertConnectorProjectConnectionStatus401Schema = upsertConnectorProjectConnectionStatus401Schema;
31502
+ exports.upsertConnectorProjectConnectionStatus403Schema = upsertConnectorProjectConnectionStatus403Schema;
31503
+ exports.upsertConnectorProjectConnectionStatus404Schema = upsertConnectorProjectConnectionStatus404Schema;
31504
+ exports.upsertConnectorProjectConnectionStatus410Schema = upsertConnectorProjectConnectionStatus410Schema;
29936
31505
  exports.userEventSchema = userEventSchema;
29937
31506
  exports.vcrImageDetailSchema = vcrImageDetailSchema;
29938
31507
  exports.vcrImageLayerSchema = vcrImageLayerSchema;