vercel-api-js 1.15.0 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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",
@@ -1474,6 +2051,8 @@ const userEventSchema = z__namespace.object({
1474
2051
  "shared-env-variable-create",
1475
2052
  "shared-env-variable-delete",
1476
2053
  "shared-env-variable-read",
2054
+ "shared-env-variable-repo-link",
2055
+ "shared-env-variable-repo-unlink",
1477
2056
  "shared-env-variable-update",
1478
2057
  "show-ip-addresses",
1479
2058
  "signup",
@@ -1504,6 +2083,7 @@ const userEventSchema = z__namespace.object({
1504
2083
  "storage-update-project-connection",
1505
2084
  "storage-upgrade-project-connection-to-oidc",
1506
2085
  "storage-view-secret",
2086
+ "strict-connectors",
1507
2087
  "strict-deployment-protection-settings",
1508
2088
  "strict-password-protection-settings",
1509
2089
  "strict-shareable-links",
@@ -1679,7 +2259,7 @@ const userEventSchema = z__namespace.object({
1679
2259
  username: z__namespace.string(),
1680
2260
  uid: z__namespace.string()
1681
2261
  }).optional().describe("Metadata for {@link userId}."),
1682
- principal: z__namespace.union([
2262
+ principal: z__namespace.discriminatedUnion("type", [
1683
2263
  z__namespace.object({
1684
2264
  type: z__namespace.enum([
1685
2265
  "user"
@@ -1712,7 +2292,7 @@ const userEventSchema = z__namespace.object({
1712
2292
  ])
1713
2293
  }).strict()
1714
2294
  ]).optional(),
1715
- via: z__namespace.array(z__namespace.union([
2295
+ via: z__namespace.array(z__namespace.discriminatedUnion("type", [
1716
2296
  z__namespace.object({
1717
2297
  type: z__namespace.enum([
1718
2298
  "user"
@@ -1752,6 +2332,9 @@ const userEventSchema = z__namespace.object({
1752
2332
  }),
1753
2333
  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
2334
  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".'),
2335
+ 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."),
2336
+ sessionId: z__namespace.string().optional().describe("The ID of the session that the principal's token belongs to, when it belongs to one."),
2337
+ requestId: z__namespace.string().optional(),
1755
2338
  payload: z__namespace.union([
1756
2339
  z__namespace.object({}).strict(),
1757
2340
  z__namespace.object({
@@ -1800,6 +2383,11 @@ const userEventSchema = z__namespace.object({
1800
2383
  projectId: z__namespace.string().optional(),
1801
2384
  environment: z__namespace.array(z__namespace.string())
1802
2385
  }).strict(),
2386
+ z__namespace.object({
2387
+ projectId: z__namespace.string(),
2388
+ projectName: z__namespace.string(),
2389
+ policyId: z__namespace.string()
2390
+ }).strict(),
1803
2391
  z__namespace.object({
1804
2392
  provider: z__namespace.enum([
1805
2393
  "chatgpt",
@@ -2021,8 +2609,14 @@ const userEventSchema = z__namespace.object({
2021
2609
  })
2022
2610
  }).strict(),
2023
2611
  z__namespace.object({
2024
- amount: z__namespace.string(),
2025
- purchaseIntentId: z__namespace.string()
2612
+ credential: z__namespace.object({
2613
+ id: z__namespace.string(),
2614
+ name: z__namespace.string(),
2615
+ providerSlug: z__namespace.string()
2616
+ }),
2617
+ added: z__namespace.array(z__namespace.string()),
2618
+ removed: z__namespace.array(z__namespace.string()),
2619
+ changed: z__namespace.array(z__namespace.string())
2026
2620
  }).strict(),
2027
2621
  z__namespace.object({
2028
2622
  enabled: z__namespace.union([
@@ -2030,6 +2624,10 @@ const userEventSchema = z__namespace.object({
2030
2624
  z__namespace.literal(true)
2031
2625
  ])
2032
2626
  }).strict(),
2627
+ z__namespace.object({
2628
+ amount: z__namespace.string(),
2629
+ purchaseIntentId: z__namespace.string()
2630
+ }).strict(),
2033
2631
  z__namespace.object({
2034
2632
  added: z__namespace.array(z__namespace.string()),
2035
2633
  removed: z__namespace.array(z__namespace.string())
@@ -2307,6 +2905,7 @@ const userEventSchema = z__namespace.object({
2307
2905
  "read-write:ai-gateway-rules",
2308
2906
  "read-write:ai-gateway-virtual-model-configs",
2309
2907
  "read-write:alerts",
2908
+ "read-write:automations",
2310
2909
  "read-write:billing",
2311
2910
  "read-write:blob",
2312
2911
  "read-write:connect",
@@ -2337,7 +2936,9 @@ const userEventSchema = z__namespace.object({
2337
2936
  "read:ai-gateway-rules",
2338
2937
  "read:ai-gateway-virtual-model-configs",
2339
2938
  "read:alerts",
2939
+ "read:automations",
2340
2940
  "read:billing",
2941
+ "read:connect",
2341
2942
  "read:deployment",
2342
2943
  "read:domain",
2343
2944
  "read:event",
@@ -2357,6 +2958,7 @@ const userEventSchema = z__namespace.object({
2357
2958
  "read:user",
2358
2959
  "read:vcr",
2359
2960
  "read:web-analytics",
2961
+ "read:webhooks",
2360
2962
  "use:ai-gateway"
2361
2963
  ])).optional()
2362
2964
  }).strict(),
@@ -2382,6 +2984,7 @@ const userEventSchema = z__namespace.object({
2382
2984
  "read-write:ai-gateway-rules",
2383
2985
  "read-write:ai-gateway-virtual-model-configs",
2384
2986
  "read-write:alerts",
2987
+ "read-write:automations",
2385
2988
  "read-write:billing",
2386
2989
  "read-write:blob",
2387
2990
  "read-write:connect",
@@ -2412,7 +3015,9 @@ const userEventSchema = z__namespace.object({
2412
3015
  "read:ai-gateway-rules",
2413
3016
  "read:ai-gateway-virtual-model-configs",
2414
3017
  "read:alerts",
3018
+ "read:automations",
2415
3019
  "read:billing",
3020
+ "read:connect",
2416
3021
  "read:deployment",
2417
3022
  "read:domain",
2418
3023
  "read:event",
@@ -2432,6 +3037,7 @@ const userEventSchema = z__namespace.object({
2432
3037
  "read:user",
2433
3038
  "read:vcr",
2434
3039
  "read:web-analytics",
3040
+ "read:webhooks",
2435
3041
  "use:ai-gateway"
2436
3042
  ])).optional()
2437
3043
  }).strict(),
@@ -2462,6 +3068,7 @@ const userEventSchema = z__namespace.object({
2462
3068
  "read-write:ai-gateway-rules",
2463
3069
  "read-write:ai-gateway-virtual-model-configs",
2464
3070
  "read-write:alerts",
3071
+ "read-write:automations",
2465
3072
  "read-write:billing",
2466
3073
  "read-write:blob",
2467
3074
  "read-write:connect",
@@ -2492,7 +3099,9 @@ const userEventSchema = z__namespace.object({
2492
3099
  "read:ai-gateway-rules",
2493
3100
  "read:ai-gateway-virtual-model-configs",
2494
3101
  "read:alerts",
3102
+ "read:automations",
2495
3103
  "read:billing",
3104
+ "read:connect",
2496
3105
  "read:deployment",
2497
3106
  "read:domain",
2498
3107
  "read:event",
@@ -2511,6 +3120,7 @@ const userEventSchema = z__namespace.object({
2511
3120
  "read:team",
2512
3121
  "read:vcr",
2513
3122
  "read:web-analytics",
3123
+ "read:webhooks",
2514
3124
  "use:ai-gateway"
2515
3125
  ])).optional()
2516
3126
  }).optional(),
@@ -2537,6 +3147,7 @@ const userEventSchema = z__namespace.object({
2537
3147
  "read-write:ai-gateway-rules",
2538
3148
  "read-write:ai-gateway-virtual-model-configs",
2539
3149
  "read-write:alerts",
3150
+ "read-write:automations",
2540
3151
  "read-write:billing",
2541
3152
  "read-write:blob",
2542
3153
  "read-write:connect",
@@ -2567,7 +3178,9 @@ const userEventSchema = z__namespace.object({
2567
3178
  "read:ai-gateway-rules",
2568
3179
  "read:ai-gateway-virtual-model-configs",
2569
3180
  "read:alerts",
3181
+ "read:automations",
2570
3182
  "read:billing",
3183
+ "read:connect",
2571
3184
  "read:deployment",
2572
3185
  "read:domain",
2573
3186
  "read:event",
@@ -2586,6 +3199,7 @@ const userEventSchema = z__namespace.object({
2586
3199
  "read:team",
2587
3200
  "read:vcr",
2588
3201
  "read:web-analytics",
3202
+ "read:webhooks",
2589
3203
  "use:ai-gateway"
2590
3204
  ])).optional()
2591
3205
  }).optional()
@@ -2615,6 +3229,7 @@ const userEventSchema = z__namespace.object({
2615
3229
  "read-write:ai-gateway-rules",
2616
3230
  "read-write:ai-gateway-virtual-model-configs",
2617
3231
  "read-write:alerts",
3232
+ "read-write:automations",
2618
3233
  "read-write:billing",
2619
3234
  "read-write:blob",
2620
3235
  "read-write:connect",
@@ -2645,7 +3260,9 @@ const userEventSchema = z__namespace.object({
2645
3260
  "read:ai-gateway-rules",
2646
3261
  "read:ai-gateway-virtual-model-configs",
2647
3262
  "read:alerts",
3263
+ "read:automations",
2648
3264
  "read:billing",
3265
+ "read:connect",
2649
3266
  "read:deployment",
2650
3267
  "read:domain",
2651
3268
  "read:event",
@@ -2664,6 +3281,7 @@ const userEventSchema = z__namespace.object({
2664
3281
  "read:team",
2665
3282
  "read:vcr",
2666
3283
  "read:web-analytics",
3284
+ "read:webhooks",
2667
3285
  "use:ai-gateway"
2668
3286
  ])).optional()
2669
3287
  }).strict(),
@@ -2984,6 +3602,7 @@ const userEventSchema = z__namespace.object({
2984
3602
  clientUid: z__namespace.string().optional(),
2985
3603
  clientName: z__namespace.string().optional(),
2986
3604
  projectId: z__namespace.string().optional(),
3605
+ projectName: z__namespace.string().optional(),
2987
3606
  installationId: z__namespace.string().optional(),
2988
3607
  subjectType: z__namespace.enum([
2989
3608
  "app",
@@ -3079,7 +3698,7 @@ const userEventSchema = z__namespace.object({
3079
3698
  type: z__namespace.string().optional()
3080
3699
  }).strict(),
3081
3700
  z__namespace.object({
3082
- job: z__namespace.union([
3701
+ job: z__namespace.discriminatedUnion("type", [
3083
3702
  z__namespace.object({
3084
3703
  type: z__namespace.enum([
3085
3704
  "bitbucket-push"
@@ -4301,6 +4920,18 @@ const userEventSchema = z__namespace.object({
4301
4920
  projectNames: z__namespace.array(z__namespace.string()).optional(),
4302
4921
  ipAddress: z__namespace.string().optional()
4303
4922
  }).strict(),
4923
+ z__namespace.object({
4924
+ envId: z__namespace.string(),
4925
+ envKey: z__namespace.string(),
4926
+ provider: z__namespace.string(),
4927
+ organizationId: z__namespace.string(),
4928
+ repository: z__namespace.string(),
4929
+ target: z__namespace.array(z__namespace.enum([
4930
+ "development",
4931
+ "preview",
4932
+ "production"
4933
+ ]))
4934
+ }).strict(),
4304
4935
  z__namespace.object({
4305
4936
  oldEnvVar: z__namespace.object({
4306
4937
  created: z__namespace.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
@@ -4590,6 +5221,7 @@ const userEventSchema = z__namespace.object({
4590
5221
  }).strict(),
4591
5222
  z__namespace.object({
4592
5223
  projectId: z__namespace.string(),
5224
+ projectName: z__namespace.string().optional(),
4593
5225
  previousOwnerId: z__namespace.string(),
4594
5226
  newOwnerId: z__namespace.string()
4595
5227
  }).strict(),
@@ -4599,6 +5231,13 @@ const userEventSchema = z__namespace.object({
4599
5231
  "enable"
4600
5232
  ])
4601
5233
  }).strict(),
5234
+ z__namespace.object({
5235
+ source: z__namespace.enum([
5236
+ "create",
5237
+ "enable",
5238
+ "upgrade"
5239
+ ])
5240
+ }).strict(),
4602
5241
  z__namespace.object({
4603
5242
  provider: z__namespace.enum([
4604
5243
  "bitbucket",
@@ -4812,10 +5451,14 @@ const userEventSchema = z__namespace.object({
4812
5451
  "observability-edge-requests",
4813
5452
  "observability-error-rate",
4814
5453
  "observability-function-invocations",
5454
+ "shortcut",
4815
5455
  "speed-insights-cls",
4816
5456
  "speed-insights-lcp",
4817
5457
  "speed-insights-res"
4818
- ])
5458
+ ]),
5459
+ config: z__namespace.object({
5460
+ url: z__namespace.string()
5461
+ }).optional()
4819
5462
  })).optional(),
4820
5463
  remoteCaching: z__namespace.object({
4821
5464
  enabled: z__namespace.union([
@@ -4876,10 +5519,10 @@ const userEventSchema = z__namespace.object({
4876
5519
  ]).optional(),
4877
5520
  customEnvironmentsPerProject: z__namespace.number().optional(),
4878
5521
  security: z__namespace.object({
5522
+ rateLimit: z__namespace.number().optional(),
4879
5523
  customRules: z__namespace.number().optional(),
4880
5524
  ipBlocks: z__namespace.number().optional(),
4881
- ipBypass: z__namespace.number().optional(),
4882
- rateLimit: z__namespace.number().optional()
5525
+ ipBypass: z__namespace.number().optional()
4883
5526
  }).optional(),
4884
5527
  bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
4885
5528
  buildMachine: z__namespace.object({
@@ -4954,7 +5597,6 @@ const userEventSchema = z__namespace.object({
4954
5597
  "ENTERPRISE_UNPAID_INVOICE",
4955
5598
  "EXPOSURE_CAP_EXCEEDED",
4956
5599
  "FAIR_USE_LIMITS_EXCEEDED",
4957
- "HOBBY_ALLOCATION_PAUSED",
4958
5600
  "SUBSCRIPTION_CANCELED",
4959
5601
  "SUBSCRIPTION_EXPIRED",
4960
5602
  "UNPAID_INVOICE"
@@ -4979,76 +5621,28 @@ const userEventSchema = z__namespace.object({
4979
5621
  "edgeRequestAdditionalCpuDuration",
4980
5622
  "elasticConcurrencyBuildSlots",
4981
5623
  "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.")
5624
+ "fastOriginTransfer",
5625
+ "fluidCpuDuration",
5626
+ "fluidDuration",
5627
+ "functionDuration",
5628
+ "functionInvocation",
5629
+ "imageOptimizationCacheRead",
5630
+ "imageOptimizationCacheWrite",
5631
+ "imageOptimizationTransformation",
5632
+ "logDrainsVolume",
5633
+ "monitoringMetric",
5634
+ "observabilityEvent",
5635
+ "onDemandConcurrencyMinutes",
5636
+ "runtimeCacheRead",
5637
+ "runtimeCacheWrite",
5638
+ "serverlessFunctionExecution",
5639
+ "sourceImages",
5640
+ "wafOwaspExcessBytes",
5641
+ "wafOwaspRequests",
5642
+ "wafRateLimitRequest",
5643
+ "webAnalyticsEvent"
5644
+ ]).optional(),
5645
+ 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
5646
  }).nullish(),
5053
5647
  stagingPrefix: z__namespace.string(),
5054
5648
  sysToken: z__namespace.string(),
@@ -5151,197 +5745,236 @@ const userEventSchema = z__namespace.object({
5151
5745
  analyticsUsage: z__namespace.object({
5152
5746
  currentThreshold: z__namespace.number(),
5153
5747
  warningAt: z__namespace.number().nullish(),
5154
- blockedAt: z__namespace.number().nullish()
5748
+ blockedAt: z__namespace.number().nullish(),
5749
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5155
5750
  }).optional(),
5156
5751
  artifacts: z__namespace.object({
5157
5752
  currentThreshold: z__namespace.number(),
5158
5753
  warningAt: z__namespace.number().nullish(),
5159
- blockedAt: z__namespace.number().nullish()
5754
+ blockedAt: z__namespace.number().nullish(),
5755
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5160
5756
  }).optional(),
5161
5757
  bandwidth: z__namespace.object({
5162
5758
  currentThreshold: z__namespace.number(),
5163
5759
  warningAt: z__namespace.number().nullish(),
5164
- blockedAt: z__namespace.number().nullish()
5760
+ blockedAt: z__namespace.number().nullish(),
5761
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5165
5762
  }).optional(),
5166
5763
  blobTotalAdvancedRequests: z__namespace.object({
5167
5764
  currentThreshold: z__namespace.number(),
5168
5765
  warningAt: z__namespace.number().nullish(),
5169
- blockedAt: z__namespace.number().nullish()
5766
+ blockedAt: z__namespace.number().nullish(),
5767
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5170
5768
  }).optional(),
5171
5769
  blobTotalAvgSizeInBytes: z__namespace.object({
5172
5770
  currentThreshold: z__namespace.number(),
5173
5771
  warningAt: z__namespace.number().nullish(),
5174
- blockedAt: z__namespace.number().nullish()
5772
+ blockedAt: z__namespace.number().nullish(),
5773
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5175
5774
  }).optional(),
5176
5775
  blobTotalGetResponseObjectSizeInBytes: z__namespace.object({
5177
5776
  currentThreshold: z__namespace.number(),
5178
5777
  warningAt: z__namespace.number().nullish(),
5179
- blockedAt: z__namespace.number().nullish()
5778
+ blockedAt: z__namespace.number().nullish(),
5779
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5180
5780
  }).optional(),
5181
5781
  blobTotalSimpleRequests: z__namespace.object({
5182
5782
  currentThreshold: z__namespace.number(),
5183
5783
  warningAt: z__namespace.number().nullish(),
5184
- blockedAt: z__namespace.number().nullish()
5784
+ blockedAt: z__namespace.number().nullish(),
5785
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5185
5786
  }).optional(),
5186
5787
  connectDataTransfer: z__namespace.object({
5187
5788
  currentThreshold: z__namespace.number(),
5188
5789
  warningAt: z__namespace.number().nullish(),
5189
- blockedAt: z__namespace.number().nullish()
5790
+ blockedAt: z__namespace.number().nullish(),
5791
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5190
5792
  }).optional(),
5191
5793
  dataCacheRead: z__namespace.object({
5192
5794
  currentThreshold: z__namespace.number(),
5193
5795
  warningAt: z__namespace.number().nullish(),
5194
- blockedAt: z__namespace.number().nullish()
5796
+ blockedAt: z__namespace.number().nullish(),
5797
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5195
5798
  }).optional(),
5196
5799
  dataCacheWrite: z__namespace.object({
5197
5800
  currentThreshold: z__namespace.number(),
5198
5801
  warningAt: z__namespace.number().nullish(),
5199
- blockedAt: z__namespace.number().nullish()
5802
+ blockedAt: z__namespace.number().nullish(),
5803
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5200
5804
  }).optional(),
5201
5805
  edgeConfigRead: z__namespace.object({
5202
5806
  currentThreshold: z__namespace.number(),
5203
5807
  warningAt: z__namespace.number().nullish(),
5204
- blockedAt: z__namespace.number().nullish()
5808
+ blockedAt: z__namespace.number().nullish(),
5809
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5205
5810
  }).optional(),
5206
5811
  edgeConfigWrite: z__namespace.object({
5207
5812
  currentThreshold: z__namespace.number(),
5208
5813
  warningAt: z__namespace.number().nullish(),
5209
- blockedAt: z__namespace.number().nullish()
5814
+ blockedAt: z__namespace.number().nullish(),
5815
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5210
5816
  }).optional(),
5211
5817
  edgeFunctionExecutionUnits: z__namespace.object({
5212
5818
  currentThreshold: z__namespace.number(),
5213
5819
  warningAt: z__namespace.number().nullish(),
5214
- blockedAt: z__namespace.number().nullish()
5820
+ blockedAt: z__namespace.number().nullish(),
5821
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5215
5822
  }).optional(),
5216
5823
  edgeMiddlewareInvocations: z__namespace.object({
5217
5824
  currentThreshold: z__namespace.number(),
5218
5825
  warningAt: z__namespace.number().nullish(),
5219
- blockedAt: z__namespace.number().nullish()
5826
+ blockedAt: z__namespace.number().nullish(),
5827
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5220
5828
  }).optional(),
5221
5829
  edgeRequestAdditionalCpuDuration: z__namespace.object({
5222
5830
  currentThreshold: z__namespace.number(),
5223
5831
  warningAt: z__namespace.number().nullish(),
5224
- blockedAt: z__namespace.number().nullish()
5832
+ blockedAt: z__namespace.number().nullish(),
5833
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5225
5834
  }).optional(),
5226
5835
  edgeRequest: z__namespace.object({
5227
5836
  currentThreshold: z__namespace.number(),
5228
5837
  warningAt: z__namespace.number().nullish(),
5229
- blockedAt: z__namespace.number().nullish()
5838
+ blockedAt: z__namespace.number().nullish(),
5839
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5230
5840
  }).optional(),
5231
5841
  elasticConcurrencyBuildSlots: z__namespace.object({
5232
5842
  currentThreshold: z__namespace.number(),
5233
5843
  warningAt: z__namespace.number().nullish(),
5234
- blockedAt: z__namespace.number().nullish()
5844
+ blockedAt: z__namespace.number().nullish(),
5845
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5235
5846
  }).optional(),
5236
5847
  fastDataTransfer: z__namespace.object({
5237
5848
  currentThreshold: z__namespace.number(),
5238
5849
  warningAt: z__namespace.number().nullish(),
5239
- blockedAt: z__namespace.number().nullish()
5850
+ blockedAt: z__namespace.number().nullish(),
5851
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5240
5852
  }).optional(),
5241
5853
  fastOriginTransfer: z__namespace.object({
5242
5854
  currentThreshold: z__namespace.number(),
5243
5855
  warningAt: z__namespace.number().nullish(),
5244
- blockedAt: z__namespace.number().nullish()
5856
+ blockedAt: z__namespace.number().nullish(),
5857
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5245
5858
  }).optional(),
5246
5859
  fluidCpuDuration: z__namespace.object({
5247
5860
  currentThreshold: z__namespace.number(),
5248
5861
  warningAt: z__namespace.number().nullish(),
5249
- blockedAt: z__namespace.number().nullish()
5862
+ blockedAt: z__namespace.number().nullish(),
5863
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5250
5864
  }).optional(),
5251
5865
  fluidDuration: z__namespace.object({
5252
5866
  currentThreshold: z__namespace.number(),
5253
5867
  warningAt: z__namespace.number().nullish(),
5254
- blockedAt: z__namespace.number().nullish()
5868
+ blockedAt: z__namespace.number().nullish(),
5869
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5255
5870
  }).optional(),
5256
5871
  functionDuration: z__namespace.object({
5257
5872
  currentThreshold: z__namespace.number(),
5258
5873
  warningAt: z__namespace.number().nullish(),
5259
- blockedAt: z__namespace.number().nullish()
5874
+ blockedAt: z__namespace.number().nullish(),
5875
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5260
5876
  }).optional(),
5261
5877
  functionInvocation: z__namespace.object({
5262
5878
  currentThreshold: z__namespace.number(),
5263
5879
  warningAt: z__namespace.number().nullish(),
5264
- blockedAt: z__namespace.number().nullish()
5880
+ blockedAt: z__namespace.number().nullish(),
5881
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5265
5882
  }).optional(),
5266
5883
  imageOptimizationCacheRead: z__namespace.object({
5267
5884
  currentThreshold: z__namespace.number(),
5268
5885
  warningAt: z__namespace.number().nullish(),
5269
- blockedAt: z__namespace.number().nullish()
5886
+ blockedAt: z__namespace.number().nullish(),
5887
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5270
5888
  }).optional(),
5271
5889
  imageOptimizationCacheWrite: z__namespace.object({
5272
5890
  currentThreshold: z__namespace.number(),
5273
5891
  warningAt: z__namespace.number().nullish(),
5274
- blockedAt: z__namespace.number().nullish()
5892
+ blockedAt: z__namespace.number().nullish(),
5893
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5275
5894
  }).optional(),
5276
5895
  imageOptimizationTransformation: z__namespace.object({
5277
5896
  currentThreshold: z__namespace.number(),
5278
5897
  warningAt: z__namespace.number().nullish(),
5279
- blockedAt: z__namespace.number().nullish()
5898
+ blockedAt: z__namespace.number().nullish(),
5899
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5280
5900
  }).optional(),
5281
5901
  logDrainsVolume: z__namespace.object({
5282
5902
  currentThreshold: z__namespace.number(),
5283
5903
  warningAt: z__namespace.number().nullish(),
5284
- blockedAt: z__namespace.number().nullish()
5904
+ blockedAt: z__namespace.number().nullish(),
5905
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5285
5906
  }).optional(),
5286
5907
  monitoringMetric: z__namespace.object({
5287
5908
  currentThreshold: z__namespace.number(),
5288
5909
  warningAt: z__namespace.number().nullish(),
5289
- blockedAt: z__namespace.number().nullish()
5910
+ blockedAt: z__namespace.number().nullish(),
5911
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5290
5912
  }).optional(),
5291
5913
  blobDataTransfer: z__namespace.object({
5292
5914
  currentThreshold: z__namespace.number(),
5293
5915
  warningAt: z__namespace.number().nullish(),
5294
- blockedAt: z__namespace.number().nullish()
5916
+ blockedAt: z__namespace.number().nullish(),
5917
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5295
5918
  }).optional(),
5296
5919
  observabilityEvent: z__namespace.object({
5297
5920
  currentThreshold: z__namespace.number(),
5298
5921
  warningAt: z__namespace.number().nullish(),
5299
- blockedAt: z__namespace.number().nullish()
5922
+ blockedAt: z__namespace.number().nullish(),
5923
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5300
5924
  }).optional(),
5301
5925
  onDemandConcurrencyMinutes: z__namespace.object({
5302
5926
  currentThreshold: z__namespace.number(),
5303
5927
  warningAt: z__namespace.number().nullish(),
5304
- blockedAt: z__namespace.number().nullish()
5928
+ blockedAt: z__namespace.number().nullish(),
5929
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5305
5930
  }).optional(),
5306
5931
  runtimeCacheRead: z__namespace.object({
5307
5932
  currentThreshold: z__namespace.number(),
5308
5933
  warningAt: z__namespace.number().nullish(),
5309
- blockedAt: z__namespace.number().nullish()
5934
+ blockedAt: z__namespace.number().nullish(),
5935
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5310
5936
  }).optional(),
5311
5937
  runtimeCacheWrite: z__namespace.object({
5312
5938
  currentThreshold: z__namespace.number(),
5313
5939
  warningAt: z__namespace.number().nullish(),
5314
- blockedAt: z__namespace.number().nullish()
5940
+ blockedAt: z__namespace.number().nullish(),
5941
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5315
5942
  }).optional(),
5316
5943
  serverlessFunctionExecution: z__namespace.object({
5317
5944
  currentThreshold: z__namespace.number(),
5318
5945
  warningAt: z__namespace.number().nullish(),
5319
- blockedAt: z__namespace.number().nullish()
5946
+ blockedAt: z__namespace.number().nullish(),
5947
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5320
5948
  }).optional(),
5321
5949
  sourceImages: z__namespace.object({
5322
5950
  currentThreshold: z__namespace.number(),
5323
5951
  warningAt: z__namespace.number().nullish(),
5324
- blockedAt: z__namespace.number().nullish()
5952
+ blockedAt: z__namespace.number().nullish(),
5953
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5325
5954
  }).optional(),
5326
5955
  wafOwaspExcessBytes: z__namespace.object({
5327
5956
  currentThreshold: z__namespace.number(),
5328
5957
  warningAt: z__namespace.number().nullish(),
5329
- blockedAt: z__namespace.number().nullish()
5958
+ blockedAt: z__namespace.number().nullish(),
5959
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5330
5960
  }).optional(),
5331
5961
  wafOwaspRequests: z__namespace.object({
5332
5962
  currentThreshold: z__namespace.number(),
5333
5963
  warningAt: z__namespace.number().nullish(),
5334
- blockedAt: z__namespace.number().nullish()
5964
+ blockedAt: z__namespace.number().nullish(),
5965
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5335
5966
  }).optional(),
5336
5967
  wafRateLimitRequest: z__namespace.object({
5337
5968
  currentThreshold: z__namespace.number(),
5338
5969
  warningAt: z__namespace.number().nullish(),
5339
- blockedAt: z__namespace.number().nullish()
5970
+ blockedAt: z__namespace.number().nullish(),
5971
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5340
5972
  }).optional(),
5341
5973
  webAnalyticsEvent: z__namespace.object({
5342
5974
  currentThreshold: z__namespace.number(),
5343
5975
  warningAt: z__namespace.number().nullish(),
5344
- blockedAt: z__namespace.number().nullish()
5976
+ blockedAt: z__namespace.number().nullish(),
5977
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5345
5978
  }).optional()
5346
5979
  }).optional(),
5347
5980
  overageMetadata: z__namespace.object({
@@ -5350,12 +5983,7 @@ const userEventSchema = z__namespace.object({
5350
5983
  weeklyOverageSummaryEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a weekly summary email."),
5351
5984
  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
5985
  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.")
5986
+ 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
5987
  }).optional().describe("Contains the timestamps for usage summary emails."),
5360
5988
  speedInsightsFreeUsageAlert: z__namespace.object({
5361
5989
  currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
@@ -5879,7 +6507,7 @@ const userEventSchema = z__namespace.object({
5879
6507
  integrationSlug: z__namespace.string(),
5880
6508
  integrationProductSlug: z__namespace.string(),
5881
6509
  configurationId: z__namespace.string(),
5882
- error: z__namespace.string().optional(),
6510
+ errorCode: z__namespace.string().optional(),
5883
6511
  requestKind: z__namespace.enum([
5884
6512
  "raw_commands"
5885
6513
  ]),
@@ -5887,8 +6515,11 @@ const userEventSchema = z__namespace.object({
5887
6515
  z__namespace.literal(false),
5888
6516
  z__namespace.literal(true)
5889
6517
  ]),
5890
- commands: z__namespace.array(z__namespace.string()),
5891
- failedIndex: z__namespace.number().optional()
6518
+ commands: z__namespace.array(z__namespace.object({
6519
+ command: z__namespace.string(),
6520
+ errorCode: z__namespace.string().optional()
6521
+ })),
6522
+ errorIndex: z__namespace.number().optional()
5892
6523
  }).strict(),
5893
6524
  z__namespace.object({
5894
6525
  resourceId: z__namespace.string(),
@@ -5896,7 +6527,7 @@ const userEventSchema = z__namespace.object({
5896
6527
  integrationSlug: z__namespace.string(),
5897
6528
  integrationProductSlug: z__namespace.string(),
5898
6529
  configurationId: z__namespace.string(),
5899
- error: z__namespace.string().optional(),
6530
+ errorCode: z__namespace.string().optional(),
5900
6531
  requestKind: z__namespace.enum([
5901
6532
  "list_keys"
5902
6533
  ]),
@@ -5909,7 +6540,7 @@ const userEventSchema = z__namespace.object({
5909
6540
  integrationSlug: z__namespace.string(),
5910
6541
  integrationProductSlug: z__namespace.string(),
5911
6542
  configurationId: z__namespace.string(),
5912
- error: z__namespace.string().optional(),
6543
+ errorCode: z__namespace.string().optional(),
5913
6544
  requestKind: z__namespace.enum([
5914
6545
  "get_keys_metadata"
5915
6546
  ]),
@@ -5921,7 +6552,7 @@ const userEventSchema = z__namespace.object({
5921
6552
  integrationSlug: z__namespace.string(),
5922
6553
  integrationProductSlug: z__namespace.string(),
5923
6554
  configurationId: z__namespace.string(),
5924
- error: z__namespace.string().optional(),
6555
+ errorCode: z__namespace.string().optional(),
5925
6556
  requestKind: z__namespace.enum([
5926
6557
  "get_key_data"
5927
6558
  ]),
@@ -6335,6 +6966,19 @@ const userEventSchema = z__namespace.object({
6335
6966
  "platform"
6336
6967
  ])
6337
6968
  }).strict(),
6969
+ z__namespace.object({
6970
+ organizationId: z__namespace.string(),
6971
+ teamId: z__namespace.string(),
6972
+ teamName: z__namespace.string(),
6973
+ previousMode: z__namespace.enum([
6974
+ "organization",
6975
+ "team"
6976
+ ]),
6977
+ mode: z__namespace.enum([
6978
+ "organization",
6979
+ "team"
6980
+ ])
6981
+ }).strict(),
6338
6982
  z__namespace.object({
6339
6983
  ownerId: z__namespace.string(),
6340
6984
  source: z__namespace.string(),
@@ -6751,6 +7395,7 @@ const userEventSchema = z__namespace.object({
6751
7395
  previousPreviewDeploymentSuffix: z__namespace.string().nullish()
6752
7396
  }).strict(),
6753
7397
  z__namespace.object({
7398
+ projectName: z__namespace.string().optional(),
6754
7399
  endpoint: z__namespace.object({
6755
7400
  id: z__namespace.string(),
6756
7401
  name: z__namespace.string(),
@@ -6761,6 +7406,7 @@ const userEventSchema = z__namespace.object({
6761
7406
  })
6762
7407
  }).strict(),
6763
7408
  z__namespace.object({
7409
+ projectName: z__namespace.string().optional(),
6764
7410
  privateLinkEndpoint: z__namespace.object({
6765
7411
  id: z__namespace.string(),
6766
7412
  name: z__namespace.string()
@@ -6768,6 +7414,7 @@ const userEventSchema = z__namespace.object({
6768
7414
  projectId: z__namespace.string()
6769
7415
  }).strict(),
6770
7416
  z__namespace.object({
7417
+ projectName: z__namespace.string().optional(),
6771
7418
  prev: z__namespace.object({
6772
7419
  id: z__namespace.string(),
6773
7420
  name: z__namespace.string(),
@@ -6786,6 +7433,7 @@ const userEventSchema = z__namespace.object({
6786
7433
  })
6787
7434
  }).strict(),
6788
7435
  z__namespace.object({
7436
+ projectName: z__namespace.string().optional(),
6789
7437
  privateLinkEndpoint: z__namespace.object({
6790
7438
  id: z__namespace.string(),
6791
7439
  name: z__namespace.string(),
@@ -6928,6 +7576,7 @@ const userEventSchema = z__namespace.object({
6928
7576
  "observability-function-invocations",
6929
7577
  "online",
6930
7578
  "res",
7579
+ "shortcut",
6931
7580
  "speed-insights-cls",
6932
7581
  "speed-insights-lcp",
6933
7582
  "speed-insights-res"
@@ -7155,6 +7804,7 @@ const userEventSchema = z__namespace.object({
7155
7804
  "github-custom-host",
7156
7805
  "github-limited",
7157
7806
  "gitlab",
7807
+ "v0",
7158
7808
  "vercel"
7159
7809
  ]),
7160
7810
  gitRepoId: z__namespace.string(),
@@ -7168,6 +7818,7 @@ const userEventSchema = z__namespace.object({
7168
7818
  "github-custom-host",
7169
7819
  "github-limited",
7170
7820
  "gitlab",
7821
+ "v0",
7171
7822
  "vercel"
7172
7823
  ]),
7173
7824
  gitRepoId: z__namespace.string(),
@@ -7184,6 +7835,7 @@ const userEventSchema = z__namespace.object({
7184
7835
  "github-custom-host",
7185
7836
  "github-limited",
7186
7837
  "gitlab",
7838
+ "v0",
7187
7839
  "vercel"
7188
7840
  ]),
7189
7841
  gitRepoId: z__namespace.string(),
@@ -7550,8 +8202,14 @@ const userEventSchema = z__namespace.object({
7550
8202
  z__namespace.object({
7551
8203
  projectId: z__namespace.string(),
7552
8204
  projectName: z__namespace.string(),
7553
- previous: z__namespace.object({}).nullable(),
7554
- next: z__namespace.object({}).nullable()
8205
+ previous: z__namespace.object({
8206
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
8207
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
8208
+ }).nullable(),
8209
+ next: z__namespace.object({
8210
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
8211
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
8212
+ }).nullable()
7555
8213
  }).strict(),
7556
8214
  z__namespace.object({
7557
8215
  projectId: z__namespace.string(),
@@ -7782,6 +8440,10 @@ const userEventSchema = z__namespace.object({
7782
8440
  z__namespace.object({
7783
8441
  projectId: z__namespace.string(),
7784
8442
  projectName: z__namespace.string(),
8443
+ enableVercelCiSameRepository: z__namespace.union([
8444
+ z__namespace.literal(false),
8445
+ z__namespace.literal(true)
8446
+ ]).optional(),
7785
8447
  addedProjects: z__namespace.array(z__namespace.object({
7786
8448
  id: z__namespace.string(),
7787
8449
  name: z__namespace.string()
@@ -8049,6 +8711,12 @@ const userEventSchema = z__namespace.object({
8049
8711
  "plus",
8050
8712
  "unbundled"
8051
8713
  ]).optional().describe("The acive pricing plan the team is billed with"),
8714
+ scope: z__namespace.enum([
8715
+ "organization",
8716
+ "project",
8717
+ "team"
8718
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8719
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8052
8720
  teamId: z__namespace.string().describe("Partition key"),
8053
8721
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8054
8722
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8084,6 +8752,12 @@ const userEventSchema = z__namespace.object({
8084
8752
  "plus",
8085
8753
  "unbundled"
8086
8754
  ]).optional().describe("The acive pricing plan the team is billed with"),
8755
+ scope: z__namespace.enum([
8756
+ "organization",
8757
+ "project",
8758
+ "team"
8759
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8760
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8087
8761
  teamId: z__namespace.string().describe("Partition key"),
8088
8762
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8089
8763
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8118,6 +8792,12 @@ const userEventSchema = z__namespace.object({
8118
8792
  "plus",
8119
8793
  "unbundled"
8120
8794
  ]).optional().describe("The acive pricing plan the team is billed with"),
8795
+ scope: z__namespace.enum([
8796
+ "organization",
8797
+ "project",
8798
+ "team"
8799
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8800
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8121
8801
  teamId: z__namespace.string().describe("Partition key"),
8122
8802
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8123
8803
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8153,6 +8833,12 @@ const userEventSchema = z__namespace.object({
8153
8833
  "plus",
8154
8834
  "unbundled"
8155
8835
  ]).optional().describe("The acive pricing plan the team is billed with"),
8836
+ scope: z__namespace.enum([
8837
+ "organization",
8838
+ "project",
8839
+ "team"
8840
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8841
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8156
8842
  teamId: z__namespace.string().describe("Partition key"),
8157
8843
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8158
8844
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8185,6 +8871,12 @@ const userEventSchema = z__namespace.object({
8185
8871
  "plus",
8186
8872
  "unbundled"
8187
8873
  ]).optional().describe("The acive pricing plan the team is billed with"),
8874
+ scope: z__namespace.enum([
8875
+ "organization",
8876
+ "project",
8877
+ "team"
8878
+ ]).optional().describe("Which budget this is. Matches Copper SDK `BudgetScope`. Omitted on events published before team/org/project scopes existed (treat as team)."),
8879
+ scopeId: z__namespace.string().optional().describe("Project id when `scope` is `project`."),
8188
8880
  teamId: z__namespace.string().describe("Partition key"),
8189
8881
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8190
8882
  }).optional().describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8413,6 +9105,7 @@ const userEventSchema = z__namespace.object({
8413
9105
  "long-build-duration",
8414
9106
  "oom-failure",
8415
9107
  "plan-change",
9108
+ "project-transfer",
8416
9109
  "short-build-duration",
8417
9110
  "sustained-high-cpu"
8418
9111
  ]).optional()
@@ -8447,8 +9140,14 @@ const userEventSchema = z__namespace.object({
8447
9140
  timestamp: z__namespace.number().optional()
8448
9141
  }).strict(),
8449
9142
  z__namespace.object({
8450
- previous: z__namespace.object({}).nullable(),
8451
- next: z__namespace.object({}).nullable()
9143
+ previous: z__namespace.object({
9144
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
9145
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
9146
+ }).nullable(),
9147
+ next: z__namespace.object({
9148
+ gitSources: z__namespace.array(z__namespace.string()).nullish(),
9149
+ deploymentSources: z__namespace.array(z__namespace.string()).nullish()
9150
+ }).nullable()
8452
9151
  }).strict(),
8453
9152
  z__namespace.object({
8454
9153
  enabled: z__namespace.union([
@@ -9283,6 +9982,7 @@ const userEventSchema = z__namespace.object({
9283
9982
  z__namespace.object({
9284
9983
  deploymentId: z__namespace.string(),
9285
9984
  projectId: z__namespace.string(),
9985
+ projectName: z__namespace.string().optional(),
9286
9986
  runId: z__namespace.string()
9287
9987
  }).strict(),
9288
9988
  z__namespace.object({
@@ -9477,6 +10177,7 @@ const userEventSchema = z__namespace.object({
9477
10177
  teamId: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9478
10178
  teamSlug: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9479
10179
  projectId: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
10180
+ projectName: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
9480
10181
  projectScope: z__namespace.enum([
9481
10182
  "account",
9482
10183
  "project-only"
@@ -9631,8 +10332,10 @@ const listEventTypeSchema = z__namespace.object({
9631
10332
  "ai-gateway-byok-credential-created",
9632
10333
  "ai-gateway-byok-credential-deleted",
9633
10334
  "ai-gateway-byok-credential-updated",
10335
+ "ai-gateway-byok-model-mappings-updated",
9634
10336
  "ai-gateway-credits-purchased",
9635
10337
  "ai-gateway-guardrails-updated",
10338
+ "ai-gateway-hipaa-compliance-toggled",
9636
10339
  "ai-gateway-inference-regions-updated",
9637
10340
  "ai-gateway-model-allowlist-models-updated",
9638
10341
  "ai-gateway-model-allowlist-toggled",
@@ -9642,6 +10345,7 @@ const listEventTypeSchema = z__namespace.object({
9642
10345
  "ai-gateway-private-provider-created",
9643
10346
  "ai-gateway-private-provider-deleted",
9644
10347
  "ai-gateway-private-provider-updated",
10348
+ "ai-gateway-prompt-training-opt-out-toggled",
9645
10349
  "ai-gateway-provider-allowlist-providers-updated",
9646
10350
  "ai-gateway-provider-allowlist-toggled",
9647
10351
  "ai-gateway-rule-created",
@@ -9655,8 +10359,10 @@ const listEventTypeSchema = z__namespace.object({
9655
10359
  "ai-gateway-transcripts-retention-updated",
9656
10360
  "ai-gateway-virtual-model-config-archived",
9657
10361
  "ai-gateway-virtual-model-config-created",
10362
+ "ai-gateway-virtual-model-config-deleted",
9658
10363
  "ai-gateway-virtual-model-config-restored",
9659
10364
  "ai-gateway-virtual-model-config-updated",
10365
+ "ai-gateway-zero-data-retention-toggled",
9660
10366
  "ai-omniagent",
9661
10367
  "alert-investigation-project-allowlist-updated",
9662
10368
  "alert-rule-created",
@@ -9846,6 +10552,7 @@ const listEventTypeSchema = z__namespace.object({
9846
10552
  "flags-segment",
9847
10553
  "flags-settings",
9848
10554
  "flags-transferred",
10555
+ "flat-rate-cdn-auto-upgrade-consent",
9849
10556
  "git-integration-repo-push",
9850
10557
  "git_account_integration_link_added",
9851
10558
  "global-config-backup-restored",
@@ -9930,6 +10637,7 @@ const listEventTypeSchema = z__namespace.object({
9930
10637
  "organization-team-add",
9931
10638
  "organization-team-create",
9932
10639
  "organization-team-delete",
10640
+ "organization-team-sso-update",
9933
10641
  "owner-blocked",
9934
10642
  "owner-soft-blocked",
9935
10643
  "owner-soft-unblocked",
@@ -10009,6 +10717,12 @@ const listEventTypeSchema = z__namespace.object({
10009
10717
  "project-git-commit-comments-toggled",
10010
10718
  "project-git-commit-status-toggled",
10011
10719
  "project-git-create-deployments-toggled",
10720
+ "project-git-credential-bound-created",
10721
+ "project-git-credential-bound-deleted",
10722
+ "project-git-credential-bound-updated",
10723
+ "project-git-credential-grant-created",
10724
+ "project-git-credential-grant-deleted",
10725
+ "project-git-credential-grant-updated",
10012
10726
  "project-git-fork-protection-updated",
10013
10727
  "project-git-lfs-toggled",
10014
10728
  "project-git-pr-comments-toggled",
@@ -10101,6 +10815,8 @@ const listEventTypeSchema = z__namespace.object({
10101
10815
  "shared-env-variable-create",
10102
10816
  "shared-env-variable-delete",
10103
10817
  "shared-env-variable-read",
10818
+ "shared-env-variable-repo-link",
10819
+ "shared-env-variable-repo-unlink",
10104
10820
  "shared-env-variable-update",
10105
10821
  "show-ip-addresses",
10106
10822
  "signup",
@@ -10131,6 +10847,7 @@ const listEventTypeSchema = z__namespace.object({
10131
10847
  "storage-update-project-connection",
10132
10848
  "storage-upgrade-project-connection-to-oidc",
10133
10849
  "storage-view-secret",
10850
+ "strict-connectors",
10134
10851
  "strict-deployment-protection-settings",
10135
10852
  "strict-password-protection-settings",
10136
10853
  "strict-shareable-links",
@@ -10332,8 +11049,10 @@ const listEventTypeSchema = z__namespace.object({
10332
11049
  "ai-gateway-byok-credential-created",
10333
11050
  "ai-gateway-byok-credential-deleted",
10334
11051
  "ai-gateway-byok-credential-updated",
11052
+ "ai-gateway-byok-model-mappings-updated",
10335
11053
  "ai-gateway-credits-purchased",
10336
11054
  "ai-gateway-guardrails-updated",
11055
+ "ai-gateway-hipaa-compliance-toggled",
10337
11056
  "ai-gateway-inference-regions-updated",
10338
11057
  "ai-gateway-model-allowlist-models-updated",
10339
11058
  "ai-gateway-model-allowlist-toggled",
@@ -10343,6 +11062,7 @@ const listEventTypeSchema = z__namespace.object({
10343
11062
  "ai-gateway-private-provider-created",
10344
11063
  "ai-gateway-private-provider-deleted",
10345
11064
  "ai-gateway-private-provider-updated",
11065
+ "ai-gateway-prompt-training-opt-out-toggled",
10346
11066
  "ai-gateway-provider-allowlist-providers-updated",
10347
11067
  "ai-gateway-provider-allowlist-toggled",
10348
11068
  "ai-gateway-rule-created",
@@ -10356,8 +11076,10 @@ const listEventTypeSchema = z__namespace.object({
10356
11076
  "ai-gateway-transcripts-retention-updated",
10357
11077
  "ai-gateway-virtual-model-config-archived",
10358
11078
  "ai-gateway-virtual-model-config-created",
11079
+ "ai-gateway-virtual-model-config-deleted",
10359
11080
  "ai-gateway-virtual-model-config-restored",
10360
11081
  "ai-gateway-virtual-model-config-updated",
11082
+ "ai-gateway-zero-data-retention-toggled",
10361
11083
  "ai-omniagent",
10362
11084
  "alert-investigation-project-allowlist-updated",
10363
11085
  "alert-rule-created",
@@ -10547,6 +11269,7 @@ const listEventTypeSchema = z__namespace.object({
10547
11269
  "flags-segment",
10548
11270
  "flags-settings",
10549
11271
  "flags-transferred",
11272
+ "flat-rate-cdn-auto-upgrade-consent",
10550
11273
  "git-integration-repo-push",
10551
11274
  "git_account_integration_link_added",
10552
11275
  "global-config-backup-restored",
@@ -10631,6 +11354,7 @@ const listEventTypeSchema = z__namespace.object({
10631
11354
  "organization-team-add",
10632
11355
  "organization-team-create",
10633
11356
  "organization-team-delete",
11357
+ "organization-team-sso-update",
10634
11358
  "owner-blocked",
10635
11359
  "owner-soft-blocked",
10636
11360
  "owner-soft-unblocked",
@@ -10710,6 +11434,12 @@ const listEventTypeSchema = z__namespace.object({
10710
11434
  "project-git-commit-comments-toggled",
10711
11435
  "project-git-commit-status-toggled",
10712
11436
  "project-git-create-deployments-toggled",
11437
+ "project-git-credential-bound-created",
11438
+ "project-git-credential-bound-deleted",
11439
+ "project-git-credential-bound-updated",
11440
+ "project-git-credential-grant-created",
11441
+ "project-git-credential-grant-deleted",
11442
+ "project-git-credential-grant-updated",
10713
11443
  "project-git-fork-protection-updated",
10714
11444
  "project-git-lfs-toggled",
10715
11445
  "project-git-pr-comments-toggled",
@@ -10802,6 +11532,8 @@ const listEventTypeSchema = z__namespace.object({
10802
11532
  "shared-env-variable-create",
10803
11533
  "shared-env-variable-delete",
10804
11534
  "shared-env-variable-read",
11535
+ "shared-env-variable-repo-link",
11536
+ "shared-env-variable-repo-unlink",
10805
11537
  "shared-env-variable-update",
10806
11538
  "show-ip-addresses",
10807
11539
  "signup",
@@ -10832,6 +11564,7 @@ const listEventTypeSchema = z__namespace.object({
10832
11564
  "storage-update-project-connection",
10833
11565
  "storage-upgrade-project-connection-to-oidc",
10834
11566
  "storage-view-secret",
11567
+ "strict-connectors",
10835
11568
  "strict-deployment-protection-settings",
10836
11569
  "strict-password-protection-settings",
10837
11570
  "strict-shareable-links",
@@ -10994,7 +11727,21 @@ const listEventTypesResponseSchema = z__namespace.object({
10994
11727
  }).describe("Response returned by the List Event Types endpoint.");
10995
11728
  const flagSchema = z__namespace.object({
10996
11729
  description: z__namespace.string().optional(),
10997
- variants: z__namespace.array(z__namespace.object({})),
11730
+ variants: z__namespace.array(z__namespace.object({
11731
+ description: z__namespace.string().optional(),
11732
+ label: z__namespace.string().optional(),
11733
+ value: z__namespace.union([
11734
+ z__namespace.string(),
11735
+ z__namespace.number(),
11736
+ z__namespace.object({}).catchall(z__namespace.unknown()),
11737
+ z__namespace.array(z__namespace.string()),
11738
+ z__namespace.union([
11739
+ z__namespace.literal(false),
11740
+ z__namespace.literal(true)
11741
+ ])
11742
+ ]).nullable(),
11743
+ id: z__namespace.string()
11744
+ })),
10998
11745
  id: z__namespace.string(),
10999
11746
  environments: z__namespace.object({}).catchall(z__namespace.object({
11000
11747
  reuse: z__namespace.object({
@@ -11015,7 +11762,7 @@ const flagSchema = z__namespace.object({
11015
11762
  ]),
11016
11763
  variantId: z__namespace.string()
11017
11764
  }),
11018
- fallthrough: z__namespace.union([
11765
+ fallthrough: z__namespace.discriminatedUnion("type", [
11019
11766
  z__namespace.object({
11020
11767
  type: z__namespace.enum([
11021
11768
  "variant"
@@ -11068,7 +11815,7 @@ const flagSchema = z__namespace.object({
11068
11815
  ]),
11069
11816
  rules: z__namespace.array(z__namespace.object({
11070
11817
  id: z__namespace.string(),
11071
- outcome: z__namespace.union([
11818
+ outcome: z__namespace.discriminatedUnion("type", [
11072
11819
  z__namespace.object({
11073
11820
  type: z__namespace.enum([
11074
11821
  "variant"
@@ -11155,7 +11902,7 @@ const flagSchema = z__namespace.object({
11155
11902
  z__namespace.literal(true)
11156
11903
  ]).optional()
11157
11904
  }).optional(),
11158
- lhs: z__namespace.union([
11905
+ lhs: z__namespace.discriminatedUnion("type", [
11159
11906
  z__namespace.object({
11160
11907
  type: z__namespace.enum([
11161
11908
  "segment"
@@ -11258,7 +12005,7 @@ const segmentSchema = z__namespace.object({
11258
12005
  data: z__namespace.object({
11259
12006
  rules: z__namespace.array(z__namespace.object({
11260
12007
  id: z__namespace.string(),
11261
- outcome: z__namespace.union([
12008
+ outcome: z__namespace.discriminatedUnion("type", [
11262
12009
  z__namespace.object({
11263
12010
  type: z__namespace.enum([
11264
12011
  "all"
@@ -11318,7 +12065,7 @@ const segmentSchema = z__namespace.object({
11318
12065
  z__namespace.literal(true)
11319
12066
  ]).optional()
11320
12067
  }).optional(),
11321
- lhs: z__namespace.union([
12068
+ lhs: z__namespace.discriminatedUnion("type", [
11322
12069
  z__namespace.object({
11323
12070
  type: z__namespace.enum([
11324
12071
  "segment"
@@ -11608,6 +12355,7 @@ const namedSandboxSchema = z__namespace.object({
11608
12355
  deniedCIDRs: z__namespace.array(z__namespace.string()).optional(),
11609
12356
  s3Key: z__namespace.string().optional()
11610
12357
  }).optional().describe("Network policy configuration."),
12358
+ networkId: z__namespace.string().optional().describe("The Connect network id for the target Secure Compute private network."),
11611
12359
  totalEgressBytes: z__namespace.number().optional().describe("Cumulative egress bytes across all sandbox runs.").meta({
11612
12360
  examples: [
11613
12361
  4096
@@ -11642,7 +12390,8 @@ const namedSandboxSchema = z__namespace.object({
11642
12390
  drive: z__namespace.string(),
11643
12391
  mode: z__namespace.enum([
11644
12392
  "read-only",
11645
- "read-write"
12393
+ "read-write",
12394
+ "snapshot"
11646
12395
  ]).optional()
11647
12396
  })).optional().describe("Key-value pairs of mount path and drive."),
11648
12397
  createdAt: z__namespace.number().describe("The time when the named sandbox was created, in milliseconds since the epoch.").meta({
@@ -11841,6 +12590,11 @@ const sandboxPublicRouteSchema = z__namespace.object({
11841
12590
  system: z__namespace.literal(true).optional().describe("Whether the route is reserved by the system (e.g. for internal use).")
11842
12591
  }).describe("This object represents a public route in a Vercel Sandbox.");
11843
12592
  const driveSchema = z__namespace.object({
12593
+ id: z__namespace.string().describe("The unique drive ID.").meta({
12594
+ examples: [
12595
+ "drive_abc123"
12596
+ ]
12597
+ }),
11844
12598
  name: z__namespace.string().describe("The unique drive name within the project.").meta({
11845
12599
  examples: [
11846
12600
  "workspace"
@@ -11853,7 +12607,7 @@ const driveSchema = z__namespace.object({
11853
12607
  }),
11854
12608
  maxSizeBytes: z__namespace.number().describe("The maximum drive size in bytes.").meta({
11855
12609
  examples: [
11856
- 107374182400
12610
+ 1099511627776
11857
12611
  ]
11858
12612
  }),
11859
12613
  region: z__namespace.string().describe("The region where the drive is stored.").meta({
@@ -12401,6 +13155,13 @@ const teamSchema = z__namespace.object({
12401
13155
  ]),
12402
13156
  updatedAt: z__namespace.number()
12403
13157
  }).optional().describe("When enabled, adding, changing, or removing project password protection requires Owner role."),
13158
+ strictConnectors: z__namespace.object({
13159
+ enabled: z__namespace.union([
13160
+ z__namespace.literal(false),
13161
+ z__namespace.literal(true)
13162
+ ]),
13163
+ updatedAt: z__namespace.number()
13164
+ }).optional().describe("When enabled, creating and managing connectors requires Owner role or the ConnectorManager permission."),
12404
13165
  nsnbConfig: z__namespace.object({
12405
13166
  preference: z__namespace.enum([
12406
13167
  "auto-approval",
@@ -12431,7 +13192,7 @@ const teamSchema = z__namespace.object({
12431
13192
  z__namespace.literal(false),
12432
13193
  z__namespace.literal(true)
12433
13194
  ]),
12434
- environments: z__namespace.array(z__namespace.union([
13195
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12435
13196
  z__namespace.object({
12436
13197
  type: z__namespace.enum([
12437
13198
  "system"
@@ -12462,7 +13223,7 @@ const teamSchema = z__namespace.object({
12462
13223
  z__namespace.literal(false),
12463
13224
  z__namespace.literal(true)
12464
13225
  ]),
12465
- environments: z__namespace.array(z__namespace.union([
13226
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12466
13227
  z__namespace.object({
12467
13228
  type: z__namespace.enum([
12468
13229
  "system"
@@ -12836,7 +13597,7 @@ const authTokenSchema = z__namespace.object({
12836
13597
  "github"
12837
13598
  ]
12838
13599
  }),
12839
- scopes: z__namespace.array(z__namespace.union([
13600
+ scopes: z__namespace.array(z__namespace.discriminatedUnion("type", [
12840
13601
  z__namespace.object({
12841
13602
  type: z__namespace.enum([
12842
13603
  "user"
@@ -12944,7 +13705,6 @@ const authUserSchema = z__namespace.object({
12944
13705
  "ENTERPRISE_UNPAID_INVOICE",
12945
13706
  "EXPOSURE_CAP_EXCEEDED",
12946
13707
  "FAIR_USE_LIMITS_EXCEEDED",
12947
- "HOBBY_ALLOCATION_PAUSED",
12948
13708
  "SUBSCRIPTION_CANCELED",
12949
13709
  "SUBSCRIPTION_EXPIRED",
12950
13710
  "UNPAID_INVOICE"
@@ -12990,55 +13750,7 @@ const authUserSchema = z__namespace.object({
12990
13750
  "wafRateLimitRequest",
12991
13751
  "webAnalyticsEvent"
12992
13752
  ]).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.")
13753
+ 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
13754
  }).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
13755
  billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
13044
13756
  resourceConfig: z__namespace.object({
@@ -13084,10 +13796,10 @@ const authUserSchema = z__namespace.object({
13084
13796
  ]).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13085
13797
  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
13798
  security: z__namespace.object({
13799
+ 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
13800
  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
13801
  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.")
13802
+ 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
13803
  }).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13092
13804
  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
13805
  }).describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
@@ -14013,7 +14725,9 @@ const createAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
14013
14725
  createAiGatewayVirtualModelConfigStatus500Schema
14014
14726
  ]);
14015
14727
  const getAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
14016
- const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
14728
+ const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string().optional();
14729
+ const getAiGatewayVirtualModelConfigQueryLimitSchema = z__namespace.int().min(1).optional();
14730
+ const getAiGatewayVirtualModelConfigQueryCursorSchema = z__namespace.string().optional();
14017
14731
  const getAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14018
14732
  examples: [
14019
14733
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14068,6 +14782,9 @@ const updateAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
14068
14782
  ]);
14069
14783
  const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
14070
14784
  const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
14785
+ const deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = z__namespace.string().optional();
14786
+ const deleteAiGatewayVirtualModelConfigQueryActingIpSchema = z__namespace.string().optional();
14787
+ const deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = z__namespace.string().optional();
14071
14788
  const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14072
14789
  examples: [
14073
14790
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14121,6 +14838,92 @@ const listAiGatewayVirtualModelConfigsErrorSchema = z__namespace.union([
14121
14838
  listAiGatewayVirtualModelConfigsStatus410Schema,
14122
14839
  listAiGatewayVirtualModelConfigsStatus500Schema
14123
14840
  ]);
14841
+ const getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z__namespace.string().optional();
14842
+ const getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14843
+ const getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14844
+ examples: [
14845
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14846
+ ]
14847
+ });
14848
+ const getAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14849
+ examples: [
14850
+ "my-team-url-slug"
14851
+ ]
14852
+ });
14853
+ const getAiGatewayVirtualModelConfigBySlugStatus200Schema = z__namespace.unknown();
14854
+ const getAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14855
+ const getAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14856
+ const getAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14857
+ const getAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14858
+ const getAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14859
+ const getAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14860
+ const getAiGatewayVirtualModelConfigBySlugResponseSchema = getAiGatewayVirtualModelConfigBySlugStatus200Schema;
14861
+ const getAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14862
+ getAiGatewayVirtualModelConfigBySlugStatus400Schema,
14863
+ getAiGatewayVirtualModelConfigBySlugStatus401Schema,
14864
+ getAiGatewayVirtualModelConfigBySlugStatus403Schema,
14865
+ getAiGatewayVirtualModelConfigBySlugStatus404Schema,
14866
+ getAiGatewayVirtualModelConfigBySlugStatus410Schema,
14867
+ getAiGatewayVirtualModelConfigBySlugStatus500Schema
14868
+ ]);
14869
+ const updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14870
+ const updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14871
+ examples: [
14872
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14873
+ ]
14874
+ });
14875
+ const updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14876
+ examples: [
14877
+ "my-team-url-slug"
14878
+ ]
14879
+ });
14880
+ const updateAiGatewayVirtualModelConfigBySlugStatus200Schema = z__namespace.unknown();
14881
+ const updateAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14882
+ const updateAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14883
+ const updateAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14884
+ const updateAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14885
+ const updateAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14886
+ const updateAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14887
+ const updateAiGatewayVirtualModelConfigBySlugResponseSchema = updateAiGatewayVirtualModelConfigBySlugStatus200Schema;
14888
+ const updateAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14889
+ updateAiGatewayVirtualModelConfigBySlugStatus400Schema,
14890
+ updateAiGatewayVirtualModelConfigBySlugStatus401Schema,
14891
+ updateAiGatewayVirtualModelConfigBySlugStatus403Schema,
14892
+ updateAiGatewayVirtualModelConfigBySlugStatus404Schema,
14893
+ updateAiGatewayVirtualModelConfigBySlugStatus410Schema,
14894
+ updateAiGatewayVirtualModelConfigBySlugStatus500Schema
14895
+ ]);
14896
+ const deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = z__namespace.string().optional();
14897
+ const deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = z__namespace.string();
14898
+ const deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema = z__namespace.string().optional();
14899
+ const deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema = z__namespace.string().optional();
14900
+ const deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema = z__namespace.string().optional();
14901
+ const deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14902
+ examples: [
14903
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
14904
+ ]
14905
+ });
14906
+ const deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
14907
+ examples: [
14908
+ "my-team-url-slug"
14909
+ ]
14910
+ });
14911
+ const deleteAiGatewayVirtualModelConfigBySlugStatus204Schema = z__namespace.unknown();
14912
+ const deleteAiGatewayVirtualModelConfigBySlugStatus400Schema = z__namespace.unknown();
14913
+ const deleteAiGatewayVirtualModelConfigBySlugStatus401Schema = z__namespace.unknown();
14914
+ const deleteAiGatewayVirtualModelConfigBySlugStatus403Schema = z__namespace.unknown();
14915
+ const deleteAiGatewayVirtualModelConfigBySlugStatus404Schema = z__namespace.unknown();
14916
+ const deleteAiGatewayVirtualModelConfigBySlugStatus410Schema = z__namespace.unknown();
14917
+ const deleteAiGatewayVirtualModelConfigBySlugStatus500Schema = z__namespace.unknown();
14918
+ const deleteAiGatewayVirtualModelConfigBySlugResponseSchema = deleteAiGatewayVirtualModelConfigBySlugStatus204Schema;
14919
+ const deleteAiGatewayVirtualModelConfigBySlugErrorSchema = z__namespace.union([
14920
+ deleteAiGatewayVirtualModelConfigBySlugStatus400Schema,
14921
+ deleteAiGatewayVirtualModelConfigBySlugStatus401Schema,
14922
+ deleteAiGatewayVirtualModelConfigBySlugStatus403Schema,
14923
+ deleteAiGatewayVirtualModelConfigBySlugStatus404Schema,
14924
+ deleteAiGatewayVirtualModelConfigBySlugStatus410Schema,
14925
+ deleteAiGatewayVirtualModelConfigBySlugStatus500Schema
14926
+ ]);
14124
14927
  const createAiGatewayRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14125
14928
  examples: [
14126
14929
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -15304,6 +16107,260 @@ const readNetworkErrorSchema = z__namespace.union([
15304
16107
  readNetworkStatus403Schema,
15305
16108
  readNetworkStatus410Schema
15306
16109
  ]);
16110
+ const createPrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16111
+ examples: [
16112
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16113
+ ]
16114
+ });
16115
+ const createPrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16116
+ examples: [
16117
+ "my-team-url-slug"
16118
+ ]
16119
+ });
16120
+ const createPrivateLinkEndpointStatus201Schema = z__namespace.unknown();
16121
+ const createPrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16122
+ const createPrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16123
+ const createPrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16124
+ const createPrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16125
+ const createPrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16126
+ const createPrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16127
+ const createPrivateLinkEndpointResponseSchema = createPrivateLinkEndpointStatus201Schema;
16128
+ const createPrivateLinkEndpointErrorSchema = z__namespace.union([
16129
+ createPrivateLinkEndpointStatus400Schema,
16130
+ createPrivateLinkEndpointStatus401Schema,
16131
+ createPrivateLinkEndpointStatus403Schema,
16132
+ createPrivateLinkEndpointStatus404Schema,
16133
+ createPrivateLinkEndpointStatus409Schema,
16134
+ createPrivateLinkEndpointStatus410Schema
16135
+ ]);
16136
+ const listPrivateLinkEndpointsQueryProjectIdSchema = z__namespace.string().describe("The project ID to list PrivateLink endpoints for.").meta({
16137
+ examples: [
16138
+ "prj_a1b2c3d4e5f6g7h8"
16139
+ ]
16140
+ });
16141
+ const listPrivateLinkEndpointsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16142
+ examples: [
16143
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16144
+ ]
16145
+ });
16146
+ const listPrivateLinkEndpointsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16147
+ examples: [
16148
+ "my-team-url-slug"
16149
+ ]
16150
+ });
16151
+ const listPrivateLinkEndpointsStatus200Schema = z__namespace.unknown();
16152
+ const listPrivateLinkEndpointsStatus400Schema = z__namespace.unknown();
16153
+ const listPrivateLinkEndpointsStatus401Schema = z__namespace.unknown();
16154
+ const listPrivateLinkEndpointsStatus403Schema = z__namespace.unknown();
16155
+ const listPrivateLinkEndpointsStatus404Schema = z__namespace.unknown();
16156
+ const listPrivateLinkEndpointsStatus410Schema = z__namespace.unknown();
16157
+ const listPrivateLinkEndpointsResponseSchema = listPrivateLinkEndpointsStatus200Schema;
16158
+ const listPrivateLinkEndpointsErrorSchema = z__namespace.union([
16159
+ listPrivateLinkEndpointsStatus400Schema,
16160
+ listPrivateLinkEndpointsStatus401Schema,
16161
+ listPrivateLinkEndpointsStatus403Schema,
16162
+ listPrivateLinkEndpointsStatus404Schema,
16163
+ listPrivateLinkEndpointsStatus410Schema
16164
+ ]);
16165
+ const readPrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16166
+ examples: [
16167
+ "prj_a1b2c3d4e5f6g7h8"
16168
+ ]
16169
+ });
16170
+ const readPrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16171
+ examples: [
16172
+ "ple_a1b2c3d4e5f6g7h8"
16173
+ ]
16174
+ });
16175
+ const readPrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16176
+ examples: [
16177
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16178
+ ]
16179
+ });
16180
+ const readPrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16181
+ examples: [
16182
+ "my-team-url-slug"
16183
+ ]
16184
+ });
16185
+ const readPrivateLinkEndpointStatus200Schema = z__namespace.unknown();
16186
+ const readPrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16187
+ const readPrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16188
+ const readPrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16189
+ const readPrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16190
+ const readPrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16191
+ const readPrivateLinkEndpointResponseSchema = readPrivateLinkEndpointStatus200Schema;
16192
+ const readPrivateLinkEndpointErrorSchema = z__namespace.union([
16193
+ readPrivateLinkEndpointStatus400Schema,
16194
+ readPrivateLinkEndpointStatus401Schema,
16195
+ readPrivateLinkEndpointStatus403Schema,
16196
+ readPrivateLinkEndpointStatus404Schema,
16197
+ readPrivateLinkEndpointStatus410Schema
16198
+ ]);
16199
+ const deletePrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16200
+ examples: [
16201
+ "prj_a1b2c3d4e5f6g7h8"
16202
+ ]
16203
+ });
16204
+ const deletePrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16205
+ examples: [
16206
+ "ple_a1b2c3d4e5f6g7h8"
16207
+ ]
16208
+ });
16209
+ const deletePrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16210
+ examples: [
16211
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16212
+ ]
16213
+ });
16214
+ const deletePrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16215
+ examples: [
16216
+ "my-team-url-slug"
16217
+ ]
16218
+ });
16219
+ const deletePrivateLinkEndpointStatus204Schema = z__namespace.unknown();
16220
+ const deletePrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16221
+ const deletePrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16222
+ const deletePrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16223
+ const deletePrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16224
+ const deletePrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16225
+ const deletePrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16226
+ const deletePrivateLinkEndpointResponseSchema = deletePrivateLinkEndpointStatus204Schema;
16227
+ const deletePrivateLinkEndpointErrorSchema = z__namespace.union([
16228
+ deletePrivateLinkEndpointStatus400Schema,
16229
+ deletePrivateLinkEndpointStatus401Schema,
16230
+ deletePrivateLinkEndpointStatus403Schema,
16231
+ deletePrivateLinkEndpointStatus404Schema,
16232
+ deletePrivateLinkEndpointStatus409Schema,
16233
+ deletePrivateLinkEndpointStatus410Schema
16234
+ ]);
16235
+ const updatePrivateLinkEndpointQueryProjectIdSchema = z__namespace.string().describe("The project ID the PrivateLink endpoint belongs to.").meta({
16236
+ examples: [
16237
+ "prj_a1b2c3d4e5f6g7h8"
16238
+ ]
16239
+ });
16240
+ const updatePrivateLinkEndpointPathEndpointIdSchema = z__namespace.string().describe("The unique identifier of the PrivateLink endpoint.").meta({
16241
+ examples: [
16242
+ "ple_a1b2c3d4e5f6g7h8"
16243
+ ]
16244
+ });
16245
+ const updatePrivateLinkEndpointQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
16246
+ examples: [
16247
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16248
+ ]
16249
+ });
16250
+ const updatePrivateLinkEndpointQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
16251
+ examples: [
16252
+ "my-team-url-slug"
16253
+ ]
16254
+ });
16255
+ const updatePrivateLinkEndpointStatus200Schema = z__namespace.unknown();
16256
+ const updatePrivateLinkEndpointStatus400Schema = z__namespace.unknown();
16257
+ const updatePrivateLinkEndpointStatus401Schema = z__namespace.unknown();
16258
+ const updatePrivateLinkEndpointStatus403Schema = z__namespace.unknown();
16259
+ const updatePrivateLinkEndpointStatus404Schema = z__namespace.unknown();
16260
+ const updatePrivateLinkEndpointStatus409Schema = z__namespace.unknown();
16261
+ const updatePrivateLinkEndpointStatus410Schema = z__namespace.unknown();
16262
+ const updatePrivateLinkEndpointResponseSchema = updatePrivateLinkEndpointStatus200Schema;
16263
+ const updatePrivateLinkEndpointErrorSchema = z__namespace.union([
16264
+ updatePrivateLinkEndpointStatus400Schema,
16265
+ updatePrivateLinkEndpointStatus401Schema,
16266
+ updatePrivateLinkEndpointStatus403Schema,
16267
+ updatePrivateLinkEndpointStatus404Schema,
16268
+ updatePrivateLinkEndpointStatus409Schema,
16269
+ updatePrivateLinkEndpointStatus410Schema
16270
+ ]);
16271
+ const listConnectorsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of connectors to return. Defaults to 20.");
16272
+ const listConnectorsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16273
+ const listConnectorsQueryProjectIdSchema = z__namespace.string().optional().describe("Return only connectors connected to this project.");
16274
+ const listConnectorsQuerySearchSchema = z__namespace.string().max(100).optional().describe("Search connector names, UIDs, and services.");
16275
+ 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`.");
16276
+ const listConnectorsQueryServiceSchema = z__namespace.string().optional().describe("Comma-separated provider or service identifiers.");
16277
+ const listConnectorsQuerySortSchema = z__namespace.enum([
16278
+ "name",
16279
+ "createdAt",
16280
+ "updatedAt"
16281
+ ]).optional().describe("Sort by name in ascending order, or by creation or update time in descending order.");
16282
+ 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({
16283
+ examples: [
16284
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16285
+ ]
16286
+ });
16287
+ 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({
16288
+ examples: [
16289
+ "my-team-url-slug"
16290
+ ]
16291
+ });
16292
+ const listConnectorsStatus200Schema = z__namespace.unknown();
16293
+ const listConnectorsStatus400Schema = z__namespace.unknown();
16294
+ const listConnectorsStatus401Schema = z__namespace.unknown();
16295
+ const listConnectorsStatus403Schema = z__namespace.unknown();
16296
+ const listConnectorsStatus410Schema = z__namespace.unknown();
16297
+ const listConnectorsStatus422Schema = z__namespace.unknown();
16298
+ const listConnectorsResponseSchema = listConnectorsStatus200Schema;
16299
+ const listConnectorsErrorSchema = z__namespace.union([
16300
+ listConnectorsStatus400Schema,
16301
+ listConnectorsStatus401Schema,
16302
+ listConnectorsStatus403Schema,
16303
+ listConnectorsStatus410Schema,
16304
+ listConnectorsStatus422Schema
16305
+ ]);
16306
+ const getConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16307
+ 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({
16308
+ examples: [
16309
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16310
+ ]
16311
+ });
16312
+ 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({
16313
+ examples: [
16314
+ "my-team-url-slug"
16315
+ ]
16316
+ });
16317
+ const getConnectorStatus200Schema = z__namespace.unknown();
16318
+ const getConnectorStatus400Schema = z__namespace.unknown();
16319
+ const getConnectorStatus401Schema = z__namespace.unknown();
16320
+ const getConnectorStatus403Schema = z__namespace.unknown();
16321
+ const getConnectorStatus404Schema = z__namespace.unknown();
16322
+ const getConnectorStatus410Schema = z__namespace.unknown();
16323
+ const getConnectorStatus422Schema = z__namespace.unknown();
16324
+ const getConnectorResponseSchema = getConnectorStatus200Schema;
16325
+ const getConnectorErrorSchema = z__namespace.union([
16326
+ getConnectorStatus400Schema,
16327
+ getConnectorStatus401Schema,
16328
+ getConnectorStatus403Schema,
16329
+ getConnectorStatus404Schema,
16330
+ getConnectorStatus410Schema,
16331
+ getConnectorStatus422Schema
16332
+ ]);
16333
+ const deleteConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16334
+ 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({
16335
+ examples: [
16336
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16337
+ ]
16338
+ });
16339
+ 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({
16340
+ examples: [
16341
+ "my-team-url-slug"
16342
+ ]
16343
+ });
16344
+ const deleteConnectorStatus204Schema = z__namespace.unknown();
16345
+ const deleteConnectorStatus400Schema = z__namespace.unknown();
16346
+ const deleteConnectorStatus401Schema = z__namespace.unknown();
16347
+ const deleteConnectorStatus403Schema = z__namespace.unknown();
16348
+ const deleteConnectorStatus404Schema = z__namespace.unknown();
16349
+ const deleteConnectorStatus409Schema = z__namespace.unknown();
16350
+ const deleteConnectorStatus410Schema = z__namespace.unknown();
16351
+ const deleteConnectorStatus422Schema = z__namespace.unknown();
16352
+ const deleteConnectorStatus502Schema = z__namespace.unknown();
16353
+ const deleteConnectorResponseSchema = deleteConnectorStatus204Schema;
16354
+ const deleteConnectorErrorSchema = z__namespace.union([
16355
+ deleteConnectorStatus400Schema,
16356
+ deleteConnectorStatus401Schema,
16357
+ deleteConnectorStatus403Schema,
16358
+ deleteConnectorStatus404Schema,
16359
+ deleteConnectorStatus409Schema,
16360
+ deleteConnectorStatus410Schema,
16361
+ deleteConnectorStatus422Schema,
16362
+ deleteConnectorStatus502Schema
16363
+ ]);
15307
16364
  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
16365
  examples: [
15309
16366
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -15336,6 +16393,198 @@ const createConnectorErrorSchema = z__namespace.union([
15336
16393
  createConnectorStatus500Schema,
15337
16394
  createConnectorStatus502Schema
15338
16395
  ]);
16396
+ const updateConnectorPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16397
+ 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({
16398
+ examples: [
16399
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16400
+ ]
16401
+ });
16402
+ 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({
16403
+ examples: [
16404
+ "my-team-url-slug"
16405
+ ]
16406
+ });
16407
+ const updateConnectorStatus200Schema = z__namespace.unknown();
16408
+ const updateConnectorStatus400Schema = z__namespace.unknown();
16409
+ const updateConnectorStatus401Schema = z__namespace.unknown();
16410
+ const updateConnectorStatus403Schema = z__namespace.unknown();
16411
+ const updateConnectorStatus404Schema = z__namespace.unknown();
16412
+ const updateConnectorStatus409Schema = z__namespace.unknown();
16413
+ const updateConnectorStatus410Schema = z__namespace.unknown();
16414
+ const updateConnectorStatus422Schema = z__namespace.unknown();
16415
+ const updateConnectorStatus502Schema = z__namespace.unknown();
16416
+ const updateConnectorResponseSchema = updateConnectorStatus200Schema;
16417
+ const updateConnectorErrorSchema = z__namespace.union([
16418
+ updateConnectorStatus400Schema,
16419
+ updateConnectorStatus401Schema,
16420
+ updateConnectorStatus403Schema,
16421
+ updateConnectorStatus404Schema,
16422
+ updateConnectorStatus409Schema,
16423
+ updateConnectorStatus410Schema,
16424
+ updateConnectorStatus422Schema,
16425
+ updateConnectorStatus502Schema
16426
+ ]);
16427
+ const replaceConnectorTriggerDestinationsPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16428
+ 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({
16429
+ examples: [
16430
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16431
+ ]
16432
+ });
16433
+ 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({
16434
+ examples: [
16435
+ "my-team-url-slug"
16436
+ ]
16437
+ });
16438
+ const replaceConnectorTriggerDestinationsStatus200Schema = z__namespace.unknown();
16439
+ const replaceConnectorTriggerDestinationsStatus400Schema = z__namespace.unknown();
16440
+ const replaceConnectorTriggerDestinationsStatus401Schema = z__namespace.unknown();
16441
+ const replaceConnectorTriggerDestinationsStatus403Schema = z__namespace.unknown();
16442
+ const replaceConnectorTriggerDestinationsStatus404Schema = z__namespace.unknown();
16443
+ const replaceConnectorTriggerDestinationsStatus410Schema = z__namespace.unknown();
16444
+ const replaceConnectorTriggerDestinationsStatus422Schema = z__namespace.unknown();
16445
+ const replaceConnectorTriggerDestinationsResponseSchema = replaceConnectorTriggerDestinationsStatus200Schema;
16446
+ const replaceConnectorTriggerDestinationsErrorSchema = z__namespace.union([
16447
+ replaceConnectorTriggerDestinationsStatus400Schema,
16448
+ replaceConnectorTriggerDestinationsStatus401Schema,
16449
+ replaceConnectorTriggerDestinationsStatus403Schema,
16450
+ replaceConnectorTriggerDestinationsStatus404Schema,
16451
+ replaceConnectorTriggerDestinationsStatus410Schema,
16452
+ replaceConnectorTriggerDestinationsStatus422Schema
16453
+ ]);
16454
+ const listConnectorProjectConnectionsPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16455
+ const listConnectorProjectConnectionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of project connections to return. Defaults to 50.");
16456
+ const listConnectorProjectConnectionsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16457
+ 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({
16458
+ examples: [
16459
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16460
+ ]
16461
+ });
16462
+ 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({
16463
+ examples: [
16464
+ "my-team-url-slug"
16465
+ ]
16466
+ });
16467
+ const listConnectorProjectConnectionsStatus200Schema = z__namespace.unknown();
16468
+ const listConnectorProjectConnectionsStatus400Schema = z__namespace.unknown();
16469
+ const listConnectorProjectConnectionsStatus401Schema = z__namespace.unknown();
16470
+ const listConnectorProjectConnectionsStatus403Schema = z__namespace.unknown();
16471
+ const listConnectorProjectConnectionsStatus404Schema = z__namespace.unknown();
16472
+ const listConnectorProjectConnectionsStatus410Schema = z__namespace.unknown();
16473
+ const listConnectorProjectConnectionsStatus422Schema = z__namespace.unknown();
16474
+ const listConnectorProjectConnectionsResponseSchema = listConnectorProjectConnectionsStatus200Schema;
16475
+ const listConnectorProjectConnectionsErrorSchema = z__namespace.union([
16476
+ listConnectorProjectConnectionsStatus400Schema,
16477
+ listConnectorProjectConnectionsStatus401Schema,
16478
+ listConnectorProjectConnectionsStatus403Schema,
16479
+ listConnectorProjectConnectionsStatus404Schema,
16480
+ listConnectorProjectConnectionsStatus410Schema,
16481
+ listConnectorProjectConnectionsStatus422Schema
16482
+ ]);
16483
+ const getConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16484
+ const getConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16485
+ 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({
16486
+ examples: [
16487
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16488
+ ]
16489
+ });
16490
+ 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({
16491
+ examples: [
16492
+ "my-team-url-slug"
16493
+ ]
16494
+ });
16495
+ const getConnectorProjectConnectionStatus200Schema = z__namespace.unknown();
16496
+ const getConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16497
+ const getConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16498
+ const getConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16499
+ const getConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16500
+ const getConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16501
+ const getConnectorProjectConnectionResponseSchema = getConnectorProjectConnectionStatus200Schema;
16502
+ const getConnectorProjectConnectionErrorSchema = z__namespace.union([
16503
+ getConnectorProjectConnectionStatus400Schema,
16504
+ getConnectorProjectConnectionStatus401Schema,
16505
+ getConnectorProjectConnectionStatus403Schema,
16506
+ getConnectorProjectConnectionStatus404Schema,
16507
+ getConnectorProjectConnectionStatus410Schema
16508
+ ]);
16509
+ const upsertConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16510
+ const upsertConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16511
+ 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({
16512
+ examples: [
16513
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16514
+ ]
16515
+ });
16516
+ 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({
16517
+ examples: [
16518
+ "my-team-url-slug"
16519
+ ]
16520
+ });
16521
+ const upsertConnectorProjectConnectionStatus200Schema = z__namespace.unknown();
16522
+ const upsertConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16523
+ const upsertConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16524
+ const upsertConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16525
+ const upsertConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16526
+ const upsertConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16527
+ const upsertConnectorProjectConnectionResponseSchema = upsertConnectorProjectConnectionStatus200Schema;
16528
+ const upsertConnectorProjectConnectionErrorSchema = z__namespace.union([
16529
+ upsertConnectorProjectConnectionStatus400Schema,
16530
+ upsertConnectorProjectConnectionStatus401Schema,
16531
+ upsertConnectorProjectConnectionStatus403Schema,
16532
+ upsertConnectorProjectConnectionStatus404Schema,
16533
+ upsertConnectorProjectConnectionStatus410Schema
16534
+ ]);
16535
+ const deleteConnectorProjectConnectionPathConnectorSchema = z__namespace.string().describe("Stable connector ID or URL-encoded team-scoped UID. Examples: `scl_abc123` or `slack%2Fmy-bot`.");
16536
+ const deleteConnectorProjectConnectionPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16537
+ 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({
16538
+ examples: [
16539
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16540
+ ]
16541
+ });
16542
+ 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({
16543
+ examples: [
16544
+ "my-team-url-slug"
16545
+ ]
16546
+ });
16547
+ const deleteConnectorProjectConnectionStatus204Schema = z__namespace.unknown();
16548
+ const deleteConnectorProjectConnectionStatus400Schema = z__namespace.unknown();
16549
+ const deleteConnectorProjectConnectionStatus401Schema = z__namespace.unknown();
16550
+ const deleteConnectorProjectConnectionStatus403Schema = z__namespace.unknown();
16551
+ const deleteConnectorProjectConnectionStatus404Schema = z__namespace.unknown();
16552
+ const deleteConnectorProjectConnectionStatus410Schema = z__namespace.unknown();
16553
+ const deleteConnectorProjectConnectionResponseSchema = deleteConnectorProjectConnectionStatus204Schema;
16554
+ const deleteConnectorProjectConnectionErrorSchema = z__namespace.union([
16555
+ deleteConnectorProjectConnectionStatus400Schema,
16556
+ deleteConnectorProjectConnectionStatus401Schema,
16557
+ deleteConnectorProjectConnectionStatus403Schema,
16558
+ deleteConnectorProjectConnectionStatus404Schema,
16559
+ deleteConnectorProjectConnectionStatus410Schema
16560
+ ]);
16561
+ const listProjectConnectorConnectionsPathProjectIdSchema = z__namespace.string().describe("Vercel project ID.");
16562
+ const listProjectConnectorConnectionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional().describe("Maximum number of connector connections to return. Defaults to 50.");
16563
+ const listProjectConnectorConnectionsQueryCursorSchema = z__namespace.string().optional().describe("Cursor from `pagination.next` on the previous response.");
16564
+ 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({
16565
+ examples: [
16566
+ "team_1a2b3c4d5e6f7g8h9i0j1k2l"
16567
+ ]
16568
+ });
16569
+ 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({
16570
+ examples: [
16571
+ "my-team-url-slug"
16572
+ ]
16573
+ });
16574
+ const listProjectConnectorConnectionsStatus200Schema = z__namespace.unknown();
16575
+ const listProjectConnectorConnectionsStatus400Schema = z__namespace.unknown();
16576
+ const listProjectConnectorConnectionsStatus401Schema = z__namespace.unknown();
16577
+ const listProjectConnectorConnectionsStatus403Schema = z__namespace.unknown();
16578
+ const listProjectConnectorConnectionsStatus404Schema = z__namespace.unknown();
16579
+ const listProjectConnectorConnectionsStatus410Schema = z__namespace.unknown();
16580
+ const listProjectConnectorConnectionsResponseSchema = listProjectConnectorConnectionsStatus200Schema;
16581
+ const listProjectConnectorConnectionsErrorSchema = z__namespace.union([
16582
+ listProjectConnectorConnectionsStatus400Schema,
16583
+ listProjectConnectorConnectionsStatus401Schema,
16584
+ listProjectConnectorConnectionsStatus403Schema,
16585
+ listProjectConnectorConnectionsStatus404Schema,
16586
+ listProjectConnectorConnectionsStatus410Schema
16587
+ ]);
15339
16588
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
15340
16589
  const getConnectorTokenStatus200Schema = z__namespace.unknown();
15341
16590
  const getConnectorTokenStatus400Schema = z__namespace.unknown();
@@ -18250,7 +19499,8 @@ const getBillingPlansQuerySourceSchema = z__namespace.enum([
18250
19499
  "cli",
18251
19500
  "oauth",
18252
19501
  "backoffice",
18253
- "import-recommended-integrations"
19502
+ "import-recommended-integrations",
19503
+ "organization"
18254
19504
  ]).optional();
18255
19505
  const getBillingPlansQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
18256
19506
  examples: [
@@ -18454,7 +19704,6 @@ const importResourceStatus404Schema = z__namespace.unknown();
18454
19704
  const importResourceStatus409Schema = z__namespace.unknown();
18455
19705
  const importResourceStatus410Schema = z__namespace.unknown();
18456
19706
  const importResourceStatus422Schema = z__namespace.unknown();
18457
- const importResourceStatus429Schema = z__namespace.unknown();
18458
19707
  const importResourceResponseSchema = importResourceStatus200Schema;
18459
19708
  const importResourceErrorSchema = z__namespace.union([
18460
19709
  importResourceStatus400Schema,
@@ -18463,8 +19712,7 @@ const importResourceErrorSchema = z__namespace.union([
18463
19712
  importResourceStatus404Schema,
18464
19713
  importResourceStatus409Schema,
18465
19714
  importResourceStatus410Schema,
18466
- importResourceStatus422Schema,
18467
- importResourceStatus429Schema
19715
+ importResourceStatus422Schema
18468
19716
  ]);
18469
19717
  const updateResourcePathIntegrationConfigurationIdSchema = z__namespace.string();
18470
19718
  const updateResourcePathResourceIdSchema = z__namespace.string();
@@ -19454,6 +20702,10 @@ const createObservabilityQueryStatus402Schema = z__namespace.unknown();
19454
20702
  const createObservabilityQueryStatus403Schema = z__namespace.unknown();
19455
20703
  const createObservabilityQueryStatus408Schema = z__namespace.unknown();
19456
20704
  const createObservabilityQueryStatus410Schema = z__namespace.unknown();
20705
+ const createObservabilityQueryStatus413Schema = z__namespace.unknown();
20706
+ const createObservabilityQueryStatus422Schema = z__namespace.unknown();
20707
+ const createObservabilityQueryStatus500Schema = z__namespace.unknown();
20708
+ const createObservabilityQueryStatus503Schema = z__namespace.unknown();
19457
20709
  const createObservabilityQueryResponseSchema = createObservabilityQueryStatus200Schema;
19458
20710
  const createObservabilityQueryErrorSchema = z__namespace.union([
19459
20711
  createObservabilityQueryStatus400Schema,
@@ -19461,7 +20713,11 @@ const createObservabilityQueryErrorSchema = z__namespace.union([
19461
20713
  createObservabilityQueryStatus402Schema,
19462
20714
  createObservabilityQueryStatus403Schema,
19463
20715
  createObservabilityQueryStatus408Schema,
19464
- createObservabilityQueryStatus410Schema
20716
+ createObservabilityQueryStatus410Schema,
20717
+ createObservabilityQueryStatus413Schema,
20718
+ createObservabilityQueryStatus422Schema,
20719
+ createObservabilityQueryStatus500Schema,
20720
+ createObservabilityQueryStatus503Schema
19465
20721
  ]);
19466
20722
  const getObservabilitySchemaStatus200Schema = z__namespace.unknown();
19467
20723
  const getObservabilitySchemaStatus400Schema = z__namespace.unknown();
@@ -20059,6 +21315,7 @@ const updateProjectStatus404Schema = z__namespace.unknown();
20059
21315
  const updateProjectStatus409Schema = z__namespace.unknown();
20060
21316
  const updateProjectStatus410Schema = z__namespace.unknown();
20061
21317
  const updateProjectStatus428Schema = z__namespace.unknown();
21318
+ const updateProjectStatus429Schema = z__namespace.unknown();
20062
21319
  const updateProjectResponseSchema = updateProjectStatus200Schema;
20063
21320
  const updateProjectErrorSchema = z__namespace.union([
20064
21321
  updateProjectStatus400Schema,
@@ -20068,7 +21325,8 @@ const updateProjectErrorSchema = z__namespace.union([
20068
21325
  updateProjectStatus404Schema,
20069
21326
  updateProjectStatus409Schema,
20070
21327
  updateProjectStatus410Schema,
20071
- updateProjectStatus428Schema
21328
+ updateProjectStatus428Schema,
21329
+ updateProjectStatus429Schema
20072
21330
  ]);
20073
21331
  const deleteProjectPathIdOrNameSchema = z__namespace.string().describe("The unique project identifier or the project name").meta({
20074
21332
  examples: [
@@ -20997,12 +22255,14 @@ const createProjectTransferRequestStatus200Schema = z__namespace.unknown();
20997
22255
  const createProjectTransferRequestStatus400Schema = z__namespace.unknown();
20998
22256
  const createProjectTransferRequestStatus401Schema = z__namespace.unknown();
20999
22257
  const createProjectTransferRequestStatus403Schema = z__namespace.unknown();
22258
+ const createProjectTransferRequestStatus409Schema = z__namespace.unknown();
21000
22259
  const createProjectTransferRequestStatus410Schema = z__namespace.unknown();
21001
22260
  const createProjectTransferRequestResponseSchema = createProjectTransferRequestStatus200Schema;
21002
22261
  const createProjectTransferRequestErrorSchema = z__namespace.union([
21003
22262
  createProjectTransferRequestStatus400Schema,
21004
22263
  createProjectTransferRequestStatus401Schema,
21005
22264
  createProjectTransferRequestStatus403Schema,
22265
+ createProjectTransferRequestStatus409Schema,
21006
22266
  createProjectTransferRequestStatus410Schema
21007
22267
  ]);
21008
22268
  const acceptProjectTransferRequestPathCodeSchema = z__namespace.string().describe("The code of the project transfer request.");
@@ -21262,62 +22522,62 @@ const unpauseProjectErrorSchema = z__namespace.union([
21262
22522
  unpauseProjectStatus410Schema,
21263
22523
  unpauseProjectStatus500Schema
21264
22524
  ]);
21265
- const listSandboxesQueryProjectSchema = z__namespace.string().optional().describe("The unique identifier or name of the project to list named sandboxes for.").meta({
22525
+ const listNamedSandboxesQueryProjectSchema = z__namespace.string().optional().describe("The unique identifier or name of the project to list named sandboxes for.").meta({
21266
22526
  examples: [
21267
22527
  "prj_abc123"
21268
22528
  ]
21269
22529
  });
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({
22530
+ 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
22531
  examples: [
21272
22532
  20
21273
22533
  ]
21274
22534
  });
21275
- const listSandboxesQuerySortBySchema = z__namespace.enum([
22535
+ const listNamedSandboxesQuerySortBySchema = z__namespace.enum([
21276
22536
  "createdAt",
21277
22537
  "name",
21278
22538
  "statusUpdatedAt",
21279
22539
  "currentSnapshotId"
21280
22540
  ]).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([
22541
+ const listNamedSandboxesQueryNamePrefixSchema = z__namespace.string().optional().describe("Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.");
22542
+ const listNamedSandboxesQueryCursorSchema = z__namespace.string().optional().describe("Opaque pagination cursor from a previous response.");
22543
+ const listNamedSandboxesQuerySortOrderSchema = z__namespace.enum([
21284
22544
  "asc",
21285
22545
  "desc"
21286
22546
  ]).optional().default("desc").describe("Sort direction. Defaults to desc.");
21287
- const listSandboxesQueryStatusSchema = z__namespace.enum([
22547
+ const listNamedSandboxesQueryStatusSchema = z__namespace.enum([
21288
22548
  "running",
21289
22549
  "stopping",
21290
22550
  "stopped"
21291
22551
  ]).optional().describe("Filter named sandboxes by status. Only valid when sortBy is createdAt.");
21292
- const listSandboxesQueryTagsSchema = z__namespace.union([
22552
+ const listNamedSandboxesQueryTagsSchema = z__namespace.union([
21293
22553
  z__namespace.string(),
21294
22554
  z__namespace.array(z__namespace.string())
21295
22555
  ]).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({
22556
+ const listNamedSandboxesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
21297
22557
  examples: [
21298
22558
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
21299
22559
  ]
21300
22560
  });
21301
- const listSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
22561
+ const listNamedSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.").meta({
21302
22562
  examples: [
21303
22563
  "my-team-url-slug"
21304
22564
  ]
21305
22565
  });
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
22566
+ const listNamedSandboxesStatus200Schema = z__namespace.unknown();
22567
+ const listNamedSandboxesStatus400Schema = z__namespace.unknown();
22568
+ const listNamedSandboxesStatus401Schema = z__namespace.unknown();
22569
+ const listNamedSandboxesStatus403Schema = z__namespace.unknown();
22570
+ const listNamedSandboxesStatus404Schema = z__namespace.unknown();
22571
+ const listNamedSandboxesStatus410Schema = z__namespace.unknown();
22572
+ const listNamedSandboxesStatus429Schema = z__namespace.unknown();
22573
+ const listNamedSandboxesResponseSchema = listNamedSandboxesStatus200Schema;
22574
+ const listNamedSandboxesErrorSchema = z__namespace.union([
22575
+ listNamedSandboxesStatus400Schema,
22576
+ listNamedSandboxesStatus401Schema,
22577
+ listNamedSandboxesStatus403Schema,
22578
+ listNamedSandboxesStatus404Schema,
22579
+ listNamedSandboxesStatus410Schema,
22580
+ listNamedSandboxesStatus429Schema
21321
22581
  ]);
21322
22582
  const createSandboxesV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
21323
22583
  examples: [
@@ -22614,6 +23874,7 @@ const getBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22614
23874
  const getBypassIpStatus200Schema = z__namespace.unknown();
22615
23875
  const getBypassIpStatus400Schema = z__namespace.unknown();
22616
23876
  const getBypassIpStatus401Schema = z__namespace.unknown();
23877
+ const getBypassIpStatus402Schema = z__namespace.unknown();
22617
23878
  const getBypassIpStatus403Schema = z__namespace.unknown();
22618
23879
  const getBypassIpStatus404Schema = z__namespace.unknown();
22619
23880
  const getBypassIpStatus410Schema = z__namespace.unknown();
@@ -22622,6 +23883,7 @@ const getBypassIpResponseSchema = getBypassIpStatus200Schema;
22622
23883
  const getBypassIpErrorSchema = z__namespace.union([
22623
23884
  getBypassIpStatus400Schema,
22624
23885
  getBypassIpStatus401Schema,
23886
+ getBypassIpStatus402Schema,
22625
23887
  getBypassIpStatus403Schema,
22626
23888
  getBypassIpStatus404Schema,
22627
23889
  getBypassIpStatus410Schema,
@@ -22641,6 +23903,7 @@ const addBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22641
23903
  const addBypassIpStatus200Schema = z__namespace.unknown();
22642
23904
  const addBypassIpStatus400Schema = z__namespace.unknown();
22643
23905
  const addBypassIpStatus401Schema = z__namespace.unknown();
23906
+ const addBypassIpStatus402Schema = z__namespace.unknown();
22644
23907
  const addBypassIpStatus403Schema = z__namespace.unknown();
22645
23908
  const addBypassIpStatus404Schema = z__namespace.unknown();
22646
23909
  const addBypassIpStatus410Schema = z__namespace.unknown();
@@ -22649,6 +23912,7 @@ const addBypassIpResponseSchema = addBypassIpStatus200Schema;
22649
23912
  const addBypassIpErrorSchema = z__namespace.union([
22650
23913
  addBypassIpStatus400Schema,
22651
23914
  addBypassIpStatus401Schema,
23915
+ addBypassIpStatus402Schema,
22652
23916
  addBypassIpStatus403Schema,
22653
23917
  addBypassIpStatus404Schema,
22654
23918
  addBypassIpStatus410Schema,
@@ -22668,6 +23932,7 @@ const removeBypassIpQuerySlugSchema = z__namespace.string().optional().describe(
22668
23932
  const removeBypassIpStatus200Schema = z__namespace.unknown();
22669
23933
  const removeBypassIpStatus400Schema = z__namespace.unknown();
22670
23934
  const removeBypassIpStatus401Schema = z__namespace.unknown();
23935
+ const removeBypassIpStatus402Schema = z__namespace.unknown();
22671
23936
  const removeBypassIpStatus403Schema = z__namespace.unknown();
22672
23937
  const removeBypassIpStatus404Schema = z__namespace.unknown();
22673
23938
  const removeBypassIpStatus410Schema = z__namespace.unknown();
@@ -22676,6 +23941,7 @@ const removeBypassIpResponseSchema = removeBypassIpStatus200Schema;
22676
23941
  const removeBypassIpErrorSchema = z__namespace.union([
22677
23942
  removeBypassIpStatus400Schema,
22678
23943
  removeBypassIpStatus401Schema,
23944
+ removeBypassIpStatus402Schema,
22679
23945
  removeBypassIpStatus403Schema,
22680
23946
  removeBypassIpStatus404Schema,
22681
23947
  removeBypassIpStatus410Schema,
@@ -22829,7 +24095,6 @@ const createIntegrationStoreDirectStatus403Schema = z__namespace.unknown();
22829
24095
  const createIntegrationStoreDirectStatus404Schema = z__namespace.unknown();
22830
24096
  const createIntegrationStoreDirectStatus409Schema = z__namespace.unknown();
22831
24097
  const createIntegrationStoreDirectStatus410Schema = z__namespace.unknown();
22832
- const createIntegrationStoreDirectStatus429Schema = z__namespace.unknown();
22833
24098
  const createIntegrationStoreDirectStatus500Schema = z__namespace.unknown();
22834
24099
  const createIntegrationStoreDirectResponseSchema = createIntegrationStoreDirectStatus200Schema;
22835
24100
  const createIntegrationStoreDirectErrorSchema = z__namespace.union([
@@ -22840,7 +24105,6 @@ const createIntegrationStoreDirectErrorSchema = z__namespace.union([
22840
24105
  createIntegrationStoreDirectStatus404Schema,
22841
24106
  createIntegrationStoreDirectStatus409Schema,
22842
24107
  createIntegrationStoreDirectStatus410Schema,
22843
- createIntegrationStoreDirectStatus429Schema,
22844
24108
  createIntegrationStoreDirectStatus500Schema
22845
24109
  ]);
22846
24110
  const getTeamMembersQueryLimitSchema = z__namespace.number().min(1).optional().describe("Limit how many teams should be returned").meta({
@@ -23440,7 +24704,7 @@ const createRepositoryErrorSchema = z__namespace.union([
23440
24704
  createRepositoryStatus409Schema,
23441
24705
  createRepositoryStatus410Schema
23442
24706
  ]);
23443
- const listRepositoriesQueryProjectIdSchema = z__namespace.string();
24707
+ 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
24708
  const listRepositoriesQueryLimitSchema = z__namespace.int().min(1).max(1000).optional();
23445
24709
  const listRepositoriesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
23446
24710
  const listRepositoriesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23467,7 +24731,7 @@ const listRepositoriesErrorSchema = z__namespace.union([
23467
24731
  listRepositoriesStatus404Schema,
23468
24732
  listRepositoriesStatus410Schema
23469
24733
  ]);
23470
- const getRepositoryQueryProjectIdSchema = z__namespace.string();
24734
+ 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
24735
  const getRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23472
24736
  const getRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23473
24737
  examples: [
@@ -23493,7 +24757,7 @@ const getRepositoryErrorSchema = z__namespace.union([
23493
24757
  getRepositoryStatus404Schema,
23494
24758
  getRepositoryStatus410Schema
23495
24759
  ]);
23496
- const deleteRepositoryQueryProjectIdSchema = z__namespace.string();
24760
+ 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
24761
  const deleteRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23498
24762
  const deleteRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23499
24763
  examples: [
@@ -23519,7 +24783,7 @@ const deleteRepositoryErrorSchema = z__namespace.union([
23519
24783
  deleteRepositoryStatus404Schema,
23520
24784
  deleteRepositoryStatus410Schema
23521
24785
  ]);
23522
- const listRepositoryImagesQueryProjectIdSchema = z__namespace.string();
24786
+ 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
24787
  const listRepositoryImagesPathIdOrNameSchema = z__namespace.string().max(255);
23524
24788
  const listRepositoryImagesQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23525
24789
  const listRepositoryImagesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23548,7 +24812,7 @@ const listRepositoryImagesErrorSchema = z__namespace.union([
23548
24812
  listRepositoryImagesStatus404Schema,
23549
24813
  listRepositoryImagesStatus410Schema
23550
24814
  ]);
23551
- const addRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
24815
+ 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
24816
  const addRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23553
24817
  const addRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23554
24818
  examples: [
@@ -23574,7 +24838,7 @@ const addRepositoryPermissionErrorSchema = z__namespace.union([
23574
24838
  addRepositoryPermissionStatus404Schema,
23575
24839
  addRepositoryPermissionStatus410Schema
23576
24840
  ]);
23577
- const removeRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
24841
+ 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
24842
  const removeRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23579
24843
  const removeRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23580
24844
  examples: [
@@ -23600,7 +24864,7 @@ const removeRepositoryPermissionErrorSchema = z__namespace.union([
23600
24864
  removeRepositoryPermissionStatus404Schema,
23601
24865
  removeRepositoryPermissionStatus410Schema
23602
24866
  ]);
23603
- const listRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
24867
+ 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
24868
  const listRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23605
24869
  const listRepositoryPermissionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23606
24870
  const listRepositoryPermissionsQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23628,7 +24892,7 @@ const listRepositoryPermissionsErrorSchema = z__namespace.union([
23628
24892
  listRepositoryPermissionsStatus404Schema,
23629
24893
  listRepositoryPermissionsStatus410Schema
23630
24894
  ]);
23631
- const clearRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
24895
+ 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
24896
  const clearRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23633
24897
  const clearRepositoryPermissionsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23634
24898
  examples: [
@@ -23654,7 +24918,7 @@ const clearRepositoryPermissionsErrorSchema = z__namespace.union([
23654
24918
  clearRepositoryPermissionsStatus404Schema,
23655
24919
  clearRepositoryPermissionsStatus410Schema
23656
24920
  ]);
23657
- const listRepositoryTagsQueryProjectIdSchema = z__namespace.string();
24921
+ 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
24922
  const listRepositoryTagsPathIdOrNameSchema = z__namespace.string().max(255);
23659
24923
  const listRepositoryTagsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23660
24924
  const listRepositoryTagsQueryCursorSchema = z__namespace.string().optional();
@@ -23690,7 +24954,7 @@ const listRepositoryTagsErrorSchema = z__namespace.union([
23690
24954
  listRepositoryTagsStatus404Schema,
23691
24955
  listRepositoryTagsStatus410Schema
23692
24956
  ]);
23693
- const getRepositoryTagQueryProjectIdSchema = z__namespace.string();
24957
+ 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
24958
  const getRepositoryTagPathIdOrNameSchema = z__namespace.string().max(255);
23695
24959
  const getRepositoryTagPathTagSchema = z__namespace.string().max(255);
23696
24960
  const getRepositoryTagQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23717,7 +24981,7 @@ const getRepositoryTagErrorSchema = z__namespace.union([
23717
24981
  getRepositoryTagStatus404Schema,
23718
24982
  getRepositoryTagStatus410Schema
23719
24983
  ]);
23720
- const getRepositoryImageQueryProjectIdSchema = z__namespace.string();
24984
+ 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
24985
  const getRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23722
24986
  const getRepositoryImagePathImageIdOrDigestSchema = z__namespace.string().max(255).describe("The internal image id (`image_...`) or the image manifest digest (`sha256:...`).");
23723
24987
  const getRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23744,7 +25008,7 @@ const getRepositoryImageErrorSchema = z__namespace.union([
23744
25008
  getRepositoryImageStatus404Schema,
23745
25009
  getRepositoryImageStatus410Schema
23746
25010
  ]);
23747
- const deleteRepositoryImageQueryProjectIdSchema = z__namespace.string();
25011
+ 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
25012
  const deleteRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23749
25013
  const deleteRepositoryImagePathImageIdSchema = z__namespace.string().max(255);
23750
25014
  const deleteRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -24258,14 +25522,18 @@ const aggregatePageviewsStatus400Schema = z__namespace.unknown();
24258
25522
  const aggregatePageviewsStatus401Schema = z__namespace.unknown();
24259
25523
  const aggregatePageviewsStatus402Schema = z__namespace.unknown();
24260
25524
  const aggregatePageviewsStatus403Schema = z__namespace.unknown();
25525
+ const aggregatePageviewsStatus404Schema = z__namespace.unknown();
24261
25526
  const aggregatePageviewsStatus410Schema = z__namespace.unknown();
25527
+ const aggregatePageviewsStatus503Schema = z__namespace.unknown();
24262
25528
  const aggregatePageviewsResponseSchema = aggregatePageviewsStatus200Schema;
24263
25529
  const aggregatePageviewsErrorSchema = z__namespace.union([
24264
25530
  aggregatePageviewsStatus400Schema,
24265
25531
  aggregatePageviewsStatus401Schema,
24266
25532
  aggregatePageviewsStatus402Schema,
24267
25533
  aggregatePageviewsStatus403Schema,
24268
- aggregatePageviewsStatus410Schema
25534
+ aggregatePageviewsStatus404Schema,
25535
+ aggregatePageviewsStatus410Schema,
25536
+ aggregatePageviewsStatus503Schema
24269
25537
  ]);
24270
25538
  const aggregateEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24271
25539
  examples: [
@@ -24323,14 +25591,18 @@ const aggregateEventsStatus400Schema = z__namespace.unknown();
24323
25591
  const aggregateEventsStatus401Schema = z__namespace.unknown();
24324
25592
  const aggregateEventsStatus402Schema = z__namespace.unknown();
24325
25593
  const aggregateEventsStatus403Schema = z__namespace.unknown();
25594
+ const aggregateEventsStatus404Schema = z__namespace.unknown();
24326
25595
  const aggregateEventsStatus410Schema = z__namespace.unknown();
25596
+ const aggregateEventsStatus503Schema = z__namespace.unknown();
24327
25597
  const aggregateEventsResponseSchema = aggregateEventsStatus200Schema;
24328
25598
  const aggregateEventsErrorSchema = z__namespace.union([
24329
25599
  aggregateEventsStatus400Schema,
24330
25600
  aggregateEventsStatus401Schema,
24331
25601
  aggregateEventsStatus402Schema,
24332
25602
  aggregateEventsStatus403Schema,
24333
- aggregateEventsStatus410Schema
25603
+ aggregateEventsStatus404Schema,
25604
+ aggregateEventsStatus410Schema,
25605
+ aggregateEventsStatus503Schema
24334
25606
  ]);
24335
25607
  const countPageviewsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24336
25608
  examples: [
@@ -24373,14 +25645,18 @@ const countPageviewsStatus400Schema = z__namespace.unknown();
24373
25645
  const countPageviewsStatus401Schema = z__namespace.unknown();
24374
25646
  const countPageviewsStatus402Schema = z__namespace.unknown();
24375
25647
  const countPageviewsStatus403Schema = z__namespace.unknown();
25648
+ const countPageviewsStatus404Schema = z__namespace.unknown();
24376
25649
  const countPageviewsStatus410Schema = z__namespace.unknown();
25650
+ const countPageviewsStatus503Schema = z__namespace.unknown();
24377
25651
  const countPageviewsResponseSchema = countPageviewsStatus200Schema;
24378
25652
  const countPageviewsErrorSchema = z__namespace.union([
24379
25653
  countPageviewsStatus400Schema,
24380
25654
  countPageviewsStatus401Schema,
24381
25655
  countPageviewsStatus402Schema,
24382
25656
  countPageviewsStatus403Schema,
24383
- countPageviewsStatus410Schema
25657
+ countPageviewsStatus404Schema,
25658
+ countPageviewsStatus410Schema,
25659
+ countPageviewsStatus503Schema
24384
25660
  ]);
24385
25661
  const countEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24386
25662
  examples: [
@@ -24423,14 +25699,18 @@ const countEventsStatus400Schema = z__namespace.unknown();
24423
25699
  const countEventsStatus401Schema = z__namespace.unknown();
24424
25700
  const countEventsStatus402Schema = z__namespace.unknown();
24425
25701
  const countEventsStatus403Schema = z__namespace.unknown();
25702
+ const countEventsStatus404Schema = z__namespace.unknown();
24426
25703
  const countEventsStatus410Schema = z__namespace.unknown();
25704
+ const countEventsStatus503Schema = z__namespace.unknown();
24427
25705
  const countEventsResponseSchema = countEventsStatus200Schema;
24428
25706
  const countEventsErrorSchema = z__namespace.union([
24429
25707
  countEventsStatus400Schema,
24430
25708
  countEventsStatus401Schema,
24431
25709
  countEventsStatus402Schema,
24432
25710
  countEventsStatus403Schema,
24433
- countEventsStatus410Schema
25711
+ countEventsStatus404Schema,
25712
+ countEventsStatus410Schema,
25713
+ countEventsStatus503Schema
24434
25714
  ]);
24435
25715
  const createWebhookQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
24436
25716
  examples: [
@@ -25089,6 +26369,7 @@ exports.addBypassIpResponseSchema = addBypassIpResponseSchema;
25089
26369
  exports.addBypassIpStatus200Schema = addBypassIpStatus200Schema;
25090
26370
  exports.addBypassIpStatus400Schema = addBypassIpStatus400Schema;
25091
26371
  exports.addBypassIpStatus401Schema = addBypassIpStatus401Schema;
26372
+ exports.addBypassIpStatus402Schema = addBypassIpStatus402Schema;
25092
26373
  exports.addBypassIpStatus403Schema = addBypassIpStatus403Schema;
25093
26374
  exports.addBypassIpStatus404Schema = addBypassIpStatus404Schema;
25094
26375
  exports.addBypassIpStatus410Schema = addBypassIpStatus410Schema;
@@ -25156,7 +26437,9 @@ exports.aggregateEventsStatus400Schema = aggregateEventsStatus400Schema;
25156
26437
  exports.aggregateEventsStatus401Schema = aggregateEventsStatus401Schema;
25157
26438
  exports.aggregateEventsStatus402Schema = aggregateEventsStatus402Schema;
25158
26439
  exports.aggregateEventsStatus403Schema = aggregateEventsStatus403Schema;
26440
+ exports.aggregateEventsStatus404Schema = aggregateEventsStatus404Schema;
25159
26441
  exports.aggregateEventsStatus410Schema = aggregateEventsStatus410Schema;
26442
+ exports.aggregateEventsStatus503Schema = aggregateEventsStatus503Schema;
25160
26443
  exports.aggregatePageviewsErrorSchema = aggregatePageviewsErrorSchema;
25161
26444
  exports.aggregatePageviewsQueryBySchema = aggregatePageviewsQueryBySchema;
25162
26445
  exports.aggregatePageviewsQueryFilterSchema = aggregatePageviewsQueryFilterSchema;
@@ -25172,7 +26455,9 @@ exports.aggregatePageviewsStatus400Schema = aggregatePageviewsStatus400Schema;
25172
26455
  exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
25173
26456
  exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
25174
26457
  exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
26458
+ exports.aggregatePageviewsStatus404Schema = aggregatePageviewsStatus404Schema;
25175
26459
  exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
26460
+ exports.aggregatePageviewsStatus503Schema = aggregatePageviewsStatus503Schema;
25176
26461
  exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
25177
26462
  exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
25178
26463
  exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
@@ -25310,6 +26595,11 @@ exports.completeRollingReleaseStatus404Schema = completeRollingReleaseStatus404S
25310
26595
  exports.completeRollingReleaseStatus410Schema = completeRollingReleaseStatus410Schema;
25311
26596
  exports.connectConnectorCreateDataSchema = connectConnectorCreateDataSchema;
25312
26597
  exports.connectConnectorCreateResultSchema = connectConnectorCreateResultSchema;
26598
+ exports.connectConnectorListSchema = connectConnectorListSchema;
26599
+ exports.connectConnectorProjectConnectionListSchema = connectConnectorProjectConnectionListSchema;
26600
+ exports.connectConnectorSchema = connectConnectorSchema;
26601
+ exports.connectConnectorUpdateDataSchema = connectConnectorUpdateDataSchema;
26602
+ exports.connectConnectorUpdateResultSchema = connectConnectorUpdateResultSchema;
25313
26603
  exports.connectCreateConnectorRequestSchema = connectCreateConnectorRequestSchema;
25314
26604
  exports.connectEnvironmentSchema = connectEnvironmentSchema;
25315
26605
  exports.connectErrorSchema = connectErrorSchema;
@@ -25325,8 +26615,18 @@ exports.connectIntegrationResourceToProjectStatus401Schema = connectIntegrationR
25325
26615
  exports.connectIntegrationResourceToProjectStatus403Schema = connectIntegrationResourceToProjectStatus403Schema;
25326
26616
  exports.connectIntegrationResourceToProjectStatus404Schema = connectIntegrationResourceToProjectStatus404Schema;
25327
26617
  exports.connectIntegrationResourceToProjectStatus410Schema = connectIntegrationResourceToProjectStatus410Schema;
26618
+ exports.connectPaginationSchema = connectPaginationSchema;
26619
+ exports.connectProjectConnectionSchema = connectProjectConnectionSchema;
26620
+ exports.connectProjectConnectorConnectionListSchema = connectProjectConnectorConnectionListSchema;
26621
+ exports.connectReconsentSchema = connectReconsentSchema;
26622
+ exports.connectReplaceTriggerDestinationsRequestSchema = connectReplaceTriggerDestinationsRequestSchema;
26623
+ exports.connectServiceSyncErrorSchema = connectServiceSyncErrorSchema;
26624
+ exports.connectServiceSyncSchema = connectServiceSyncSchema;
25328
26625
  exports.connectTriggerConfigurationSchema = connectTriggerConfigurationSchema;
26626
+ exports.connectTriggerDestinationInputSchema = connectTriggerDestinationInputSchema;
25329
26627
  exports.connectTriggerDestinationSchema = connectTriggerDestinationSchema;
26628
+ exports.connectUpdateConnectorRequestSchema = connectUpdateConnectorRequestSchema;
26629
+ exports.connectUpsertProjectConnectionRequestSchema = connectUpsertProjectConnectionRequestSchema;
25330
26630
  exports.contactPendingVerificationSchema = contactPendingVerificationSchema;
25331
26631
  exports.contactVerifiedSchema = contactVerifiedSchema;
25332
26632
  exports.countEventsErrorSchema = countEventsErrorSchema;
@@ -25342,7 +26642,9 @@ exports.countEventsStatus400Schema = countEventsStatus400Schema;
25342
26642
  exports.countEventsStatus401Schema = countEventsStatus401Schema;
25343
26643
  exports.countEventsStatus402Schema = countEventsStatus402Schema;
25344
26644
  exports.countEventsStatus403Schema = countEventsStatus403Schema;
26645
+ exports.countEventsStatus404Schema = countEventsStatus404Schema;
25345
26646
  exports.countEventsStatus410Schema = countEventsStatus410Schema;
26647
+ exports.countEventsStatus503Schema = countEventsStatus503Schema;
25346
26648
  exports.countPageviewsErrorSchema = countPageviewsErrorSchema;
25347
26649
  exports.countPageviewsQueryFilterSchema = countPageviewsQueryFilterSchema;
25348
26650
  exports.countPageviewsQueryProjectIdSchema = countPageviewsQueryProjectIdSchema;
@@ -25356,7 +26658,9 @@ exports.countPageviewsStatus400Schema = countPageviewsStatus400Schema;
25356
26658
  exports.countPageviewsStatus401Schema = countPageviewsStatus401Schema;
25357
26659
  exports.countPageviewsStatus402Schema = countPageviewsStatus402Schema;
25358
26660
  exports.countPageviewsStatus403Schema = countPageviewsStatus403Schema;
26661
+ exports.countPageviewsStatus404Schema = countPageviewsStatus404Schema;
25359
26662
  exports.countPageviewsStatus410Schema = countPageviewsStatus410Schema;
26663
+ exports.countPageviewsStatus503Schema = countPageviewsStatus503Schema;
25360
26664
  exports.countryCodeSchema = countryCodeSchema;
25361
26665
  exports.createAccessGroupErrorSchema = createAccessGroupErrorSchema;
25362
26666
  exports.createAccessGroupProjectErrorSchema = createAccessGroupProjectErrorSchema;
@@ -25609,7 +26913,6 @@ exports.createIntegrationStoreDirectStatus403Schema = createIntegrationStoreDire
25609
26913
  exports.createIntegrationStoreDirectStatus404Schema = createIntegrationStoreDirectStatus404Schema;
25610
26914
  exports.createIntegrationStoreDirectStatus409Schema = createIntegrationStoreDirectStatus409Schema;
25611
26915
  exports.createIntegrationStoreDirectStatus410Schema = createIntegrationStoreDirectStatus410Schema;
25612
- exports.createIntegrationStoreDirectStatus429Schema = createIntegrationStoreDirectStatus429Schema;
25613
26916
  exports.createIntegrationStoreDirectStatus500Schema = createIntegrationStoreDirectStatus500Schema;
25614
26917
  exports.createKmsIssuerErrorSchema = createKmsIssuerErrorSchema;
25615
26918
  exports.createKmsIssuerPolicyErrorSchema = createKmsIssuerPolicyErrorSchema;
@@ -25683,6 +26986,10 @@ exports.createObservabilityQueryStatus402Schema = createObservabilityQueryStatus
25683
26986
  exports.createObservabilityQueryStatus403Schema = createObservabilityQueryStatus403Schema;
25684
26987
  exports.createObservabilityQueryStatus408Schema = createObservabilityQueryStatus408Schema;
25685
26988
  exports.createObservabilityQueryStatus410Schema = createObservabilityQueryStatus410Schema;
26989
+ exports.createObservabilityQueryStatus413Schema = createObservabilityQueryStatus413Schema;
26990
+ exports.createObservabilityQueryStatus422Schema = createObservabilityQueryStatus422Schema;
26991
+ exports.createObservabilityQueryStatus500Schema = createObservabilityQueryStatus500Schema;
26992
+ exports.createObservabilityQueryStatus503Schema = createObservabilityQueryStatus503Schema;
25686
26993
  exports.createOrTransferDomainErrorSchema = createOrTransferDomainErrorSchema;
25687
26994
  exports.createOrTransferDomainQuerySlugSchema = createOrTransferDomainQuerySlugSchema;
25688
26995
  exports.createOrTransferDomainQueryTeamIdSchema = createOrTransferDomainQueryTeamIdSchema;
@@ -25695,6 +27002,17 @@ exports.createOrTransferDomainStatus403Schema = createOrTransferDomainStatus403S
25695
27002
  exports.createOrTransferDomainStatus404Schema = createOrTransferDomainStatus404Schema;
25696
27003
  exports.createOrTransferDomainStatus409Schema = createOrTransferDomainStatus409Schema;
25697
27004
  exports.createOrTransferDomainStatus410Schema = createOrTransferDomainStatus410Schema;
27005
+ exports.createPrivateLinkEndpointErrorSchema = createPrivateLinkEndpointErrorSchema;
27006
+ exports.createPrivateLinkEndpointQuerySlugSchema = createPrivateLinkEndpointQuerySlugSchema;
27007
+ exports.createPrivateLinkEndpointQueryTeamIdSchema = createPrivateLinkEndpointQueryTeamIdSchema;
27008
+ exports.createPrivateLinkEndpointResponseSchema = createPrivateLinkEndpointResponseSchema;
27009
+ exports.createPrivateLinkEndpointStatus201Schema = createPrivateLinkEndpointStatus201Schema;
27010
+ exports.createPrivateLinkEndpointStatus400Schema = createPrivateLinkEndpointStatus400Schema;
27011
+ exports.createPrivateLinkEndpointStatus401Schema = createPrivateLinkEndpointStatus401Schema;
27012
+ exports.createPrivateLinkEndpointStatus403Schema = createPrivateLinkEndpointStatus403Schema;
27013
+ exports.createPrivateLinkEndpointStatus404Schema = createPrivateLinkEndpointStatus404Schema;
27014
+ exports.createPrivateLinkEndpointStatus409Schema = createPrivateLinkEndpointStatus409Schema;
27015
+ exports.createPrivateLinkEndpointStatus410Schema = createPrivateLinkEndpointStatus410Schema;
25698
27016
  exports.createProjectCheckErrorSchema = createProjectCheckErrorSchema;
25699
27017
  exports.createProjectCheckPathProjectIdOrNameSchema = createProjectCheckPathProjectIdOrNameSchema;
25700
27018
  exports.createProjectCheckQuerySlugSchema = createProjectCheckQuerySlugSchema;
@@ -25746,6 +27064,7 @@ exports.createProjectTransferRequestStatus200Schema = createProjectTransferReque
25746
27064
  exports.createProjectTransferRequestStatus400Schema = createProjectTransferRequestStatus400Schema;
25747
27065
  exports.createProjectTransferRequestStatus401Schema = createProjectTransferRequestStatus401Schema;
25748
27066
  exports.createProjectTransferRequestStatus403Schema = createProjectTransferRequestStatus403Schema;
27067
+ exports.createProjectTransferRequestStatus409Schema = createProjectTransferRequestStatus409Schema;
25749
27068
  exports.createProjectTransferRequestStatus410Schema = createProjectTransferRequestStatus410Schema;
25750
27069
  exports.createRecordErrorSchema = createRecordErrorSchema;
25751
27070
  exports.createRecordPathDomainSchema = createRecordPathDomainSchema;
@@ -26043,10 +27362,29 @@ exports.deleteAiGatewayRuleStatus403Schema = deleteAiGatewayRuleStatus403Schema;
26043
27362
  exports.deleteAiGatewayRuleStatus404Schema = deleteAiGatewayRuleStatus404Schema;
26044
27363
  exports.deleteAiGatewayRuleStatus410Schema = deleteAiGatewayRuleStatus410Schema;
26045
27364
  exports.deleteAiGatewayRuleStatus500Schema = deleteAiGatewayRuleStatus500Schema;
27365
+ exports.deleteAiGatewayVirtualModelConfigBySlugErrorSchema = deleteAiGatewayVirtualModelConfigBySlugErrorSchema;
27366
+ exports.deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = deleteAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
27367
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema = deleteAiGatewayVirtualModelConfigBySlugQueryActingIpSchema;
27368
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema = deleteAiGatewayVirtualModelConfigBySlugQueryActingUserAgentSchema;
27369
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema;
27370
+ exports.deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema = deleteAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
27371
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
27372
+ exports.deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema = deleteAiGatewayVirtualModelConfigBySlugQueryUpdatedBySchema;
27373
+ exports.deleteAiGatewayVirtualModelConfigBySlugResponseSchema = deleteAiGatewayVirtualModelConfigBySlugResponseSchema;
27374
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus204Schema = deleteAiGatewayVirtualModelConfigBySlugStatus204Schema;
27375
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus400Schema = deleteAiGatewayVirtualModelConfigBySlugStatus400Schema;
27376
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus401Schema = deleteAiGatewayVirtualModelConfigBySlugStatus401Schema;
27377
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus403Schema = deleteAiGatewayVirtualModelConfigBySlugStatus403Schema;
27378
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus404Schema = deleteAiGatewayVirtualModelConfigBySlugStatus404Schema;
27379
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus410Schema = deleteAiGatewayVirtualModelConfigBySlugStatus410Schema;
27380
+ exports.deleteAiGatewayVirtualModelConfigBySlugStatus500Schema = deleteAiGatewayVirtualModelConfigBySlugStatus500Schema;
26046
27381
  exports.deleteAiGatewayVirtualModelConfigErrorSchema = deleteAiGatewayVirtualModelConfigErrorSchema;
27382
+ exports.deleteAiGatewayVirtualModelConfigQueryActingIpSchema = deleteAiGatewayVirtualModelConfigQueryActingIpSchema;
27383
+ exports.deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema;
26047
27384
  exports.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema;
26048
27385
  exports.deleteAiGatewayVirtualModelConfigQuerySlugSchema = deleteAiGatewayVirtualModelConfigQuerySlugSchema;
26049
27386
  exports.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigQueryTeamIdSchema;
27387
+ exports.deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema;
26050
27388
  exports.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
26051
27389
  exports.deleteAiGatewayVirtualModelConfigResponseSchema = deleteAiGatewayVirtualModelConfigResponseSchema;
26052
27390
  exports.deleteAiGatewayVirtualModelConfigStatus204Schema = deleteAiGatewayVirtualModelConfigStatus204Schema;
@@ -26146,6 +27484,32 @@ exports.deleteConfigurationStatus401Schema = deleteConfigurationStatus401Schema;
26146
27484
  exports.deleteConfigurationStatus403Schema = deleteConfigurationStatus403Schema;
26147
27485
  exports.deleteConfigurationStatus404Schema = deleteConfigurationStatus404Schema;
26148
27486
  exports.deleteConfigurationStatus410Schema = deleteConfigurationStatus410Schema;
27487
+ exports.deleteConnectorErrorSchema = deleteConnectorErrorSchema;
27488
+ exports.deleteConnectorPathConnectorSchema = deleteConnectorPathConnectorSchema;
27489
+ exports.deleteConnectorProjectConnectionErrorSchema = deleteConnectorProjectConnectionErrorSchema;
27490
+ exports.deleteConnectorProjectConnectionPathConnectorSchema = deleteConnectorProjectConnectionPathConnectorSchema;
27491
+ exports.deleteConnectorProjectConnectionPathProjectIdSchema = deleteConnectorProjectConnectionPathProjectIdSchema;
27492
+ exports.deleteConnectorProjectConnectionQuerySlugSchema = deleteConnectorProjectConnectionQuerySlugSchema;
27493
+ exports.deleteConnectorProjectConnectionQueryTeamIdSchema = deleteConnectorProjectConnectionQueryTeamIdSchema;
27494
+ exports.deleteConnectorProjectConnectionResponseSchema = deleteConnectorProjectConnectionResponseSchema;
27495
+ exports.deleteConnectorProjectConnectionStatus204Schema = deleteConnectorProjectConnectionStatus204Schema;
27496
+ exports.deleteConnectorProjectConnectionStatus400Schema = deleteConnectorProjectConnectionStatus400Schema;
27497
+ exports.deleteConnectorProjectConnectionStatus401Schema = deleteConnectorProjectConnectionStatus401Schema;
27498
+ exports.deleteConnectorProjectConnectionStatus403Schema = deleteConnectorProjectConnectionStatus403Schema;
27499
+ exports.deleteConnectorProjectConnectionStatus404Schema = deleteConnectorProjectConnectionStatus404Schema;
27500
+ exports.deleteConnectorProjectConnectionStatus410Schema = deleteConnectorProjectConnectionStatus410Schema;
27501
+ exports.deleteConnectorQuerySlugSchema = deleteConnectorQuerySlugSchema;
27502
+ exports.deleteConnectorQueryTeamIdSchema = deleteConnectorQueryTeamIdSchema;
27503
+ exports.deleteConnectorResponseSchema = deleteConnectorResponseSchema;
27504
+ exports.deleteConnectorStatus204Schema = deleteConnectorStatus204Schema;
27505
+ exports.deleteConnectorStatus400Schema = deleteConnectorStatus400Schema;
27506
+ exports.deleteConnectorStatus401Schema = deleteConnectorStatus401Schema;
27507
+ exports.deleteConnectorStatus403Schema = deleteConnectorStatus403Schema;
27508
+ exports.deleteConnectorStatus404Schema = deleteConnectorStatus404Schema;
27509
+ exports.deleteConnectorStatus409Schema = deleteConnectorStatus409Schema;
27510
+ exports.deleteConnectorStatus410Schema = deleteConnectorStatus410Schema;
27511
+ exports.deleteConnectorStatus422Schema = deleteConnectorStatus422Schema;
27512
+ exports.deleteConnectorStatus502Schema = deleteConnectorStatus502Schema;
26149
27513
  exports.deleteDeploymentErrorSchema = deleteDeploymentErrorSchema;
26150
27514
  exports.deleteDeploymentPathIdSchema = deleteDeploymentPathIdSchema;
26151
27515
  exports.deleteDeploymentQuerySlugSchema = deleteDeploymentQuerySlugSchema;
@@ -26346,6 +27710,19 @@ exports.deleteNetworkStatus402Schema = deleteNetworkStatus402Schema;
26346
27710
  exports.deleteNetworkStatus403Schema = deleteNetworkStatus403Schema;
26347
27711
  exports.deleteNetworkStatus409Schema = deleteNetworkStatus409Schema;
26348
27712
  exports.deleteNetworkStatus410Schema = deleteNetworkStatus410Schema;
27713
+ exports.deletePrivateLinkEndpointErrorSchema = deletePrivateLinkEndpointErrorSchema;
27714
+ exports.deletePrivateLinkEndpointPathEndpointIdSchema = deletePrivateLinkEndpointPathEndpointIdSchema;
27715
+ exports.deletePrivateLinkEndpointQueryProjectIdSchema = deletePrivateLinkEndpointQueryProjectIdSchema;
27716
+ exports.deletePrivateLinkEndpointQuerySlugSchema = deletePrivateLinkEndpointQuerySlugSchema;
27717
+ exports.deletePrivateLinkEndpointQueryTeamIdSchema = deletePrivateLinkEndpointQueryTeamIdSchema;
27718
+ exports.deletePrivateLinkEndpointResponseSchema = deletePrivateLinkEndpointResponseSchema;
27719
+ exports.deletePrivateLinkEndpointStatus204Schema = deletePrivateLinkEndpointStatus204Schema;
27720
+ exports.deletePrivateLinkEndpointStatus400Schema = deletePrivateLinkEndpointStatus400Schema;
27721
+ exports.deletePrivateLinkEndpointStatus401Schema = deletePrivateLinkEndpointStatus401Schema;
27722
+ exports.deletePrivateLinkEndpointStatus403Schema = deletePrivateLinkEndpointStatus403Schema;
27723
+ exports.deletePrivateLinkEndpointStatus404Schema = deletePrivateLinkEndpointStatus404Schema;
27724
+ exports.deletePrivateLinkEndpointStatus409Schema = deletePrivateLinkEndpointStatus409Schema;
27725
+ exports.deletePrivateLinkEndpointStatus410Schema = deletePrivateLinkEndpointStatus410Schema;
26349
27726
  exports.deleteProjectCheckErrorSchema = deleteProjectCheckErrorSchema;
26350
27727
  exports.deleteProjectCheckPathCheckIdSchema = deleteProjectCheckPathCheckIdSchema;
26351
27728
  exports.deleteProjectCheckPathProjectIdOrNameSchema = deleteProjectCheckPathProjectIdOrNameSchema;
@@ -26698,7 +28075,22 @@ exports.getActiveAttackStatusStatus401Schema = getActiveAttackStatusStatus401Sch
26698
28075
  exports.getActiveAttackStatusStatus403Schema = getActiveAttackStatusStatus403Schema;
26699
28076
  exports.getActiveAttackStatusStatus404Schema = getActiveAttackStatusStatus404Schema;
26700
28077
  exports.getActiveAttackStatusStatus410Schema = getActiveAttackStatusStatus410Schema;
28078
+ exports.getAiGatewayVirtualModelConfigBySlugErrorSchema = getAiGatewayVirtualModelConfigBySlugErrorSchema;
28079
+ exports.getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = getAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
28080
+ exports.getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema = getAiGatewayVirtualModelConfigBySlugQueryOwnerIdSchema;
28081
+ exports.getAiGatewayVirtualModelConfigBySlugQuerySlugSchema = getAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
28082
+ exports.getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = getAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
28083
+ exports.getAiGatewayVirtualModelConfigBySlugResponseSchema = getAiGatewayVirtualModelConfigBySlugResponseSchema;
28084
+ exports.getAiGatewayVirtualModelConfigBySlugStatus200Schema = getAiGatewayVirtualModelConfigBySlugStatus200Schema;
28085
+ exports.getAiGatewayVirtualModelConfigBySlugStatus400Schema = getAiGatewayVirtualModelConfigBySlugStatus400Schema;
28086
+ exports.getAiGatewayVirtualModelConfigBySlugStatus401Schema = getAiGatewayVirtualModelConfigBySlugStatus401Schema;
28087
+ exports.getAiGatewayVirtualModelConfigBySlugStatus403Schema = getAiGatewayVirtualModelConfigBySlugStatus403Schema;
28088
+ exports.getAiGatewayVirtualModelConfigBySlugStatus404Schema = getAiGatewayVirtualModelConfigBySlugStatus404Schema;
28089
+ exports.getAiGatewayVirtualModelConfigBySlugStatus410Schema = getAiGatewayVirtualModelConfigBySlugStatus410Schema;
28090
+ exports.getAiGatewayVirtualModelConfigBySlugStatus500Schema = getAiGatewayVirtualModelConfigBySlugStatus500Schema;
26701
28091
  exports.getAiGatewayVirtualModelConfigErrorSchema = getAiGatewayVirtualModelConfigErrorSchema;
28092
+ exports.getAiGatewayVirtualModelConfigQueryCursorSchema = getAiGatewayVirtualModelConfigQueryCursorSchema;
28093
+ exports.getAiGatewayVirtualModelConfigQueryLimitSchema = getAiGatewayVirtualModelConfigQueryLimitSchema;
26702
28094
  exports.getAiGatewayVirtualModelConfigQueryOwnerIdSchema = getAiGatewayVirtualModelConfigQueryOwnerIdSchema;
26703
28095
  exports.getAiGatewayVirtualModelConfigQuerySlugSchema = getAiGatewayVirtualModelConfigQuerySlugSchema;
26704
28096
  exports.getAiGatewayVirtualModelConfigQueryTeamIdSchema = getAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -26857,6 +28249,7 @@ exports.getBypassIpResponseSchema = getBypassIpResponseSchema;
26857
28249
  exports.getBypassIpStatus200Schema = getBypassIpStatus200Schema;
26858
28250
  exports.getBypassIpStatus400Schema = getBypassIpStatus400Schema;
26859
28251
  exports.getBypassIpStatus401Schema = getBypassIpStatus401Schema;
28252
+ exports.getBypassIpStatus402Schema = getBypassIpStatus402Schema;
26860
28253
  exports.getBypassIpStatus403Schema = getBypassIpStatus403Schema;
26861
28254
  exports.getBypassIpStatus404Schema = getBypassIpStatus404Schema;
26862
28255
  exports.getBypassIpStatus410Schema = getBypassIpStatus410Schema;
@@ -26939,6 +28332,30 @@ exports.getConfigurationsStatus400Schema = getConfigurationsStatus400Schema;
26939
28332
  exports.getConfigurationsStatus401Schema = getConfigurationsStatus401Schema;
26940
28333
  exports.getConfigurationsStatus403Schema = getConfigurationsStatus403Schema;
26941
28334
  exports.getConfigurationsStatus410Schema = getConfigurationsStatus410Schema;
28335
+ exports.getConnectorErrorSchema = getConnectorErrorSchema;
28336
+ exports.getConnectorPathConnectorSchema = getConnectorPathConnectorSchema;
28337
+ exports.getConnectorProjectConnectionErrorSchema = getConnectorProjectConnectionErrorSchema;
28338
+ exports.getConnectorProjectConnectionPathConnectorSchema = getConnectorProjectConnectionPathConnectorSchema;
28339
+ exports.getConnectorProjectConnectionPathProjectIdSchema = getConnectorProjectConnectionPathProjectIdSchema;
28340
+ exports.getConnectorProjectConnectionQuerySlugSchema = getConnectorProjectConnectionQuerySlugSchema;
28341
+ exports.getConnectorProjectConnectionQueryTeamIdSchema = getConnectorProjectConnectionQueryTeamIdSchema;
28342
+ exports.getConnectorProjectConnectionResponseSchema = getConnectorProjectConnectionResponseSchema;
28343
+ exports.getConnectorProjectConnectionStatus200Schema = getConnectorProjectConnectionStatus200Schema;
28344
+ exports.getConnectorProjectConnectionStatus400Schema = getConnectorProjectConnectionStatus400Schema;
28345
+ exports.getConnectorProjectConnectionStatus401Schema = getConnectorProjectConnectionStatus401Schema;
28346
+ exports.getConnectorProjectConnectionStatus403Schema = getConnectorProjectConnectionStatus403Schema;
28347
+ exports.getConnectorProjectConnectionStatus404Schema = getConnectorProjectConnectionStatus404Schema;
28348
+ exports.getConnectorProjectConnectionStatus410Schema = getConnectorProjectConnectionStatus410Schema;
28349
+ exports.getConnectorQuerySlugSchema = getConnectorQuerySlugSchema;
28350
+ exports.getConnectorQueryTeamIdSchema = getConnectorQueryTeamIdSchema;
28351
+ exports.getConnectorResponseSchema = getConnectorResponseSchema;
28352
+ exports.getConnectorStatus200Schema = getConnectorStatus200Schema;
28353
+ exports.getConnectorStatus400Schema = getConnectorStatus400Schema;
28354
+ exports.getConnectorStatus401Schema = getConnectorStatus401Schema;
28355
+ exports.getConnectorStatus403Schema = getConnectorStatus403Schema;
28356
+ exports.getConnectorStatus404Schema = getConnectorStatus404Schema;
28357
+ exports.getConnectorStatus410Schema = getConnectorStatus410Schema;
28358
+ exports.getConnectorStatus422Schema = getConnectorStatus422Schema;
26942
28359
  exports.getConnectorTokenErrorSchema = getConnectorTokenErrorSchema;
26943
28360
  exports.getConnectorTokenPathConnectorSchema = getConnectorTokenPathConnectorSchema;
26944
28361
  exports.getConnectorTokenResponseSchema = getConnectorTokenResponseSchema;
@@ -28091,7 +29508,6 @@ exports.importResourceStatus404Schema = importResourceStatus404Schema;
28091
29508
  exports.importResourceStatus409Schema = importResourceStatus409Schema;
28092
29509
  exports.importResourceStatus410Schema = importResourceStatus410Schema;
28093
29510
  exports.importResourceStatus422Schema = importResourceStatus422Schema;
28094
- exports.importResourceStatus429Schema = importResourceStatus429Schema;
28095
29511
  exports.internalServerErrorSchema = internalServerErrorSchema;
28096
29512
  exports.invalidAdditionalContactInfoSchema = invalidAdditionalContactInfoSchema;
28097
29513
  exports.invalidateBySrcImagesErrorSchema = invalidateBySrcImagesErrorSchema;
@@ -28283,6 +29699,37 @@ exports.listCheckRunsStatus401Schema = listCheckRunsStatus401Schema;
28283
29699
  exports.listCheckRunsStatus403Schema = listCheckRunsStatus403Schema;
28284
29700
  exports.listCheckRunsStatus410Schema = listCheckRunsStatus410Schema;
28285
29701
  exports.listCheckRunsStatus500Schema = listCheckRunsStatus500Schema;
29702
+ exports.listConnectorProjectConnectionsErrorSchema = listConnectorProjectConnectionsErrorSchema;
29703
+ exports.listConnectorProjectConnectionsPathConnectorSchema = listConnectorProjectConnectionsPathConnectorSchema;
29704
+ exports.listConnectorProjectConnectionsQueryCursorSchema = listConnectorProjectConnectionsQueryCursorSchema;
29705
+ exports.listConnectorProjectConnectionsQueryLimitSchema = listConnectorProjectConnectionsQueryLimitSchema;
29706
+ exports.listConnectorProjectConnectionsQuerySlugSchema = listConnectorProjectConnectionsQuerySlugSchema;
29707
+ exports.listConnectorProjectConnectionsQueryTeamIdSchema = listConnectorProjectConnectionsQueryTeamIdSchema;
29708
+ exports.listConnectorProjectConnectionsResponseSchema = listConnectorProjectConnectionsResponseSchema;
29709
+ exports.listConnectorProjectConnectionsStatus200Schema = listConnectorProjectConnectionsStatus200Schema;
29710
+ exports.listConnectorProjectConnectionsStatus400Schema = listConnectorProjectConnectionsStatus400Schema;
29711
+ exports.listConnectorProjectConnectionsStatus401Schema = listConnectorProjectConnectionsStatus401Schema;
29712
+ exports.listConnectorProjectConnectionsStatus403Schema = listConnectorProjectConnectionsStatus403Schema;
29713
+ exports.listConnectorProjectConnectionsStatus404Schema = listConnectorProjectConnectionsStatus404Schema;
29714
+ exports.listConnectorProjectConnectionsStatus410Schema = listConnectorProjectConnectionsStatus410Schema;
29715
+ exports.listConnectorProjectConnectionsStatus422Schema = listConnectorProjectConnectionsStatus422Schema;
29716
+ exports.listConnectorsErrorSchema = listConnectorsErrorSchema;
29717
+ exports.listConnectorsQueryCursorSchema = listConnectorsQueryCursorSchema;
29718
+ exports.listConnectorsQueryLimitSchema = listConnectorsQueryLimitSchema;
29719
+ exports.listConnectorsQueryProjectIdSchema = listConnectorsQueryProjectIdSchema;
29720
+ exports.listConnectorsQuerySearchSchema = listConnectorsQuerySearchSchema;
29721
+ exports.listConnectorsQueryServiceSchema = listConnectorsQueryServiceSchema;
29722
+ exports.listConnectorsQuerySlugSchema = listConnectorsQuerySlugSchema;
29723
+ exports.listConnectorsQuerySortSchema = listConnectorsQuerySortSchema;
29724
+ exports.listConnectorsQueryTeamIdSchema = listConnectorsQueryTeamIdSchema;
29725
+ exports.listConnectorsQueryTypeSchema = listConnectorsQueryTypeSchema;
29726
+ exports.listConnectorsResponseSchema = listConnectorsResponseSchema;
29727
+ exports.listConnectorsStatus200Schema = listConnectorsStatus200Schema;
29728
+ exports.listConnectorsStatus400Schema = listConnectorsStatus400Schema;
29729
+ exports.listConnectorsStatus401Schema = listConnectorsStatus401Schema;
29730
+ exports.listConnectorsStatus403Schema = listConnectorsStatus403Schema;
29731
+ exports.listConnectorsStatus410Schema = listConnectorsStatus410Schema;
29732
+ exports.listConnectorsStatus422Schema = listConnectorsStatus422Schema;
28286
29733
  exports.listContractCommitmentsErrorSchema = listContractCommitmentsErrorSchema;
28287
29734
  exports.listContractCommitmentsQuerySlugSchema = listContractCommitmentsQuerySlugSchema;
28288
29735
  exports.listContractCommitmentsQueryTeamIdSchema = listContractCommitmentsQueryTeamIdSchema;
@@ -28433,6 +29880,25 @@ exports.listKmsIssuersStatus400Schema = listKmsIssuersStatus400Schema;
28433
29880
  exports.listKmsIssuersStatus401Schema = listKmsIssuersStatus401Schema;
28434
29881
  exports.listKmsIssuersStatus403Schema = listKmsIssuersStatus403Schema;
28435
29882
  exports.listKmsIssuersStatus410Schema = listKmsIssuersStatus410Schema;
29883
+ exports.listNamedSandboxesErrorSchema = listNamedSandboxesErrorSchema;
29884
+ exports.listNamedSandboxesQueryCursorSchema = listNamedSandboxesQueryCursorSchema;
29885
+ exports.listNamedSandboxesQueryLimitSchema = listNamedSandboxesQueryLimitSchema;
29886
+ exports.listNamedSandboxesQueryNamePrefixSchema = listNamedSandboxesQueryNamePrefixSchema;
29887
+ exports.listNamedSandboxesQueryProjectSchema = listNamedSandboxesQueryProjectSchema;
29888
+ exports.listNamedSandboxesQuerySlugSchema = listNamedSandboxesQuerySlugSchema;
29889
+ exports.listNamedSandboxesQuerySortBySchema = listNamedSandboxesQuerySortBySchema;
29890
+ exports.listNamedSandboxesQuerySortOrderSchema = listNamedSandboxesQuerySortOrderSchema;
29891
+ exports.listNamedSandboxesQueryStatusSchema = listNamedSandboxesQueryStatusSchema;
29892
+ exports.listNamedSandboxesQueryTagsSchema = listNamedSandboxesQueryTagsSchema;
29893
+ exports.listNamedSandboxesQueryTeamIdSchema = listNamedSandboxesQueryTeamIdSchema;
29894
+ exports.listNamedSandboxesResponseSchema = listNamedSandboxesResponseSchema;
29895
+ exports.listNamedSandboxesStatus200Schema = listNamedSandboxesStatus200Schema;
29896
+ exports.listNamedSandboxesStatus400Schema = listNamedSandboxesStatus400Schema;
29897
+ exports.listNamedSandboxesStatus401Schema = listNamedSandboxesStatus401Schema;
29898
+ exports.listNamedSandboxesStatus403Schema = listNamedSandboxesStatus403Schema;
29899
+ exports.listNamedSandboxesStatus404Schema = listNamedSandboxesStatus404Schema;
29900
+ exports.listNamedSandboxesStatus410Schema = listNamedSandboxesStatus410Schema;
29901
+ exports.listNamedSandboxesStatus429Schema = listNamedSandboxesStatus429Schema;
28436
29902
  exports.listNetworksErrorSchema = listNetworksErrorSchema;
28437
29903
  exports.listNetworksQueryIncludeHostedZonesSchema = listNetworksQueryIncludeHostedZonesSchema;
28438
29904
  exports.listNetworksQueryIncludePeeringConnectionsSchema = listNetworksQueryIncludePeeringConnectionsSchema;
@@ -28446,6 +29912,17 @@ exports.listNetworksStatus400Schema = listNetworksStatus400Schema;
28446
29912
  exports.listNetworksStatus401Schema = listNetworksStatus401Schema;
28447
29913
  exports.listNetworksStatus403Schema = listNetworksStatus403Schema;
28448
29914
  exports.listNetworksStatus410Schema = listNetworksStatus410Schema;
29915
+ exports.listPrivateLinkEndpointsErrorSchema = listPrivateLinkEndpointsErrorSchema;
29916
+ exports.listPrivateLinkEndpointsQueryProjectIdSchema = listPrivateLinkEndpointsQueryProjectIdSchema;
29917
+ exports.listPrivateLinkEndpointsQuerySlugSchema = listPrivateLinkEndpointsQuerySlugSchema;
29918
+ exports.listPrivateLinkEndpointsQueryTeamIdSchema = listPrivateLinkEndpointsQueryTeamIdSchema;
29919
+ exports.listPrivateLinkEndpointsResponseSchema = listPrivateLinkEndpointsResponseSchema;
29920
+ exports.listPrivateLinkEndpointsStatus200Schema = listPrivateLinkEndpointsStatus200Schema;
29921
+ exports.listPrivateLinkEndpointsStatus400Schema = listPrivateLinkEndpointsStatus400Schema;
29922
+ exports.listPrivateLinkEndpointsStatus401Schema = listPrivateLinkEndpointsStatus401Schema;
29923
+ exports.listPrivateLinkEndpointsStatus403Schema = listPrivateLinkEndpointsStatus403Schema;
29924
+ exports.listPrivateLinkEndpointsStatus404Schema = listPrivateLinkEndpointsStatus404Schema;
29925
+ exports.listPrivateLinkEndpointsStatus410Schema = listPrivateLinkEndpointsStatus410Schema;
28449
29926
  exports.listProjectChecksErrorSchema = listProjectChecksErrorSchema;
28450
29927
  exports.listProjectChecksPathProjectIdOrNameSchema = listProjectChecksPathProjectIdOrNameSchema;
28451
29928
  exports.listProjectChecksQueryBlocksSchema = listProjectChecksQueryBlocksSchema;
@@ -28458,6 +29935,19 @@ exports.listProjectChecksStatus401Schema = listProjectChecksStatus401Schema;
28458
29935
  exports.listProjectChecksStatus403Schema = listProjectChecksStatus403Schema;
28459
29936
  exports.listProjectChecksStatus410Schema = listProjectChecksStatus410Schema;
28460
29937
  exports.listProjectChecksStatus500Schema = listProjectChecksStatus500Schema;
29938
+ exports.listProjectConnectorConnectionsErrorSchema = listProjectConnectorConnectionsErrorSchema;
29939
+ exports.listProjectConnectorConnectionsPathProjectIdSchema = listProjectConnectorConnectionsPathProjectIdSchema;
29940
+ exports.listProjectConnectorConnectionsQueryCursorSchema = listProjectConnectorConnectionsQueryCursorSchema;
29941
+ exports.listProjectConnectorConnectionsQueryLimitSchema = listProjectConnectorConnectionsQueryLimitSchema;
29942
+ exports.listProjectConnectorConnectionsQuerySlugSchema = listProjectConnectorConnectionsQuerySlugSchema;
29943
+ exports.listProjectConnectorConnectionsQueryTeamIdSchema = listProjectConnectorConnectionsQueryTeamIdSchema;
29944
+ exports.listProjectConnectorConnectionsResponseSchema = listProjectConnectorConnectionsResponseSchema;
29945
+ exports.listProjectConnectorConnectionsStatus200Schema = listProjectConnectorConnectionsStatus200Schema;
29946
+ exports.listProjectConnectorConnectionsStatus400Schema = listProjectConnectorConnectionsStatus400Schema;
29947
+ exports.listProjectConnectorConnectionsStatus401Schema = listProjectConnectorConnectionsStatus401Schema;
29948
+ exports.listProjectConnectorConnectionsStatus403Schema = listProjectConnectorConnectionsStatus403Schema;
29949
+ exports.listProjectConnectorConnectionsStatus404Schema = listProjectConnectorConnectionsStatus404Schema;
29950
+ exports.listProjectConnectorConnectionsStatus410Schema = listProjectConnectorConnectionsStatus410Schema;
28461
29951
  exports.listPromoteAliasesErrorSchema = listPromoteAliasesErrorSchema;
28462
29952
  exports.listPromoteAliasesPathProjectIdSchema = listPromoteAliasesPathProjectIdSchema;
28463
29953
  exports.listPromoteAliasesQueryFailedOnlySchema = listPromoteAliasesQueryFailedOnlySchema;
@@ -28531,25 +30021,6 @@ exports.listRepositoryTagsStatus401Schema = listRepositoryTagsStatus401Schema;
28531
30021
  exports.listRepositoryTagsStatus403Schema = listRepositoryTagsStatus403Schema;
28532
30022
  exports.listRepositoryTagsStatus404Schema = listRepositoryTagsStatus404Schema;
28533
30023
  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
30024
  exports.listSessionCommandsErrorSchema = listSessionCommandsErrorSchema;
28554
30025
  exports.listSessionCommandsPathSessionIdSchema = listSessionCommandsPathSessionIdSchema;
28555
30026
  exports.listSessionCommandsQuerySlugSchema = listSessionCommandsQuerySlugSchema;
@@ -28780,6 +30251,7 @@ exports.postTeamDsyncRolesStatus400Schema = postTeamDsyncRolesStatus400Schema;
28780
30251
  exports.postTeamDsyncRolesStatus401Schema = postTeamDsyncRolesStatus401Schema;
28781
30252
  exports.postTeamDsyncRolesStatus403Schema = postTeamDsyncRolesStatus403Schema;
28782
30253
  exports.postTeamDsyncRolesStatus410Schema = postTeamDsyncRolesStatus410Schema;
30254
+ exports.privateLinkEndpointSchema = privateLinkEndpointSchema;
28783
30255
  exports.propertyKeySchema = propertyKeySchema;
28784
30256
  exports.putFirewallConfigErrorSchema = putFirewallConfigErrorSchema;
28785
30257
  exports.putFirewallConfigQueryProjectIdSchema = putFirewallConfigQueryProjectIdSchema;
@@ -28826,6 +30298,18 @@ exports.readNetworkStatus400Schema = readNetworkStatus400Schema;
28826
30298
  exports.readNetworkStatus401Schema = readNetworkStatus401Schema;
28827
30299
  exports.readNetworkStatus403Schema = readNetworkStatus403Schema;
28828
30300
  exports.readNetworkStatus410Schema = readNetworkStatus410Schema;
30301
+ exports.readPrivateLinkEndpointErrorSchema = readPrivateLinkEndpointErrorSchema;
30302
+ exports.readPrivateLinkEndpointPathEndpointIdSchema = readPrivateLinkEndpointPathEndpointIdSchema;
30303
+ exports.readPrivateLinkEndpointQueryProjectIdSchema = readPrivateLinkEndpointQueryProjectIdSchema;
30304
+ exports.readPrivateLinkEndpointQuerySlugSchema = readPrivateLinkEndpointQuerySlugSchema;
30305
+ exports.readPrivateLinkEndpointQueryTeamIdSchema = readPrivateLinkEndpointQueryTeamIdSchema;
30306
+ exports.readPrivateLinkEndpointResponseSchema = readPrivateLinkEndpointResponseSchema;
30307
+ exports.readPrivateLinkEndpointStatus200Schema = readPrivateLinkEndpointStatus200Schema;
30308
+ exports.readPrivateLinkEndpointStatus400Schema = readPrivateLinkEndpointStatus400Schema;
30309
+ exports.readPrivateLinkEndpointStatus401Schema = readPrivateLinkEndpointStatus401Schema;
30310
+ exports.readPrivateLinkEndpointStatus403Schema = readPrivateLinkEndpointStatus403Schema;
30311
+ exports.readPrivateLinkEndpointStatus404Schema = readPrivateLinkEndpointStatus404Schema;
30312
+ exports.readPrivateLinkEndpointStatus410Schema = readPrivateLinkEndpointStatus410Schema;
28829
30313
  exports.readSessionFileErrorSchema = readSessionFileErrorSchema;
28830
30314
  exports.readSessionFilePathSessionIdSchema = readSessionFilePathSessionIdSchema;
28831
30315
  exports.readSessionFileQuerySlugSchema = readSessionFileQuerySlugSchema;
@@ -28861,6 +30345,7 @@ exports.removeBypassIpResponseSchema = removeBypassIpResponseSchema;
28861
30345
  exports.removeBypassIpStatus200Schema = removeBypassIpStatus200Schema;
28862
30346
  exports.removeBypassIpStatus400Schema = removeBypassIpStatus400Schema;
28863
30347
  exports.removeBypassIpStatus401Schema = removeBypassIpStatus401Schema;
30348
+ exports.removeBypassIpStatus402Schema = removeBypassIpStatus402Schema;
28864
30349
  exports.removeBypassIpStatus403Schema = removeBypassIpStatus403Schema;
28865
30350
  exports.removeBypassIpStatus404Schema = removeBypassIpStatus404Schema;
28866
30351
  exports.removeBypassIpStatus410Schema = removeBypassIpStatus410Schema;
@@ -29001,6 +30486,18 @@ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus
29001
30486
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
29002
30487
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
29003
30488
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema;
30489
+ exports.replaceConnectorTriggerDestinationsErrorSchema = replaceConnectorTriggerDestinationsErrorSchema;
30490
+ exports.replaceConnectorTriggerDestinationsPathConnectorSchema = replaceConnectorTriggerDestinationsPathConnectorSchema;
30491
+ exports.replaceConnectorTriggerDestinationsQuerySlugSchema = replaceConnectorTriggerDestinationsQuerySlugSchema;
30492
+ exports.replaceConnectorTriggerDestinationsQueryTeamIdSchema = replaceConnectorTriggerDestinationsQueryTeamIdSchema;
30493
+ exports.replaceConnectorTriggerDestinationsResponseSchema = replaceConnectorTriggerDestinationsResponseSchema;
30494
+ exports.replaceConnectorTriggerDestinationsStatus200Schema = replaceConnectorTriggerDestinationsStatus200Schema;
30495
+ exports.replaceConnectorTriggerDestinationsStatus400Schema = replaceConnectorTriggerDestinationsStatus400Schema;
30496
+ exports.replaceConnectorTriggerDestinationsStatus401Schema = replaceConnectorTriggerDestinationsStatus401Schema;
30497
+ exports.replaceConnectorTriggerDestinationsStatus403Schema = replaceConnectorTriggerDestinationsStatus403Schema;
30498
+ exports.replaceConnectorTriggerDestinationsStatus404Schema = replaceConnectorTriggerDestinationsStatus404Schema;
30499
+ exports.replaceConnectorTriggerDestinationsStatus410Schema = replaceConnectorTriggerDestinationsStatus410Schema;
30500
+ exports.replaceConnectorTriggerDestinationsStatus422Schema = replaceConnectorTriggerDestinationsStatus422Schema;
29004
30501
  exports.replaceDomainsByDomainRecordsErrorSchema = replaceDomainsByDomainRecordsErrorSchema;
29005
30502
  exports.replaceDomainsByDomainRecordsPathDomainSchema = replaceDomainsByDomainRecordsPathDomainSchema;
29006
30503
  exports.replaceDomainsByDomainRecordsResponseSchema = replaceDomainsByDomainRecordsResponseSchema;
@@ -29371,6 +30868,18 @@ exports.updateAiGatewayRuleStatus403Schema = updateAiGatewayRuleStatus403Schema;
29371
30868
  exports.updateAiGatewayRuleStatus404Schema = updateAiGatewayRuleStatus404Schema;
29372
30869
  exports.updateAiGatewayRuleStatus410Schema = updateAiGatewayRuleStatus410Schema;
29373
30870
  exports.updateAiGatewayRuleStatus500Schema = updateAiGatewayRuleStatus500Schema;
30871
+ exports.updateAiGatewayVirtualModelConfigBySlugErrorSchema = updateAiGatewayVirtualModelConfigBySlugErrorSchema;
30872
+ exports.updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema = updateAiGatewayVirtualModelConfigBySlugPathVmcSlugSchema;
30873
+ exports.updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema = updateAiGatewayVirtualModelConfigBySlugQuerySlugSchema;
30874
+ exports.updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema = updateAiGatewayVirtualModelConfigBySlugQueryTeamIdSchema;
30875
+ exports.updateAiGatewayVirtualModelConfigBySlugResponseSchema = updateAiGatewayVirtualModelConfigBySlugResponseSchema;
30876
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus200Schema = updateAiGatewayVirtualModelConfigBySlugStatus200Schema;
30877
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus400Schema = updateAiGatewayVirtualModelConfigBySlugStatus400Schema;
30878
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus401Schema = updateAiGatewayVirtualModelConfigBySlugStatus401Schema;
30879
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus403Schema = updateAiGatewayVirtualModelConfigBySlugStatus403Schema;
30880
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus404Schema = updateAiGatewayVirtualModelConfigBySlugStatus404Schema;
30881
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus410Schema = updateAiGatewayVirtualModelConfigBySlugStatus410Schema;
30882
+ exports.updateAiGatewayVirtualModelConfigBySlugStatus500Schema = updateAiGatewayVirtualModelConfigBySlugStatus500Schema;
29374
30883
  exports.updateAiGatewayVirtualModelConfigErrorSchema = updateAiGatewayVirtualModelConfigErrorSchema;
29375
30884
  exports.updateAiGatewayVirtualModelConfigQuerySlugSchema = updateAiGatewayVirtualModelConfigQuerySlugSchema;
29376
30885
  exports.updateAiGatewayVirtualModelConfigQueryTeamIdSchema = updateAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -29419,6 +30928,20 @@ exports.updateCheckStatus403Schema = updateCheckStatus403Schema;
29419
30928
  exports.updateCheckStatus404Schema = updateCheckStatus404Schema;
29420
30929
  exports.updateCheckStatus410Schema = updateCheckStatus410Schema;
29421
30930
  exports.updateCheckStatus413Schema = updateCheckStatus413Schema;
30931
+ exports.updateConnectorErrorSchema = updateConnectorErrorSchema;
30932
+ exports.updateConnectorPathConnectorSchema = updateConnectorPathConnectorSchema;
30933
+ exports.updateConnectorQuerySlugSchema = updateConnectorQuerySlugSchema;
30934
+ exports.updateConnectorQueryTeamIdSchema = updateConnectorQueryTeamIdSchema;
30935
+ exports.updateConnectorResponseSchema = updateConnectorResponseSchema;
30936
+ exports.updateConnectorStatus200Schema = updateConnectorStatus200Schema;
30937
+ exports.updateConnectorStatus400Schema = updateConnectorStatus400Schema;
30938
+ exports.updateConnectorStatus401Schema = updateConnectorStatus401Schema;
30939
+ exports.updateConnectorStatus403Schema = updateConnectorStatus403Schema;
30940
+ exports.updateConnectorStatus404Schema = updateConnectorStatus404Schema;
30941
+ exports.updateConnectorStatus409Schema = updateConnectorStatus409Schema;
30942
+ exports.updateConnectorStatus410Schema = updateConnectorStatus410Schema;
30943
+ exports.updateConnectorStatus422Schema = updateConnectorStatus422Schema;
30944
+ exports.updateConnectorStatus502Schema = updateConnectorStatus502Schema;
29422
30945
  exports.updateCustomEnvironmentErrorSchema = updateCustomEnvironmentErrorSchema;
29423
30946
  exports.updateCustomEnvironmentPathEnvironmentSlugOrIdSchema = updateCustomEnvironmentPathEnvironmentSlugOrIdSchema;
29424
30947
  exports.updateCustomEnvironmentPathIdOrNameSchema = updateCustomEnvironmentPathIdOrNameSchema;
@@ -29662,6 +31185,19 @@ exports.updateObservabilityConfigurationProjectStatus403Schema = updateObservabi
29662
31185
  exports.updateObservabilityConfigurationProjectStatus404Schema = updateObservabilityConfigurationProjectStatus404Schema;
29663
31186
  exports.updateObservabilityConfigurationProjectStatus410Schema = updateObservabilityConfigurationProjectStatus410Schema;
29664
31187
  exports.updateObservabilityConfigurationProjectStatus429Schema = updateObservabilityConfigurationProjectStatus429Schema;
31188
+ exports.updatePrivateLinkEndpointErrorSchema = updatePrivateLinkEndpointErrorSchema;
31189
+ exports.updatePrivateLinkEndpointPathEndpointIdSchema = updatePrivateLinkEndpointPathEndpointIdSchema;
31190
+ exports.updatePrivateLinkEndpointQueryProjectIdSchema = updatePrivateLinkEndpointQueryProjectIdSchema;
31191
+ exports.updatePrivateLinkEndpointQuerySlugSchema = updatePrivateLinkEndpointQuerySlugSchema;
31192
+ exports.updatePrivateLinkEndpointQueryTeamIdSchema = updatePrivateLinkEndpointQueryTeamIdSchema;
31193
+ exports.updatePrivateLinkEndpointResponseSchema = updatePrivateLinkEndpointResponseSchema;
31194
+ exports.updatePrivateLinkEndpointStatus200Schema = updatePrivateLinkEndpointStatus200Schema;
31195
+ exports.updatePrivateLinkEndpointStatus400Schema = updatePrivateLinkEndpointStatus400Schema;
31196
+ exports.updatePrivateLinkEndpointStatus401Schema = updatePrivateLinkEndpointStatus401Schema;
31197
+ exports.updatePrivateLinkEndpointStatus403Schema = updatePrivateLinkEndpointStatus403Schema;
31198
+ exports.updatePrivateLinkEndpointStatus404Schema = updatePrivateLinkEndpointStatus404Schema;
31199
+ exports.updatePrivateLinkEndpointStatus409Schema = updatePrivateLinkEndpointStatus409Schema;
31200
+ exports.updatePrivateLinkEndpointStatus410Schema = updatePrivateLinkEndpointStatus410Schema;
29665
31201
  exports.updateProjectCheckErrorSchema = updateProjectCheckErrorSchema;
29666
31202
  exports.updateProjectCheckPathCheckIdSchema = updateProjectCheckPathCheckIdSchema;
29667
31203
  exports.updateProjectCheckPathProjectIdOrNameSchema = updateProjectCheckPathProjectIdOrNameSchema;
@@ -29713,6 +31249,7 @@ exports.updateProjectStatus404Schema = updateProjectStatus404Schema;
29713
31249
  exports.updateProjectStatus409Schema = updateProjectStatus409Schema;
29714
31250
  exports.updateProjectStatus410Schema = updateProjectStatus410Schema;
29715
31251
  exports.updateProjectStatus428Schema = updateProjectStatus428Schema;
31252
+ exports.updateProjectStatus429Schema = updateProjectStatus429Schema;
29716
31253
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema;
29717
31254
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema;
29718
31255
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema;
@@ -29933,6 +31470,18 @@ exports.uploadProjectAvatarStatus403Schema = uploadProjectAvatarStatus403Schema;
29933
31470
  exports.uploadProjectAvatarStatus410Schema = uploadProjectAvatarStatus410Schema;
29934
31471
  exports.uploadProjectAvatarStatus413Schema = uploadProjectAvatarStatus413Schema;
29935
31472
  exports.uploadProjectAvatarStatus415Schema = uploadProjectAvatarStatus415Schema;
31473
+ exports.upsertConnectorProjectConnectionErrorSchema = upsertConnectorProjectConnectionErrorSchema;
31474
+ exports.upsertConnectorProjectConnectionPathConnectorSchema = upsertConnectorProjectConnectionPathConnectorSchema;
31475
+ exports.upsertConnectorProjectConnectionPathProjectIdSchema = upsertConnectorProjectConnectionPathProjectIdSchema;
31476
+ exports.upsertConnectorProjectConnectionQuerySlugSchema = upsertConnectorProjectConnectionQuerySlugSchema;
31477
+ exports.upsertConnectorProjectConnectionQueryTeamIdSchema = upsertConnectorProjectConnectionQueryTeamIdSchema;
31478
+ exports.upsertConnectorProjectConnectionResponseSchema = upsertConnectorProjectConnectionResponseSchema;
31479
+ exports.upsertConnectorProjectConnectionStatus200Schema = upsertConnectorProjectConnectionStatus200Schema;
31480
+ exports.upsertConnectorProjectConnectionStatus400Schema = upsertConnectorProjectConnectionStatus400Schema;
31481
+ exports.upsertConnectorProjectConnectionStatus401Schema = upsertConnectorProjectConnectionStatus401Schema;
31482
+ exports.upsertConnectorProjectConnectionStatus403Schema = upsertConnectorProjectConnectionStatus403Schema;
31483
+ exports.upsertConnectorProjectConnectionStatus404Schema = upsertConnectorProjectConnectionStatus404Schema;
31484
+ exports.upsertConnectorProjectConnectionStatus410Schema = upsertConnectorProjectConnectionStatus410Schema;
29936
31485
  exports.userEventSchema = userEventSchema;
29937
31486
  exports.vcrImageDetailSchema = vcrImageDetailSchema;
29938
31487
  exports.vcrImageLayerSchema = vcrImageLayerSchema;