vercel-api-js 1.10.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,6 +21,7 @@ function _interopNamespace(e) {
21
21
  var z__namespace = /*#__PURE__*/_interopNamespace(z);
22
22
 
23
23
  // @ts-nocheck
24
+ const aiGatewayProviderOptionBagSchema = z__namespace.object({}).catchall(z__namespace.unknown()).describe("Arbitrary per-provider AI SDK options, keyed by gateway provider slug.");
24
25
  const aiGatewayVirtualModelConfigSchema = z__namespace.object({
25
26
  ownerId: z__namespace.string().describe("Team (owner) that owns this VMC."),
26
27
  virtualModelSlug: z__namespace.string().describe("Client-facing alias used as the model slug in Gateway calls."),
@@ -38,6 +39,7 @@ const aiGatewayVirtualModelConfigSchema = z__namespace.object({
38
39
  instanceId: z__namespace.string().optional().describe("The concrete model-provider instance this VMC resolves to."),
39
40
  providerOrder: z__namespace.array(z__namespace.string()).optional().describe("Ordered list of providers to try as fallbacks on failure."),
40
41
  providerOnly: z__namespace.array(z__namespace.string()).optional().describe("Restrict routing to only these providers."),
42
+ providerOptions: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Arbitrary per-provider AI SDK options, keyed by gateway provider slug."),
41
43
  inferenceRegion: z__namespace.object({
42
44
  providers: z__namespace.object({}).catchall(z__namespace.object({
43
45
  scope: z__namespace.enum([
@@ -552,6 +554,15 @@ const userEventSchema = z__namespace.object({
552
554
  "access-group-updated",
553
555
  "access-group-user-added",
554
556
  "access-group-user-removed",
557
+ "admin-agentic-provisioning-account-unlinked",
558
+ "admin-plan-updated",
559
+ "admin-secondary-email-added",
560
+ "admin-secondary-email-removed",
561
+ "admin-team-name-update",
562
+ "admin-team-slug-update",
563
+ "admin-user-delete",
564
+ "admin-user-primary-email-updated",
565
+ "admin-username-updated",
555
566
  "agentic-provisioning-account-blocked",
556
567
  "agentic-provisioning-account-linked",
557
568
  "agentic-provisioning-account-relinked",
@@ -778,6 +789,7 @@ const userEventSchema = z__namespace.object({
778
789
  "git-integration-repo-push",
779
790
  "git_account_integration_link_added",
780
791
  "instant-rollback-created",
792
+ "integration-configuration-credential-rotated",
781
793
  "integration-configuration-owner-changed",
782
794
  "integration-configuration-scope-change-confirmed",
783
795
  "integration-configuration-transfer-in-success",
@@ -1117,6 +1129,7 @@ const userEventSchema = z__namespace.object({
1117
1129
  "user-emu-recovery-initiated",
1118
1130
  "user-emu-toggled",
1119
1131
  "user-mfa-challenge-failed",
1132
+ "user-mfa-challenge-initiated",
1120
1133
  "user-mfa-challenge-verified",
1121
1134
  "user-mfa-change-failed",
1122
1135
  "user-mfa-configuration-updated",
@@ -1129,6 +1142,7 @@ const userEventSchema = z__namespace.object({
1129
1142
  "user-phone-removed",
1130
1143
  "user-phone-updated",
1131
1144
  "user-primary-email-updated",
1145
+ "user-provider-email-claim-evaluated",
1132
1146
  "user-sudo-mode-removed",
1133
1147
  "user-token-created",
1134
1148
  "user-token-deleted",
@@ -1355,6 +1369,21 @@ const userEventSchema = z__namespace.object({
1355
1369
  resourceId: z__namespace.string(),
1356
1370
  projectName: z__namespace.string()
1357
1371
  }).strict(),
1372
+ z__namespace.object({
1373
+ provider: z__namespace.enum([
1374
+ "chatgpt",
1375
+ "stripe"
1376
+ ]).optional().describe('Present on new events only. Equivalent to "stripe" when absent.'),
1377
+ providerAccount: z__namespace.string().optional().describe("Present on new events only. Equivalent to `stripeAccount` when absent."),
1378
+ stripeAccount: z__namespace.string().optional().describe('Present when `provider` is "stripe". Equivalent to `providerAccount`.'),
1379
+ stripeOrganisation: z__namespace.string().optional().describe('Present when `provider` is "stripe".'),
1380
+ teamId: z__namespace.string(),
1381
+ actorId: z__namespace.string().describe("Okta user id."),
1382
+ actorType: z__namespace.enum([
1383
+ "admin"
1384
+ ]),
1385
+ actorName: z__namespace.string().optional()
1386
+ }).strict(),
1358
1387
  z__namespace.object({
1359
1388
  provider: z__namespace.enum([
1360
1389
  "chatgpt",
@@ -3288,7 +3317,10 @@ const userEventSchema = z__namespace.object({
3288
3317
  projectId: z__namespace.string().optional(),
3289
3318
  projectName: z__namespace.string(),
3290
3319
  gitCommitterName: z__namespace.string(),
3291
- source: z__namespace.string()
3320
+ source: z__namespace.string(),
3321
+ reason: z__namespace.enum([
3322
+ "ip_allow_list"
3323
+ ]).optional()
3292
3324
  }).strict(),
3293
3325
  z__namespace.object({
3294
3326
  deployment: z__namespace.object({
@@ -3513,7 +3545,7 @@ const userEventSchema = z__namespace.object({
3513
3545
  z__namespace.object({
3514
3546
  edgeConfigId: z__namespace.string(),
3515
3547
  edgeConfigSlug: z__namespace.string(),
3516
- edgeConfigSchema: z__namespace.object({}).optional()
3548
+ globalConfigSchema: z__namespace.object({}).optional()
3517
3549
  }).strict(),
3518
3550
  z__namespace.object({
3519
3551
  edgeConfigId: z__namespace.string(),
@@ -3886,6 +3918,12 @@ const userEventSchema = z__namespace.object({
3886
3918
  projectName: z__namespace.string(),
3887
3919
  reason: z__namespace.string().optional()
3888
3920
  }).strict(),
3921
+ z__namespace.object({
3922
+ integrationId: z__namespace.string(),
3923
+ configurationId: z__namespace.string(),
3924
+ integrationSlug: z__namespace.string(),
3925
+ integrationName: z__namespace.string()
3926
+ }).strict(),
3889
3927
  z__namespace.object({
3890
3928
  userId: z__namespace.string(),
3891
3929
  integrationId: z__namespace.string(),
@@ -4336,7 +4374,8 @@ const userEventSchema = z__namespace.object({
4336
4374
  "UsageViewer",
4337
4375
  "V0Builder",
4338
4376
  "V0Chatter",
4339
- "V0Viewer"
4377
+ "V0Viewer",
4378
+ "WorkflowDecryptor"
4340
4379
  ])).optional(),
4341
4380
  created: z__namespace.number(),
4342
4381
  joinedFrom: z__namespace.object({
@@ -4591,6 +4630,10 @@ const userEventSchema = z__namespace.object({
4591
4630
  increasedOnDemandEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
4592
4631
  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.")
4593
4632
  }).optional().describe("Contains the timestamps for usage summary emails."),
4633
+ speedInsightsFreeUsageAlert: z__namespace.object({
4634
+ currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
4635
+ notifiedAt: z__namespace.number().describe("When the notification for `currentThreshold` was sent.")
4636
+ }).optional().describe("Tracks notifications sent for the team-wide Speed Insights free allocation. The allocation is measured over a rolling window (not a billing period), so deduplication is time-based rather than reset at period start."),
4594
4637
  username: z__namespace.string(),
4595
4638
  updatedAt: z__namespace.number(),
4596
4639
  enablePreviewFeedback: z__namespace.enum([
@@ -4910,7 +4953,17 @@ const userEventSchema = z__namespace.object({
4910
4953
  "hard_blocked",
4911
4954
  "limits_exceeded"
4912
4955
  ])
4913
- }).optional()
4956
+ }).optional(),
4957
+ speedInsightsFree: z__namespace.object({
4958
+ updatedAt: z__namespace.number(),
4959
+ blockedFrom: z__namespace.number().optional(),
4960
+ blockedUntil: z__namespace.number().optional(),
4961
+ blockReason: z__namespace.enum([
4962
+ "admin_override",
4963
+ "hard_blocked",
4964
+ "limits_exceeded"
4965
+ ])
4966
+ }).optional().describe("Pauses Speed Insights free data-point ingestion when the team-wide free allocation is exhausted. The block lasts at least 14 days and is extended while rolling usage stays above half of the allocation.")
4914
4967
  }).optional().describe("Information about which features are blocked for a user. Blocks can be either soft (the user can still access the feature, but with a warning, e.g. prompting an upgrade) or hard (the user cannot access the feature at all)."),
4915
4968
  defaultTeamId: z__namespace.string().optional(),
4916
4969
  version: z__namespace.enum([
@@ -5210,6 +5263,7 @@ const userEventSchema = z__namespace.object({
5210
5263
  }).nullish(),
5211
5264
  env: z__namespace.string().optional(),
5212
5265
  os: z__namespace.string().optional(),
5266
+ loginSessionId: z__namespace.string().optional().describe("Browser login correlation ID. This is not an authentication credential."),
5213
5267
  username: z__namespace.string().optional(),
5214
5268
  ssoType: z__namespace.string().optional(),
5215
5269
  factors: z__namespace.union([
@@ -5219,6 +5273,7 @@ const userEventSchema = z__namespace.object({
5219
5273
  "bitbucket",
5220
5274
  "chatgpt",
5221
5275
  "email",
5276
+ "emu-recovery",
5222
5277
  "github",
5223
5278
  "gitlab",
5224
5279
  "google",
@@ -5244,6 +5299,7 @@ const userEventSchema = z__namespace.object({
5244
5299
  "bitbucket",
5245
5300
  "chatgpt",
5246
5301
  "email",
5302
+ "emu-recovery",
5247
5303
  "github",
5248
5304
  "gitlab",
5249
5305
  "google",
@@ -5834,6 +5890,89 @@ const userEventSchema = z__namespace.object({
5834
5890
  timestamp: z__namespace.number().optional(),
5835
5891
  removedMemberCount: z__namespace.number().optional()
5836
5892
  }).strict(),
5893
+ z__namespace.object({
5894
+ plan: z__namespace.string(),
5895
+ removedUsers: z__namespace.object({}).catchall(z__namespace.object({
5896
+ role: z__namespace.enum([
5897
+ "BILLING",
5898
+ "CONTRIBUTOR",
5899
+ "DEVELOPER",
5900
+ "MEMBER",
5901
+ "OWNER",
5902
+ "SECURITY",
5903
+ "VIEWER",
5904
+ "VIEWER_FOR_PLUS"
5905
+ ]),
5906
+ confirmed: z__namespace.union([
5907
+ z__namespace.literal(false),
5908
+ z__namespace.literal(true)
5909
+ ]),
5910
+ confirmedAt: z__namespace.number().optional(),
5911
+ joinedFrom: z__namespace.object({
5912
+ origin: z__namespace.enum([
5913
+ "account-update",
5914
+ "bitbucket",
5915
+ "dsync",
5916
+ "feedback",
5917
+ "github",
5918
+ "gitlab",
5919
+ "import",
5920
+ "link",
5921
+ "mail",
5922
+ "nsnb-auto-approve",
5923
+ "nsnb-hobby-upgrade",
5924
+ "nsnb-invite",
5925
+ "nsnb-redeploy",
5926
+ "nsnb-redeploy-attribution-card",
5927
+ "nsnb-request-access",
5928
+ "nsnb-viewer-upgrade",
5929
+ "organization-teams",
5930
+ "saml",
5931
+ "teams"
5932
+ ]),
5933
+ commitId: z__namespace.string().optional(),
5934
+ repoId: z__namespace.string().optional(),
5935
+ repoPath: z__namespace.string().optional(),
5936
+ gitUserId: z__namespace.union([
5937
+ z__namespace.string(),
5938
+ z__namespace.number()
5939
+ ]).optional(),
5940
+ gitUserLogin: z__namespace.string().optional(),
5941
+ ssoUserId: z__namespace.string().optional(),
5942
+ ssoConnectedAt: z__namespace.number().optional(),
5943
+ idpUserId: z__namespace.string().optional(),
5944
+ dsyncUserId: z__namespace.string().optional(),
5945
+ dsyncConnectedAt: z__namespace.number().optional()
5946
+ }).optional()
5947
+ })).optional(),
5948
+ prevPlan: z__namespace.string().optional(),
5949
+ priorPlan: z__namespace.string().optional(),
5950
+ isDowngrade: z__namespace.union([
5951
+ z__namespace.literal(false),
5952
+ z__namespace.literal(true)
5953
+ ]).optional(),
5954
+ userAgent: z__namespace.string().optional(),
5955
+ isReactivate: z__namespace.union([
5956
+ z__namespace.literal(false),
5957
+ z__namespace.literal(true)
5958
+ ]).optional(),
5959
+ isTrialUpgrade: z__namespace.union([
5960
+ z__namespace.literal(false),
5961
+ z__namespace.literal(true)
5962
+ ]).optional(),
5963
+ automated: z__namespace.union([
5964
+ z__namespace.literal(false),
5965
+ z__namespace.literal(true)
5966
+ ]).optional().describe("Whether the plan change was system-initiated rather than human-initiated."),
5967
+ reason: z__namespace.string().optional().describe("Why the plan changed. For downgrades, this is a {@link DowngradeReason} from `@api/pubsub-types` (e.g. `user_downgrade`, `trial_expired`)."),
5968
+ timestamp: z__namespace.number().optional(),
5969
+ removedMemberCount: z__namespace.number().optional(),
5970
+ actorId: z__namespace.string().describe("Okta user id."),
5971
+ actorType: z__namespace.enum([
5972
+ "admin"
5973
+ ]),
5974
+ actorName: z__namespace.string().optional()
5975
+ }).strict(),
5837
5976
  z__namespace.object({
5838
5977
  price: z__namespace.number().optional(),
5839
5978
  currency: z__namespace.string().optional(),
@@ -6950,6 +7089,18 @@ const userEventSchema = z__namespace.object({
6950
7089
  z__namespace.literal(true)
6951
7090
  ])
6952
7091
  }).strict(),
7092
+ z__namespace.object({
7093
+ email: z__namespace.string(),
7094
+ verified: z__namespace.union([
7095
+ z__namespace.literal(false),
7096
+ z__namespace.literal(true)
7097
+ ]),
7098
+ actorId: z__namespace.string().describe("Okta user id."),
7099
+ actorType: z__namespace.enum([
7100
+ "admin"
7101
+ ]),
7102
+ actorName: z__namespace.string().optional()
7103
+ }).strict(),
6953
7104
  z__namespace.object({
6954
7105
  email: z__namespace.string()
6955
7106
  }).strict(),
@@ -7408,6 +7559,23 @@ const userEventSchema = z__namespace.object({
7408
7559
  "enhanced",
7409
7560
  "standard",
7410
7561
  "turbo"
7562
+ ]).optional(),
7563
+ isSystemInitiated: z__namespace.union([
7564
+ z__namespace.literal(false),
7565
+ z__namespace.literal(true)
7566
+ ]).optional(),
7567
+ reason: z__namespace.enum([
7568
+ "basic-floor",
7569
+ "build-timeout-failure",
7570
+ "enospc-failure",
7571
+ "enterprise-floor",
7572
+ "high-peak-disk",
7573
+ "high-peak-memory",
7574
+ "long-build-duration",
7575
+ "oom-failure",
7576
+ "plan-change",
7577
+ "short-build-duration",
7578
+ "sustained-high-cpu"
7411
7579
  ]).optional()
7412
7580
  }).strict(),
7413
7581
  z__namespace.object({
@@ -7624,6 +7792,64 @@ const userEventSchema = z__namespace.object({
7624
7792
  }).optional(),
7625
7793
  role: z__namespace.string().optional(),
7626
7794
  previousRole: z__namespace.string(),
7795
+ previousTeamRoles: z__namespace.array(z__namespace.enum([
7796
+ "BILLING",
7797
+ "CONTRIBUTOR",
7798
+ "DEVELOPER",
7799
+ "MEMBER",
7800
+ "OWNER",
7801
+ "SECURITY",
7802
+ "VIEWER",
7803
+ "VIEWER_FOR_PLUS"
7804
+ ])).optional(),
7805
+ teamRoles: z__namespace.array(z__namespace.enum([
7806
+ "BILLING",
7807
+ "CONTRIBUTOR",
7808
+ "DEVELOPER",
7809
+ "MEMBER",
7810
+ "OWNER",
7811
+ "SECURITY",
7812
+ "VIEWER",
7813
+ "VIEWER_FOR_PLUS"
7814
+ ])).optional(),
7815
+ previousTeamPermissions: z__namespace.array(z__namespace.enum([
7816
+ "AiGatewayApiKeyOwnedBySelf",
7817
+ "AiGatewayBudgetManager",
7818
+ "AiGatewayCredits",
7819
+ "AiGatewaySettings",
7820
+ "ConnectorManager",
7821
+ "CreateProject",
7822
+ "EnvVariableManager",
7823
+ "EnvironmentManager",
7824
+ "FullProductionDeployment",
7825
+ "IntegrationManager",
7826
+ "OrgAdmin",
7827
+ "OrgViewer",
7828
+ "UsageViewer",
7829
+ "V0Builder",
7830
+ "V0Chatter",
7831
+ "V0Viewer",
7832
+ "WorkflowDecryptor"
7833
+ ])).optional(),
7834
+ teamPermissions: z__namespace.array(z__namespace.enum([
7835
+ "AiGatewayApiKeyOwnedBySelf",
7836
+ "AiGatewayBudgetManager",
7837
+ "AiGatewayCredits",
7838
+ "AiGatewaySettings",
7839
+ "ConnectorManager",
7840
+ "CreateProject",
7841
+ "EnvVariableManager",
7842
+ "EnvironmentManager",
7843
+ "FullProductionDeployment",
7844
+ "IntegrationManager",
7845
+ "OrgAdmin",
7846
+ "OrgViewer",
7847
+ "UsageViewer",
7848
+ "V0Builder",
7849
+ "V0Chatter",
7850
+ "V0Viewer",
7851
+ "WorkflowDecryptor"
7852
+ ])).optional(),
7627
7853
  updatedUid: z__namespace.string().optional(),
7628
7854
  origin: z__namespace.string().optional(),
7629
7855
  teamSlug: z__namespace.string().optional()
@@ -7686,6 +7912,14 @@ const userEventSchema = z__namespace.object({
7686
7912
  z__namespace.object({
7687
7913
  name: z__namespace.string().optional()
7688
7914
  }).strict(),
7915
+ z__namespace.object({
7916
+ name: z__namespace.string().optional(),
7917
+ actorId: z__namespace.string().describe("Okta user id."),
7918
+ actorType: z__namespace.enum([
7919
+ "admin"
7920
+ ]),
7921
+ actorName: z__namespace.string().optional()
7922
+ }).strict(),
7689
7923
  z__namespace.object({
7690
7924
  decision: z__namespace.enum([
7691
7925
  "keep_on",
@@ -7778,6 +8012,14 @@ const userEventSchema = z__namespace.object({
7778
8012
  z__namespace.object({
7779
8013
  slug: z__namespace.string().optional()
7780
8014
  }).strict(),
8015
+ z__namespace.object({
8016
+ slug: z__namespace.string().optional(),
8017
+ actorId: z__namespace.string().describe("Okta user id."),
8018
+ actorType: z__namespace.enum([
8019
+ "admin"
8020
+ ]),
8021
+ actorName: z__namespace.string().optional()
8022
+ }).strict(),
7781
8023
  z__namespace.object({
7782
8024
  projectId: z__namespace.string(),
7783
8025
  projectName: z__namespace.string(),
@@ -7807,12 +8049,22 @@ const userEventSchema = z__namespace.object({
7807
8049
  "admin",
7808
8050
  "user"
7809
8051
  ]).optional(),
8052
+ actorName: z__namespace.string().optional().describe("Human-readable admin who performed the removal."),
7810
8053
  reason: z__namespace.string().optional()
7811
8054
  }).strict(),
7812
8055
  z__namespace.object({
7813
8056
  deletedAt: z__namespace.number().nullish(),
7814
8057
  username: z__namespace.string()
7815
8058
  }).strict(),
8059
+ z__namespace.object({
8060
+ deletedAt: z__namespace.number().nullish(),
8061
+ username: z__namespace.string(),
8062
+ actorId: z__namespace.string().describe("Okta user id."),
8063
+ actorType: z__namespace.enum([
8064
+ "admin"
8065
+ ]),
8066
+ actorName: z__namespace.string().optional()
8067
+ }).strict(),
7816
8068
  z__namespace.object({
7817
8069
  username: z__namespace.string()
7818
8070
  }).strict(),
@@ -7858,7 +8110,19 @@ const userEventSchema = z__namespace.object({
7858
8110
  "totp",
7859
8111
  "webauthn"
7860
8112
  ]),
7861
- reason: z__namespace.string()
8113
+ reason: z__namespace.string(),
8114
+ flowId: z__namespace.string().optional(),
8115
+ loginSessionId: z__namespace.string().optional()
8116
+ }).strict(),
8117
+ z__namespace.object({
8118
+ allowedMethods: z__namespace.array(z__namespace.enum([
8119
+ "recovery-code",
8120
+ "totp",
8121
+ "webauthn"
8122
+ ])),
8123
+ firstFactor: z__namespace.string(),
8124
+ flowId: z__namespace.string(),
8125
+ loginSessionId: z__namespace.string().optional()
7862
8126
  }).strict(),
7863
8127
  z__namespace.object({
7864
8128
  action: z__namespace.enum([
@@ -7892,10 +8156,20 @@ const userEventSchema = z__namespace.object({
7892
8156
  z__namespace.literal(false),
7893
8157
  z__namespace.literal(true)
7894
8158
  ])
7895
- })
8159
+ }),
8160
+ method: z__namespace.enum([
8161
+ "passkey",
8162
+ "self_serve_recovery",
8163
+ "totp",
8164
+ "user_disabled"
8165
+ ]).optional()
7896
8166
  }).strict(),
7897
8167
  z__namespace.object({
7898
- remaining: z__namespace.number()
8168
+ remaining: z__namespace.number(),
8169
+ context: z__namespace.enum([
8170
+ "login",
8171
+ "sudo"
8172
+ ]).optional().describe("Absent on events predating the field; those were all logins.")
7899
8173
  }).strict(),
7900
8174
  z__namespace.object({
7901
8175
  mfaEnabled: z__namespace.union([
@@ -7925,10 +8199,85 @@ const userEventSchema = z__namespace.object({
7925
8199
  z__namespace.literal(true)
7926
8200
  ])
7927
8201
  }).strict(),
8202
+ z__namespace.object({
8203
+ previous: z__namespace.object({
8204
+ enabled: z__namespace.union([
8205
+ z__namespace.literal(false),
8206
+ z__namespace.literal(true)
8207
+ ]),
8208
+ totpVerified: z__namespace.union([
8209
+ z__namespace.literal(false),
8210
+ z__namespace.literal(true)
8211
+ ])
8212
+ }),
8213
+ next: z__namespace.object({
8214
+ enabled: z__namespace.union([
8215
+ z__namespace.literal(false),
8216
+ z__namespace.literal(true)
8217
+ ]),
8218
+ totpVerified: z__namespace.union([
8219
+ z__namespace.literal(false),
8220
+ z__namespace.literal(true)
8221
+ ])
8222
+ })
8223
+ }).strict(),
8224
+ z__namespace.object({
8225
+ provider: z__namespace.enum([
8226
+ "google"
8227
+ ]),
8228
+ providerSubjectId: z__namespace.string(),
8229
+ outcome: z__namespace.enum([
8230
+ "account-matched",
8231
+ "linking-required"
8232
+ ]),
8233
+ decision: z__namespace.object({
8234
+ authoritative: z__namespace.union([
8235
+ z__namespace.literal(false),
8236
+ z__namespace.literal(true)
8237
+ ]),
8238
+ basis: z__namespace.enum([
8239
+ "gmail",
8240
+ "none",
8241
+ "workspace-mx"
8242
+ ]),
8243
+ emailDomain: z__namespace.string(),
8244
+ emailVerified: z__namespace.union([
8245
+ z__namespace.literal(false),
8246
+ z__namespace.literal(true)
8247
+ ]),
8248
+ hostedDomainMatch: z__namespace.union([
8249
+ z__namespace.literal(false),
8250
+ z__namespace.literal(true)
8251
+ ]),
8252
+ mxOutcome: z__namespace.enum([
8253
+ "google",
8254
+ "lookup-error",
8255
+ "non-google",
8256
+ "not-checked"
8257
+ ])
8258
+ })
8259
+ }).strict(),
7928
8260
  z__namespace.object({
7929
8261
  email: z__namespace.string(),
7930
8262
  prevEmail: z__namespace.string()
7931
8263
  }).strict(),
8264
+ z__namespace.object({
8265
+ email: z__namespace.string(),
8266
+ prevEmail: z__namespace.string(),
8267
+ actorId: z__namespace.string().describe("Okta user id."),
8268
+ actorType: z__namespace.enum([
8269
+ "admin"
8270
+ ]),
8271
+ actorName: z__namespace.string().optional()
8272
+ }).strict(),
8273
+ z__namespace.object({
8274
+ username: z__namespace.string(),
8275
+ actorId: z__namespace.string().describe("Okta user id."),
8276
+ actorType: z__namespace.enum([
8277
+ "admin"
8278
+ ]),
8279
+ actorName: z__namespace.string().optional()
8280
+ }).strict(),
7932
8281
  z__namespace.object({
7933
8282
  projectId: z__namespace.string(),
7934
8283
  projectName: z__namespace.string(),
@@ -8401,6 +8750,15 @@ const listEventTypeSchema = z__namespace.object({
8401
8750
  "access-group-updated",
8402
8751
  "access-group-user-added",
8403
8752
  "access-group-user-removed",
8753
+ "admin-agentic-provisioning-account-unlinked",
8754
+ "admin-plan-updated",
8755
+ "admin-secondary-email-added",
8756
+ "admin-secondary-email-removed",
8757
+ "admin-team-name-update",
8758
+ "admin-team-slug-update",
8759
+ "admin-user-delete",
8760
+ "admin-user-primary-email-updated",
8761
+ "admin-username-updated",
8404
8762
  "agentic-provisioning-account-blocked",
8405
8763
  "agentic-provisioning-account-linked",
8406
8764
  "agentic-provisioning-account-relinked",
@@ -8627,6 +8985,7 @@ const listEventTypeSchema = z__namespace.object({
8627
8985
  "git-integration-repo-push",
8628
8986
  "git_account_integration_link_added",
8629
8987
  "instant-rollback-created",
8988
+ "integration-configuration-credential-rotated",
8630
8989
  "integration-configuration-owner-changed",
8631
8990
  "integration-configuration-scope-change-confirmed",
8632
8991
  "integration-configuration-transfer-in-success",
@@ -8966,6 +9325,7 @@ const listEventTypeSchema = z__namespace.object({
8966
9325
  "user-emu-recovery-initiated",
8967
9326
  "user-emu-toggled",
8968
9327
  "user-mfa-challenge-failed",
9328
+ "user-mfa-challenge-initiated",
8969
9329
  "user-mfa-challenge-verified",
8970
9330
  "user-mfa-change-failed",
8971
9331
  "user-mfa-configuration-updated",
@@ -8978,6 +9338,7 @@ const listEventTypeSchema = z__namespace.object({
8978
9338
  "user-phone-removed",
8979
9339
  "user-phone-updated",
8980
9340
  "user-primary-email-updated",
9341
+ "user-provider-email-claim-evaluated",
8981
9342
  "user-sudo-mode-removed",
8982
9343
  "user-token-created",
8983
9344
  "user-token-deleted",
@@ -9054,6 +9415,15 @@ const listEventTypeSchema = z__namespace.object({
9054
9415
  "access-group-updated",
9055
9416
  "access-group-user-added",
9056
9417
  "access-group-user-removed",
9418
+ "admin-agentic-provisioning-account-unlinked",
9419
+ "admin-plan-updated",
9420
+ "admin-secondary-email-added",
9421
+ "admin-secondary-email-removed",
9422
+ "admin-team-name-update",
9423
+ "admin-team-slug-update",
9424
+ "admin-user-delete",
9425
+ "admin-user-primary-email-updated",
9426
+ "admin-username-updated",
9057
9427
  "agentic-provisioning-account-blocked",
9058
9428
  "agentic-provisioning-account-linked",
9059
9429
  "agentic-provisioning-account-relinked",
@@ -9280,6 +9650,7 @@ const listEventTypeSchema = z__namespace.object({
9280
9650
  "git-integration-repo-push",
9281
9651
  "git_account_integration_link_added",
9282
9652
  "instant-rollback-created",
9653
+ "integration-configuration-credential-rotated",
9283
9654
  "integration-configuration-owner-changed",
9284
9655
  "integration-configuration-scope-change-confirmed",
9285
9656
  "integration-configuration-transfer-in-success",
@@ -9619,6 +9990,7 @@ const listEventTypeSchema = z__namespace.object({
9619
9990
  "user-emu-recovery-initiated",
9620
9991
  "user-emu-toggled",
9621
9992
  "user-mfa-challenge-failed",
9993
+ "user-mfa-challenge-initiated",
9622
9994
  "user-mfa-challenge-verified",
9623
9995
  "user-mfa-change-failed",
9624
9996
  "user-mfa-configuration-updated",
@@ -9631,6 +10003,7 @@ const listEventTypeSchema = z__namespace.object({
9631
10003
  "user-phone-removed",
9632
10004
  "user-phone-updated",
9633
10005
  "user-primary-email-updated",
10006
+ "user-provider-email-claim-evaluated",
9634
10007
  "user-sudo-mode-removed",
9635
10008
  "user-token-created",
9636
10009
  "user-token-deleted",
@@ -10230,7 +10603,7 @@ const namedSandboxSchema = z__namespace.object({
10230
10603
  z__namespace.literal(false),
10231
10604
  z__namespace.literal(true)
10232
10605
  ]).describe("Whether the sandbox persists its state across restarts via automatic snapshots."),
10233
- region: z__namespace.string().optional().describe("The region the sandbox is configured to run in: the region set on the sandbox, otherwise the project-level default, then the platform default. Where a running session actually landed is reported by `session.region`."),
10606
+ region: z__namespace.string().optional().describe("The region the sandbox is pinned to: the region stored on the sandbox, otherwise the platform default. Where a running session actually landed is reported by `session.region`."),
10234
10607
  vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated."),
10235
10608
  memory: z__namespace.number().optional().describe("Memory allocated in MB."),
10236
10609
  runtime: z__namespace.string().optional().describe("Runtime identifier."),
@@ -10411,7 +10784,8 @@ const invitedTeamMemberSchema = z__namespace.object({
10411
10784
  "UsageViewer",
10412
10785
  "V0Builder",
10413
10786
  "V0Chatter",
10414
- "V0Viewer"
10787
+ "V0Viewer",
10788
+ "WorkflowDecryptor"
10415
10789
  ])).optional().describe("The team permissions of the user")
10416
10790
  }).describe("The member was successfully added to the team.");
10417
10791
  const teamSchema = z__namespace.object({
@@ -10509,7 +10883,8 @@ const teamSchema = z__namespace.object({
10509
10883
  "UsageViewer",
10510
10884
  "V0Builder",
10511
10885
  "V0Chatter",
10512
- "V0Viewer"
10886
+ "V0Viewer",
10887
+ "WorkflowDecryptor"
10513
10888
  ])).optional()
10514
10889
  }).optional().describe("Default roles for the team."),
10515
10890
  stagingPrefix: z__namespace.string().describe("The prefix that is prepended to automatic aliases."),
@@ -10803,7 +11178,8 @@ const teamSchema = z__namespace.object({
10803
11178
  "UsageViewer",
10804
11179
  "V0Builder",
10805
11180
  "V0Chatter",
10806
- "V0Viewer"
11181
+ "V0Viewer",
11182
+ "WorkflowDecryptor"
10807
11183
  ])).optional(),
10808
11184
  createdAt: z__namespace.number(),
10809
11185
  created: z__namespace.number(),
@@ -10932,7 +11308,8 @@ const teamLimitedSchema = z__namespace.object({
10932
11308
  "UsageViewer",
10933
11309
  "V0Builder",
10934
11310
  "V0Chatter",
10935
- "V0Viewer"
11311
+ "V0Viewer",
11312
+ "WorkflowDecryptor"
10936
11313
  ])).optional(),
10937
11314
  createdAt: z__namespace.number(),
10938
11315
  created: z__namespace.number(),
@@ -14817,6 +15194,23 @@ const getMemberResponseSchema = z__namespace.union([
14817
15194
  getMemberStatus404Schema,
14818
15195
  getMemberStatus410Schema
14819
15196
  ]);
15197
+ const rotateInstallationCredentialPathIntegrationConfigurationIdSchema = z__namespace.string();
15198
+ const rotateInstallationCredentialStatus200Schema = z__namespace.unknown();
15199
+ const rotateInstallationCredentialStatus400Schema = z__namespace.unknown();
15200
+ const rotateInstallationCredentialStatus401Schema = z__namespace.unknown();
15201
+ const rotateInstallationCredentialStatus403Schema = z__namespace.unknown();
15202
+ const rotateInstallationCredentialStatus404Schema = z__namespace.unknown();
15203
+ const rotateInstallationCredentialStatus409Schema = z__namespace.unknown();
15204
+ const rotateInstallationCredentialStatus410Schema = z__namespace.unknown();
15205
+ const rotateInstallationCredentialResponseSchema = z__namespace.union([
15206
+ rotateInstallationCredentialStatus200Schema,
15207
+ rotateInstallationCredentialStatus400Schema,
15208
+ rotateInstallationCredentialStatus401Schema,
15209
+ rotateInstallationCredentialStatus403Schema,
15210
+ rotateInstallationCredentialStatus404Schema,
15211
+ rotateInstallationCredentialStatus409Schema,
15212
+ rotateInstallationCredentialStatus410Schema
15213
+ ]);
14820
15214
  const createEventPathIntegrationConfigurationIdSchema = z__namespace.string();
14821
15215
  const createEventStatus201Schema = z__namespace.unknown();
14822
15216
  const createEventStatus400Schema = z__namespace.unknown();
@@ -17193,58 +17587,58 @@ const writeSessionFilesResponseSchema = z__namespace.union([
17193
17587
  writeSessionFilesStatus429Schema,
17194
17588
  writeSessionFilesStatus500Schema
17195
17589
  ]);
17196
- const createSessionSnapshotPathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
17197
- const createSessionSnapshotQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17198
- const createSessionSnapshotQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17199
- const createSessionSnapshotStatus201Schema = z__namespace.unknown();
17200
- const createSessionSnapshotStatus400Schema = z__namespace.unknown();
17201
- const createSessionSnapshotStatus401Schema = z__namespace.unknown();
17202
- const createSessionSnapshotStatus402Schema = z__namespace.unknown();
17203
- const createSessionSnapshotStatus403Schema = z__namespace.unknown();
17204
- const createSessionSnapshotStatus404Schema = z__namespace.unknown();
17205
- const createSessionSnapshotStatus410Schema = z__namespace.unknown();
17206
- const createSessionSnapshotStatus422Schema = z__namespace.unknown();
17207
- const createSessionSnapshotStatus429Schema = z__namespace.unknown();
17208
- const createSessionSnapshotStatus500Schema = z__namespace.unknown();
17209
- const createSessionSnapshotResponseSchema = z__namespace.union([
17210
- createSessionSnapshotStatus201Schema,
17211
- createSessionSnapshotStatus400Schema,
17212
- createSessionSnapshotStatus401Schema,
17213
- createSessionSnapshotStatus402Schema,
17214
- createSessionSnapshotStatus403Schema,
17215
- createSessionSnapshotStatus404Schema,
17216
- createSessionSnapshotStatus410Schema,
17217
- createSessionSnapshotStatus422Schema,
17218
- createSessionSnapshotStatus429Schema,
17219
- createSessionSnapshotStatus500Schema
17220
- ]);
17221
- const createSandboxesByNameForkPathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
17222
- const createSandboxesByNameForkQueryProjectIdSchema = z__namespace.string().max(128).optional().describe("The ID of the project the source sandbox belongs to. Required unless authenticating with an OIDC token.");
17223
- const createSandboxesByNameForkQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17224
- const createSandboxesByNameForkQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17225
- const createSandboxesByNameForkStatus200Schema = z__namespace.unknown();
17226
- const createSandboxesByNameForkStatus400Schema = z__namespace.unknown();
17227
- const createSandboxesByNameForkStatus401Schema = z__namespace.unknown();
17228
- const createSandboxesByNameForkStatus402Schema = z__namespace.unknown();
17229
- const createSandboxesByNameForkStatus403Schema = z__namespace.unknown();
17230
- const createSandboxesByNameForkStatus404Schema = z__namespace.unknown();
17231
- const createSandboxesByNameForkStatus409Schema = z__namespace.unknown();
17232
- const createSandboxesByNameForkStatus410Schema = z__namespace.unknown();
17233
- const createSandboxesByNameForkStatus422Schema = z__namespace.unknown();
17234
- const createSandboxesByNameForkStatus429Schema = z__namespace.unknown();
17235
- const createSandboxesByNameForkStatus500Schema = z__namespace.unknown();
17236
- const createSandboxesByNameForkResponseSchema = z__namespace.union([
17237
- createSandboxesByNameForkStatus200Schema,
17238
- createSandboxesByNameForkStatus400Schema,
17239
- createSandboxesByNameForkStatus401Schema,
17240
- createSandboxesByNameForkStatus402Schema,
17241
- createSandboxesByNameForkStatus403Schema,
17242
- createSandboxesByNameForkStatus404Schema,
17243
- createSandboxesByNameForkStatus409Schema,
17244
- createSandboxesByNameForkStatus410Schema,
17245
- createSandboxesByNameForkStatus422Schema,
17246
- createSandboxesByNameForkStatus429Schema,
17247
- createSandboxesByNameForkStatus500Schema
17590
+ const createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
17591
+ const createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17592
+ const createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17593
+ const createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = z__namespace.unknown();
17594
+ const createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = z__namespace.unknown();
17595
+ const createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = z__namespace.unknown();
17596
+ const createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = z__namespace.unknown();
17597
+ const createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = z__namespace.unknown();
17598
+ const createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = z__namespace.unknown();
17599
+ const createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = z__namespace.unknown();
17600
+ const createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = z__namespace.unknown();
17601
+ const createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = z__namespace.unknown();
17602
+ const createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = z__namespace.unknown();
17603
+ const createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = z__namespace.union([
17604
+ createSandboxesSessionsBySessionIdSnapshotV2Status201Schema,
17605
+ createSandboxesSessionsBySessionIdSnapshotV2Status400Schema,
17606
+ createSandboxesSessionsBySessionIdSnapshotV2Status401Schema,
17607
+ createSandboxesSessionsBySessionIdSnapshotV2Status402Schema,
17608
+ createSandboxesSessionsBySessionIdSnapshotV2Status403Schema,
17609
+ createSandboxesSessionsBySessionIdSnapshotV2Status404Schema,
17610
+ createSandboxesSessionsBySessionIdSnapshotV2Status410Schema,
17611
+ createSandboxesSessionsBySessionIdSnapshotV2Status422Schema,
17612
+ createSandboxesSessionsBySessionIdSnapshotV2Status429Schema,
17613
+ createSandboxesSessionsBySessionIdSnapshotV2Status500Schema
17614
+ ]);
17615
+ const createSandboxesByNameForkV2PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
17616
+ const createSandboxesByNameForkV2QueryProjectIdSchema = z__namespace.string().max(128).optional().describe("The ID of the project the source sandbox belongs to. Required unless authenticating with an OIDC token.");
17617
+ const createSandboxesByNameForkV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17618
+ const createSandboxesByNameForkV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17619
+ const createSandboxesByNameForkV2Status200Schema = z__namespace.unknown();
17620
+ const createSandboxesByNameForkV2Status400Schema = z__namespace.unknown();
17621
+ const createSandboxesByNameForkV2Status401Schema = z__namespace.unknown();
17622
+ const createSandboxesByNameForkV2Status402Schema = z__namespace.unknown();
17623
+ const createSandboxesByNameForkV2Status403Schema = z__namespace.unknown();
17624
+ const createSandboxesByNameForkV2Status404Schema = z__namespace.unknown();
17625
+ const createSandboxesByNameForkV2Status409Schema = z__namespace.unknown();
17626
+ const createSandboxesByNameForkV2Status410Schema = z__namespace.unknown();
17627
+ const createSandboxesByNameForkV2Status422Schema = z__namespace.unknown();
17628
+ const createSandboxesByNameForkV2Status429Schema = z__namespace.unknown();
17629
+ const createSandboxesByNameForkV2Status500Schema = z__namespace.unknown();
17630
+ const createSandboxesByNameForkV2ResponseSchema = z__namespace.union([
17631
+ createSandboxesByNameForkV2Status200Schema,
17632
+ createSandboxesByNameForkV2Status400Schema,
17633
+ createSandboxesByNameForkV2Status401Schema,
17634
+ createSandboxesByNameForkV2Status402Schema,
17635
+ createSandboxesByNameForkV2Status403Schema,
17636
+ createSandboxesByNameForkV2Status404Schema,
17637
+ createSandboxesByNameForkV2Status409Schema,
17638
+ createSandboxesByNameForkV2Status410Schema,
17639
+ createSandboxesByNameForkV2Status422Schema,
17640
+ createSandboxesByNameForkV2Status429Schema,
17641
+ createSandboxesByNameForkV2Status500Schema
17248
17642
  ]);
17249
17643
  const createSandboxesV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17250
17644
  const createSandboxesV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -17272,6 +17666,85 @@ const createSandboxesV3ResponseSchema = z__namespace.union([
17272
17666
  createSandboxesV3Status429Schema,
17273
17667
  createSandboxesV3Status500Schema
17274
17668
  ]);
17669
+ const createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
17670
+ const createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17671
+ const createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17672
+ const createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = z__namespace.unknown();
17673
+ const createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = z__namespace.unknown();
17674
+ const createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = z__namespace.unknown();
17675
+ const createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = z__namespace.unknown();
17676
+ const createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = z__namespace.unknown();
17677
+ const createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = z__namespace.unknown();
17678
+ const createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = z__namespace.unknown();
17679
+ const createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = z__namespace.unknown();
17680
+ const createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = z__namespace.unknown();
17681
+ const createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = z__namespace.unknown();
17682
+ const createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = z__namespace.union([
17683
+ createSandboxesSessionsBySessionIdSnapshotV3Status201Schema,
17684
+ createSandboxesSessionsBySessionIdSnapshotV3Status400Schema,
17685
+ createSandboxesSessionsBySessionIdSnapshotV3Status401Schema,
17686
+ createSandboxesSessionsBySessionIdSnapshotV3Status402Schema,
17687
+ createSandboxesSessionsBySessionIdSnapshotV3Status403Schema,
17688
+ createSandboxesSessionsBySessionIdSnapshotV3Status404Schema,
17689
+ createSandboxesSessionsBySessionIdSnapshotV3Status410Schema,
17690
+ createSandboxesSessionsBySessionIdSnapshotV3Status422Schema,
17691
+ createSandboxesSessionsBySessionIdSnapshotV3Status429Schema,
17692
+ createSandboxesSessionsBySessionIdSnapshotV3Status500Schema
17693
+ ]);
17694
+ const createSandboxesByNameForkV3PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
17695
+ const createSandboxesByNameForkV3QueryProjectIdSchema = z__namespace.string().max(128).optional().describe("The ID of the project the source sandbox belongs to. Required unless authenticating with an OIDC token.");
17696
+ const createSandboxesByNameForkV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17697
+ const createSandboxesByNameForkV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17698
+ const createSandboxesByNameForkV3Status200Schema = z__namespace.unknown();
17699
+ const createSandboxesByNameForkV3Status400Schema = z__namespace.unknown();
17700
+ const createSandboxesByNameForkV3Status401Schema = z__namespace.unknown();
17701
+ const createSandboxesByNameForkV3Status402Schema = z__namespace.unknown();
17702
+ const createSandboxesByNameForkV3Status403Schema = z__namespace.unknown();
17703
+ const createSandboxesByNameForkV3Status404Schema = z__namespace.unknown();
17704
+ const createSandboxesByNameForkV3Status409Schema = z__namespace.unknown();
17705
+ const createSandboxesByNameForkV3Status410Schema = z__namespace.unknown();
17706
+ const createSandboxesByNameForkV3Status422Schema = z__namespace.unknown();
17707
+ const createSandboxesByNameForkV3Status429Schema = z__namespace.unknown();
17708
+ const createSandboxesByNameForkV3Status500Schema = z__namespace.unknown();
17709
+ const createSandboxesByNameForkV3ResponseSchema = z__namespace.union([
17710
+ createSandboxesByNameForkV3Status200Schema,
17711
+ createSandboxesByNameForkV3Status400Schema,
17712
+ createSandboxesByNameForkV3Status401Schema,
17713
+ createSandboxesByNameForkV3Status402Schema,
17714
+ createSandboxesByNameForkV3Status403Schema,
17715
+ createSandboxesByNameForkV3Status404Schema,
17716
+ createSandboxesByNameForkV3Status409Schema,
17717
+ createSandboxesByNameForkV3Status410Schema,
17718
+ createSandboxesByNameForkV3Status422Schema,
17719
+ createSandboxesByNameForkV3Status429Schema,
17720
+ createSandboxesByNameForkV3Status500Schema
17721
+ ]);
17722
+ const createSandboxesV4QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17723
+ const createSandboxesV4QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17724
+ const createSandboxesV4Status200Schema = z__namespace.unknown();
17725
+ const createSandboxesV4Status400Schema = z__namespace.unknown();
17726
+ const createSandboxesV4Status401Schema = z__namespace.unknown();
17727
+ const createSandboxesV4Status402Schema = z__namespace.unknown();
17728
+ const createSandboxesV4Status403Schema = z__namespace.unknown();
17729
+ const createSandboxesV4Status404Schema = z__namespace.unknown();
17730
+ const createSandboxesV4Status409Schema = z__namespace.unknown();
17731
+ const createSandboxesV4Status410Schema = z__namespace.unknown();
17732
+ const createSandboxesV4Status422Schema = z__namespace.unknown();
17733
+ const createSandboxesV4Status429Schema = z__namespace.unknown();
17734
+ const createSandboxesV4Status500Schema = z__namespace.unknown();
17735
+ const createSandboxesV4ResponseSchema = z__namespace.union([
17736
+ createSandboxesV4Status200Schema,
17737
+ createSandboxesV4Status400Schema,
17738
+ createSandboxesV4Status401Schema,
17739
+ createSandboxesV4Status402Schema,
17740
+ createSandboxesV4Status403Schema,
17741
+ createSandboxesV4Status404Schema,
17742
+ createSandboxesV4Status409Schema,
17743
+ createSandboxesV4Status410Schema,
17744
+ createSandboxesV4Status422Schema,
17745
+ createSandboxesV4Status429Schema,
17746
+ createSandboxesV4Status500Schema
17747
+ ]);
17275
17748
  const updateAttackChallengeModeQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
17276
17749
  const updateAttackChallengeModeQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
17277
17750
  const updateAttackChallengeModeStatus200Schema = z__namespace.unknown();
@@ -18286,7 +18759,7 @@ const getRootResponseSchema = z__namespace.union([
18286
18759
  getRootStatus404Schema,
18287
18760
  getRootStatus410Schema
18288
18761
  ]);
18289
- const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18762
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18290
18763
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18291
18764
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18292
18765
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
@@ -18306,7 +18779,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z_
18306
18779
  getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema,
18307
18780
  getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema
18308
18781
  ]);
18309
- const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18782
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18310
18783
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18311
18784
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18312
18785
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
@@ -18326,7 +18799,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema =
18326
18799
  deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema,
18327
18800
  deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema
18328
18801
  ]);
18329
- const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18802
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18330
18803
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18331
18804
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18332
18805
  const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
@@ -18346,7 +18819,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema
18346
18819
  getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
18347
18820
  getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
18348
18821
  ]);
18349
- const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18822
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18350
18823
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18351
18824
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18352
18825
  const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
@@ -18366,7 +18839,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
18366
18839
  deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
18367
18840
  deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
18368
18841
  ]);
18369
- const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18842
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18370
18843
  const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18371
18844
  const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18372
18845
  const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
@@ -18388,7 +18861,7 @@ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
18388
18861
  updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
18389
18862
  updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
18390
18863
  ]);
18391
- const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18864
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18392
18865
  const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18393
18866
  const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18394
18867
  const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
@@ -18411,11 +18884,11 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSc
18411
18884
  replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
18412
18885
  replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
18413
18886
  ]);
18414
- const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18887
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18415
18888
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18416
18889
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18417
18890
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).optional().describe("Digest of the blob to mount from another repository.");
18418
- const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)\\\/[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).optional().describe("Source repository to mount the blob from.");
18891
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).optional().describe("Source repository to mount the blob from.");
18419
18892
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = z__namespace.unknown();
18420
18893
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = z__namespace.unknown();
18421
18894
  const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = z__namespace.unknown();
@@ -18432,7 +18905,7 @@ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema =
18432
18905
  createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema,
18433
18906
  createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema
18434
18907
  ]);
18435
- const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18908
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18436
18909
  const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18437
18910
  const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18438
18911
  const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
@@ -18454,7 +18927,7 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponse
18454
18927
  replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema,
18455
18928
  replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema
18456
18929
  ]);
18457
- const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18930
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18458
18931
  const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18459
18932
  const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18460
18933
  const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
@@ -18472,7 +18945,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSche
18472
18945
  getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
18473
18946
  getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
18474
18947
  ]);
18475
- const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18948
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18476
18949
  const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18477
18950
  const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18478
18951
  const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
@@ -18492,7 +18965,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseS
18492
18965
  deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
18493
18966
  deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
18494
18967
  ]);
18495
- const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
18968
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
18496
18969
  const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
18497
18970
  const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
18498
18971
  const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = z__namespace.int().min(1).max(1000).optional();
@@ -19090,6 +19563,7 @@ exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
19090
19563
  exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
19091
19564
  exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
19092
19565
  exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
19566
+ exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
19093
19567
  exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
19094
19568
  exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
19095
19569
  exports.aiGatewayVirtualModelConfigListSchema = aiGatewayVirtualModelConfigListSchema;
@@ -19607,22 +20081,66 @@ exports.createRepositoryStatus403Schema = createRepositoryStatus403Schema;
19607
20081
  exports.createRepositoryStatus404Schema = createRepositoryStatus404Schema;
19608
20082
  exports.createRepositoryStatus409Schema = createRepositoryStatus409Schema;
19609
20083
  exports.createRepositoryStatus410Schema = createRepositoryStatus410Schema;
19610
- exports.createSandboxesByNameForkPathNameSchema = createSandboxesByNameForkPathNameSchema;
19611
- exports.createSandboxesByNameForkQueryProjectIdSchema = createSandboxesByNameForkQueryProjectIdSchema;
19612
- exports.createSandboxesByNameForkQuerySlugSchema = createSandboxesByNameForkQuerySlugSchema;
19613
- exports.createSandboxesByNameForkQueryTeamIdSchema = createSandboxesByNameForkQueryTeamIdSchema;
19614
- exports.createSandboxesByNameForkResponseSchema = createSandboxesByNameForkResponseSchema;
19615
- exports.createSandboxesByNameForkStatus200Schema = createSandboxesByNameForkStatus200Schema;
19616
- exports.createSandboxesByNameForkStatus400Schema = createSandboxesByNameForkStatus400Schema;
19617
- exports.createSandboxesByNameForkStatus401Schema = createSandboxesByNameForkStatus401Schema;
19618
- exports.createSandboxesByNameForkStatus402Schema = createSandboxesByNameForkStatus402Schema;
19619
- exports.createSandboxesByNameForkStatus403Schema = createSandboxesByNameForkStatus403Schema;
19620
- exports.createSandboxesByNameForkStatus404Schema = createSandboxesByNameForkStatus404Schema;
19621
- exports.createSandboxesByNameForkStatus409Schema = createSandboxesByNameForkStatus409Schema;
19622
- exports.createSandboxesByNameForkStatus410Schema = createSandboxesByNameForkStatus410Schema;
19623
- exports.createSandboxesByNameForkStatus422Schema = createSandboxesByNameForkStatus422Schema;
19624
- exports.createSandboxesByNameForkStatus429Schema = createSandboxesByNameForkStatus429Schema;
19625
- exports.createSandboxesByNameForkStatus500Schema = createSandboxesByNameForkStatus500Schema;
20084
+ exports.createSandboxesByNameForkV2PathNameSchema = createSandboxesByNameForkV2PathNameSchema;
20085
+ exports.createSandboxesByNameForkV2QueryProjectIdSchema = createSandboxesByNameForkV2QueryProjectIdSchema;
20086
+ exports.createSandboxesByNameForkV2QuerySlugSchema = createSandboxesByNameForkV2QuerySlugSchema;
20087
+ exports.createSandboxesByNameForkV2QueryTeamIdSchema = createSandboxesByNameForkV2QueryTeamIdSchema;
20088
+ exports.createSandboxesByNameForkV2ResponseSchema = createSandboxesByNameForkV2ResponseSchema;
20089
+ exports.createSandboxesByNameForkV2Status200Schema = createSandboxesByNameForkV2Status200Schema;
20090
+ exports.createSandboxesByNameForkV2Status400Schema = createSandboxesByNameForkV2Status400Schema;
20091
+ exports.createSandboxesByNameForkV2Status401Schema = createSandboxesByNameForkV2Status401Schema;
20092
+ exports.createSandboxesByNameForkV2Status402Schema = createSandboxesByNameForkV2Status402Schema;
20093
+ exports.createSandboxesByNameForkV2Status403Schema = createSandboxesByNameForkV2Status403Schema;
20094
+ exports.createSandboxesByNameForkV2Status404Schema = createSandboxesByNameForkV2Status404Schema;
20095
+ exports.createSandboxesByNameForkV2Status409Schema = createSandboxesByNameForkV2Status409Schema;
20096
+ exports.createSandboxesByNameForkV2Status410Schema = createSandboxesByNameForkV2Status410Schema;
20097
+ exports.createSandboxesByNameForkV2Status422Schema = createSandboxesByNameForkV2Status422Schema;
20098
+ exports.createSandboxesByNameForkV2Status429Schema = createSandboxesByNameForkV2Status429Schema;
20099
+ exports.createSandboxesByNameForkV2Status500Schema = createSandboxesByNameForkV2Status500Schema;
20100
+ exports.createSandboxesByNameForkV3PathNameSchema = createSandboxesByNameForkV3PathNameSchema;
20101
+ exports.createSandboxesByNameForkV3QueryProjectIdSchema = createSandboxesByNameForkV3QueryProjectIdSchema;
20102
+ exports.createSandboxesByNameForkV3QuerySlugSchema = createSandboxesByNameForkV3QuerySlugSchema;
20103
+ exports.createSandboxesByNameForkV3QueryTeamIdSchema = createSandboxesByNameForkV3QueryTeamIdSchema;
20104
+ exports.createSandboxesByNameForkV3ResponseSchema = createSandboxesByNameForkV3ResponseSchema;
20105
+ exports.createSandboxesByNameForkV3Status200Schema = createSandboxesByNameForkV3Status200Schema;
20106
+ exports.createSandboxesByNameForkV3Status400Schema = createSandboxesByNameForkV3Status400Schema;
20107
+ exports.createSandboxesByNameForkV3Status401Schema = createSandboxesByNameForkV3Status401Schema;
20108
+ exports.createSandboxesByNameForkV3Status402Schema = createSandboxesByNameForkV3Status402Schema;
20109
+ exports.createSandboxesByNameForkV3Status403Schema = createSandboxesByNameForkV3Status403Schema;
20110
+ exports.createSandboxesByNameForkV3Status404Schema = createSandboxesByNameForkV3Status404Schema;
20111
+ exports.createSandboxesByNameForkV3Status409Schema = createSandboxesByNameForkV3Status409Schema;
20112
+ exports.createSandboxesByNameForkV3Status410Schema = createSandboxesByNameForkV3Status410Schema;
20113
+ exports.createSandboxesByNameForkV3Status422Schema = createSandboxesByNameForkV3Status422Schema;
20114
+ exports.createSandboxesByNameForkV3Status429Schema = createSandboxesByNameForkV3Status429Schema;
20115
+ exports.createSandboxesByNameForkV3Status500Schema = createSandboxesByNameForkV3Status500Schema;
20116
+ exports.createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema;
20117
+ exports.createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema;
20118
+ exports.createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema;
20119
+ exports.createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema;
20120
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = createSandboxesSessionsBySessionIdSnapshotV2Status201Schema;
20121
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = createSandboxesSessionsBySessionIdSnapshotV2Status400Schema;
20122
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = createSandboxesSessionsBySessionIdSnapshotV2Status401Schema;
20123
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = createSandboxesSessionsBySessionIdSnapshotV2Status402Schema;
20124
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = createSandboxesSessionsBySessionIdSnapshotV2Status403Schema;
20125
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = createSandboxesSessionsBySessionIdSnapshotV2Status404Schema;
20126
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = createSandboxesSessionsBySessionIdSnapshotV2Status410Schema;
20127
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = createSandboxesSessionsBySessionIdSnapshotV2Status422Schema;
20128
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = createSandboxesSessionsBySessionIdSnapshotV2Status429Schema;
20129
+ exports.createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = createSandboxesSessionsBySessionIdSnapshotV2Status500Schema;
20130
+ exports.createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema;
20131
+ exports.createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema;
20132
+ exports.createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema;
20133
+ exports.createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema;
20134
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = createSandboxesSessionsBySessionIdSnapshotV3Status201Schema;
20135
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = createSandboxesSessionsBySessionIdSnapshotV3Status400Schema;
20136
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = createSandboxesSessionsBySessionIdSnapshotV3Status401Schema;
20137
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = createSandboxesSessionsBySessionIdSnapshotV3Status402Schema;
20138
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = createSandboxesSessionsBySessionIdSnapshotV3Status403Schema;
20139
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = createSandboxesSessionsBySessionIdSnapshotV3Status404Schema;
20140
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = createSandboxesSessionsBySessionIdSnapshotV3Status410Schema;
20141
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = createSandboxesSessionsBySessionIdSnapshotV3Status422Schema;
20142
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = createSandboxesSessionsBySessionIdSnapshotV3Status429Schema;
20143
+ exports.createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = createSandboxesSessionsBySessionIdSnapshotV3Status500Schema;
19626
20144
  exports.createSandboxesV2QuerySlugSchema = createSandboxesV2QuerySlugSchema;
19627
20145
  exports.createSandboxesV2QueryTeamIdSchema = createSandboxesV2QueryTeamIdSchema;
19628
20146
  exports.createSandboxesV2ResponseSchema = createSandboxesV2ResponseSchema;
@@ -19651,6 +20169,20 @@ exports.createSandboxesV3Status410Schema = createSandboxesV3Status410Schema;
19651
20169
  exports.createSandboxesV3Status422Schema = createSandboxesV3Status422Schema;
19652
20170
  exports.createSandboxesV3Status429Schema = createSandboxesV3Status429Schema;
19653
20171
  exports.createSandboxesV3Status500Schema = createSandboxesV3Status500Schema;
20172
+ exports.createSandboxesV4QuerySlugSchema = createSandboxesV4QuerySlugSchema;
20173
+ exports.createSandboxesV4QueryTeamIdSchema = createSandboxesV4QueryTeamIdSchema;
20174
+ exports.createSandboxesV4ResponseSchema = createSandboxesV4ResponseSchema;
20175
+ exports.createSandboxesV4Status200Schema = createSandboxesV4Status200Schema;
20176
+ exports.createSandboxesV4Status400Schema = createSandboxesV4Status400Schema;
20177
+ exports.createSandboxesV4Status401Schema = createSandboxesV4Status401Schema;
20178
+ exports.createSandboxesV4Status402Schema = createSandboxesV4Status402Schema;
20179
+ exports.createSandboxesV4Status403Schema = createSandboxesV4Status403Schema;
20180
+ exports.createSandboxesV4Status404Schema = createSandboxesV4Status404Schema;
20181
+ exports.createSandboxesV4Status409Schema = createSandboxesV4Status409Schema;
20182
+ exports.createSandboxesV4Status410Schema = createSandboxesV4Status410Schema;
20183
+ exports.createSandboxesV4Status422Schema = createSandboxesV4Status422Schema;
20184
+ exports.createSandboxesV4Status429Schema = createSandboxesV4Status429Schema;
20185
+ exports.createSandboxesV4Status500Schema = createSandboxesV4Status500Schema;
19654
20186
  exports.createSdkKeyPathProjectIdOrNameSchema = createSdkKeyPathProjectIdOrNameSchema;
19655
20187
  exports.createSdkKeyQuerySlugSchema = createSdkKeyQuerySlugSchema;
19656
20188
  exports.createSdkKeyQueryTeamIdSchema = createSdkKeyQueryTeamIdSchema;
@@ -19686,20 +20218,6 @@ exports.createSessionDirectoryStatus410Schema = createSessionDirectoryStatus410S
19686
20218
  exports.createSessionDirectoryStatus422Schema = createSessionDirectoryStatus422Schema;
19687
20219
  exports.createSessionDirectoryStatus429Schema = createSessionDirectoryStatus429Schema;
19688
20220
  exports.createSessionDirectoryStatus500Schema = createSessionDirectoryStatus500Schema;
19689
- exports.createSessionSnapshotPathSessionIdSchema = createSessionSnapshotPathSessionIdSchema;
19690
- exports.createSessionSnapshotQuerySlugSchema = createSessionSnapshotQuerySlugSchema;
19691
- exports.createSessionSnapshotQueryTeamIdSchema = createSessionSnapshotQueryTeamIdSchema;
19692
- exports.createSessionSnapshotResponseSchema = createSessionSnapshotResponseSchema;
19693
- exports.createSessionSnapshotStatus201Schema = createSessionSnapshotStatus201Schema;
19694
- exports.createSessionSnapshotStatus400Schema = createSessionSnapshotStatus400Schema;
19695
- exports.createSessionSnapshotStatus401Schema = createSessionSnapshotStatus401Schema;
19696
- exports.createSessionSnapshotStatus402Schema = createSessionSnapshotStatus402Schema;
19697
- exports.createSessionSnapshotStatus403Schema = createSessionSnapshotStatus403Schema;
19698
- exports.createSessionSnapshotStatus404Schema = createSessionSnapshotStatus404Schema;
19699
- exports.createSessionSnapshotStatus410Schema = createSessionSnapshotStatus410Schema;
19700
- exports.createSessionSnapshotStatus422Schema = createSessionSnapshotStatus422Schema;
19701
- exports.createSessionSnapshotStatus429Schema = createSessionSnapshotStatus429Schema;
19702
- exports.createSessionSnapshotStatus500Schema = createSessionSnapshotStatus500Schema;
19703
20221
  exports.createSharedEnvVariableQuerySlugSchema = createSharedEnvVariableQuerySlugSchema;
19704
20222
  exports.createSharedEnvVariableQueryTeamIdSchema = createSharedEnvVariableQueryTeamIdSchema;
19705
20223
  exports.createSharedEnvVariableResponseSchema = createSharedEnvVariableResponseSchema;
@@ -22599,6 +23117,15 @@ exports.restoreRedirectsStatus403Schema = restoreRedirectsStatus403Schema;
22599
23117
  exports.restoreRedirectsStatus404Schema = restoreRedirectsStatus404Schema;
22600
23118
  exports.restoreRedirectsStatus410Schema = restoreRedirectsStatus410Schema;
22601
23119
  exports.restoreRedirectsStatus500Schema = restoreRedirectsStatus500Schema;
23120
+ exports.rotateInstallationCredentialPathIntegrationConfigurationIdSchema = rotateInstallationCredentialPathIntegrationConfigurationIdSchema;
23121
+ exports.rotateInstallationCredentialResponseSchema = rotateInstallationCredentialResponseSchema;
23122
+ exports.rotateInstallationCredentialStatus200Schema = rotateInstallationCredentialStatus200Schema;
23123
+ exports.rotateInstallationCredentialStatus400Schema = rotateInstallationCredentialStatus400Schema;
23124
+ exports.rotateInstallationCredentialStatus401Schema = rotateInstallationCredentialStatus401Schema;
23125
+ exports.rotateInstallationCredentialStatus403Schema = rotateInstallationCredentialStatus403Schema;
23126
+ exports.rotateInstallationCredentialStatus404Schema = rotateInstallationCredentialStatus404Schema;
23127
+ exports.rotateInstallationCredentialStatus409Schema = rotateInstallationCredentialStatus409Schema;
23128
+ exports.rotateInstallationCredentialStatus410Schema = rotateInstallationCredentialStatus410Schema;
22602
23129
  exports.runSessionCommandPathSessionIdSchema = runSessionCommandPathSessionIdSchema;
22603
23130
  exports.runSessionCommandQueryCmdIdSchema = runSessionCommandQueryCmdIdSchema;
22604
23131
  exports.runSessionCommandQuerySlugSchema = runSessionCommandQuerySlugSchema;