vercel-api-js 1.14.2 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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",
@@ -1058,6 +1627,7 @@ const userEventSchema = z__namespace.object({
1058
1627
  "authorize-git-deployment",
1059
1628
  "auto-expose-system-envs",
1060
1629
  "avatar",
1630
+ "billing-settings-updated",
1061
1631
  "bulk-redirects-settings-updated",
1062
1632
  "bulk-redirects-version-promoted",
1063
1633
  "bulk-redirects-version-restored",
@@ -1218,6 +1788,7 @@ const userEventSchema = z__namespace.object({
1218
1788
  "flags-segment",
1219
1789
  "flags-settings",
1220
1790
  "flags-transferred",
1791
+ "flat-rate-cdn-auto-upgrade-consent",
1221
1792
  "git-integration-repo-push",
1222
1793
  "git_account_integration_link_added",
1223
1794
  "global-config-backup-restored",
@@ -1302,6 +1873,7 @@ const userEventSchema = z__namespace.object({
1302
1873
  "organization-team-add",
1303
1874
  "organization-team-create",
1304
1875
  "organization-team-delete",
1876
+ "organization-team-sso-update",
1305
1877
  "owner-blocked",
1306
1878
  "owner-soft-blocked",
1307
1879
  "owner-soft-unblocked",
@@ -1381,6 +1953,12 @@ const userEventSchema = z__namespace.object({
1381
1953
  "project-git-commit-comments-toggled",
1382
1954
  "project-git-commit-status-toggled",
1383
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",
1384
1962
  "project-git-fork-protection-updated",
1385
1963
  "project-git-lfs-toggled",
1386
1964
  "project-git-pr-comments-toggled",
@@ -1473,6 +2051,8 @@ const userEventSchema = z__namespace.object({
1473
2051
  "shared-env-variable-create",
1474
2052
  "shared-env-variable-delete",
1475
2053
  "shared-env-variable-read",
2054
+ "shared-env-variable-repo-link",
2055
+ "shared-env-variable-repo-unlink",
1476
2056
  "shared-env-variable-update",
1477
2057
  "show-ip-addresses",
1478
2058
  "signup",
@@ -1503,6 +2083,7 @@ const userEventSchema = z__namespace.object({
1503
2083
  "storage-update-project-connection",
1504
2084
  "storage-upgrade-project-connection-to-oidc",
1505
2085
  "storage-view-secret",
2086
+ "strict-connectors",
1506
2087
  "strict-deployment-protection-settings",
1507
2088
  "strict-password-protection-settings",
1508
2089
  "strict-shareable-links",
@@ -1661,7 +2242,9 @@ const userEventSchema = z__namespace.object({
1661
2242
  "workflow"
1662
2243
  ])).optional().describe('The categories that group this event with related event types. An event can belong to multiple categories (e.g. a firewall event is both Firewall and Security). The first entry is the "primary" category. Use the `/events/types` endpoint to discover the full list of categories.').meta({
1663
2244
  examples: [
1664
- {}
2245
+ [
2246
+ "deployment"
2247
+ ]
1665
2248
  ]
1666
2249
  }),
1667
2250
  createdAt: z__namespace.number().describe("Timestamp (in milliseconds) of when the event was generated.").meta({
@@ -1676,7 +2259,7 @@ const userEventSchema = z__namespace.object({
1676
2259
  username: z__namespace.string(),
1677
2260
  uid: z__namespace.string()
1678
2261
  }).optional().describe("Metadata for {@link userId}."),
1679
- principal: z__namespace.union([
2262
+ principal: z__namespace.discriminatedUnion("type", [
1680
2263
  z__namespace.object({
1681
2264
  type: z__namespace.enum([
1682
2265
  "user"
@@ -1709,7 +2292,7 @@ const userEventSchema = z__namespace.object({
1709
2292
  ])
1710
2293
  }).strict()
1711
2294
  ]).optional(),
1712
- via: z__namespace.array(z__namespace.union([
2295
+ via: z__namespace.array(z__namespace.discriminatedUnion("type", [
1713
2296
  z__namespace.object({
1714
2297
  type: z__namespace.enum([
1715
2298
  "user"
@@ -1749,6 +2332,9 @@ const userEventSchema = z__namespace.object({
1749
2332
  }),
1750
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."),
1751
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(),
1752
2338
  payload: z__namespace.union([
1753
2339
  z__namespace.object({}).strict(),
1754
2340
  z__namespace.object({
@@ -1797,6 +2383,11 @@ const userEventSchema = z__namespace.object({
1797
2383
  projectId: z__namespace.string().optional(),
1798
2384
  environment: z__namespace.array(z__namespace.string())
1799
2385
  }).strict(),
2386
+ z__namespace.object({
2387
+ projectId: z__namespace.string(),
2388
+ projectName: z__namespace.string(),
2389
+ policyId: z__namespace.string()
2390
+ }).strict(),
1800
2391
  z__namespace.object({
1801
2392
  provider: z__namespace.enum([
1802
2393
  "chatgpt",
@@ -1896,7 +2487,8 @@ const userEventSchema = z__namespace.object({
1896
2487
  "monthly",
1897
2488
  "none",
1898
2489
  "weekly"
1899
- ])
2490
+ ]),
2491
+ alertThresholds: z__namespace.array(z__namespace.number()).optional()
1900
2492
  }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
1901
2493
  zdrExemption: z__namespace.union([
1902
2494
  z__namespace.literal(false),
@@ -1925,7 +2517,8 @@ const userEventSchema = z__namespace.object({
1925
2517
  "monthly",
1926
2518
  "none",
1927
2519
  "weekly"
1928
- ])
2520
+ ]),
2521
+ alertThresholds: z__namespace.array(z__namespace.number()).optional()
1929
2522
  }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
1930
2523
  change: z__namespace.enum([
1931
2524
  "disable",
@@ -1971,7 +2564,8 @@ const userEventSchema = z__namespace.object({
1971
2564
  "monthly",
1972
2565
  "none",
1973
2566
  "weekly"
1974
- ])
2567
+ ]),
2568
+ alertThresholds: z__namespace.array(z__namespace.number()).optional()
1975
2569
  }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
1976
2570
  change: z__namespace.enum([
1977
2571
  "disable",
@@ -1997,7 +2591,8 @@ const userEventSchema = z__namespace.object({
1997
2591
  "monthly",
1998
2592
  "none",
1999
2593
  "weekly"
2000
- ])
2594
+ ]),
2595
+ alertThresholds: z__namespace.array(z__namespace.number()).optional()
2001
2596
  }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
2002
2597
  change: z__namespace.enum([
2003
2598
  "disable",
@@ -2014,8 +2609,14 @@ const userEventSchema = z__namespace.object({
2014
2609
  })
2015
2610
  }).strict(),
2016
2611
  z__namespace.object({
2017
- amount: z__namespace.string(),
2018
- 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())
2019
2620
  }).strict(),
2020
2621
  z__namespace.object({
2021
2622
  enabled: z__namespace.union([
@@ -2023,6 +2624,10 @@ const userEventSchema = z__namespace.object({
2023
2624
  z__namespace.literal(true)
2024
2625
  ])
2025
2626
  }).strict(),
2627
+ z__namespace.object({
2628
+ amount: z__namespace.string(),
2629
+ purchaseIntentId: z__namespace.string()
2630
+ }).strict(),
2026
2631
  z__namespace.object({
2027
2632
  added: z__namespace.array(z__namespace.string()),
2028
2633
  removed: z__namespace.array(z__namespace.string())
@@ -2300,6 +2905,7 @@ const userEventSchema = z__namespace.object({
2300
2905
  "read-write:ai-gateway-rules",
2301
2906
  "read-write:ai-gateway-virtual-model-configs",
2302
2907
  "read-write:alerts",
2908
+ "read-write:automations",
2303
2909
  "read-write:billing",
2304
2910
  "read-write:blob",
2305
2911
  "read-write:connect",
@@ -2330,7 +2936,9 @@ const userEventSchema = z__namespace.object({
2330
2936
  "read:ai-gateway-rules",
2331
2937
  "read:ai-gateway-virtual-model-configs",
2332
2938
  "read:alerts",
2939
+ "read:automations",
2333
2940
  "read:billing",
2941
+ "read:connect",
2334
2942
  "read:deployment",
2335
2943
  "read:domain",
2336
2944
  "read:event",
@@ -2350,6 +2958,7 @@ const userEventSchema = z__namespace.object({
2350
2958
  "read:user",
2351
2959
  "read:vcr",
2352
2960
  "read:web-analytics",
2961
+ "read:webhooks",
2353
2962
  "use:ai-gateway"
2354
2963
  ])).optional()
2355
2964
  }).strict(),
@@ -2375,6 +2984,7 @@ const userEventSchema = z__namespace.object({
2375
2984
  "read-write:ai-gateway-rules",
2376
2985
  "read-write:ai-gateway-virtual-model-configs",
2377
2986
  "read-write:alerts",
2987
+ "read-write:automations",
2378
2988
  "read-write:billing",
2379
2989
  "read-write:blob",
2380
2990
  "read-write:connect",
@@ -2405,7 +3015,9 @@ const userEventSchema = z__namespace.object({
2405
3015
  "read:ai-gateway-rules",
2406
3016
  "read:ai-gateway-virtual-model-configs",
2407
3017
  "read:alerts",
3018
+ "read:automations",
2408
3019
  "read:billing",
3020
+ "read:connect",
2409
3021
  "read:deployment",
2410
3022
  "read:domain",
2411
3023
  "read:event",
@@ -2425,6 +3037,7 @@ const userEventSchema = z__namespace.object({
2425
3037
  "read:user",
2426
3038
  "read:vcr",
2427
3039
  "read:web-analytics",
3040
+ "read:webhooks",
2428
3041
  "use:ai-gateway"
2429
3042
  ])).optional()
2430
3043
  }).strict(),
@@ -2455,6 +3068,7 @@ const userEventSchema = z__namespace.object({
2455
3068
  "read-write:ai-gateway-rules",
2456
3069
  "read-write:ai-gateway-virtual-model-configs",
2457
3070
  "read-write:alerts",
3071
+ "read-write:automations",
2458
3072
  "read-write:billing",
2459
3073
  "read-write:blob",
2460
3074
  "read-write:connect",
@@ -2485,7 +3099,9 @@ const userEventSchema = z__namespace.object({
2485
3099
  "read:ai-gateway-rules",
2486
3100
  "read:ai-gateway-virtual-model-configs",
2487
3101
  "read:alerts",
3102
+ "read:automations",
2488
3103
  "read:billing",
3104
+ "read:connect",
2489
3105
  "read:deployment",
2490
3106
  "read:domain",
2491
3107
  "read:event",
@@ -2504,6 +3120,7 @@ const userEventSchema = z__namespace.object({
2504
3120
  "read:team",
2505
3121
  "read:vcr",
2506
3122
  "read:web-analytics",
3123
+ "read:webhooks",
2507
3124
  "use:ai-gateway"
2508
3125
  ])).optional()
2509
3126
  }).optional(),
@@ -2530,6 +3147,7 @@ const userEventSchema = z__namespace.object({
2530
3147
  "read-write:ai-gateway-rules",
2531
3148
  "read-write:ai-gateway-virtual-model-configs",
2532
3149
  "read-write:alerts",
3150
+ "read-write:automations",
2533
3151
  "read-write:billing",
2534
3152
  "read-write:blob",
2535
3153
  "read-write:connect",
@@ -2560,7 +3178,9 @@ const userEventSchema = z__namespace.object({
2560
3178
  "read:ai-gateway-rules",
2561
3179
  "read:ai-gateway-virtual-model-configs",
2562
3180
  "read:alerts",
3181
+ "read:automations",
2563
3182
  "read:billing",
3183
+ "read:connect",
2564
3184
  "read:deployment",
2565
3185
  "read:domain",
2566
3186
  "read:event",
@@ -2579,6 +3199,7 @@ const userEventSchema = z__namespace.object({
2579
3199
  "read:team",
2580
3200
  "read:vcr",
2581
3201
  "read:web-analytics",
3202
+ "read:webhooks",
2582
3203
  "use:ai-gateway"
2583
3204
  ])).optional()
2584
3205
  }).optional()
@@ -2608,6 +3229,7 @@ const userEventSchema = z__namespace.object({
2608
3229
  "read-write:ai-gateway-rules",
2609
3230
  "read-write:ai-gateway-virtual-model-configs",
2610
3231
  "read-write:alerts",
3232
+ "read-write:automations",
2611
3233
  "read-write:billing",
2612
3234
  "read-write:blob",
2613
3235
  "read-write:connect",
@@ -2638,7 +3260,9 @@ const userEventSchema = z__namespace.object({
2638
3260
  "read:ai-gateway-rules",
2639
3261
  "read:ai-gateway-virtual-model-configs",
2640
3262
  "read:alerts",
3263
+ "read:automations",
2641
3264
  "read:billing",
3265
+ "read:connect",
2642
3266
  "read:deployment",
2643
3267
  "read:domain",
2644
3268
  "read:event",
@@ -2657,6 +3281,7 @@ const userEventSchema = z__namespace.object({
2657
3281
  "read:team",
2658
3282
  "read:vcr",
2659
3283
  "read:web-analytics",
3284
+ "read:webhooks",
2660
3285
  "use:ai-gateway"
2661
3286
  ])).optional()
2662
3287
  }).strict(),
@@ -2720,6 +3345,16 @@ const userEventSchema = z__namespace.object({
2720
3345
  brand: z__namespace.string().optional(),
2721
3346
  last4: z__namespace.string().optional()
2722
3347
  }).strict(),
3348
+ z__namespace.object({
3349
+ changedFields: z__namespace.array(z__namespace.enum([
3350
+ "address",
3351
+ "email",
3352
+ "language",
3353
+ "name",
3354
+ "purchaseOrder",
3355
+ "tax"
3356
+ ]))
3357
+ }).strict(),
2723
3358
  z__namespace.object({
2724
3359
  subscriptionId: z__namespace.string().optional(),
2725
3360
  planSlug: z__namespace.string()
@@ -2967,6 +3602,7 @@ const userEventSchema = z__namespace.object({
2967
3602
  clientUid: z__namespace.string().optional(),
2968
3603
  clientName: z__namespace.string().optional(),
2969
3604
  projectId: z__namespace.string().optional(),
3605
+ projectName: z__namespace.string().optional(),
2970
3606
  installationId: z__namespace.string().optional(),
2971
3607
  subjectType: z__namespace.enum([
2972
3608
  "app",
@@ -3062,7 +3698,7 @@ const userEventSchema = z__namespace.object({
3062
3698
  type: z__namespace.string().optional()
3063
3699
  }).strict(),
3064
3700
  z__namespace.object({
3065
- job: z__namespace.union([
3701
+ job: z__namespace.discriminatedUnion("type", [
3066
3702
  z__namespace.object({
3067
3703
  type: z__namespace.enum([
3068
3704
  "bitbucket-push"
@@ -4245,7 +4881,10 @@ const userEventSchema = z__namespace.object({
4245
4881
  value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
4246
4882
  projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
4247
4883
  examples: [
4248
- {}
4884
+ [
4885
+ "prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
4886
+ "prj_2WjyKQmM8ZnGcJsPWMrasEFg"
4887
+ ]
4249
4888
  ]
4250
4889
  }),
4251
4890
  type: z__namespace.enum([
@@ -4281,6 +4920,18 @@ const userEventSchema = z__namespace.object({
4281
4920
  projectNames: z__namespace.array(z__namespace.string()).optional(),
4282
4921
  ipAddress: z__namespace.string().optional()
4283
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(),
4284
4935
  z__namespace.object({
4285
4936
  oldEnvVar: z__namespace.object({
4286
4937
  created: z__namespace.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
@@ -4336,7 +4987,10 @@ const userEventSchema = z__namespace.object({
4336
4987
  value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
4337
4988
  projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
4338
4989
  examples: [
4339
- {}
4990
+ [
4991
+ "prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
4992
+ "prj_2WjyKQmM8ZnGcJsPWMrasEFg"
4993
+ ]
4340
4994
  ]
4341
4995
  }),
4342
4996
  type: z__namespace.enum([
@@ -4424,7 +5078,10 @@ const userEventSchema = z__namespace.object({
4424
5078
  value: z__namespace.string().optional().describe("The value of the Shared Env Var."),
4425
5079
  projectId: z__namespace.array(z__namespace.string()).optional().describe("The unique identifiers of the projects which the Shared Env Var is linked to.").meta({
4426
5080
  examples: [
4427
- {}
5081
+ [
5082
+ "prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
5083
+ "prj_2WjyKQmM8ZnGcJsPWMrasEFg"
5084
+ ]
4428
5085
  ]
4429
5086
  }),
4430
5087
  type: z__namespace.enum([
@@ -4564,6 +5221,7 @@ const userEventSchema = z__namespace.object({
4564
5221
  }).strict(),
4565
5222
  z__namespace.object({
4566
5223
  projectId: z__namespace.string(),
5224
+ projectName: z__namespace.string().optional(),
4567
5225
  previousOwnerId: z__namespace.string(),
4568
5226
  newOwnerId: z__namespace.string()
4569
5227
  }).strict(),
@@ -4573,6 +5231,13 @@ const userEventSchema = z__namespace.object({
4573
5231
  "enable"
4574
5232
  ])
4575
5233
  }).strict(),
5234
+ z__namespace.object({
5235
+ source: z__namespace.enum([
5236
+ "create",
5237
+ "enable",
5238
+ "upgrade"
5239
+ ])
5240
+ }).strict(),
4576
5241
  z__namespace.object({
4577
5242
  provider: z__namespace.enum([
4578
5243
  "bitbucket",
@@ -4786,10 +5451,14 @@ const userEventSchema = z__namespace.object({
4786
5451
  "observability-edge-requests",
4787
5452
  "observability-error-rate",
4788
5453
  "observability-function-invocations",
5454
+ "shortcut",
4789
5455
  "speed-insights-cls",
4790
5456
  "speed-insights-lcp",
4791
5457
  "speed-insights-res"
4792
- ])
5458
+ ]),
5459
+ config: z__namespace.object({
5460
+ url: z__namespace.string()
5461
+ }).optional()
4793
5462
  })).optional(),
4794
5463
  remoteCaching: z__namespace.object({
4795
5464
  enabled: z__namespace.union([
@@ -4850,10 +5519,10 @@ const userEventSchema = z__namespace.object({
4850
5519
  ]).optional(),
4851
5520
  customEnvironmentsPerProject: z__namespace.number().optional(),
4852
5521
  security: z__namespace.object({
5522
+ rateLimit: z__namespace.number().optional(),
4853
5523
  customRules: z__namespace.number().optional(),
4854
5524
  ipBlocks: z__namespace.number().optional(),
4855
- ipBypass: z__namespace.number().optional(),
4856
- rateLimit: z__namespace.number().optional()
5525
+ ipBypass: z__namespace.number().optional()
4857
5526
  }).optional(),
4858
5527
  bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
4859
5528
  buildMachine: z__namespace.object({
@@ -4928,7 +5597,6 @@ const userEventSchema = z__namespace.object({
4928
5597
  "ENTERPRISE_UNPAID_INVOICE",
4929
5598
  "EXPOSURE_CAP_EXCEEDED",
4930
5599
  "FAIR_USE_LIMITS_EXCEEDED",
4931
- "HOBBY_ALLOCATION_PAUSED",
4932
5600
  "SUBSCRIPTION_CANCELED",
4933
5601
  "SUBSCRIPTION_EXPIRED",
4934
5602
  "UNPAID_INVOICE"
@@ -4974,55 +5642,7 @@ const userEventSchema = z__namespace.object({
4974
5642
  "wafRateLimitRequest",
4975
5643
  "webAnalyticsEvent"
4976
5644
  ]).optional(),
4977
- hobbyAllocationPause: z__namespace.object({
4978
- 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."),
4979
- pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
4980
- triggers: z__namespace.array(z__namespace.object({
4981
- allocation: z__namespace.enum([
4982
- "analyticsUsage",
4983
- "artifacts",
4984
- "bandwidth",
4985
- "blobDataTransfer",
4986
- "blobTotalAdvancedRequests",
4987
- "blobTotalAvgSizeInBytes",
4988
- "blobTotalGetResponseObjectSizeInBytes",
4989
- "blobTotalSimpleRequests",
4990
- "connectDataTransfer",
4991
- "dataCacheRead",
4992
- "dataCacheWrite",
4993
- "edgeConfigRead",
4994
- "edgeConfigWrite",
4995
- "edgeFunctionExecutionUnits",
4996
- "edgeMiddlewareInvocations",
4997
- "edgeRequest",
4998
- "edgeRequestAdditionalCpuDuration",
4999
- "elasticConcurrencyBuildSlots",
5000
- "fastDataTransfer",
5001
- "fastOriginTransfer",
5002
- "fluidCpuDuration",
5003
- "fluidDuration",
5004
- "functionDuration",
5005
- "functionInvocation",
5006
- "imageOptimizationCacheRead",
5007
- "imageOptimizationCacheWrite",
5008
- "imageOptimizationTransformation",
5009
- "logDrainsVolume",
5010
- "monitoringMetric",
5011
- "observabilityEvent",
5012
- "onDemandConcurrencyMinutes",
5013
- "runtimeCacheRead",
5014
- "runtimeCacheWrite",
5015
- "serverlessFunctionExecution",
5016
- "sourceImages",
5017
- "wafOwaspExcessBytes",
5018
- "wafOwaspRequests",
5019
- "wafRateLimitRequest",
5020
- "webAnalyticsEvent"
5021
- ]).describe("Metered allocation whose included amount was fully consumed."),
5022
- usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
5023
- })).describe("Allocations that were at or over 100% when the pause was applied."),
5024
- 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.")
5025
- }).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
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.")
5026
5646
  }).nullish(),
5027
5647
  stagingPrefix: z__namespace.string(),
5028
5648
  sysToken: z__namespace.string(),
@@ -5125,197 +5745,236 @@ const userEventSchema = z__namespace.object({
5125
5745
  analyticsUsage: z__namespace.object({
5126
5746
  currentThreshold: z__namespace.number(),
5127
5747
  warningAt: z__namespace.number().nullish(),
5128
- blockedAt: z__namespace.number().nullish()
5748
+ blockedAt: z__namespace.number().nullish(),
5749
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5129
5750
  }).optional(),
5130
5751
  artifacts: z__namespace.object({
5131
5752
  currentThreshold: z__namespace.number(),
5132
5753
  warningAt: z__namespace.number().nullish(),
5133
- blockedAt: z__namespace.number().nullish()
5754
+ blockedAt: z__namespace.number().nullish(),
5755
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5134
5756
  }).optional(),
5135
5757
  bandwidth: z__namespace.object({
5136
5758
  currentThreshold: z__namespace.number(),
5137
5759
  warningAt: z__namespace.number().nullish(),
5138
- blockedAt: z__namespace.number().nullish()
5760
+ blockedAt: z__namespace.number().nullish(),
5761
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5139
5762
  }).optional(),
5140
5763
  blobTotalAdvancedRequests: z__namespace.object({
5141
5764
  currentThreshold: z__namespace.number(),
5142
5765
  warningAt: z__namespace.number().nullish(),
5143
- blockedAt: z__namespace.number().nullish()
5766
+ blockedAt: z__namespace.number().nullish(),
5767
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5144
5768
  }).optional(),
5145
5769
  blobTotalAvgSizeInBytes: z__namespace.object({
5146
5770
  currentThreshold: z__namespace.number(),
5147
5771
  warningAt: z__namespace.number().nullish(),
5148
- blockedAt: z__namespace.number().nullish()
5772
+ blockedAt: z__namespace.number().nullish(),
5773
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5149
5774
  }).optional(),
5150
5775
  blobTotalGetResponseObjectSizeInBytes: z__namespace.object({
5151
5776
  currentThreshold: z__namespace.number(),
5152
5777
  warningAt: z__namespace.number().nullish(),
5153
- blockedAt: z__namespace.number().nullish()
5778
+ blockedAt: z__namespace.number().nullish(),
5779
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5154
5780
  }).optional(),
5155
5781
  blobTotalSimpleRequests: z__namespace.object({
5156
5782
  currentThreshold: z__namespace.number(),
5157
5783
  warningAt: z__namespace.number().nullish(),
5158
- blockedAt: z__namespace.number().nullish()
5784
+ blockedAt: z__namespace.number().nullish(),
5785
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5159
5786
  }).optional(),
5160
5787
  connectDataTransfer: z__namespace.object({
5161
5788
  currentThreshold: z__namespace.number(),
5162
5789
  warningAt: z__namespace.number().nullish(),
5163
- blockedAt: z__namespace.number().nullish()
5790
+ blockedAt: z__namespace.number().nullish(),
5791
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5164
5792
  }).optional(),
5165
5793
  dataCacheRead: z__namespace.object({
5166
5794
  currentThreshold: z__namespace.number(),
5167
5795
  warningAt: z__namespace.number().nullish(),
5168
- blockedAt: z__namespace.number().nullish()
5796
+ blockedAt: z__namespace.number().nullish(),
5797
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5169
5798
  }).optional(),
5170
5799
  dataCacheWrite: z__namespace.object({
5171
5800
  currentThreshold: z__namespace.number(),
5172
5801
  warningAt: z__namespace.number().nullish(),
5173
- blockedAt: z__namespace.number().nullish()
5802
+ blockedAt: z__namespace.number().nullish(),
5803
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5174
5804
  }).optional(),
5175
5805
  edgeConfigRead: z__namespace.object({
5176
5806
  currentThreshold: z__namespace.number(),
5177
5807
  warningAt: z__namespace.number().nullish(),
5178
- blockedAt: z__namespace.number().nullish()
5808
+ blockedAt: z__namespace.number().nullish(),
5809
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5179
5810
  }).optional(),
5180
5811
  edgeConfigWrite: z__namespace.object({
5181
5812
  currentThreshold: z__namespace.number(),
5182
5813
  warningAt: z__namespace.number().nullish(),
5183
- blockedAt: z__namespace.number().nullish()
5814
+ blockedAt: z__namespace.number().nullish(),
5815
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5184
5816
  }).optional(),
5185
5817
  edgeFunctionExecutionUnits: z__namespace.object({
5186
5818
  currentThreshold: z__namespace.number(),
5187
5819
  warningAt: z__namespace.number().nullish(),
5188
- blockedAt: z__namespace.number().nullish()
5820
+ blockedAt: z__namespace.number().nullish(),
5821
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5189
5822
  }).optional(),
5190
5823
  edgeMiddlewareInvocations: z__namespace.object({
5191
5824
  currentThreshold: z__namespace.number(),
5192
5825
  warningAt: z__namespace.number().nullish(),
5193
- blockedAt: z__namespace.number().nullish()
5826
+ blockedAt: z__namespace.number().nullish(),
5827
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5194
5828
  }).optional(),
5195
5829
  edgeRequestAdditionalCpuDuration: z__namespace.object({
5196
5830
  currentThreshold: z__namespace.number(),
5197
5831
  warningAt: z__namespace.number().nullish(),
5198
- blockedAt: z__namespace.number().nullish()
5832
+ blockedAt: z__namespace.number().nullish(),
5833
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5199
5834
  }).optional(),
5200
5835
  edgeRequest: z__namespace.object({
5201
5836
  currentThreshold: z__namespace.number(),
5202
5837
  warningAt: z__namespace.number().nullish(),
5203
- blockedAt: z__namespace.number().nullish()
5838
+ blockedAt: z__namespace.number().nullish(),
5839
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5204
5840
  }).optional(),
5205
5841
  elasticConcurrencyBuildSlots: z__namespace.object({
5206
5842
  currentThreshold: z__namespace.number(),
5207
5843
  warningAt: z__namespace.number().nullish(),
5208
- blockedAt: z__namespace.number().nullish()
5844
+ blockedAt: z__namespace.number().nullish(),
5845
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5209
5846
  }).optional(),
5210
5847
  fastDataTransfer: z__namespace.object({
5211
5848
  currentThreshold: z__namespace.number(),
5212
5849
  warningAt: z__namespace.number().nullish(),
5213
- blockedAt: z__namespace.number().nullish()
5850
+ blockedAt: z__namespace.number().nullish(),
5851
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5214
5852
  }).optional(),
5215
5853
  fastOriginTransfer: z__namespace.object({
5216
5854
  currentThreshold: z__namespace.number(),
5217
5855
  warningAt: z__namespace.number().nullish(),
5218
- blockedAt: z__namespace.number().nullish()
5856
+ blockedAt: z__namespace.number().nullish(),
5857
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5219
5858
  }).optional(),
5220
5859
  fluidCpuDuration: z__namespace.object({
5221
5860
  currentThreshold: z__namespace.number(),
5222
5861
  warningAt: z__namespace.number().nullish(),
5223
- blockedAt: z__namespace.number().nullish()
5862
+ blockedAt: z__namespace.number().nullish(),
5863
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5224
5864
  }).optional(),
5225
5865
  fluidDuration: z__namespace.object({
5226
5866
  currentThreshold: z__namespace.number(),
5227
5867
  warningAt: z__namespace.number().nullish(),
5228
- blockedAt: z__namespace.number().nullish()
5868
+ blockedAt: z__namespace.number().nullish(),
5869
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5229
5870
  }).optional(),
5230
5871
  functionDuration: z__namespace.object({
5231
5872
  currentThreshold: z__namespace.number(),
5232
5873
  warningAt: z__namespace.number().nullish(),
5233
- blockedAt: z__namespace.number().nullish()
5874
+ blockedAt: z__namespace.number().nullish(),
5875
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5234
5876
  }).optional(),
5235
5877
  functionInvocation: z__namespace.object({
5236
5878
  currentThreshold: z__namespace.number(),
5237
5879
  warningAt: z__namespace.number().nullish(),
5238
- blockedAt: z__namespace.number().nullish()
5880
+ blockedAt: z__namespace.number().nullish(),
5881
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5239
5882
  }).optional(),
5240
5883
  imageOptimizationCacheRead: z__namespace.object({
5241
5884
  currentThreshold: z__namespace.number(),
5242
5885
  warningAt: z__namespace.number().nullish(),
5243
- blockedAt: z__namespace.number().nullish()
5886
+ blockedAt: z__namespace.number().nullish(),
5887
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5244
5888
  }).optional(),
5245
5889
  imageOptimizationCacheWrite: z__namespace.object({
5246
5890
  currentThreshold: z__namespace.number(),
5247
5891
  warningAt: z__namespace.number().nullish(),
5248
- blockedAt: z__namespace.number().nullish()
5892
+ blockedAt: z__namespace.number().nullish(),
5893
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5249
5894
  }).optional(),
5250
5895
  imageOptimizationTransformation: z__namespace.object({
5251
5896
  currentThreshold: z__namespace.number(),
5252
5897
  warningAt: z__namespace.number().nullish(),
5253
- blockedAt: z__namespace.number().nullish()
5898
+ blockedAt: z__namespace.number().nullish(),
5899
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5254
5900
  }).optional(),
5255
5901
  logDrainsVolume: z__namespace.object({
5256
5902
  currentThreshold: z__namespace.number(),
5257
5903
  warningAt: z__namespace.number().nullish(),
5258
- blockedAt: z__namespace.number().nullish()
5904
+ blockedAt: z__namespace.number().nullish(),
5905
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5259
5906
  }).optional(),
5260
5907
  monitoringMetric: z__namespace.object({
5261
5908
  currentThreshold: z__namespace.number(),
5262
5909
  warningAt: z__namespace.number().nullish(),
5263
- blockedAt: z__namespace.number().nullish()
5910
+ blockedAt: z__namespace.number().nullish(),
5911
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5264
5912
  }).optional(),
5265
5913
  blobDataTransfer: z__namespace.object({
5266
5914
  currentThreshold: z__namespace.number(),
5267
5915
  warningAt: z__namespace.number().nullish(),
5268
- blockedAt: z__namespace.number().nullish()
5916
+ blockedAt: z__namespace.number().nullish(),
5917
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5269
5918
  }).optional(),
5270
5919
  observabilityEvent: z__namespace.object({
5271
5920
  currentThreshold: z__namespace.number(),
5272
5921
  warningAt: z__namespace.number().nullish(),
5273
- blockedAt: z__namespace.number().nullish()
5922
+ blockedAt: z__namespace.number().nullish(),
5923
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5274
5924
  }).optional(),
5275
5925
  onDemandConcurrencyMinutes: z__namespace.object({
5276
5926
  currentThreshold: z__namespace.number(),
5277
5927
  warningAt: z__namespace.number().nullish(),
5278
- blockedAt: z__namespace.number().nullish()
5928
+ blockedAt: z__namespace.number().nullish(),
5929
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5279
5930
  }).optional(),
5280
5931
  runtimeCacheRead: z__namespace.object({
5281
5932
  currentThreshold: z__namespace.number(),
5282
5933
  warningAt: z__namespace.number().nullish(),
5283
- blockedAt: z__namespace.number().nullish()
5934
+ blockedAt: z__namespace.number().nullish(),
5935
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5284
5936
  }).optional(),
5285
5937
  runtimeCacheWrite: z__namespace.object({
5286
5938
  currentThreshold: z__namespace.number(),
5287
5939
  warningAt: z__namespace.number().nullish(),
5288
- blockedAt: z__namespace.number().nullish()
5940
+ blockedAt: z__namespace.number().nullish(),
5941
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5289
5942
  }).optional(),
5290
5943
  serverlessFunctionExecution: z__namespace.object({
5291
5944
  currentThreshold: z__namespace.number(),
5292
5945
  warningAt: z__namespace.number().nullish(),
5293
- blockedAt: z__namespace.number().nullish()
5946
+ blockedAt: z__namespace.number().nullish(),
5947
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5294
5948
  }).optional(),
5295
5949
  sourceImages: z__namespace.object({
5296
5950
  currentThreshold: z__namespace.number(),
5297
5951
  warningAt: z__namespace.number().nullish(),
5298
- blockedAt: z__namespace.number().nullish()
5952
+ blockedAt: z__namespace.number().nullish(),
5953
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5299
5954
  }).optional(),
5300
5955
  wafOwaspExcessBytes: z__namespace.object({
5301
5956
  currentThreshold: z__namespace.number(),
5302
5957
  warningAt: z__namespace.number().nullish(),
5303
- blockedAt: z__namespace.number().nullish()
5958
+ blockedAt: z__namespace.number().nullish(),
5959
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5304
5960
  }).optional(),
5305
5961
  wafOwaspRequests: z__namespace.object({
5306
5962
  currentThreshold: z__namespace.number(),
5307
5963
  warningAt: z__namespace.number().nullish(),
5308
- blockedAt: z__namespace.number().nullish()
5964
+ blockedAt: z__namespace.number().nullish(),
5965
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5309
5966
  }).optional(),
5310
5967
  wafRateLimitRequest: z__namespace.object({
5311
5968
  currentThreshold: z__namespace.number(),
5312
5969
  warningAt: z__namespace.number().nullish(),
5313
- blockedAt: z__namespace.number().nullish()
5970
+ blockedAt: z__namespace.number().nullish(),
5971
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5314
5972
  }).optional(),
5315
5973
  webAnalyticsEvent: z__namespace.object({
5316
5974
  currentThreshold: z__namespace.number(),
5317
5975
  warningAt: z__namespace.number().nullish(),
5318
- blockedAt: z__namespace.number().nullish()
5976
+ blockedAt: z__namespace.number().nullish(),
5977
+ blockGracePeriodStartedAt: z__namespace.number().nullish()
5319
5978
  }).optional()
5320
5979
  }).optional(),
5321
5980
  overageMetadata: z__namespace.object({
@@ -5324,12 +5983,7 @@ const userEventSchema = z__namespace.object({
5324
5983
  weeklyOverageSummaryEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a weekly summary email."),
5325
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."),
5326
5985
  increasedOnDemandEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
5327
- 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."),
5328
- 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."),
5329
- 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."),
5330
- 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."),
5331
- 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`."),
5332
- 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.")
5333
5987
  }).optional().describe("Contains the timestamps for usage summary emails."),
5334
5988
  speedInsightsFreeUsageAlert: z__namespace.object({
5335
5989
  currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
@@ -5665,6 +6319,16 @@ const userEventSchema = z__namespace.object({
5665
6319
  "limits_exceeded"
5666
6320
  ])
5667
6321
  }).optional(),
6322
+ sandboxStorage: z__namespace.object({
6323
+ updatedAt: z__namespace.number(),
6324
+ blockedFrom: z__namespace.number().optional(),
6325
+ blockedUntil: z__namespace.number().optional(),
6326
+ blockReason: z__namespace.enum([
6327
+ "admin_override",
6328
+ "hard_blocked",
6329
+ "limits_exceeded"
6330
+ ])
6331
+ }).optional(),
5668
6332
  vcr: z__namespace.object({
5669
6333
  updatedAt: z__namespace.number(),
5670
6334
  blockedFrom: z__namespace.number().optional(),
@@ -5843,7 +6507,7 @@ const userEventSchema = z__namespace.object({
5843
6507
  integrationSlug: z__namespace.string(),
5844
6508
  integrationProductSlug: z__namespace.string(),
5845
6509
  configurationId: z__namespace.string(),
5846
- error: z__namespace.string().optional(),
6510
+ errorCode: z__namespace.string().optional(),
5847
6511
  requestKind: z__namespace.enum([
5848
6512
  "raw_commands"
5849
6513
  ]),
@@ -5851,8 +6515,11 @@ const userEventSchema = z__namespace.object({
5851
6515
  z__namespace.literal(false),
5852
6516
  z__namespace.literal(true)
5853
6517
  ]),
5854
- commands: z__namespace.array(z__namespace.string()),
5855
- 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()
5856
6523
  }).strict(),
5857
6524
  z__namespace.object({
5858
6525
  resourceId: z__namespace.string(),
@@ -5860,7 +6527,7 @@ const userEventSchema = z__namespace.object({
5860
6527
  integrationSlug: z__namespace.string(),
5861
6528
  integrationProductSlug: z__namespace.string(),
5862
6529
  configurationId: z__namespace.string(),
5863
- error: z__namespace.string().optional(),
6530
+ errorCode: z__namespace.string().optional(),
5864
6531
  requestKind: z__namespace.enum([
5865
6532
  "list_keys"
5866
6533
  ]),
@@ -5873,7 +6540,7 @@ const userEventSchema = z__namespace.object({
5873
6540
  integrationSlug: z__namespace.string(),
5874
6541
  integrationProductSlug: z__namespace.string(),
5875
6542
  configurationId: z__namespace.string(),
5876
- error: z__namespace.string().optional(),
6543
+ errorCode: z__namespace.string().optional(),
5877
6544
  requestKind: z__namespace.enum([
5878
6545
  "get_keys_metadata"
5879
6546
  ]),
@@ -5885,7 +6552,7 @@ const userEventSchema = z__namespace.object({
5885
6552
  integrationSlug: z__namespace.string(),
5886
6553
  integrationProductSlug: z__namespace.string(),
5887
6554
  configurationId: z__namespace.string(),
5888
- error: z__namespace.string().optional(),
6555
+ errorCode: z__namespace.string().optional(),
5889
6556
  requestKind: z__namespace.enum([
5890
6557
  "get_key_data"
5891
6558
  ]),
@@ -6299,6 +6966,19 @@ const userEventSchema = z__namespace.object({
6299
6966
  "platform"
6300
6967
  ])
6301
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(),
6302
6982
  z__namespace.object({
6303
6983
  ownerId: z__namespace.string(),
6304
6984
  source: z__namespace.string(),
@@ -6715,6 +7395,7 @@ const userEventSchema = z__namespace.object({
6715
7395
  previousPreviewDeploymentSuffix: z__namespace.string().nullish()
6716
7396
  }).strict(),
6717
7397
  z__namespace.object({
7398
+ projectName: z__namespace.string().optional(),
6718
7399
  endpoint: z__namespace.object({
6719
7400
  id: z__namespace.string(),
6720
7401
  name: z__namespace.string(),
@@ -6725,6 +7406,7 @@ const userEventSchema = z__namespace.object({
6725
7406
  })
6726
7407
  }).strict(),
6727
7408
  z__namespace.object({
7409
+ projectName: z__namespace.string().optional(),
6728
7410
  privateLinkEndpoint: z__namespace.object({
6729
7411
  id: z__namespace.string(),
6730
7412
  name: z__namespace.string()
@@ -6732,6 +7414,7 @@ const userEventSchema = z__namespace.object({
6732
7414
  projectId: z__namespace.string()
6733
7415
  }).strict(),
6734
7416
  z__namespace.object({
7417
+ projectName: z__namespace.string().optional(),
6735
7418
  prev: z__namespace.object({
6736
7419
  id: z__namespace.string(),
6737
7420
  name: z__namespace.string(),
@@ -6750,6 +7433,7 @@ const userEventSchema = z__namespace.object({
6750
7433
  })
6751
7434
  }).strict(),
6752
7435
  z__namespace.object({
7436
+ projectName: z__namespace.string().optional(),
6753
7437
  privateLinkEndpoint: z__namespace.object({
6754
7438
  id: z__namespace.string(),
6755
7439
  name: z__namespace.string(),
@@ -6892,6 +7576,7 @@ const userEventSchema = z__namespace.object({
6892
7576
  "observability-function-invocations",
6893
7577
  "online",
6894
7578
  "res",
7579
+ "shortcut",
6895
7580
  "speed-insights-cls",
6896
7581
  "speed-insights-lcp",
6897
7582
  "speed-insights-res"
@@ -7119,6 +7804,7 @@ const userEventSchema = z__namespace.object({
7119
7804
  "github-custom-host",
7120
7805
  "github-limited",
7121
7806
  "gitlab",
7807
+ "v0",
7122
7808
  "vercel"
7123
7809
  ]),
7124
7810
  gitRepoId: z__namespace.string(),
@@ -7132,6 +7818,7 @@ const userEventSchema = z__namespace.object({
7132
7818
  "github-custom-host",
7133
7819
  "github-limited",
7134
7820
  "gitlab",
7821
+ "v0",
7135
7822
  "vercel"
7136
7823
  ]),
7137
7824
  gitRepoId: z__namespace.string(),
@@ -7148,6 +7835,7 @@ const userEventSchema = z__namespace.object({
7148
7835
  "github-custom-host",
7149
7836
  "github-limited",
7150
7837
  "gitlab",
7838
+ "v0",
7151
7839
  "vercel"
7152
7840
  ]),
7153
7841
  gitRepoId: z__namespace.string(),
@@ -7514,8 +8202,14 @@ const userEventSchema = z__namespace.object({
7514
8202
  z__namespace.object({
7515
8203
  projectId: z__namespace.string(),
7516
8204
  projectName: z__namespace.string(),
7517
- previous: z__namespace.object({}).nullable(),
7518
- 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()
7519
8213
  }).strict(),
7520
8214
  z__namespace.object({
7521
8215
  projectId: z__namespace.string(),
@@ -7746,6 +8440,10 @@ const userEventSchema = z__namespace.object({
7746
8440
  z__namespace.object({
7747
8441
  projectId: z__namespace.string(),
7748
8442
  projectName: z__namespace.string(),
8443
+ enableVercelCiSameRepository: z__namespace.union([
8444
+ z__namespace.literal(false),
8445
+ z__namespace.literal(true)
8446
+ ]).optional(),
7749
8447
  addedProjects: z__namespace.array(z__namespace.object({
7750
8448
  id: z__namespace.string(),
7751
8449
  name: z__namespace.string()
@@ -8013,6 +8711,12 @@ const userEventSchema = z__namespace.object({
8013
8711
  "plus",
8014
8712
  "unbundled"
8015
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`."),
8016
8720
  teamId: z__namespace.string().describe("Partition key"),
8017
8721
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8018
8722
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8048,6 +8752,12 @@ const userEventSchema = z__namespace.object({
8048
8752
  "plus",
8049
8753
  "unbundled"
8050
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`."),
8051
8761
  teamId: z__namespace.string().describe("Partition key"),
8052
8762
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8053
8763
  }).describe("Represents a budget for tracking and notifying teams on their spending.")
@@ -8082,6 +8792,12 @@ const userEventSchema = z__namespace.object({
8082
8792
  "plus",
8083
8793
  "unbundled"
8084
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`."),
8085
8801
  teamId: z__namespace.string().describe("Partition key"),
8086
8802
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8087
8803
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8117,6 +8833,12 @@ const userEventSchema = z__namespace.object({
8117
8833
  "plus",
8118
8834
  "unbundled"
8119
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`."),
8120
8842
  teamId: z__namespace.string().describe("Partition key"),
8121
8843
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8122
8844
  }).describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8149,6 +8871,12 @@ const userEventSchema = z__namespace.object({
8149
8871
  "plus",
8150
8872
  "unbundled"
8151
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`."),
8152
8880
  teamId: z__namespace.string().describe("Partition key"),
8153
8881
  id: z__namespace.string().describe("Sort key that needs to be unique per teamId")
8154
8882
  }).optional().describe("Represents a budget for tracking and notifying teams on their spending."),
@@ -8377,6 +9105,7 @@ const userEventSchema = z__namespace.object({
8377
9105
  "long-build-duration",
8378
9106
  "oom-failure",
8379
9107
  "plan-change",
9108
+ "project-transfer",
8380
9109
  "short-build-duration",
8381
9110
  "sustained-high-cpu"
8382
9111
  ]).optional()
@@ -8411,8 +9140,14 @@ const userEventSchema = z__namespace.object({
8411
9140
  timestamp: z__namespace.number().optional()
8412
9141
  }).strict(),
8413
9142
  z__namespace.object({
8414
- previous: z__namespace.object({}).nullable(),
8415
- 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()
8416
9151
  }).strict(),
8417
9152
  z__namespace.object({
8418
9153
  enabled: z__namespace.union([
@@ -9247,6 +9982,7 @@ const userEventSchema = z__namespace.object({
9247
9982
  z__namespace.object({
9248
9983
  deploymentId: z__namespace.string(),
9249
9984
  projectId: z__namespace.string(),
9985
+ projectName: z__namespace.string().optional(),
9250
9986
  runId: z__namespace.string()
9251
9987
  }).strict(),
9252
9988
  z__namespace.object({
@@ -9441,6 +10177,7 @@ const userEventSchema = z__namespace.object({
9441
10177
  teamId: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9442
10178
  teamSlug: z__namespace.string().optional().describe("Present when `scope` is `'team'` or `'project'`."),
9443
10179
  projectId: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
10180
+ projectName: z__namespace.string().optional().describe("Present when `scope` is `'project'`."),
9444
10181
  projectScope: z__namespace.enum([
9445
10182
  "account",
9446
10183
  "project-only"
@@ -9595,8 +10332,10 @@ const listEventTypeSchema = z__namespace.object({
9595
10332
  "ai-gateway-byok-credential-created",
9596
10333
  "ai-gateway-byok-credential-deleted",
9597
10334
  "ai-gateway-byok-credential-updated",
10335
+ "ai-gateway-byok-model-mappings-updated",
9598
10336
  "ai-gateway-credits-purchased",
9599
10337
  "ai-gateway-guardrails-updated",
10338
+ "ai-gateway-hipaa-compliance-toggled",
9600
10339
  "ai-gateway-inference-regions-updated",
9601
10340
  "ai-gateway-model-allowlist-models-updated",
9602
10341
  "ai-gateway-model-allowlist-toggled",
@@ -9606,6 +10345,7 @@ const listEventTypeSchema = z__namespace.object({
9606
10345
  "ai-gateway-private-provider-created",
9607
10346
  "ai-gateway-private-provider-deleted",
9608
10347
  "ai-gateway-private-provider-updated",
10348
+ "ai-gateway-prompt-training-opt-out-toggled",
9609
10349
  "ai-gateway-provider-allowlist-providers-updated",
9610
10350
  "ai-gateway-provider-allowlist-toggled",
9611
10351
  "ai-gateway-rule-created",
@@ -9619,8 +10359,10 @@ const listEventTypeSchema = z__namespace.object({
9619
10359
  "ai-gateway-transcripts-retention-updated",
9620
10360
  "ai-gateway-virtual-model-config-archived",
9621
10361
  "ai-gateway-virtual-model-config-created",
10362
+ "ai-gateway-virtual-model-config-deleted",
9622
10363
  "ai-gateway-virtual-model-config-restored",
9623
10364
  "ai-gateway-virtual-model-config-updated",
10365
+ "ai-gateway-zero-data-retention-toggled",
9624
10366
  "ai-omniagent",
9625
10367
  "alert-investigation-project-allowlist-updated",
9626
10368
  "alert-rule-created",
@@ -9649,6 +10391,7 @@ const listEventTypeSchema = z__namespace.object({
9649
10391
  "authorize-git-deployment",
9650
10392
  "auto-expose-system-envs",
9651
10393
  "avatar",
10394
+ "billing-settings-updated",
9652
10395
  "bulk-redirects-settings-updated",
9653
10396
  "bulk-redirects-version-promoted",
9654
10397
  "bulk-redirects-version-restored",
@@ -9809,6 +10552,7 @@ const listEventTypeSchema = z__namespace.object({
9809
10552
  "flags-segment",
9810
10553
  "flags-settings",
9811
10554
  "flags-transferred",
10555
+ "flat-rate-cdn-auto-upgrade-consent",
9812
10556
  "git-integration-repo-push",
9813
10557
  "git_account_integration_link_added",
9814
10558
  "global-config-backup-restored",
@@ -9893,6 +10637,7 @@ const listEventTypeSchema = z__namespace.object({
9893
10637
  "organization-team-add",
9894
10638
  "organization-team-create",
9895
10639
  "organization-team-delete",
10640
+ "organization-team-sso-update",
9896
10641
  "owner-blocked",
9897
10642
  "owner-soft-blocked",
9898
10643
  "owner-soft-unblocked",
@@ -9972,6 +10717,12 @@ const listEventTypeSchema = z__namespace.object({
9972
10717
  "project-git-commit-comments-toggled",
9973
10718
  "project-git-commit-status-toggled",
9974
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",
9975
10726
  "project-git-fork-protection-updated",
9976
10727
  "project-git-lfs-toggled",
9977
10728
  "project-git-pr-comments-toggled",
@@ -10064,6 +10815,8 @@ const listEventTypeSchema = z__namespace.object({
10064
10815
  "shared-env-variable-create",
10065
10816
  "shared-env-variable-delete",
10066
10817
  "shared-env-variable-read",
10818
+ "shared-env-variable-repo-link",
10819
+ "shared-env-variable-repo-unlink",
10067
10820
  "shared-env-variable-update",
10068
10821
  "show-ip-addresses",
10069
10822
  "signup",
@@ -10094,6 +10847,7 @@ const listEventTypeSchema = z__namespace.object({
10094
10847
  "storage-update-project-connection",
10095
10848
  "storage-upgrade-project-connection-to-oidc",
10096
10849
  "storage-view-secret",
10850
+ "strict-connectors",
10097
10851
  "strict-deployment-protection-settings",
10098
10852
  "strict-password-protection-settings",
10099
10853
  "strict-shareable-links",
@@ -10253,7 +11007,9 @@ const listEventTypeSchema = z__namespace.object({
10253
11007
  "workflow"
10254
11008
  ])).describe("Categories that group this event type with related event types.").meta({
10255
11009
  examples: [
10256
- {}
11010
+ [
11011
+ "deployment"
11012
+ ]
10257
11013
  ]
10258
11014
  }),
10259
11015
  deprecated: z__namespace.union([
@@ -10293,8 +11049,10 @@ const listEventTypeSchema = z__namespace.object({
10293
11049
  "ai-gateway-byok-credential-created",
10294
11050
  "ai-gateway-byok-credential-deleted",
10295
11051
  "ai-gateway-byok-credential-updated",
11052
+ "ai-gateway-byok-model-mappings-updated",
10296
11053
  "ai-gateway-credits-purchased",
10297
11054
  "ai-gateway-guardrails-updated",
11055
+ "ai-gateway-hipaa-compliance-toggled",
10298
11056
  "ai-gateway-inference-regions-updated",
10299
11057
  "ai-gateway-model-allowlist-models-updated",
10300
11058
  "ai-gateway-model-allowlist-toggled",
@@ -10304,6 +11062,7 @@ const listEventTypeSchema = z__namespace.object({
10304
11062
  "ai-gateway-private-provider-created",
10305
11063
  "ai-gateway-private-provider-deleted",
10306
11064
  "ai-gateway-private-provider-updated",
11065
+ "ai-gateway-prompt-training-opt-out-toggled",
10307
11066
  "ai-gateway-provider-allowlist-providers-updated",
10308
11067
  "ai-gateway-provider-allowlist-toggled",
10309
11068
  "ai-gateway-rule-created",
@@ -10317,8 +11076,10 @@ const listEventTypeSchema = z__namespace.object({
10317
11076
  "ai-gateway-transcripts-retention-updated",
10318
11077
  "ai-gateway-virtual-model-config-archived",
10319
11078
  "ai-gateway-virtual-model-config-created",
11079
+ "ai-gateway-virtual-model-config-deleted",
10320
11080
  "ai-gateway-virtual-model-config-restored",
10321
11081
  "ai-gateway-virtual-model-config-updated",
11082
+ "ai-gateway-zero-data-retention-toggled",
10322
11083
  "ai-omniagent",
10323
11084
  "alert-investigation-project-allowlist-updated",
10324
11085
  "alert-rule-created",
@@ -10347,6 +11108,7 @@ const listEventTypeSchema = z__namespace.object({
10347
11108
  "authorize-git-deployment",
10348
11109
  "auto-expose-system-envs",
10349
11110
  "avatar",
11111
+ "billing-settings-updated",
10350
11112
  "bulk-redirects-settings-updated",
10351
11113
  "bulk-redirects-version-promoted",
10352
11114
  "bulk-redirects-version-restored",
@@ -10507,6 +11269,7 @@ const listEventTypeSchema = z__namespace.object({
10507
11269
  "flags-segment",
10508
11270
  "flags-settings",
10509
11271
  "flags-transferred",
11272
+ "flat-rate-cdn-auto-upgrade-consent",
10510
11273
  "git-integration-repo-push",
10511
11274
  "git_account_integration_link_added",
10512
11275
  "global-config-backup-restored",
@@ -10591,6 +11354,7 @@ const listEventTypeSchema = z__namespace.object({
10591
11354
  "organization-team-add",
10592
11355
  "organization-team-create",
10593
11356
  "organization-team-delete",
11357
+ "organization-team-sso-update",
10594
11358
  "owner-blocked",
10595
11359
  "owner-soft-blocked",
10596
11360
  "owner-soft-unblocked",
@@ -10670,6 +11434,12 @@ const listEventTypeSchema = z__namespace.object({
10670
11434
  "project-git-commit-comments-toggled",
10671
11435
  "project-git-commit-status-toggled",
10672
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",
10673
11443
  "project-git-fork-protection-updated",
10674
11444
  "project-git-lfs-toggled",
10675
11445
  "project-git-pr-comments-toggled",
@@ -10762,6 +11532,8 @@ const listEventTypeSchema = z__namespace.object({
10762
11532
  "shared-env-variable-create",
10763
11533
  "shared-env-variable-delete",
10764
11534
  "shared-env-variable-read",
11535
+ "shared-env-variable-repo-link",
11536
+ "shared-env-variable-repo-unlink",
10765
11537
  "shared-env-variable-update",
10766
11538
  "show-ip-addresses",
10767
11539
  "signup",
@@ -10792,6 +11564,7 @@ const listEventTypeSchema = z__namespace.object({
10792
11564
  "storage-update-project-connection",
10793
11565
  "storage-upgrade-project-connection-to-oidc",
10794
11566
  "storage-view-secret",
11567
+ "strict-connectors",
10795
11568
  "strict-deployment-protection-settings",
10796
11569
  "strict-password-protection-settings",
10797
11570
  "strict-shareable-links",
@@ -10954,7 +11727,21 @@ const listEventTypesResponseSchema = z__namespace.object({
10954
11727
  }).describe("Response returned by the List Event Types endpoint.");
10955
11728
  const flagSchema = z__namespace.object({
10956
11729
  description: z__namespace.string().optional(),
10957
- 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
+ })),
10958
11745
  id: z__namespace.string(),
10959
11746
  environments: z__namespace.object({}).catchall(z__namespace.object({
10960
11747
  reuse: z__namespace.object({
@@ -10975,7 +11762,7 @@ const flagSchema = z__namespace.object({
10975
11762
  ]),
10976
11763
  variantId: z__namespace.string()
10977
11764
  }),
10978
- fallthrough: z__namespace.union([
11765
+ fallthrough: z__namespace.discriminatedUnion("type", [
10979
11766
  z__namespace.object({
10980
11767
  type: z__namespace.enum([
10981
11768
  "variant"
@@ -11028,7 +11815,7 @@ const flagSchema = z__namespace.object({
11028
11815
  ]),
11029
11816
  rules: z__namespace.array(z__namespace.object({
11030
11817
  id: z__namespace.string(),
11031
- outcome: z__namespace.union([
11818
+ outcome: z__namespace.discriminatedUnion("type", [
11032
11819
  z__namespace.object({
11033
11820
  type: z__namespace.enum([
11034
11821
  "variant"
@@ -11115,7 +11902,7 @@ const flagSchema = z__namespace.object({
11115
11902
  z__namespace.literal(true)
11116
11903
  ]).optional()
11117
11904
  }).optional(),
11118
- lhs: z__namespace.union([
11905
+ lhs: z__namespace.discriminatedUnion("type", [
11119
11906
  z__namespace.object({
11120
11907
  type: z__namespace.enum([
11121
11908
  "segment"
@@ -11218,7 +12005,7 @@ const segmentSchema = z__namespace.object({
11218
12005
  data: z__namespace.object({
11219
12006
  rules: z__namespace.array(z__namespace.object({
11220
12007
  id: z__namespace.string(),
11221
- outcome: z__namespace.union([
12008
+ outcome: z__namespace.discriminatedUnion("type", [
11222
12009
  z__namespace.object({
11223
12010
  type: z__namespace.enum([
11224
12011
  "all"
@@ -11278,7 +12065,7 @@ const segmentSchema = z__namespace.object({
11278
12065
  z__namespace.literal(true)
11279
12066
  ]).optional()
11280
12067
  }).optional(),
11281
- lhs: z__namespace.union([
12068
+ lhs: z__namespace.discriminatedUnion("type", [
11282
12069
  z__namespace.object({
11283
12070
  type: z__namespace.enum([
11284
12071
  "segment"
@@ -11499,7 +12286,10 @@ const namedSandboxSchema = z__namespace.object({
11499
12286
  "yul1"
11500
12287
  ])).optional().describe("The regions the sandbox fails over to. Empty when it does not fail over.").meta({
11501
12288
  examples: [
11502
- {}
12289
+ [
12290
+ "cle1",
12291
+ "sfo1"
12292
+ ]
11503
12293
  ]
11504
12294
  }),
11505
12295
  vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated.").meta({
@@ -11565,6 +12355,7 @@ const namedSandboxSchema = z__namespace.object({
11565
12355
  deniedCIDRs: z__namespace.array(z__namespace.string()).optional(),
11566
12356
  s3Key: z__namespace.string().optional()
11567
12357
  }).optional().describe("Network policy configuration."),
12358
+ networkId: z__namespace.string().optional().describe("The Connect network id for the target Secure Compute private network."),
11568
12359
  totalEgressBytes: z__namespace.number().optional().describe("Cumulative egress bytes across all sandbox runs.").meta({
11569
12360
  examples: [
11570
12361
  4096
@@ -11599,7 +12390,8 @@ const namedSandboxSchema = z__namespace.object({
11599
12390
  drive: z__namespace.string(),
11600
12391
  mode: z__namespace.enum([
11601
12392
  "read-only",
11602
- "read-write"
12393
+ "read-write",
12394
+ "snapshot"
11603
12395
  ]).optional()
11604
12396
  })).optional().describe("Key-value pairs of mount path and drive."),
11605
12397
  createdAt: z__namespace.number().describe("The time when the named sandbox was created, in milliseconds since the epoch.").meta({
@@ -11626,7 +12418,10 @@ const sandboxInjectionRuleSchema = z__namespace.object({
11626
12418
  }),
11627
12419
  headerNames: z__namespace.array(z__namespace.string()).optional().describe("The names of HTTP headers that have value that will be injected for requests to this domain.").meta({
11628
12420
  examples: [
11629
- {}
12421
+ [
12422
+ "Authorization",
12423
+ "X-API-Key"
12424
+ ]
11630
12425
  ]
11631
12426
  })
11632
12427
  }).describe("HTTP header injection rules for outgoing requests matching specific domains.");
@@ -11642,17 +12437,24 @@ const sandboxNetworkPolicySchema = z__namespace.object({
11642
12437
  }),
11643
12438
  allowedDomains: z__namespace.array(z__namespace.string()).optional().describe('List of domain names the sandbox is allowed to connect to. Supports wildcard patterns (e.g., "*.vercel.com" matches all subdomains).').meta({
11644
12439
  examples: [
11645
- {}
12440
+ [
12441
+ "*.example.com",
12442
+ "api.vercel.com"
12443
+ ]
11646
12444
  ]
11647
12445
  }),
11648
12446
  allowedCIDRs: z__namespace.array(z__namespace.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is allowed to connect to.").meta({
11649
12447
  examples: [
11650
- {}
12448
+ [
12449
+ "10.0.0.0/8"
12450
+ ]
11651
12451
  ]
11652
12452
  }),
11653
12453
  deniedCIDRs: z__namespace.array(z__namespace.string()).optional().describe("List of IP address ranges (in CIDR notation) the sandbox is blocked from connecting to. These rules take precedence over all allowed rules.").meta({
11654
12454
  examples: [
11655
- {}
12455
+ [
12456
+ "10.0.0.0/8"
12457
+ ]
11656
12458
  ]
11657
12459
  }),
11658
12460
  injectionRules: z__namespace.array(z__namespace.unknown()).optional().describe("HTTP header injection rules for outgoing requests matching specific domains.")
@@ -11788,6 +12590,11 @@ const sandboxPublicRouteSchema = z__namespace.object({
11788
12590
  system: z__namespace.literal(true).optional().describe("Whether the route is reserved by the system (e.g. for internal use).")
11789
12591
  }).describe("This object represents a public route in a Vercel Sandbox.");
11790
12592
  const driveSchema = z__namespace.object({
12593
+ id: z__namespace.string().describe("The unique drive ID.").meta({
12594
+ examples: [
12595
+ "drive_abc123"
12596
+ ]
12597
+ }),
11791
12598
  name: z__namespace.string().describe("The unique drive name within the project.").meta({
11792
12599
  examples: [
11793
12600
  "workspace"
@@ -11800,7 +12607,7 @@ const driveSchema = z__namespace.object({
11800
12607
  }),
11801
12608
  maxSizeBytes: z__namespace.number().describe("The maximum drive size in bytes.").meta({
11802
12609
  examples: [
11803
- 107374182400
12610
+ 1099511627776
11804
12611
  ]
11805
12612
  }),
11806
12613
  region: z__namespace.string().describe("The region where the drive is stored.").meta({
@@ -11847,7 +12654,10 @@ const snapshotSchema = z__namespace.object({
11847
12654
  }),
11848
12655
  regions: z__namespace.array(z__namespace.string()).optional().describe("The regions where the snapshot is available.").meta({
11849
12656
  examples: [
11850
- {}
12657
+ [
12658
+ "iad1",
12659
+ "sfo1"
12660
+ ]
11851
12661
  ]
11852
12662
  }),
11853
12663
  status: z__namespace.enum([
@@ -11911,7 +12721,10 @@ const sessionCommandSchema = z__namespace.object({
11911
12721
  }),
11912
12722
  args: z__namespace.array(z__namespace.string()).describe("The arguments of the command.").meta({
11913
12723
  examples: [
11914
- {}
12724
+ [
12725
+ "build",
12726
+ "run"
12727
+ ]
11915
12728
  ]
11916
12729
  }),
11917
12730
  cwd: z__namespace.string().describe("The current working directory of the command.").meta({
@@ -11981,7 +12794,9 @@ const invitedTeamMemberSchema = z__namespace.object({
11981
12794
  "VIEWER_FOR_PLUS"
11982
12795
  ])).optional().describe("The team roles of the user").meta({
11983
12796
  examples: [
11984
- {}
12797
+ [
12798
+ "MEMBER"
12799
+ ]
11985
12800
  ]
11986
12801
  }),
11987
12802
  teamPermissions: z__namespace.array(z__namespace.enum([
@@ -12006,7 +12821,9 @@ const invitedTeamMemberSchema = z__namespace.object({
12006
12821
  "WorkflowDecryptor"
12007
12822
  ])).optional().describe("The team permissions of the user").meta({
12008
12823
  examples: [
12009
- {}
12824
+ [
12825
+ "CreateProject"
12826
+ ]
12010
12827
  ]
12011
12828
  })
12012
12829
  }).describe("The member was successfully added to the team.");
@@ -12338,6 +13155,13 @@ const teamSchema = z__namespace.object({
12338
13155
  ]),
12339
13156
  updatedAt: z__namespace.number()
12340
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."),
12341
13165
  nsnbConfig: z__namespace.object({
12342
13166
  preference: z__namespace.enum([
12343
13167
  "auto-approval",
@@ -12368,7 +13192,7 @@ const teamSchema = z__namespace.object({
12368
13192
  z__namespace.literal(false),
12369
13193
  z__namespace.literal(true)
12370
13194
  ]),
12371
- environments: z__namespace.array(z__namespace.union([
13195
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12372
13196
  z__namespace.object({
12373
13197
  type: z__namespace.enum([
12374
13198
  "system"
@@ -12399,7 +13223,7 @@ const teamSchema = z__namespace.object({
12399
13223
  z__namespace.literal(false),
12400
13224
  z__namespace.literal(true)
12401
13225
  ]),
12402
- environments: z__namespace.array(z__namespace.union([
13226
+ environments: z__namespace.array(z__namespace.discriminatedUnion("type", [
12403
13227
  z__namespace.object({
12404
13228
  type: z__namespace.enum([
12405
13229
  "system"
@@ -12773,7 +13597,7 @@ const authTokenSchema = z__namespace.object({
12773
13597
  "github"
12774
13598
  ]
12775
13599
  }),
12776
- scopes: z__namespace.array(z__namespace.union([
13600
+ scopes: z__namespace.array(z__namespace.discriminatedUnion("type", [
12777
13601
  z__namespace.object({
12778
13602
  type: z__namespace.enum([
12779
13603
  "user"
@@ -12881,7 +13705,6 @@ const authUserSchema = z__namespace.object({
12881
13705
  "ENTERPRISE_UNPAID_INVOICE",
12882
13706
  "EXPOSURE_CAP_EXCEEDED",
12883
13707
  "FAIR_USE_LIMITS_EXCEEDED",
12884
- "HOBBY_ALLOCATION_PAUSED",
12885
13708
  "SUBSCRIPTION_CANCELED",
12886
13709
  "SUBSCRIPTION_EXPIRED",
12887
13710
  "UNPAID_INVOICE"
@@ -12927,55 +13750,7 @@ const authUserSchema = z__namespace.object({
12927
13750
  "wafRateLimitRequest",
12928
13751
  "webAnalyticsEvent"
12929
13752
  ]).optional(),
12930
- hobbyAllocationPause: z__namespace.object({
12931
- 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."),
12932
- pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
12933
- triggers: z__namespace.array(z__namespace.object({
12934
- allocation: z__namespace.enum([
12935
- "analyticsUsage",
12936
- "artifacts",
12937
- "bandwidth",
12938
- "blobDataTransfer",
12939
- "blobTotalAdvancedRequests",
12940
- "blobTotalAvgSizeInBytes",
12941
- "blobTotalGetResponseObjectSizeInBytes",
12942
- "blobTotalSimpleRequests",
12943
- "connectDataTransfer",
12944
- "dataCacheRead",
12945
- "dataCacheWrite",
12946
- "edgeConfigRead",
12947
- "edgeConfigWrite",
12948
- "edgeFunctionExecutionUnits",
12949
- "edgeMiddlewareInvocations",
12950
- "edgeRequest",
12951
- "edgeRequestAdditionalCpuDuration",
12952
- "elasticConcurrencyBuildSlots",
12953
- "fastDataTransfer",
12954
- "fastOriginTransfer",
12955
- "fluidCpuDuration",
12956
- "fluidDuration",
12957
- "functionDuration",
12958
- "functionInvocation",
12959
- "imageOptimizationCacheRead",
12960
- "imageOptimizationCacheWrite",
12961
- "imageOptimizationTransformation",
12962
- "logDrainsVolume",
12963
- "monitoringMetric",
12964
- "observabilityEvent",
12965
- "onDemandConcurrencyMinutes",
12966
- "runtimeCacheRead",
12967
- "runtimeCacheWrite",
12968
- "serverlessFunctionExecution",
12969
- "sourceImages",
12970
- "wafOwaspExcessBytes",
12971
- "wafOwaspRequests",
12972
- "wafRateLimitRequest",
12973
- "webAnalyticsEvent"
12974
- ]).describe("Metered allocation whose included amount was fully consumed."),
12975
- usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
12976
- })).describe("Allocations that were at or over 100% when the pause was applied."),
12977
- 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.")
12978
- }).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.")
12979
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.'),
12980
13755
  billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
12981
13756
  resourceConfig: z__namespace.object({
@@ -13021,10 +13796,10 @@ const authUserSchema = z__namespace.object({
13021
13796
  ]).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13022
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."),
13023
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."),
13024
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."),
13025
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."),
13026
- ipBypass: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13027
- 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.")
13028
13803
  }).optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
13029
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.")
13030
13805
  }).describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
@@ -13950,7 +14725,9 @@ const createAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
13950
14725
  createAiGatewayVirtualModelConfigStatus500Schema
13951
14726
  ]);
13952
14727
  const getAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
13953
- 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();
13954
14731
  const getAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
13955
14732
  examples: [
13956
14733
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14005,6 +14782,9 @@ const updateAiGatewayVirtualModelConfigErrorSchema = z__namespace.union([
14005
14782
  ]);
14006
14783
  const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
14007
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();
14008
14788
  const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14009
14789
  examples: [
14010
14790
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14058,6 +14838,92 @@ const listAiGatewayVirtualModelConfigsErrorSchema = z__namespace.union([
14058
14838
  listAiGatewayVirtualModelConfigsStatus410Schema,
14059
14839
  listAiGatewayVirtualModelConfigsStatus500Schema
14060
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
+ ]);
14061
14927
  const createAiGatewayRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
14062
14928
  examples: [
14063
14929
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -14165,12 +15031,12 @@ const deleteAiGatewayRuleErrorSchema = z__namespace.union([
14165
15031
  deleteAiGatewayRuleStatus410Schema,
14166
15032
  deleteAiGatewayRuleStatus500Schema
14167
15033
  ]);
14168
- const recordEventsHeaderxArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
15034
+ const recordEventsHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
14169
15035
  examples: [
14170
15036
  "VERCEL"
14171
15037
  ]
14172
15038
  });
14173
- const recordEventsHeaderxArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
15039
+ const recordEventsHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
14174
15040
  examples: [
14175
15041
  0
14176
15042
  ]
@@ -14223,29 +15089,29 @@ const statusErrorSchema = z__namespace.union([
14223
15089
  statusStatus403Schema,
14224
15090
  statusStatus410Schema
14225
15091
  ]);
14226
- const uploadArtifactHeadercontentLengthSchema = z__namespace.number().optional().describe("The artifact size in bytes");
14227
- const uploadArtifactHeaderxArtifactDurationSchema = z__namespace.number().optional().describe("The time taken to generate the uploaded artifact in milliseconds.").meta({
15092
+ const uploadArtifactHeaderContentLengthSchema = z__namespace.number().describe("The artifact size in bytes");
15093
+ const uploadArtifactHeaderXArtifactDurationSchema = z__namespace.number().optional().describe("The time taken to generate the uploaded artifact in milliseconds.").meta({
14228
15094
  examples: [
14229
15095
  400
14230
15096
  ]
14231
15097
  });
14232
- const uploadArtifactHeaderxArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact was generated.").meta({
15098
+ const uploadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact was generated.").meta({
14233
15099
  examples: [
14234
15100
  "VERCEL"
14235
15101
  ]
14236
15102
  });
14237
- const uploadArtifactHeaderxArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
15103
+ const uploadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
14238
15104
  examples: [
14239
15105
  0
14240
15106
  ]
14241
15107
  });
14242
- const uploadArtifactHeaderxArtifactTagSchema = z__namespace.string().max(600).optional().describe("The base64 encoded tag for this artifact. The value is sent back to clients when the artifact is downloaded as the header `x-artifact-tag`").meta({
15108
+ const uploadArtifactHeaderXArtifactTagSchema = z__namespace.string().max(600).optional().describe("The base64 encoded tag for this artifact. The value is sent back to clients when the artifact is downloaded as the header `x-artifact-tag`").meta({
14243
15109
  examples: [
14244
15110
  "Tc0BmHvJYMIYJ62/zx87YqO0Flxk+5Ovip25NY825CQ="
14245
15111
  ]
14246
15112
  });
14247
- const uploadArtifactHeaderxArtifactShaSchema = z__namespace.string().max(200).optional().describe("The SHA of the source control revision that generated this artifact.");
14248
- const uploadArtifactHeaderxArtifactDirtyHashSchema = z__namespace.string().max(200).optional().describe("A hash representing uncommitted changes in the working directory when this artifact was generated.");
15113
+ const uploadArtifactHeaderXArtifactShaSchema = z__namespace.string().max(200).optional().describe("The SHA of the source control revision that generated this artifact.");
15114
+ const uploadArtifactHeaderXArtifactDirtyHashSchema = z__namespace.string().max(200).optional().describe("A hash representing uncommitted changes in the working directory when this artifact was generated.");
14249
15115
  const uploadArtifactPathHashSchema = z__namespace.string().describe("The artifact hash").meta({
14250
15116
  examples: [
14251
15117
  "12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
@@ -14275,12 +15141,12 @@ const uploadArtifactErrorSchema = z__namespace.union([
14275
15141
  uploadArtifactStatus403Schema,
14276
15142
  uploadArtifactStatus410Schema
14277
15143
  ]);
14278
- const downloadArtifactHeaderxArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
15144
+ const downloadArtifactHeaderXArtifactClientCiSchema = z__namespace.string().max(50).optional().describe("The continuous integration or delivery environment where this artifact is downloaded.").meta({
14279
15145
  examples: [
14280
15146
  "VERCEL"
14281
15147
  ]
14282
15148
  });
14283
- const downloadArtifactHeaderxArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
15149
+ const downloadArtifactHeaderXArtifactClientInteractiveSchema = z__namespace.int().min(0).max(1).optional().describe("1 if the client is an interactive shell. Otherwise 0").meta({
14284
15150
  examples: [
14285
15151
  0
14286
15152
  ]
@@ -15241,6 +16107,260 @@ const readNetworkErrorSchema = z__namespace.union([
15241
16107
  readNetworkStatus403Schema,
15242
16108
  readNetworkStatus410Schema
15243
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
+ ]);
15244
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({
15245
16365
  examples: [
15246
16366
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -15273,6 +16393,198 @@ const createConnectorErrorSchema = z__namespace.union([
15273
16393
  createConnectorStatus500Schema,
15274
16394
  createConnectorStatus502Schema
15275
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
+ ]);
15276
16588
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
15277
16589
  const getConnectorTokenStatus200Schema = z__namespace.unknown();
15278
16590
  const getConnectorTokenStatus400Schema = z__namespace.unknown();
@@ -17224,21 +18536,11 @@ const listSharedEnvVariableQueryExcludeIdsSchema = z__namespace.string().optiona
17224
18536
  "env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
17225
18537
  ]
17226
18538
  });
17227
- const listSharedEnvVariableQueryexcludeIdsSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables based on comma separated ids").meta({
17228
- examples: [
17229
- "env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
17230
- ]
17231
- });
17232
18539
  const listSharedEnvVariableQueryExcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
17233
18540
  examples: [
17234
18541
  "prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
17235
18542
  ]
17236
18543
  });
17237
- const listSharedEnvVariableQueryexcludeProjectIdSchema = z__namespace.string().optional().describe("Filter SharedEnvVariables that belong to a project").meta({
17238
- examples: [
17239
- "prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
17240
- ]
17241
- });
17242
18544
  const listSharedEnvVariableQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
17243
18545
  examples: [
17244
18546
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -18197,7 +19499,8 @@ const getBillingPlansQuerySourceSchema = z__namespace.enum([
18197
19499
  "cli",
18198
19500
  "oauth",
18199
19501
  "backoffice",
18200
- "import-recommended-integrations"
19502
+ "import-recommended-integrations",
19503
+ "organization"
18201
19504
  ]).optional();
18202
19505
  const getBillingPlansQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
18203
19506
  examples: [
@@ -18401,7 +19704,6 @@ const importResourceStatus404Schema = z__namespace.unknown();
18401
19704
  const importResourceStatus409Schema = z__namespace.unknown();
18402
19705
  const importResourceStatus410Schema = z__namespace.unknown();
18403
19706
  const importResourceStatus422Schema = z__namespace.unknown();
18404
- const importResourceStatus429Schema = z__namespace.unknown();
18405
19707
  const importResourceResponseSchema = importResourceStatus200Schema;
18406
19708
  const importResourceErrorSchema = z__namespace.union([
18407
19709
  importResourceStatus400Schema,
@@ -18410,8 +19712,7 @@ const importResourceErrorSchema = z__namespace.union([
18410
19712
  importResourceStatus404Schema,
18411
19713
  importResourceStatus409Schema,
18412
19714
  importResourceStatus410Schema,
18413
- importResourceStatus422Schema,
18414
- importResourceStatus429Schema
19715
+ importResourceStatus422Schema
18415
19716
  ]);
18416
19717
  const updateResourcePathIntegrationConfigurationIdSchema = z__namespace.string();
18417
19718
  const updateResourcePathResourceIdSchema = z__namespace.string();
@@ -19401,6 +20702,10 @@ const createObservabilityQueryStatus402Schema = z__namespace.unknown();
19401
20702
  const createObservabilityQueryStatus403Schema = z__namespace.unknown();
19402
20703
  const createObservabilityQueryStatus408Schema = z__namespace.unknown();
19403
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();
19404
20709
  const createObservabilityQueryResponseSchema = createObservabilityQueryStatus200Schema;
19405
20710
  const createObservabilityQueryErrorSchema = z__namespace.union([
19406
20711
  createObservabilityQueryStatus400Schema,
@@ -19408,7 +20713,11 @@ const createObservabilityQueryErrorSchema = z__namespace.union([
19408
20713
  createObservabilityQueryStatus402Schema,
19409
20714
  createObservabilityQueryStatus403Schema,
19410
20715
  createObservabilityQueryStatus408Schema,
19411
- createObservabilityQueryStatus410Schema
20716
+ createObservabilityQueryStatus410Schema,
20717
+ createObservabilityQueryStatus413Schema,
20718
+ createObservabilityQueryStatus422Schema,
20719
+ createObservabilityQueryStatus500Schema,
20720
+ createObservabilityQueryStatus503Schema
19412
20721
  ]);
19413
20722
  const getObservabilitySchemaStatus200Schema = z__namespace.unknown();
19414
20723
  const getObservabilitySchemaStatus400Schema = z__namespace.unknown();
@@ -20006,6 +21315,7 @@ const updateProjectStatus404Schema = z__namespace.unknown();
20006
21315
  const updateProjectStatus409Schema = z__namespace.unknown();
20007
21316
  const updateProjectStatus410Schema = z__namespace.unknown();
20008
21317
  const updateProjectStatus428Schema = z__namespace.unknown();
21318
+ const updateProjectStatus429Schema = z__namespace.unknown();
20009
21319
  const updateProjectResponseSchema = updateProjectStatus200Schema;
20010
21320
  const updateProjectErrorSchema = z__namespace.union([
20011
21321
  updateProjectStatus400Schema,
@@ -20015,7 +21325,8 @@ const updateProjectErrorSchema = z__namespace.union([
20015
21325
  updateProjectStatus404Schema,
20016
21326
  updateProjectStatus409Schema,
20017
21327
  updateProjectStatus410Schema,
20018
- updateProjectStatus428Schema
21328
+ updateProjectStatus428Schema,
21329
+ updateProjectStatus429Schema
20019
21330
  ]);
20020
21331
  const deleteProjectPathIdOrNameSchema = z__namespace.string().describe("The unique project identifier or the project name").meta({
20021
21332
  examples: [
@@ -20944,12 +22255,14 @@ const createProjectTransferRequestStatus200Schema = z__namespace.unknown();
20944
22255
  const createProjectTransferRequestStatus400Schema = z__namespace.unknown();
20945
22256
  const createProjectTransferRequestStatus401Schema = z__namespace.unknown();
20946
22257
  const createProjectTransferRequestStatus403Schema = z__namespace.unknown();
22258
+ const createProjectTransferRequestStatus409Schema = z__namespace.unknown();
20947
22259
  const createProjectTransferRequestStatus410Schema = z__namespace.unknown();
20948
22260
  const createProjectTransferRequestResponseSchema = createProjectTransferRequestStatus200Schema;
20949
22261
  const createProjectTransferRequestErrorSchema = z__namespace.union([
20950
22262
  createProjectTransferRequestStatus400Schema,
20951
22263
  createProjectTransferRequestStatus401Schema,
20952
22264
  createProjectTransferRequestStatus403Schema,
22265
+ createProjectTransferRequestStatus409Schema,
20953
22266
  createProjectTransferRequestStatus410Schema
20954
22267
  ]);
20955
22268
  const acceptProjectTransferRequestPathCodeSchema = z__namespace.string().describe("The code of the project transfer request.");
@@ -21209,62 +22522,62 @@ const unpauseProjectErrorSchema = z__namespace.union([
21209
22522
  unpauseProjectStatus410Schema,
21210
22523
  unpauseProjectStatus500Schema
21211
22524
  ]);
21212
- 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({
21213
22526
  examples: [
21214
22527
  "prj_abc123"
21215
22528
  ]
21216
22529
  });
21217
- 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({
21218
22531
  examples: [
21219
22532
  20
21220
22533
  ]
21221
22534
  });
21222
- const listSandboxesQuerySortBySchema = z__namespace.enum([
22535
+ const listNamedSandboxesQuerySortBySchema = z__namespace.enum([
21223
22536
  "createdAt",
21224
22537
  "name",
21225
22538
  "statusUpdatedAt",
21226
22539
  "currentSnapshotId"
21227
22540
  ]).optional().default("createdAt").describe("Field to sort by.");
21228
- const listSandboxesQueryNamePrefixSchema = z__namespace.string().optional().describe("Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.");
21229
- const listSandboxesQueryCursorSchema = z__namespace.string().optional().describe("Opaque pagination cursor from a previous response.");
21230
- 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([
21231
22544
  "asc",
21232
22545
  "desc"
21233
22546
  ]).optional().default("desc").describe("Sort direction. Defaults to desc.");
21234
- const listSandboxesQueryStatusSchema = z__namespace.enum([
22547
+ const listNamedSandboxesQueryStatusSchema = z__namespace.enum([
21235
22548
  "running",
21236
22549
  "stopping",
21237
22550
  "stopped"
21238
22551
  ]).optional().describe("Filter named sandboxes by status. Only valid when sortBy is createdAt.");
21239
- const listSandboxesQueryTagsSchema = z__namespace.union([
22552
+ const listNamedSandboxesQueryTagsSchema = z__namespace.union([
21240
22553
  z__namespace.string(),
21241
22554
  z__namespace.array(z__namespace.string())
21242
22555
  ]).optional().describe('Filter sandboxes by tag. Format: \\"key:value\\". Only one tag filter is supported at a time.');
21243
- 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({
21244
22557
  examples: [
21245
22558
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
21246
22559
  ]
21247
22560
  });
21248
- 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({
21249
22562
  examples: [
21250
22563
  "my-team-url-slug"
21251
22564
  ]
21252
22565
  });
21253
- const listSandboxesStatus200Schema = z__namespace.unknown();
21254
- const listSandboxesStatus400Schema = z__namespace.unknown();
21255
- const listSandboxesStatus401Schema = z__namespace.unknown();
21256
- const listSandboxesStatus403Schema = z__namespace.unknown();
21257
- const listSandboxesStatus404Schema = z__namespace.unknown();
21258
- const listSandboxesStatus410Schema = z__namespace.unknown();
21259
- const listSandboxesStatus429Schema = z__namespace.unknown();
21260
- const listSandboxesResponseSchema = listSandboxesStatus200Schema;
21261
- const listSandboxesErrorSchema = z__namespace.union([
21262
- listSandboxesStatus400Schema,
21263
- listSandboxesStatus401Schema,
21264
- listSandboxesStatus403Schema,
21265
- listSandboxesStatus404Schema,
21266
- listSandboxesStatus410Schema,
21267
- 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
21268
22581
  ]);
21269
22582
  const createSandboxesV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
21270
22583
  examples: [
@@ -22100,7 +23413,7 @@ const createSessionDirectoryErrorSchema = z__namespace.union([
22100
23413
  createSessionDirectoryStatus429Schema,
22101
23414
  createSessionDirectoryStatus500Schema
22102
23415
  ]);
22103
- const writeSessionFilesHeaderxCwdSchema = z__namespace.string().optional().describe("The target directory where the tarball contents will be extracted. If not specified, files are extracted to the sandbox home directory.").meta({
23416
+ const writeSessionFilesHeaderXCwdSchema = z__namespace.string().optional().describe("The target directory where the tarball contents will be extracted. If not specified, files are extracted to the sandbox home directory.").meta({
22104
23417
  examples: [
22105
23418
  "/home/vercel-sandbox"
22106
23419
  ]
@@ -22561,6 +23874,7 @@ const getBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22561
23874
  const getBypassIpStatus200Schema = z__namespace.unknown();
22562
23875
  const getBypassIpStatus400Schema = z__namespace.unknown();
22563
23876
  const getBypassIpStatus401Schema = z__namespace.unknown();
23877
+ const getBypassIpStatus402Schema = z__namespace.unknown();
22564
23878
  const getBypassIpStatus403Schema = z__namespace.unknown();
22565
23879
  const getBypassIpStatus404Schema = z__namespace.unknown();
22566
23880
  const getBypassIpStatus410Schema = z__namespace.unknown();
@@ -22569,6 +23883,7 @@ const getBypassIpResponseSchema = getBypassIpStatus200Schema;
22569
23883
  const getBypassIpErrorSchema = z__namespace.union([
22570
23884
  getBypassIpStatus400Schema,
22571
23885
  getBypassIpStatus401Schema,
23886
+ getBypassIpStatus402Schema,
22572
23887
  getBypassIpStatus403Schema,
22573
23888
  getBypassIpStatus404Schema,
22574
23889
  getBypassIpStatus410Schema,
@@ -22588,6 +23903,7 @@ const addBypassIpQuerySlugSchema = z__namespace.string().optional().describe("Th
22588
23903
  const addBypassIpStatus200Schema = z__namespace.unknown();
22589
23904
  const addBypassIpStatus400Schema = z__namespace.unknown();
22590
23905
  const addBypassIpStatus401Schema = z__namespace.unknown();
23906
+ const addBypassIpStatus402Schema = z__namespace.unknown();
22591
23907
  const addBypassIpStatus403Schema = z__namespace.unknown();
22592
23908
  const addBypassIpStatus404Schema = z__namespace.unknown();
22593
23909
  const addBypassIpStatus410Schema = z__namespace.unknown();
@@ -22596,6 +23912,7 @@ const addBypassIpResponseSchema = addBypassIpStatus200Schema;
22596
23912
  const addBypassIpErrorSchema = z__namespace.union([
22597
23913
  addBypassIpStatus400Schema,
22598
23914
  addBypassIpStatus401Schema,
23915
+ addBypassIpStatus402Schema,
22599
23916
  addBypassIpStatus403Schema,
22600
23917
  addBypassIpStatus404Schema,
22601
23918
  addBypassIpStatus410Schema,
@@ -22615,6 +23932,7 @@ const removeBypassIpQuerySlugSchema = z__namespace.string().optional().describe(
22615
23932
  const removeBypassIpStatus200Schema = z__namespace.unknown();
22616
23933
  const removeBypassIpStatus400Schema = z__namespace.unknown();
22617
23934
  const removeBypassIpStatus401Schema = z__namespace.unknown();
23935
+ const removeBypassIpStatus402Schema = z__namespace.unknown();
22618
23936
  const removeBypassIpStatus403Schema = z__namespace.unknown();
22619
23937
  const removeBypassIpStatus404Schema = z__namespace.unknown();
22620
23938
  const removeBypassIpStatus410Schema = z__namespace.unknown();
@@ -22623,6 +23941,7 @@ const removeBypassIpResponseSchema = removeBypassIpStatus200Schema;
22623
23941
  const removeBypassIpErrorSchema = z__namespace.union([
22624
23942
  removeBypassIpStatus400Schema,
22625
23943
  removeBypassIpStatus401Schema,
23944
+ removeBypassIpStatus402Schema,
22626
23945
  removeBypassIpStatus403Schema,
22627
23946
  removeBypassIpStatus404Schema,
22628
23947
  removeBypassIpStatus410Schema,
@@ -22647,6 +23966,7 @@ const getSecurityFirewallEventsStatus400Schema = z__namespace.unknown();
22647
23966
  const getSecurityFirewallEventsStatus401Schema = z__namespace.unknown();
22648
23967
  const getSecurityFirewallEventsStatus403Schema = z__namespace.unknown();
22649
23968
  const getSecurityFirewallEventsStatus404Schema = z__namespace.unknown();
23969
+ const getSecurityFirewallEventsStatus408Schema = z__namespace.unknown();
22650
23970
  const getSecurityFirewallEventsStatus410Schema = z__namespace.unknown();
22651
23971
  const getSecurityFirewallEventsStatus500Schema = z__namespace.unknown();
22652
23972
  const getSecurityFirewallEventsResponseSchema = getSecurityFirewallEventsStatus200Schema;
@@ -22655,6 +23975,7 @@ const getSecurityFirewallEventsErrorSchema = z__namespace.union([
22655
23975
  getSecurityFirewallEventsStatus401Schema,
22656
23976
  getSecurityFirewallEventsStatus403Schema,
22657
23977
  getSecurityFirewallEventsStatus404Schema,
23978
+ getSecurityFirewallEventsStatus408Schema,
22658
23979
  getSecurityFirewallEventsStatus410Schema,
22659
23980
  getSecurityFirewallEventsStatus500Schema
22660
23981
  ]);
@@ -22703,8 +24024,8 @@ const createSpeedInsightsToggleErrorSchema = z__namespace.union([
22703
24024
  createSpeedInsightsToggleStatus410Schema
22704
24025
  ]);
22705
24026
  const getStorageStoresByIdPathIdSchema = z__namespace.string();
22706
- const getStorageStoresByIdQueryskipMetadataSchema = z__namespace.boolean().optional();
22707
- const getStorageStoresByIdQueryincludeGuidesSchema = z__namespace.boolean().optional();
24027
+ const getStorageStoresByIdQuerySkipMetadataSchema = z__namespace.boolean().optional();
24028
+ const getStorageStoresByIdQueryIncludeGuidesSchema = z__namespace.boolean().optional();
22708
24029
  const getStorageStoresByIdStatus200Schema = z__namespace.unknown();
22709
24030
  const getStorageStoresByIdStatus400Schema = z__namespace.unknown();
22710
24031
  const getStorageStoresByIdStatus401Schema = z__namespace.unknown();
@@ -22774,7 +24095,6 @@ const createIntegrationStoreDirectStatus403Schema = z__namespace.unknown();
22774
24095
  const createIntegrationStoreDirectStatus404Schema = z__namespace.unknown();
22775
24096
  const createIntegrationStoreDirectStatus409Schema = z__namespace.unknown();
22776
24097
  const createIntegrationStoreDirectStatus410Schema = z__namespace.unknown();
22777
- const createIntegrationStoreDirectStatus429Schema = z__namespace.unknown();
22778
24098
  const createIntegrationStoreDirectStatus500Schema = z__namespace.unknown();
22779
24099
  const createIntegrationStoreDirectResponseSchema = createIntegrationStoreDirectStatus200Schema;
22780
24100
  const createIntegrationStoreDirectErrorSchema = z__namespace.union([
@@ -22785,7 +24105,6 @@ const createIntegrationStoreDirectErrorSchema = z__namespace.union([
22785
24105
  createIntegrationStoreDirectStatus404Schema,
22786
24106
  createIntegrationStoreDirectStatus409Schema,
22787
24107
  createIntegrationStoreDirectStatus410Schema,
22788
- createIntegrationStoreDirectStatus429Schema,
22789
24108
  createIntegrationStoreDirectStatus500Schema
22790
24109
  ]);
22791
24110
  const getTeamMembersQueryLimitSchema = z__namespace.number().min(1).optional().describe("Limit how many teams should be returned").meta({
@@ -23134,6 +24453,7 @@ const deleteTeamStatus402Schema = z__namespace.unknown();
23134
24453
  const deleteTeamStatus403Schema = z__namespace.unknown();
23135
24454
  const deleteTeamStatus409Schema = z__namespace.unknown();
23136
24455
  const deleteTeamStatus410Schema = z__namespace.unknown();
24456
+ const deleteTeamStatus503Schema = z__namespace.unknown();
23137
24457
  const deleteTeamResponseSchema = deleteTeamStatus200Schema;
23138
24458
  const deleteTeamErrorSchema = z__namespace.union([
23139
24459
  deleteTeamStatus400Schema,
@@ -23141,7 +24461,8 @@ const deleteTeamErrorSchema = z__namespace.union([
23141
24461
  deleteTeamStatus402Schema,
23142
24462
  deleteTeamStatus403Schema,
23143
24463
  deleteTeamStatus409Schema,
23144
- deleteTeamStatus410Schema
24464
+ deleteTeamStatus410Schema,
24465
+ deleteTeamStatus503Schema
23145
24466
  ]);
23146
24467
  const deleteTeamInviteCodePathInviteIdSchema = z__namespace.string().describe("The Team invite code ID.").meta({
23147
24468
  examples: [
@@ -23223,10 +24544,10 @@ const deleteMicrofrontendsGroupErrorSchema = z__namespace.union([
23223
24544
  deleteMicrofrontendsGroupStatus410Schema,
23224
24545
  deleteMicrofrontendsGroupStatus500Schema
23225
24546
  ]);
23226
- const uploadFileHeadercontentLengthSchema = z__namespace.number().optional().describe("The file size in bytes");
23227
- const uploadFileHeaderxVercelDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
23228
- const uploadFileHeaderxNowDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
23229
- const uploadFileHeaderxNowSizeSchema = z__namespace.number().optional().describe("The file size as an alternative to `Content-Length`");
24547
+ const uploadFileHeaderContentLengthSchema = z__namespace.number().optional().describe("The file size in bytes");
24548
+ const uploadFileHeaderXVercelDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
24549
+ const uploadFileHeaderXNowDigestSchema = z__namespace.string().max(40).optional().describe("The file SHA1 used to check the integrity");
24550
+ const uploadFileHeaderXNowSizeSchema = z__namespace.number().optional().describe("The file size as an alternative to `Content-Length`");
23230
24551
  const uploadFileQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23231
24552
  examples: [
23232
24553
  "team_1a2b3c4d5e6f7g8h9i0j1k2l"
@@ -23383,7 +24704,7 @@ const createRepositoryErrorSchema = z__namespace.union([
23383
24704
  createRepositoryStatus409Schema,
23384
24705
  createRepositoryStatus410Schema
23385
24706
  ]);
23386
- 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.");
23387
24708
  const listRepositoriesQueryLimitSchema = z__namespace.int().min(1).max(1000).optional();
23388
24709
  const listRepositoriesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
23389
24710
  const listRepositoriesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23410,7 +24731,7 @@ const listRepositoriesErrorSchema = z__namespace.union([
23410
24731
  listRepositoriesStatus404Schema,
23411
24732
  listRepositoriesStatus410Schema
23412
24733
  ]);
23413
- 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.");
23414
24735
  const getRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23415
24736
  const getRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23416
24737
  examples: [
@@ -23436,7 +24757,7 @@ const getRepositoryErrorSchema = z__namespace.union([
23436
24757
  getRepositoryStatus404Schema,
23437
24758
  getRepositoryStatus410Schema
23438
24759
  ]);
23439
- 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.");
23440
24761
  const deleteRepositoryPathIdOrNameSchema = z__namespace.string().max(255);
23441
24762
  const deleteRepositoryQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23442
24763
  examples: [
@@ -23462,7 +24783,7 @@ const deleteRepositoryErrorSchema = z__namespace.union([
23462
24783
  deleteRepositoryStatus404Schema,
23463
24784
  deleteRepositoryStatus410Schema
23464
24785
  ]);
23465
- 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.");
23466
24787
  const listRepositoryImagesPathIdOrNameSchema = z__namespace.string().max(255);
23467
24788
  const listRepositoryImagesQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23468
24789
  const listRepositoryImagesQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23491,7 +24812,7 @@ const listRepositoryImagesErrorSchema = z__namespace.union([
23491
24812
  listRepositoryImagesStatus404Schema,
23492
24813
  listRepositoryImagesStatus410Schema
23493
24814
  ]);
23494
- 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.");
23495
24816
  const addRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23496
24817
  const addRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23497
24818
  examples: [
@@ -23517,7 +24838,7 @@ const addRepositoryPermissionErrorSchema = z__namespace.union([
23517
24838
  addRepositoryPermissionStatus404Schema,
23518
24839
  addRepositoryPermissionStatus410Schema
23519
24840
  ]);
23520
- 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.");
23521
24842
  const removeRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
23522
24843
  const removeRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23523
24844
  examples: [
@@ -23543,7 +24864,7 @@ const removeRepositoryPermissionErrorSchema = z__namespace.union([
23543
24864
  removeRepositoryPermissionStatus404Schema,
23544
24865
  removeRepositoryPermissionStatus410Schema
23545
24866
  ]);
23546
- 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.");
23547
24868
  const listRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23548
24869
  const listRepositoryPermissionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23549
24870
  const listRepositoryPermissionsQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
@@ -23571,7 +24892,7 @@ const listRepositoryPermissionsErrorSchema = z__namespace.union([
23571
24892
  listRepositoryPermissionsStatus404Schema,
23572
24893
  listRepositoryPermissionsStatus410Schema
23573
24894
  ]);
23574
- 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.");
23575
24896
  const clearRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
23576
24897
  const clearRepositoryPermissionsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
23577
24898
  examples: [
@@ -23597,7 +24918,7 @@ const clearRepositoryPermissionsErrorSchema = z__namespace.union([
23597
24918
  clearRepositoryPermissionsStatus404Schema,
23598
24919
  clearRepositoryPermissionsStatus410Schema
23599
24920
  ]);
23600
- 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.");
23601
24922
  const listRepositoryTagsPathIdOrNameSchema = z__namespace.string().max(255);
23602
24923
  const listRepositoryTagsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
23603
24924
  const listRepositoryTagsQueryCursorSchema = z__namespace.string().optional();
@@ -23633,7 +24954,7 @@ const listRepositoryTagsErrorSchema = z__namespace.union([
23633
24954
  listRepositoryTagsStatus404Schema,
23634
24955
  listRepositoryTagsStatus410Schema
23635
24956
  ]);
23636
- 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.");
23637
24958
  const getRepositoryTagPathIdOrNameSchema = z__namespace.string().max(255);
23638
24959
  const getRepositoryTagPathTagSchema = z__namespace.string().max(255);
23639
24960
  const getRepositoryTagQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23660,7 +24981,7 @@ const getRepositoryTagErrorSchema = z__namespace.union([
23660
24981
  getRepositoryTagStatus404Schema,
23661
24982
  getRepositoryTagStatus410Schema
23662
24983
  ]);
23663
- 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.");
23664
24985
  const getRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23665
24986
  const getRepositoryImagePathImageIdOrDigestSchema = z__namespace.string().max(255).describe("The internal image id (`image_...`) or the image manifest digest (`sha256:...`).");
23666
24987
  const getRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -23687,7 +25008,7 @@ const getRepositoryImageErrorSchema = z__namespace.union([
23687
25008
  getRepositoryImageStatus404Schema,
23688
25009
  getRepositoryImageStatus410Schema
23689
25010
  ]);
23690
- 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.");
23691
25012
  const deleteRepositoryImagePathIdOrNameSchema = z__namespace.string().max(255);
23692
25013
  const deleteRepositoryImagePathImageIdSchema = z__namespace.string().max(255);
23693
25014
  const deleteRepositoryImageQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
@@ -24154,7 +25475,10 @@ const aggregatePageviewsQueryBySchema = z__namespace.array(z__namespace.string()
24154
25475
  message: "Array entries must be unique"
24155
25476
  }).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm.\n\nJSON dimensions: flags. Used bare, it breaks down results by key, for example flags returns one group per flag name. With a key, it breaks down results by that key's value, for example flags/beta_banner. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
24156
25477
  examples: [
24157
- {}
25478
+ [
25479
+ "day",
25480
+ "country"
25481
+ ]
24158
25482
  ]
24159
25483
  });
24160
25484
  const aggregatePageviewsQuerySinceSchema = z__namespace.union([
@@ -24198,14 +25522,18 @@ const aggregatePageviewsStatus400Schema = z__namespace.unknown();
24198
25522
  const aggregatePageviewsStatus401Schema = z__namespace.unknown();
24199
25523
  const aggregatePageviewsStatus402Schema = z__namespace.unknown();
24200
25524
  const aggregatePageviewsStatus403Schema = z__namespace.unknown();
25525
+ const aggregatePageviewsStatus404Schema = z__namespace.unknown();
24201
25526
  const aggregatePageviewsStatus410Schema = z__namespace.unknown();
25527
+ const aggregatePageviewsStatus503Schema = z__namespace.unknown();
24202
25528
  const aggregatePageviewsResponseSchema = aggregatePageviewsStatus200Schema;
24203
25529
  const aggregatePageviewsErrorSchema = z__namespace.union([
24204
25530
  aggregatePageviewsStatus400Schema,
24205
25531
  aggregatePageviewsStatus401Schema,
24206
25532
  aggregatePageviewsStatus402Schema,
24207
25533
  aggregatePageviewsStatus403Schema,
24208
- aggregatePageviewsStatus410Schema
25534
+ aggregatePageviewsStatus404Schema,
25535
+ aggregatePageviewsStatus410Schema,
25536
+ aggregatePageviewsStatus503Schema
24209
25537
  ]);
24210
25538
  const aggregateEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24211
25539
  examples: [
@@ -24216,7 +25544,10 @@ const aggregateEventsQueryBySchema = z__namespace.array(z__namespace.string().re
24216
25544
  message: "Array entries must be unique"
24217
25545
  }).describe("Up to two dimensions used to break down results.\n\nAt most one time granularity is allowed: hour, day, week, month, year.\n\nOther dimensions: country, deviceType, environment, requestPath, referrerHostname, osName, browserName, route, utmSource, utmMedium, utmCampaign, utmContent, utmTerm, eventName.\n\nJSON dimensions: flags, eventData. Used bare, they break down results by key, for example flags returns one group per flag name. With a key, they break down results by that key's value, for example eventData/plan. Wrap keys containing characters other than letters, digits, and underscores in single quotes, for example flags/'my-flag'.").meta({
24218
25546
  examples: [
24219
- {}
25547
+ [
25548
+ "day",
25549
+ "eventName"
25550
+ ]
24220
25551
  ]
24221
25552
  });
24222
25553
  const aggregateEventsQuerySinceSchema = z__namespace.union([
@@ -24260,14 +25591,18 @@ const aggregateEventsStatus400Schema = z__namespace.unknown();
24260
25591
  const aggregateEventsStatus401Schema = z__namespace.unknown();
24261
25592
  const aggregateEventsStatus402Schema = z__namespace.unknown();
24262
25593
  const aggregateEventsStatus403Schema = z__namespace.unknown();
25594
+ const aggregateEventsStatus404Schema = z__namespace.unknown();
24263
25595
  const aggregateEventsStatus410Schema = z__namespace.unknown();
25596
+ const aggregateEventsStatus503Schema = z__namespace.unknown();
24264
25597
  const aggregateEventsResponseSchema = aggregateEventsStatus200Schema;
24265
25598
  const aggregateEventsErrorSchema = z__namespace.union([
24266
25599
  aggregateEventsStatus400Schema,
24267
25600
  aggregateEventsStatus401Schema,
24268
25601
  aggregateEventsStatus402Schema,
24269
25602
  aggregateEventsStatus403Schema,
24270
- aggregateEventsStatus410Schema
25603
+ aggregateEventsStatus404Schema,
25604
+ aggregateEventsStatus410Schema,
25605
+ aggregateEventsStatus503Schema
24271
25606
  ]);
24272
25607
  const countPageviewsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24273
25608
  examples: [
@@ -24310,14 +25645,18 @@ const countPageviewsStatus400Schema = z__namespace.unknown();
24310
25645
  const countPageviewsStatus401Schema = z__namespace.unknown();
24311
25646
  const countPageviewsStatus402Schema = z__namespace.unknown();
24312
25647
  const countPageviewsStatus403Schema = z__namespace.unknown();
25648
+ const countPageviewsStatus404Schema = z__namespace.unknown();
24313
25649
  const countPageviewsStatus410Schema = z__namespace.unknown();
25650
+ const countPageviewsStatus503Schema = z__namespace.unknown();
24314
25651
  const countPageviewsResponseSchema = countPageviewsStatus200Schema;
24315
25652
  const countPageviewsErrorSchema = z__namespace.union([
24316
25653
  countPageviewsStatus400Schema,
24317
25654
  countPageviewsStatus401Schema,
24318
25655
  countPageviewsStatus402Schema,
24319
25656
  countPageviewsStatus403Schema,
24320
- countPageviewsStatus410Schema
25657
+ countPageviewsStatus404Schema,
25658
+ countPageviewsStatus410Schema,
25659
+ countPageviewsStatus503Schema
24321
25660
  ]);
24322
25661
  const countEventsQueryProjectIdSchema = z__namespace.string().describe("The project identifier or the project name").meta({
24323
25662
  examples: [
@@ -24360,14 +25699,18 @@ const countEventsStatus400Schema = z__namespace.unknown();
24360
25699
  const countEventsStatus401Schema = z__namespace.unknown();
24361
25700
  const countEventsStatus402Schema = z__namespace.unknown();
24362
25701
  const countEventsStatus403Schema = z__namespace.unknown();
25702
+ const countEventsStatus404Schema = z__namespace.unknown();
24363
25703
  const countEventsStatus410Schema = z__namespace.unknown();
25704
+ const countEventsStatus503Schema = z__namespace.unknown();
24364
25705
  const countEventsResponseSchema = countEventsStatus200Schema;
24365
25706
  const countEventsErrorSchema = z__namespace.union([
24366
25707
  countEventsStatus400Schema,
24367
25708
  countEventsStatus401Schema,
24368
25709
  countEventsStatus402Schema,
24369
25710
  countEventsStatus403Schema,
24370
- countEventsStatus410Schema
25711
+ countEventsStatus404Schema,
25712
+ countEventsStatus410Schema,
25713
+ countEventsStatus503Schema
24371
25714
  ]);
24372
25715
  const createWebhookQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.").meta({
24373
25716
  examples: [
@@ -24890,7 +26233,10 @@ const getDeploymentsQueryProjectIdSchema = z__namespace.string().optional().desc
24890
26233
  });
24891
26234
  const getDeploymentsQueryProjectIdsSchema = z__namespace.array(z__namespace.string()).min(1).max(20).optional().describe("Filter deployments from the given project IDs. Cannot be used when projectId is specified.").meta({
24892
26235
  examples: [
24893
- {}
26236
+ [
26237
+ "prj_123",
26238
+ "prj_456"
26239
+ ]
24894
26240
  ]
24895
26241
  });
24896
26242
  const getDeploymentsQueryTargetSchema = z__namespace.string().optional().describe("Filter deployments based on the environment.").meta({
@@ -25023,6 +26369,7 @@ exports.addBypassIpResponseSchema = addBypassIpResponseSchema;
25023
26369
  exports.addBypassIpStatus200Schema = addBypassIpStatus200Schema;
25024
26370
  exports.addBypassIpStatus400Schema = addBypassIpStatus400Schema;
25025
26371
  exports.addBypassIpStatus401Schema = addBypassIpStatus401Schema;
26372
+ exports.addBypassIpStatus402Schema = addBypassIpStatus402Schema;
25026
26373
  exports.addBypassIpStatus403Schema = addBypassIpStatus403Schema;
25027
26374
  exports.addBypassIpStatus404Schema = addBypassIpStatus404Schema;
25028
26375
  exports.addBypassIpStatus410Schema = addBypassIpStatus410Schema;
@@ -25090,7 +26437,9 @@ exports.aggregateEventsStatus400Schema = aggregateEventsStatus400Schema;
25090
26437
  exports.aggregateEventsStatus401Schema = aggregateEventsStatus401Schema;
25091
26438
  exports.aggregateEventsStatus402Schema = aggregateEventsStatus402Schema;
25092
26439
  exports.aggregateEventsStatus403Schema = aggregateEventsStatus403Schema;
26440
+ exports.aggregateEventsStatus404Schema = aggregateEventsStatus404Schema;
25093
26441
  exports.aggregateEventsStatus410Schema = aggregateEventsStatus410Schema;
26442
+ exports.aggregateEventsStatus503Schema = aggregateEventsStatus503Schema;
25094
26443
  exports.aggregatePageviewsErrorSchema = aggregatePageviewsErrorSchema;
25095
26444
  exports.aggregatePageviewsQueryBySchema = aggregatePageviewsQueryBySchema;
25096
26445
  exports.aggregatePageviewsQueryFilterSchema = aggregatePageviewsQueryFilterSchema;
@@ -25106,7 +26455,9 @@ exports.aggregatePageviewsStatus400Schema = aggregatePageviewsStatus400Schema;
25106
26455
  exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
25107
26456
  exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
25108
26457
  exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
26458
+ exports.aggregatePageviewsStatus404Schema = aggregatePageviewsStatus404Schema;
25109
26459
  exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
26460
+ exports.aggregatePageviewsStatus503Schema = aggregatePageviewsStatus503Schema;
25110
26461
  exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
25111
26462
  exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
25112
26463
  exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
@@ -25244,6 +26595,11 @@ exports.completeRollingReleaseStatus404Schema = completeRollingReleaseStatus404S
25244
26595
  exports.completeRollingReleaseStatus410Schema = completeRollingReleaseStatus410Schema;
25245
26596
  exports.connectConnectorCreateDataSchema = connectConnectorCreateDataSchema;
25246
26597
  exports.connectConnectorCreateResultSchema = connectConnectorCreateResultSchema;
26598
+ exports.connectConnectorListSchema = connectConnectorListSchema;
26599
+ exports.connectConnectorProjectConnectionListSchema = connectConnectorProjectConnectionListSchema;
26600
+ exports.connectConnectorSchema = connectConnectorSchema;
26601
+ exports.connectConnectorUpdateDataSchema = connectConnectorUpdateDataSchema;
26602
+ exports.connectConnectorUpdateResultSchema = connectConnectorUpdateResultSchema;
25247
26603
  exports.connectCreateConnectorRequestSchema = connectCreateConnectorRequestSchema;
25248
26604
  exports.connectEnvironmentSchema = connectEnvironmentSchema;
25249
26605
  exports.connectErrorSchema = connectErrorSchema;
@@ -25259,8 +26615,18 @@ exports.connectIntegrationResourceToProjectStatus401Schema = connectIntegrationR
25259
26615
  exports.connectIntegrationResourceToProjectStatus403Schema = connectIntegrationResourceToProjectStatus403Schema;
25260
26616
  exports.connectIntegrationResourceToProjectStatus404Schema = connectIntegrationResourceToProjectStatus404Schema;
25261
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;
25262
26625
  exports.connectTriggerConfigurationSchema = connectTriggerConfigurationSchema;
26626
+ exports.connectTriggerDestinationInputSchema = connectTriggerDestinationInputSchema;
25263
26627
  exports.connectTriggerDestinationSchema = connectTriggerDestinationSchema;
26628
+ exports.connectUpdateConnectorRequestSchema = connectUpdateConnectorRequestSchema;
26629
+ exports.connectUpsertProjectConnectionRequestSchema = connectUpsertProjectConnectionRequestSchema;
25264
26630
  exports.contactPendingVerificationSchema = contactPendingVerificationSchema;
25265
26631
  exports.contactVerifiedSchema = contactVerifiedSchema;
25266
26632
  exports.countEventsErrorSchema = countEventsErrorSchema;
@@ -25276,7 +26642,9 @@ exports.countEventsStatus400Schema = countEventsStatus400Schema;
25276
26642
  exports.countEventsStatus401Schema = countEventsStatus401Schema;
25277
26643
  exports.countEventsStatus402Schema = countEventsStatus402Schema;
25278
26644
  exports.countEventsStatus403Schema = countEventsStatus403Schema;
26645
+ exports.countEventsStatus404Schema = countEventsStatus404Schema;
25279
26646
  exports.countEventsStatus410Schema = countEventsStatus410Schema;
26647
+ exports.countEventsStatus503Schema = countEventsStatus503Schema;
25280
26648
  exports.countPageviewsErrorSchema = countPageviewsErrorSchema;
25281
26649
  exports.countPageviewsQueryFilterSchema = countPageviewsQueryFilterSchema;
25282
26650
  exports.countPageviewsQueryProjectIdSchema = countPageviewsQueryProjectIdSchema;
@@ -25290,7 +26658,9 @@ exports.countPageviewsStatus400Schema = countPageviewsStatus400Schema;
25290
26658
  exports.countPageviewsStatus401Schema = countPageviewsStatus401Schema;
25291
26659
  exports.countPageviewsStatus402Schema = countPageviewsStatus402Schema;
25292
26660
  exports.countPageviewsStatus403Schema = countPageviewsStatus403Schema;
26661
+ exports.countPageviewsStatus404Schema = countPageviewsStatus404Schema;
25293
26662
  exports.countPageviewsStatus410Schema = countPageviewsStatus410Schema;
26663
+ exports.countPageviewsStatus503Schema = countPageviewsStatus503Schema;
25294
26664
  exports.countryCodeSchema = countryCodeSchema;
25295
26665
  exports.createAccessGroupErrorSchema = createAccessGroupErrorSchema;
25296
26666
  exports.createAccessGroupProjectErrorSchema = createAccessGroupProjectErrorSchema;
@@ -25543,7 +26913,6 @@ exports.createIntegrationStoreDirectStatus403Schema = createIntegrationStoreDire
25543
26913
  exports.createIntegrationStoreDirectStatus404Schema = createIntegrationStoreDirectStatus404Schema;
25544
26914
  exports.createIntegrationStoreDirectStatus409Schema = createIntegrationStoreDirectStatus409Schema;
25545
26915
  exports.createIntegrationStoreDirectStatus410Schema = createIntegrationStoreDirectStatus410Schema;
25546
- exports.createIntegrationStoreDirectStatus429Schema = createIntegrationStoreDirectStatus429Schema;
25547
26916
  exports.createIntegrationStoreDirectStatus500Schema = createIntegrationStoreDirectStatus500Schema;
25548
26917
  exports.createKmsIssuerErrorSchema = createKmsIssuerErrorSchema;
25549
26918
  exports.createKmsIssuerPolicyErrorSchema = createKmsIssuerPolicyErrorSchema;
@@ -25617,6 +26986,10 @@ exports.createObservabilityQueryStatus402Schema = createObservabilityQueryStatus
25617
26986
  exports.createObservabilityQueryStatus403Schema = createObservabilityQueryStatus403Schema;
25618
26987
  exports.createObservabilityQueryStatus408Schema = createObservabilityQueryStatus408Schema;
25619
26988
  exports.createObservabilityQueryStatus410Schema = createObservabilityQueryStatus410Schema;
26989
+ exports.createObservabilityQueryStatus413Schema = createObservabilityQueryStatus413Schema;
26990
+ exports.createObservabilityQueryStatus422Schema = createObservabilityQueryStatus422Schema;
26991
+ exports.createObservabilityQueryStatus500Schema = createObservabilityQueryStatus500Schema;
26992
+ exports.createObservabilityQueryStatus503Schema = createObservabilityQueryStatus503Schema;
25620
26993
  exports.createOrTransferDomainErrorSchema = createOrTransferDomainErrorSchema;
25621
26994
  exports.createOrTransferDomainQuerySlugSchema = createOrTransferDomainQuerySlugSchema;
25622
26995
  exports.createOrTransferDomainQueryTeamIdSchema = createOrTransferDomainQueryTeamIdSchema;
@@ -25629,6 +27002,17 @@ exports.createOrTransferDomainStatus403Schema = createOrTransferDomainStatus403S
25629
27002
  exports.createOrTransferDomainStatus404Schema = createOrTransferDomainStatus404Schema;
25630
27003
  exports.createOrTransferDomainStatus409Schema = createOrTransferDomainStatus409Schema;
25631
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;
25632
27016
  exports.createProjectCheckErrorSchema = createProjectCheckErrorSchema;
25633
27017
  exports.createProjectCheckPathProjectIdOrNameSchema = createProjectCheckPathProjectIdOrNameSchema;
25634
27018
  exports.createProjectCheckQuerySlugSchema = createProjectCheckQuerySlugSchema;
@@ -25680,6 +27064,7 @@ exports.createProjectTransferRequestStatus200Schema = createProjectTransferReque
25680
27064
  exports.createProjectTransferRequestStatus400Schema = createProjectTransferRequestStatus400Schema;
25681
27065
  exports.createProjectTransferRequestStatus401Schema = createProjectTransferRequestStatus401Schema;
25682
27066
  exports.createProjectTransferRequestStatus403Schema = createProjectTransferRequestStatus403Schema;
27067
+ exports.createProjectTransferRequestStatus409Schema = createProjectTransferRequestStatus409Schema;
25683
27068
  exports.createProjectTransferRequestStatus410Schema = createProjectTransferRequestStatus410Schema;
25684
27069
  exports.createRecordErrorSchema = createRecordErrorSchema;
25685
27070
  exports.createRecordPathDomainSchema = createRecordPathDomainSchema;
@@ -25977,10 +27362,29 @@ exports.deleteAiGatewayRuleStatus403Schema = deleteAiGatewayRuleStatus403Schema;
25977
27362
  exports.deleteAiGatewayRuleStatus404Schema = deleteAiGatewayRuleStatus404Schema;
25978
27363
  exports.deleteAiGatewayRuleStatus410Schema = deleteAiGatewayRuleStatus410Schema;
25979
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;
25980
27381
  exports.deleteAiGatewayVirtualModelConfigErrorSchema = deleteAiGatewayVirtualModelConfigErrorSchema;
27382
+ exports.deleteAiGatewayVirtualModelConfigQueryActingIpSchema = deleteAiGatewayVirtualModelConfigQueryActingIpSchema;
27383
+ exports.deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema = deleteAiGatewayVirtualModelConfigQueryActingUserAgentSchema;
25981
27384
  exports.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema;
25982
27385
  exports.deleteAiGatewayVirtualModelConfigQuerySlugSchema = deleteAiGatewayVirtualModelConfigQuerySlugSchema;
25983
27386
  exports.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigQueryTeamIdSchema;
27387
+ exports.deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema = deleteAiGatewayVirtualModelConfigQueryUpdatedBySchema;
25984
27388
  exports.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
25985
27389
  exports.deleteAiGatewayVirtualModelConfigResponseSchema = deleteAiGatewayVirtualModelConfigResponseSchema;
25986
27390
  exports.deleteAiGatewayVirtualModelConfigStatus204Schema = deleteAiGatewayVirtualModelConfigStatus204Schema;
@@ -26080,6 +27484,32 @@ exports.deleteConfigurationStatus401Schema = deleteConfigurationStatus401Schema;
26080
27484
  exports.deleteConfigurationStatus403Schema = deleteConfigurationStatus403Schema;
26081
27485
  exports.deleteConfigurationStatus404Schema = deleteConfigurationStatus404Schema;
26082
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;
26083
27513
  exports.deleteDeploymentErrorSchema = deleteDeploymentErrorSchema;
26084
27514
  exports.deleteDeploymentPathIdSchema = deleteDeploymentPathIdSchema;
26085
27515
  exports.deleteDeploymentQuerySlugSchema = deleteDeploymentQuerySlugSchema;
@@ -26280,6 +27710,19 @@ exports.deleteNetworkStatus402Schema = deleteNetworkStatus402Schema;
26280
27710
  exports.deleteNetworkStatus403Schema = deleteNetworkStatus403Schema;
26281
27711
  exports.deleteNetworkStatus409Schema = deleteNetworkStatus409Schema;
26282
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;
26283
27726
  exports.deleteProjectCheckErrorSchema = deleteProjectCheckErrorSchema;
26284
27727
  exports.deleteProjectCheckPathCheckIdSchema = deleteProjectCheckPathCheckIdSchema;
26285
27728
  exports.deleteProjectCheckPathProjectIdOrNameSchema = deleteProjectCheckPathProjectIdOrNameSchema;
@@ -26457,6 +27900,7 @@ exports.deleteTeamStatus402Schema = deleteTeamStatus402Schema;
26457
27900
  exports.deleteTeamStatus403Schema = deleteTeamStatus403Schema;
26458
27901
  exports.deleteTeamStatus409Schema = deleteTeamStatus409Schema;
26459
27902
  exports.deleteTeamStatus410Schema = deleteTeamStatus410Schema;
27903
+ exports.deleteTeamStatus503Schema = deleteTeamStatus503Schema;
26460
27904
  exports.deleteWebhookErrorSchema = deleteWebhookErrorSchema;
26461
27905
  exports.deleteWebhookPathIdSchema = deleteWebhookPathIdSchema;
26462
27906
  exports.deleteWebhookQuerySlugSchema = deleteWebhookQuerySlugSchema;
@@ -26477,8 +27921,8 @@ exports.domainNotRegisteredSchema = domainNotRegisteredSchema;
26477
27921
  exports.domainNotRenewableSchema = domainNotRenewableSchema;
26478
27922
  exports.domainTooShortSchema = domainTooShortSchema;
26479
27923
  exports.downloadArtifactErrorSchema = downloadArtifactErrorSchema;
26480
- exports.downloadArtifactHeaderxArtifactClientCiSchema = downloadArtifactHeaderxArtifactClientCiSchema;
26481
- exports.downloadArtifactHeaderxArtifactClientInteractiveSchema = downloadArtifactHeaderxArtifactClientInteractiveSchema;
27924
+ exports.downloadArtifactHeaderXArtifactClientCiSchema = downloadArtifactHeaderXArtifactClientCiSchema;
27925
+ exports.downloadArtifactHeaderXArtifactClientInteractiveSchema = downloadArtifactHeaderXArtifactClientInteractiveSchema;
26482
27926
  exports.downloadArtifactPathHashSchema = downloadArtifactPathHashSchema;
26483
27927
  exports.downloadArtifactQuerySlugSchema = downloadArtifactQuerySlugSchema;
26484
27928
  exports.downloadArtifactQueryTeamIdSchema = downloadArtifactQueryTeamIdSchema;
@@ -26631,7 +28075,22 @@ exports.getActiveAttackStatusStatus401Schema = getActiveAttackStatusStatus401Sch
26631
28075
  exports.getActiveAttackStatusStatus403Schema = getActiveAttackStatusStatus403Schema;
26632
28076
  exports.getActiveAttackStatusStatus404Schema = getActiveAttackStatusStatus404Schema;
26633
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;
26634
28091
  exports.getAiGatewayVirtualModelConfigErrorSchema = getAiGatewayVirtualModelConfigErrorSchema;
28092
+ exports.getAiGatewayVirtualModelConfigQueryCursorSchema = getAiGatewayVirtualModelConfigQueryCursorSchema;
28093
+ exports.getAiGatewayVirtualModelConfigQueryLimitSchema = getAiGatewayVirtualModelConfigQueryLimitSchema;
26635
28094
  exports.getAiGatewayVirtualModelConfigQueryOwnerIdSchema = getAiGatewayVirtualModelConfigQueryOwnerIdSchema;
26636
28095
  exports.getAiGatewayVirtualModelConfigQuerySlugSchema = getAiGatewayVirtualModelConfigQuerySlugSchema;
26637
28096
  exports.getAiGatewayVirtualModelConfigQueryTeamIdSchema = getAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -26790,6 +28249,7 @@ exports.getBypassIpResponseSchema = getBypassIpResponseSchema;
26790
28249
  exports.getBypassIpStatus200Schema = getBypassIpStatus200Schema;
26791
28250
  exports.getBypassIpStatus400Schema = getBypassIpStatus400Schema;
26792
28251
  exports.getBypassIpStatus401Schema = getBypassIpStatus401Schema;
28252
+ exports.getBypassIpStatus402Schema = getBypassIpStatus402Schema;
26793
28253
  exports.getBypassIpStatus403Schema = getBypassIpStatus403Schema;
26794
28254
  exports.getBypassIpStatus404Schema = getBypassIpStatus404Schema;
26795
28255
  exports.getBypassIpStatus410Schema = getBypassIpStatus410Schema;
@@ -26872,6 +28332,30 @@ exports.getConfigurationsStatus400Schema = getConfigurationsStatus400Schema;
26872
28332
  exports.getConfigurationsStatus401Schema = getConfigurationsStatus401Schema;
26873
28333
  exports.getConfigurationsStatus403Schema = getConfigurationsStatus403Schema;
26874
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;
26875
28359
  exports.getConnectorTokenErrorSchema = getConnectorTokenErrorSchema;
26876
28360
  exports.getConnectorTokenPathConnectorSchema = getConnectorTokenPathConnectorSchema;
26877
28361
  exports.getConnectorTokenResponseSchema = getConnectorTokenResponseSchema;
@@ -27806,6 +29290,7 @@ exports.getSecurityFirewallEventsStatus400Schema = getSecurityFirewallEventsStat
27806
29290
  exports.getSecurityFirewallEventsStatus401Schema = getSecurityFirewallEventsStatus401Schema;
27807
29291
  exports.getSecurityFirewallEventsStatus403Schema = getSecurityFirewallEventsStatus403Schema;
27808
29292
  exports.getSecurityFirewallEventsStatus404Schema = getSecurityFirewallEventsStatus404Schema;
29293
+ exports.getSecurityFirewallEventsStatus408Schema = getSecurityFirewallEventsStatus408Schema;
27809
29294
  exports.getSecurityFirewallEventsStatus410Schema = getSecurityFirewallEventsStatus410Schema;
27810
29295
  exports.getSecurityFirewallEventsStatus500Schema = getSecurityFirewallEventsStatus500Schema;
27811
29296
  exports.getSessionCommandErrorSchema = getSessionCommandErrorSchema;
@@ -27876,8 +29361,8 @@ exports.getSharedEnvVarStatus403Schema = getSharedEnvVarStatus403Schema;
27876
29361
  exports.getSharedEnvVarStatus410Schema = getSharedEnvVarStatus410Schema;
27877
29362
  exports.getStorageStoresByIdErrorSchema = getStorageStoresByIdErrorSchema;
27878
29363
  exports.getStorageStoresByIdPathIdSchema = getStorageStoresByIdPathIdSchema;
27879
- exports.getStorageStoresByIdQueryincludeGuidesSchema = getStorageStoresByIdQueryincludeGuidesSchema;
27880
- exports.getStorageStoresByIdQueryskipMetadataSchema = getStorageStoresByIdQueryskipMetadataSchema;
29364
+ exports.getStorageStoresByIdQueryIncludeGuidesSchema = getStorageStoresByIdQueryIncludeGuidesSchema;
29365
+ exports.getStorageStoresByIdQuerySkipMetadataSchema = getStorageStoresByIdQuerySkipMetadataSchema;
27881
29366
  exports.getStorageStoresByIdResponseSchema = getStorageStoresByIdResponseSchema;
27882
29367
  exports.getStorageStoresByIdStatus200Schema = getStorageStoresByIdStatus200Schema;
27883
29368
  exports.getStorageStoresByIdStatus400Schema = getStorageStoresByIdStatus400Schema;
@@ -28023,7 +29508,6 @@ exports.importResourceStatus404Schema = importResourceStatus404Schema;
28023
29508
  exports.importResourceStatus409Schema = importResourceStatus409Schema;
28024
29509
  exports.importResourceStatus410Schema = importResourceStatus410Schema;
28025
29510
  exports.importResourceStatus422Schema = importResourceStatus422Schema;
28026
- exports.importResourceStatus429Schema = importResourceStatus429Schema;
28027
29511
  exports.internalServerErrorSchema = internalServerErrorSchema;
28028
29512
  exports.invalidAdditionalContactInfoSchema = invalidAdditionalContactInfoSchema;
28029
29513
  exports.invalidateBySrcImagesErrorSchema = invalidateBySrcImagesErrorSchema;
@@ -28215,6 +29699,37 @@ exports.listCheckRunsStatus401Schema = listCheckRunsStatus401Schema;
28215
29699
  exports.listCheckRunsStatus403Schema = listCheckRunsStatus403Schema;
28216
29700
  exports.listCheckRunsStatus410Schema = listCheckRunsStatus410Schema;
28217
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;
28218
29733
  exports.listContractCommitmentsErrorSchema = listContractCommitmentsErrorSchema;
28219
29734
  exports.listContractCommitmentsQuerySlugSchema = listContractCommitmentsQuerySlugSchema;
28220
29735
  exports.listContractCommitmentsQueryTeamIdSchema = listContractCommitmentsQueryTeamIdSchema;
@@ -28365,6 +29880,25 @@ exports.listKmsIssuersStatus400Schema = listKmsIssuersStatus400Schema;
28365
29880
  exports.listKmsIssuersStatus401Schema = listKmsIssuersStatus401Schema;
28366
29881
  exports.listKmsIssuersStatus403Schema = listKmsIssuersStatus403Schema;
28367
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;
28368
29902
  exports.listNetworksErrorSchema = listNetworksErrorSchema;
28369
29903
  exports.listNetworksQueryIncludeHostedZonesSchema = listNetworksQueryIncludeHostedZonesSchema;
28370
29904
  exports.listNetworksQueryIncludePeeringConnectionsSchema = listNetworksQueryIncludePeeringConnectionsSchema;
@@ -28378,6 +29912,17 @@ exports.listNetworksStatus400Schema = listNetworksStatus400Schema;
28378
29912
  exports.listNetworksStatus401Schema = listNetworksStatus401Schema;
28379
29913
  exports.listNetworksStatus403Schema = listNetworksStatus403Schema;
28380
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;
28381
29926
  exports.listProjectChecksErrorSchema = listProjectChecksErrorSchema;
28382
29927
  exports.listProjectChecksPathProjectIdOrNameSchema = listProjectChecksPathProjectIdOrNameSchema;
28383
29928
  exports.listProjectChecksQueryBlocksSchema = listProjectChecksQueryBlocksSchema;
@@ -28390,6 +29935,19 @@ exports.listProjectChecksStatus401Schema = listProjectChecksStatus401Schema;
28390
29935
  exports.listProjectChecksStatus403Schema = listProjectChecksStatus403Schema;
28391
29936
  exports.listProjectChecksStatus410Schema = listProjectChecksStatus410Schema;
28392
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;
28393
29951
  exports.listPromoteAliasesErrorSchema = listPromoteAliasesErrorSchema;
28394
29952
  exports.listPromoteAliasesPathProjectIdSchema = listPromoteAliasesPathProjectIdSchema;
28395
29953
  exports.listPromoteAliasesQueryFailedOnlySchema = listPromoteAliasesQueryFailedOnlySchema;
@@ -28463,25 +30021,6 @@ exports.listRepositoryTagsStatus401Schema = listRepositoryTagsStatus401Schema;
28463
30021
  exports.listRepositoryTagsStatus403Schema = listRepositoryTagsStatus403Schema;
28464
30022
  exports.listRepositoryTagsStatus404Schema = listRepositoryTagsStatus404Schema;
28465
30023
  exports.listRepositoryTagsStatus410Schema = listRepositoryTagsStatus410Schema;
28466
- exports.listSandboxesErrorSchema = listSandboxesErrorSchema;
28467
- exports.listSandboxesQueryCursorSchema = listSandboxesQueryCursorSchema;
28468
- exports.listSandboxesQueryLimitSchema = listSandboxesQueryLimitSchema;
28469
- exports.listSandboxesQueryNamePrefixSchema = listSandboxesQueryNamePrefixSchema;
28470
- exports.listSandboxesQueryProjectSchema = listSandboxesQueryProjectSchema;
28471
- exports.listSandboxesQuerySlugSchema = listSandboxesQuerySlugSchema;
28472
- exports.listSandboxesQuerySortBySchema = listSandboxesQuerySortBySchema;
28473
- exports.listSandboxesQuerySortOrderSchema = listSandboxesQuerySortOrderSchema;
28474
- exports.listSandboxesQueryStatusSchema = listSandboxesQueryStatusSchema;
28475
- exports.listSandboxesQueryTagsSchema = listSandboxesQueryTagsSchema;
28476
- exports.listSandboxesQueryTeamIdSchema = listSandboxesQueryTeamIdSchema;
28477
- exports.listSandboxesResponseSchema = listSandboxesResponseSchema;
28478
- exports.listSandboxesStatus200Schema = listSandboxesStatus200Schema;
28479
- exports.listSandboxesStatus400Schema = listSandboxesStatus400Schema;
28480
- exports.listSandboxesStatus401Schema = listSandboxesStatus401Schema;
28481
- exports.listSandboxesStatus403Schema = listSandboxesStatus403Schema;
28482
- exports.listSandboxesStatus404Schema = listSandboxesStatus404Schema;
28483
- exports.listSandboxesStatus410Schema = listSandboxesStatus410Schema;
28484
- exports.listSandboxesStatus429Schema = listSandboxesStatus429Schema;
28485
30024
  exports.listSessionCommandsErrorSchema = listSessionCommandsErrorSchema;
28486
30025
  exports.listSessionCommandsPathSessionIdSchema = listSessionCommandsPathSessionIdSchema;
28487
30026
  exports.listSessionCommandsQuerySlugSchema = listSessionCommandsQuerySlugSchema;
@@ -28535,8 +30074,6 @@ exports.listSharedEnvVariableQueryProjectIdSchema = listSharedEnvVariableQueryPr
28535
30074
  exports.listSharedEnvVariableQuerySearchSchema = listSharedEnvVariableQuerySearchSchema;
28536
30075
  exports.listSharedEnvVariableQuerySlugSchema = listSharedEnvVariableQuerySlugSchema;
28537
30076
  exports.listSharedEnvVariableQueryTeamIdSchema = listSharedEnvVariableQueryTeamIdSchema;
28538
- exports.listSharedEnvVariableQueryexcludeIdsSchema = listSharedEnvVariableQueryexcludeIdsSchema;
28539
- exports.listSharedEnvVariableQueryexcludeProjectIdSchema = listSharedEnvVariableQueryexcludeProjectIdSchema;
28540
30077
  exports.listSharedEnvVariableResponseSchema = listSharedEnvVariableResponseSchema;
28541
30078
  exports.listSharedEnvVariableStatus200Schema = listSharedEnvVariableStatus200Schema;
28542
30079
  exports.listSharedEnvVariableStatus400Schema = listSharedEnvVariableStatus400Schema;
@@ -28714,6 +30251,7 @@ exports.postTeamDsyncRolesStatus400Schema = postTeamDsyncRolesStatus400Schema;
28714
30251
  exports.postTeamDsyncRolesStatus401Schema = postTeamDsyncRolesStatus401Schema;
28715
30252
  exports.postTeamDsyncRolesStatus403Schema = postTeamDsyncRolesStatus403Schema;
28716
30253
  exports.postTeamDsyncRolesStatus410Schema = postTeamDsyncRolesStatus410Schema;
30254
+ exports.privateLinkEndpointSchema = privateLinkEndpointSchema;
28717
30255
  exports.propertyKeySchema = propertyKeySchema;
28718
30256
  exports.putFirewallConfigErrorSchema = putFirewallConfigErrorSchema;
28719
30257
  exports.putFirewallConfigQueryProjectIdSchema = putFirewallConfigQueryProjectIdSchema;
@@ -28760,6 +30298,18 @@ exports.readNetworkStatus400Schema = readNetworkStatus400Schema;
28760
30298
  exports.readNetworkStatus401Schema = readNetworkStatus401Schema;
28761
30299
  exports.readNetworkStatus403Schema = readNetworkStatus403Schema;
28762
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;
28763
30313
  exports.readSessionFileErrorSchema = readSessionFileErrorSchema;
28764
30314
  exports.readSessionFilePathSessionIdSchema = readSessionFilePathSessionIdSchema;
28765
30315
  exports.readSessionFileQuerySlugSchema = readSessionFileQuerySlugSchema;
@@ -28775,8 +30325,8 @@ exports.readSessionFileStatus422Schema = readSessionFileStatus422Schema;
28775
30325
  exports.readSessionFileStatus429Schema = readSessionFileStatus429Schema;
28776
30326
  exports.readSessionFileStatus500Schema = readSessionFileStatus500Schema;
28777
30327
  exports.recordEventsErrorSchema = recordEventsErrorSchema;
28778
- exports.recordEventsHeaderxArtifactClientCiSchema = recordEventsHeaderxArtifactClientCiSchema;
28779
- exports.recordEventsHeaderxArtifactClientInteractiveSchema = recordEventsHeaderxArtifactClientInteractiveSchema;
30328
+ exports.recordEventsHeaderXArtifactClientCiSchema = recordEventsHeaderXArtifactClientCiSchema;
30329
+ exports.recordEventsHeaderXArtifactClientInteractiveSchema = recordEventsHeaderXArtifactClientInteractiveSchema;
28780
30330
  exports.recordEventsQuerySlugSchema = recordEventsQuerySlugSchema;
28781
30331
  exports.recordEventsQueryTeamIdSchema = recordEventsQueryTeamIdSchema;
28782
30332
  exports.recordEventsResponseSchema = recordEventsResponseSchema;
@@ -28795,6 +30345,7 @@ exports.removeBypassIpResponseSchema = removeBypassIpResponseSchema;
28795
30345
  exports.removeBypassIpStatus200Schema = removeBypassIpStatus200Schema;
28796
30346
  exports.removeBypassIpStatus400Schema = removeBypassIpStatus400Schema;
28797
30347
  exports.removeBypassIpStatus401Schema = removeBypassIpStatus401Schema;
30348
+ exports.removeBypassIpStatus402Schema = removeBypassIpStatus402Schema;
28798
30349
  exports.removeBypassIpStatus403Schema = removeBypassIpStatus403Schema;
28799
30350
  exports.removeBypassIpStatus404Schema = removeBypassIpStatus404Schema;
28800
30351
  exports.removeBypassIpStatus410Schema = removeBypassIpStatus410Schema;
@@ -28935,6 +30486,18 @@ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus
28935
30486
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
28936
30487
  exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
28937
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;
28938
30501
  exports.replaceDomainsByDomainRecordsErrorSchema = replaceDomainsByDomainRecordsErrorSchema;
28939
30502
  exports.replaceDomainsByDomainRecordsPathDomainSchema = replaceDomainsByDomainRecordsPathDomainSchema;
28940
30503
  exports.replaceDomainsByDomainRecordsResponseSchema = replaceDomainsByDomainRecordsResponseSchema;
@@ -29305,6 +30868,18 @@ exports.updateAiGatewayRuleStatus403Schema = updateAiGatewayRuleStatus403Schema;
29305
30868
  exports.updateAiGatewayRuleStatus404Schema = updateAiGatewayRuleStatus404Schema;
29306
30869
  exports.updateAiGatewayRuleStatus410Schema = updateAiGatewayRuleStatus410Schema;
29307
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;
29308
30883
  exports.updateAiGatewayVirtualModelConfigErrorSchema = updateAiGatewayVirtualModelConfigErrorSchema;
29309
30884
  exports.updateAiGatewayVirtualModelConfigQuerySlugSchema = updateAiGatewayVirtualModelConfigQuerySlugSchema;
29310
30885
  exports.updateAiGatewayVirtualModelConfigQueryTeamIdSchema = updateAiGatewayVirtualModelConfigQueryTeamIdSchema;
@@ -29353,6 +30928,20 @@ exports.updateCheckStatus403Schema = updateCheckStatus403Schema;
29353
30928
  exports.updateCheckStatus404Schema = updateCheckStatus404Schema;
29354
30929
  exports.updateCheckStatus410Schema = updateCheckStatus410Schema;
29355
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;
29356
30945
  exports.updateCustomEnvironmentErrorSchema = updateCustomEnvironmentErrorSchema;
29357
30946
  exports.updateCustomEnvironmentPathEnvironmentSlugOrIdSchema = updateCustomEnvironmentPathEnvironmentSlugOrIdSchema;
29358
30947
  exports.updateCustomEnvironmentPathIdOrNameSchema = updateCustomEnvironmentPathIdOrNameSchema;
@@ -29596,6 +31185,19 @@ exports.updateObservabilityConfigurationProjectStatus403Schema = updateObservabi
29596
31185
  exports.updateObservabilityConfigurationProjectStatus404Schema = updateObservabilityConfigurationProjectStatus404Schema;
29597
31186
  exports.updateObservabilityConfigurationProjectStatus410Schema = updateObservabilityConfigurationProjectStatus410Schema;
29598
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;
29599
31201
  exports.updateProjectCheckErrorSchema = updateProjectCheckErrorSchema;
29600
31202
  exports.updateProjectCheckPathCheckIdSchema = updateProjectCheckPathCheckIdSchema;
29601
31203
  exports.updateProjectCheckPathProjectIdOrNameSchema = updateProjectCheckPathProjectIdOrNameSchema;
@@ -29647,6 +31249,7 @@ exports.updateProjectStatus404Schema = updateProjectStatus404Schema;
29647
31249
  exports.updateProjectStatus409Schema = updateProjectStatus409Schema;
29648
31250
  exports.updateProjectStatus410Schema = updateProjectStatus410Schema;
29649
31251
  exports.updateProjectStatus428Schema = updateProjectStatus428Schema;
31252
+ exports.updateProjectStatus429Schema = updateProjectStatus429Schema;
29650
31253
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionErrorSchema;
29651
31254
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema;
29652
31255
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema;
@@ -29814,13 +31417,13 @@ exports.updateVersionStatus404Schema = updateVersionStatus404Schema;
29814
31417
  exports.updateVersionStatus410Schema = updateVersionStatus410Schema;
29815
31418
  exports.updateVersionStatus500Schema = updateVersionStatus500Schema;
29816
31419
  exports.uploadArtifactErrorSchema = uploadArtifactErrorSchema;
29817
- exports.uploadArtifactHeadercontentLengthSchema = uploadArtifactHeadercontentLengthSchema;
29818
- exports.uploadArtifactHeaderxArtifactClientCiSchema = uploadArtifactHeaderxArtifactClientCiSchema;
29819
- exports.uploadArtifactHeaderxArtifactClientInteractiveSchema = uploadArtifactHeaderxArtifactClientInteractiveSchema;
29820
- exports.uploadArtifactHeaderxArtifactDirtyHashSchema = uploadArtifactHeaderxArtifactDirtyHashSchema;
29821
- exports.uploadArtifactHeaderxArtifactDurationSchema = uploadArtifactHeaderxArtifactDurationSchema;
29822
- exports.uploadArtifactHeaderxArtifactShaSchema = uploadArtifactHeaderxArtifactShaSchema;
29823
- exports.uploadArtifactHeaderxArtifactTagSchema = uploadArtifactHeaderxArtifactTagSchema;
31420
+ exports.uploadArtifactHeaderContentLengthSchema = uploadArtifactHeaderContentLengthSchema;
31421
+ exports.uploadArtifactHeaderXArtifactClientCiSchema = uploadArtifactHeaderXArtifactClientCiSchema;
31422
+ exports.uploadArtifactHeaderXArtifactClientInteractiveSchema = uploadArtifactHeaderXArtifactClientInteractiveSchema;
31423
+ exports.uploadArtifactHeaderXArtifactDirtyHashSchema = uploadArtifactHeaderXArtifactDirtyHashSchema;
31424
+ exports.uploadArtifactHeaderXArtifactDurationSchema = uploadArtifactHeaderXArtifactDurationSchema;
31425
+ exports.uploadArtifactHeaderXArtifactShaSchema = uploadArtifactHeaderXArtifactShaSchema;
31426
+ exports.uploadArtifactHeaderXArtifactTagSchema = uploadArtifactHeaderXArtifactTagSchema;
29824
31427
  exports.uploadArtifactPathHashSchema = uploadArtifactPathHashSchema;
29825
31428
  exports.uploadArtifactQuerySlugSchema = uploadArtifactQuerySlugSchema;
29826
31429
  exports.uploadArtifactQueryTeamIdSchema = uploadArtifactQueryTeamIdSchema;
@@ -29842,10 +31445,10 @@ exports.uploadCertStatus402Schema = uploadCertStatus402Schema;
29842
31445
  exports.uploadCertStatus403Schema = uploadCertStatus403Schema;
29843
31446
  exports.uploadCertStatus410Schema = uploadCertStatus410Schema;
29844
31447
  exports.uploadFileErrorSchema = uploadFileErrorSchema;
29845
- exports.uploadFileHeadercontentLengthSchema = uploadFileHeadercontentLengthSchema;
29846
- exports.uploadFileHeaderxNowDigestSchema = uploadFileHeaderxNowDigestSchema;
29847
- exports.uploadFileHeaderxNowSizeSchema = uploadFileHeaderxNowSizeSchema;
29848
- exports.uploadFileHeaderxVercelDigestSchema = uploadFileHeaderxVercelDigestSchema;
31448
+ exports.uploadFileHeaderContentLengthSchema = uploadFileHeaderContentLengthSchema;
31449
+ exports.uploadFileHeaderXNowDigestSchema = uploadFileHeaderXNowDigestSchema;
31450
+ exports.uploadFileHeaderXNowSizeSchema = uploadFileHeaderXNowSizeSchema;
31451
+ exports.uploadFileHeaderXVercelDigestSchema = uploadFileHeaderXVercelDigestSchema;
29849
31452
  exports.uploadFileQuerySlugSchema = uploadFileQuerySlugSchema;
29850
31453
  exports.uploadFileQueryTeamIdSchema = uploadFileQueryTeamIdSchema;
29851
31454
  exports.uploadFileResponseSchema = uploadFileResponseSchema;
@@ -29867,6 +31470,18 @@ exports.uploadProjectAvatarStatus403Schema = uploadProjectAvatarStatus403Schema;
29867
31470
  exports.uploadProjectAvatarStatus410Schema = uploadProjectAvatarStatus410Schema;
29868
31471
  exports.uploadProjectAvatarStatus413Schema = uploadProjectAvatarStatus413Schema;
29869
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;
29870
31485
  exports.userEventSchema = userEventSchema;
29871
31486
  exports.vcrImageDetailSchema = vcrImageDetailSchema;
29872
31487
  exports.vcrImageLayerSchema = vcrImageLayerSchema;
@@ -29894,7 +31509,7 @@ exports.verifyProjectDomainStatus401Schema = verifyProjectDomainStatus401Schema;
29894
31509
  exports.verifyProjectDomainStatus403Schema = verifyProjectDomainStatus403Schema;
29895
31510
  exports.verifyProjectDomainStatus410Schema = verifyProjectDomainStatus410Schema;
29896
31511
  exports.writeSessionFilesErrorSchema = writeSessionFilesErrorSchema;
29897
- exports.writeSessionFilesHeaderxCwdSchema = writeSessionFilesHeaderxCwdSchema;
31512
+ exports.writeSessionFilesHeaderXCwdSchema = writeSessionFilesHeaderXCwdSchema;
29898
31513
  exports.writeSessionFilesPathSessionIdSchema = writeSessionFilesPathSessionIdSchema;
29899
31514
  exports.writeSessionFilesQuerySlugSchema = writeSessionFilesQuerySlugSchema;
29900
31515
  exports.writeSessionFilesQueryTeamIdSchema = writeSessionFilesQueryTeamIdSchema;