vercel-api-js 1.10.0 → 1.11.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.
- package/dist/{components-f5r2um56.js → components-bvvdngtm.js} +1 -1
- package/dist/{components-k1idfow7.cjs → components-nlsfs355.cjs} +1 -1
- package/dist/components.cjs +1 -1
- package/dist/components.d.mts +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +5 -2
- package/dist/index.d.ts +712 -41
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-mq2xg0ty.cjs → schemas-b886m3zr.cjs} +298 -21
- package/dist/{schemas-j4m5o9a7.js → schemas-i84xmv7o.js} +298 -21
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +224 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +65 -18
- package/dist/types.d.mts +487 -40
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +63 -19
- package/package.json +1 -1
|
@@ -552,6 +552,15 @@ const userEventSchema = z__namespace.object({
|
|
|
552
552
|
"access-group-updated",
|
|
553
553
|
"access-group-user-added",
|
|
554
554
|
"access-group-user-removed",
|
|
555
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
556
|
+
"admin-plan-updated",
|
|
557
|
+
"admin-secondary-email-added",
|
|
558
|
+
"admin-secondary-email-removed",
|
|
559
|
+
"admin-team-name-update",
|
|
560
|
+
"admin-team-slug-update",
|
|
561
|
+
"admin-user-delete",
|
|
562
|
+
"admin-user-primary-email-updated",
|
|
563
|
+
"admin-username-updated",
|
|
555
564
|
"agentic-provisioning-account-blocked",
|
|
556
565
|
"agentic-provisioning-account-linked",
|
|
557
566
|
"agentic-provisioning-account-relinked",
|
|
@@ -1117,6 +1126,7 @@ const userEventSchema = z__namespace.object({
|
|
|
1117
1126
|
"user-emu-recovery-initiated",
|
|
1118
1127
|
"user-emu-toggled",
|
|
1119
1128
|
"user-mfa-challenge-failed",
|
|
1129
|
+
"user-mfa-challenge-initiated",
|
|
1120
1130
|
"user-mfa-challenge-verified",
|
|
1121
1131
|
"user-mfa-change-failed",
|
|
1122
1132
|
"user-mfa-configuration-updated",
|
|
@@ -1129,6 +1139,7 @@ const userEventSchema = z__namespace.object({
|
|
|
1129
1139
|
"user-phone-removed",
|
|
1130
1140
|
"user-phone-updated",
|
|
1131
1141
|
"user-primary-email-updated",
|
|
1142
|
+
"user-provider-email-claim-evaluated",
|
|
1132
1143
|
"user-sudo-mode-removed",
|
|
1133
1144
|
"user-token-created",
|
|
1134
1145
|
"user-token-deleted",
|
|
@@ -1355,6 +1366,21 @@ const userEventSchema = z__namespace.object({
|
|
|
1355
1366
|
resourceId: z__namespace.string(),
|
|
1356
1367
|
projectName: z__namespace.string()
|
|
1357
1368
|
}).strict(),
|
|
1369
|
+
z__namespace.object({
|
|
1370
|
+
provider: z__namespace.enum([
|
|
1371
|
+
"chatgpt",
|
|
1372
|
+
"stripe"
|
|
1373
|
+
]).optional().describe('Present on new events only. Equivalent to "stripe" when absent.'),
|
|
1374
|
+
providerAccount: z__namespace.string().optional().describe("Present on new events only. Equivalent to `stripeAccount` when absent."),
|
|
1375
|
+
stripeAccount: z__namespace.string().optional().describe('Present when `provider` is "stripe". Equivalent to `providerAccount`.'),
|
|
1376
|
+
stripeOrganisation: z__namespace.string().optional().describe('Present when `provider` is "stripe".'),
|
|
1377
|
+
teamId: z__namespace.string(),
|
|
1378
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
1379
|
+
actorType: z__namespace.enum([
|
|
1380
|
+
"admin"
|
|
1381
|
+
]),
|
|
1382
|
+
actorName: z__namespace.string().optional()
|
|
1383
|
+
}).strict(),
|
|
1358
1384
|
z__namespace.object({
|
|
1359
1385
|
provider: z__namespace.enum([
|
|
1360
1386
|
"chatgpt",
|
|
@@ -3288,7 +3314,10 @@ const userEventSchema = z__namespace.object({
|
|
|
3288
3314
|
projectId: z__namespace.string().optional(),
|
|
3289
3315
|
projectName: z__namespace.string(),
|
|
3290
3316
|
gitCommitterName: z__namespace.string(),
|
|
3291
|
-
source: z__namespace.string()
|
|
3317
|
+
source: z__namespace.string(),
|
|
3318
|
+
reason: z__namespace.enum([
|
|
3319
|
+
"ip_allow_list"
|
|
3320
|
+
]).optional()
|
|
3292
3321
|
}).strict(),
|
|
3293
3322
|
z__namespace.object({
|
|
3294
3323
|
deployment: z__namespace.object({
|
|
@@ -4336,7 +4365,8 @@ const userEventSchema = z__namespace.object({
|
|
|
4336
4365
|
"UsageViewer",
|
|
4337
4366
|
"V0Builder",
|
|
4338
4367
|
"V0Chatter",
|
|
4339
|
-
"V0Viewer"
|
|
4368
|
+
"V0Viewer",
|
|
4369
|
+
"WorkflowDecryptor"
|
|
4340
4370
|
])).optional(),
|
|
4341
4371
|
created: z__namespace.number(),
|
|
4342
4372
|
joinedFrom: z__namespace.object({
|
|
@@ -5210,6 +5240,7 @@ const userEventSchema = z__namespace.object({
|
|
|
5210
5240
|
}).nullish(),
|
|
5211
5241
|
env: z__namespace.string().optional(),
|
|
5212
5242
|
os: z__namespace.string().optional(),
|
|
5243
|
+
loginSessionId: z__namespace.string().optional().describe("Browser login correlation ID. This is not an authentication credential."),
|
|
5213
5244
|
username: z__namespace.string().optional(),
|
|
5214
5245
|
ssoType: z__namespace.string().optional(),
|
|
5215
5246
|
factors: z__namespace.union([
|
|
@@ -5219,6 +5250,7 @@ const userEventSchema = z__namespace.object({
|
|
|
5219
5250
|
"bitbucket",
|
|
5220
5251
|
"chatgpt",
|
|
5221
5252
|
"email",
|
|
5253
|
+
"emu-recovery",
|
|
5222
5254
|
"github",
|
|
5223
5255
|
"gitlab",
|
|
5224
5256
|
"google",
|
|
@@ -5244,6 +5276,7 @@ const userEventSchema = z__namespace.object({
|
|
|
5244
5276
|
"bitbucket",
|
|
5245
5277
|
"chatgpt",
|
|
5246
5278
|
"email",
|
|
5279
|
+
"emu-recovery",
|
|
5247
5280
|
"github",
|
|
5248
5281
|
"gitlab",
|
|
5249
5282
|
"google",
|
|
@@ -5834,6 +5867,89 @@ const userEventSchema = z__namespace.object({
|
|
|
5834
5867
|
timestamp: z__namespace.number().optional(),
|
|
5835
5868
|
removedMemberCount: z__namespace.number().optional()
|
|
5836
5869
|
}).strict(),
|
|
5870
|
+
z__namespace.object({
|
|
5871
|
+
plan: z__namespace.string(),
|
|
5872
|
+
removedUsers: z__namespace.object({}).catchall(z__namespace.object({
|
|
5873
|
+
role: z__namespace.enum([
|
|
5874
|
+
"BILLING",
|
|
5875
|
+
"CONTRIBUTOR",
|
|
5876
|
+
"DEVELOPER",
|
|
5877
|
+
"MEMBER",
|
|
5878
|
+
"OWNER",
|
|
5879
|
+
"SECURITY",
|
|
5880
|
+
"VIEWER",
|
|
5881
|
+
"VIEWER_FOR_PLUS"
|
|
5882
|
+
]),
|
|
5883
|
+
confirmed: z__namespace.union([
|
|
5884
|
+
z__namespace.literal(false),
|
|
5885
|
+
z__namespace.literal(true)
|
|
5886
|
+
]),
|
|
5887
|
+
confirmedAt: z__namespace.number().optional(),
|
|
5888
|
+
joinedFrom: z__namespace.object({
|
|
5889
|
+
origin: z__namespace.enum([
|
|
5890
|
+
"account-update",
|
|
5891
|
+
"bitbucket",
|
|
5892
|
+
"dsync",
|
|
5893
|
+
"feedback",
|
|
5894
|
+
"github",
|
|
5895
|
+
"gitlab",
|
|
5896
|
+
"import",
|
|
5897
|
+
"link",
|
|
5898
|
+
"mail",
|
|
5899
|
+
"nsnb-auto-approve",
|
|
5900
|
+
"nsnb-hobby-upgrade",
|
|
5901
|
+
"nsnb-invite",
|
|
5902
|
+
"nsnb-redeploy",
|
|
5903
|
+
"nsnb-redeploy-attribution-card",
|
|
5904
|
+
"nsnb-request-access",
|
|
5905
|
+
"nsnb-viewer-upgrade",
|
|
5906
|
+
"organization-teams",
|
|
5907
|
+
"saml",
|
|
5908
|
+
"teams"
|
|
5909
|
+
]),
|
|
5910
|
+
commitId: z__namespace.string().optional(),
|
|
5911
|
+
repoId: z__namespace.string().optional(),
|
|
5912
|
+
repoPath: z__namespace.string().optional(),
|
|
5913
|
+
gitUserId: z__namespace.union([
|
|
5914
|
+
z__namespace.string(),
|
|
5915
|
+
z__namespace.number()
|
|
5916
|
+
]).optional(),
|
|
5917
|
+
gitUserLogin: z__namespace.string().optional(),
|
|
5918
|
+
ssoUserId: z__namespace.string().optional(),
|
|
5919
|
+
ssoConnectedAt: z__namespace.number().optional(),
|
|
5920
|
+
idpUserId: z__namespace.string().optional(),
|
|
5921
|
+
dsyncUserId: z__namespace.string().optional(),
|
|
5922
|
+
dsyncConnectedAt: z__namespace.number().optional()
|
|
5923
|
+
}).optional()
|
|
5924
|
+
})).optional(),
|
|
5925
|
+
prevPlan: z__namespace.string().optional(),
|
|
5926
|
+
priorPlan: z__namespace.string().optional(),
|
|
5927
|
+
isDowngrade: z__namespace.union([
|
|
5928
|
+
z__namespace.literal(false),
|
|
5929
|
+
z__namespace.literal(true)
|
|
5930
|
+
]).optional(),
|
|
5931
|
+
userAgent: z__namespace.string().optional(),
|
|
5932
|
+
isReactivate: z__namespace.union([
|
|
5933
|
+
z__namespace.literal(false),
|
|
5934
|
+
z__namespace.literal(true)
|
|
5935
|
+
]).optional(),
|
|
5936
|
+
isTrialUpgrade: z__namespace.union([
|
|
5937
|
+
z__namespace.literal(false),
|
|
5938
|
+
z__namespace.literal(true)
|
|
5939
|
+
]).optional(),
|
|
5940
|
+
automated: z__namespace.union([
|
|
5941
|
+
z__namespace.literal(false),
|
|
5942
|
+
z__namespace.literal(true)
|
|
5943
|
+
]).optional().describe("Whether the plan change was system-initiated rather than human-initiated."),
|
|
5944
|
+
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`)."),
|
|
5945
|
+
timestamp: z__namespace.number().optional(),
|
|
5946
|
+
removedMemberCount: z__namespace.number().optional(),
|
|
5947
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
5948
|
+
actorType: z__namespace.enum([
|
|
5949
|
+
"admin"
|
|
5950
|
+
]),
|
|
5951
|
+
actorName: z__namespace.string().optional()
|
|
5952
|
+
}).strict(),
|
|
5837
5953
|
z__namespace.object({
|
|
5838
5954
|
price: z__namespace.number().optional(),
|
|
5839
5955
|
currency: z__namespace.string().optional(),
|
|
@@ -6950,6 +7066,18 @@ const userEventSchema = z__namespace.object({
|
|
|
6950
7066
|
z__namespace.literal(true)
|
|
6951
7067
|
])
|
|
6952
7068
|
}).strict(),
|
|
7069
|
+
z__namespace.object({
|
|
7070
|
+
email: z__namespace.string(),
|
|
7071
|
+
verified: z__namespace.union([
|
|
7072
|
+
z__namespace.literal(false),
|
|
7073
|
+
z__namespace.literal(true)
|
|
7074
|
+
]),
|
|
7075
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
7076
|
+
actorType: z__namespace.enum([
|
|
7077
|
+
"admin"
|
|
7078
|
+
]),
|
|
7079
|
+
actorName: z__namespace.string().optional()
|
|
7080
|
+
}).strict(),
|
|
6953
7081
|
z__namespace.object({
|
|
6954
7082
|
email: z__namespace.string()
|
|
6955
7083
|
}).strict(),
|
|
@@ -7686,6 +7814,14 @@ const userEventSchema = z__namespace.object({
|
|
|
7686
7814
|
z__namespace.object({
|
|
7687
7815
|
name: z__namespace.string().optional()
|
|
7688
7816
|
}).strict(),
|
|
7817
|
+
z__namespace.object({
|
|
7818
|
+
name: z__namespace.string().optional(),
|
|
7819
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
7820
|
+
actorType: z__namespace.enum([
|
|
7821
|
+
"admin"
|
|
7822
|
+
]),
|
|
7823
|
+
actorName: z__namespace.string().optional()
|
|
7824
|
+
}).strict(),
|
|
7689
7825
|
z__namespace.object({
|
|
7690
7826
|
decision: z__namespace.enum([
|
|
7691
7827
|
"keep_on",
|
|
@@ -7778,6 +7914,14 @@ const userEventSchema = z__namespace.object({
|
|
|
7778
7914
|
z__namespace.object({
|
|
7779
7915
|
slug: z__namespace.string().optional()
|
|
7780
7916
|
}).strict(),
|
|
7917
|
+
z__namespace.object({
|
|
7918
|
+
slug: z__namespace.string().optional(),
|
|
7919
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
7920
|
+
actorType: z__namespace.enum([
|
|
7921
|
+
"admin"
|
|
7922
|
+
]),
|
|
7923
|
+
actorName: z__namespace.string().optional()
|
|
7924
|
+
}).strict(),
|
|
7781
7925
|
z__namespace.object({
|
|
7782
7926
|
projectId: z__namespace.string(),
|
|
7783
7927
|
projectName: z__namespace.string(),
|
|
@@ -7807,12 +7951,22 @@ const userEventSchema = z__namespace.object({
|
|
|
7807
7951
|
"admin",
|
|
7808
7952
|
"user"
|
|
7809
7953
|
]).optional(),
|
|
7954
|
+
actorName: z__namespace.string().optional().describe("Human-readable admin who performed the removal."),
|
|
7810
7955
|
reason: z__namespace.string().optional()
|
|
7811
7956
|
}).strict(),
|
|
7812
7957
|
z__namespace.object({
|
|
7813
7958
|
deletedAt: z__namespace.number().nullish(),
|
|
7814
7959
|
username: z__namespace.string()
|
|
7815
7960
|
}).strict(),
|
|
7961
|
+
z__namespace.object({
|
|
7962
|
+
deletedAt: z__namespace.number().nullish(),
|
|
7963
|
+
username: z__namespace.string(),
|
|
7964
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
7965
|
+
actorType: z__namespace.enum([
|
|
7966
|
+
"admin"
|
|
7967
|
+
]),
|
|
7968
|
+
actorName: z__namespace.string().optional()
|
|
7969
|
+
}).strict(),
|
|
7816
7970
|
z__namespace.object({
|
|
7817
7971
|
username: z__namespace.string()
|
|
7818
7972
|
}).strict(),
|
|
@@ -7858,7 +8012,19 @@ const userEventSchema = z__namespace.object({
|
|
|
7858
8012
|
"totp",
|
|
7859
8013
|
"webauthn"
|
|
7860
8014
|
]),
|
|
7861
|
-
reason: z__namespace.string()
|
|
8015
|
+
reason: z__namespace.string(),
|
|
8016
|
+
flowId: z__namespace.string().optional(),
|
|
8017
|
+
loginSessionId: z__namespace.string().optional()
|
|
8018
|
+
}).strict(),
|
|
8019
|
+
z__namespace.object({
|
|
8020
|
+
allowedMethods: z__namespace.array(z__namespace.enum([
|
|
8021
|
+
"recovery-code",
|
|
8022
|
+
"totp",
|
|
8023
|
+
"webauthn"
|
|
8024
|
+
])),
|
|
8025
|
+
firstFactor: z__namespace.string(),
|
|
8026
|
+
flowId: z__namespace.string(),
|
|
8027
|
+
loginSessionId: z__namespace.string().optional()
|
|
7862
8028
|
}).strict(),
|
|
7863
8029
|
z__namespace.object({
|
|
7864
8030
|
action: z__namespace.enum([
|
|
@@ -7892,10 +8058,20 @@ const userEventSchema = z__namespace.object({
|
|
|
7892
8058
|
z__namespace.literal(false),
|
|
7893
8059
|
z__namespace.literal(true)
|
|
7894
8060
|
])
|
|
7895
|
-
})
|
|
8061
|
+
}),
|
|
8062
|
+
method: z__namespace.enum([
|
|
8063
|
+
"passkey",
|
|
8064
|
+
"self_serve_recovery",
|
|
8065
|
+
"totp",
|
|
8066
|
+
"user_disabled"
|
|
8067
|
+
]).optional()
|
|
7896
8068
|
}).strict(),
|
|
7897
8069
|
z__namespace.object({
|
|
7898
|
-
remaining: z__namespace.number()
|
|
8070
|
+
remaining: z__namespace.number(),
|
|
8071
|
+
context: z__namespace.enum([
|
|
8072
|
+
"login",
|
|
8073
|
+
"sudo"
|
|
8074
|
+
]).optional().describe("Absent on events predating the field; those were all logins.")
|
|
7899
8075
|
}).strict(),
|
|
7900
8076
|
z__namespace.object({
|
|
7901
8077
|
mfaEnabled: z__namespace.union([
|
|
@@ -7925,10 +8101,85 @@ const userEventSchema = z__namespace.object({
|
|
|
7925
8101
|
z__namespace.literal(true)
|
|
7926
8102
|
])
|
|
7927
8103
|
}).strict(),
|
|
8104
|
+
z__namespace.object({
|
|
8105
|
+
previous: z__namespace.object({
|
|
8106
|
+
enabled: z__namespace.union([
|
|
8107
|
+
z__namespace.literal(false),
|
|
8108
|
+
z__namespace.literal(true)
|
|
8109
|
+
]),
|
|
8110
|
+
totpVerified: z__namespace.union([
|
|
8111
|
+
z__namespace.literal(false),
|
|
8112
|
+
z__namespace.literal(true)
|
|
8113
|
+
])
|
|
8114
|
+
}),
|
|
8115
|
+
next: z__namespace.object({
|
|
8116
|
+
enabled: z__namespace.union([
|
|
8117
|
+
z__namespace.literal(false),
|
|
8118
|
+
z__namespace.literal(true)
|
|
8119
|
+
]),
|
|
8120
|
+
totpVerified: z__namespace.union([
|
|
8121
|
+
z__namespace.literal(false),
|
|
8122
|
+
z__namespace.literal(true)
|
|
8123
|
+
])
|
|
8124
|
+
})
|
|
8125
|
+
}).strict(),
|
|
8126
|
+
z__namespace.object({
|
|
8127
|
+
provider: z__namespace.enum([
|
|
8128
|
+
"google"
|
|
8129
|
+
]),
|
|
8130
|
+
providerSubjectId: z__namespace.string(),
|
|
8131
|
+
outcome: z__namespace.enum([
|
|
8132
|
+
"account-matched",
|
|
8133
|
+
"linking-required"
|
|
8134
|
+
]),
|
|
8135
|
+
decision: z__namespace.object({
|
|
8136
|
+
authoritative: z__namespace.union([
|
|
8137
|
+
z__namespace.literal(false),
|
|
8138
|
+
z__namespace.literal(true)
|
|
8139
|
+
]),
|
|
8140
|
+
basis: z__namespace.enum([
|
|
8141
|
+
"gmail",
|
|
8142
|
+
"none",
|
|
8143
|
+
"workspace-mx"
|
|
8144
|
+
]),
|
|
8145
|
+
emailDomain: z__namespace.string(),
|
|
8146
|
+
emailVerified: z__namespace.union([
|
|
8147
|
+
z__namespace.literal(false),
|
|
8148
|
+
z__namespace.literal(true)
|
|
8149
|
+
]),
|
|
8150
|
+
hostedDomainMatch: z__namespace.union([
|
|
8151
|
+
z__namespace.literal(false),
|
|
8152
|
+
z__namespace.literal(true)
|
|
8153
|
+
]),
|
|
8154
|
+
mxOutcome: z__namespace.enum([
|
|
8155
|
+
"google",
|
|
8156
|
+
"lookup-error",
|
|
8157
|
+
"non-google",
|
|
8158
|
+
"not-checked"
|
|
8159
|
+
])
|
|
8160
|
+
})
|
|
8161
|
+
}).strict(),
|
|
7928
8162
|
z__namespace.object({
|
|
7929
8163
|
email: z__namespace.string(),
|
|
7930
8164
|
prevEmail: z__namespace.string()
|
|
7931
8165
|
}).strict(),
|
|
8166
|
+
z__namespace.object({
|
|
8167
|
+
email: z__namespace.string(),
|
|
8168
|
+
prevEmail: z__namespace.string(),
|
|
8169
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
8170
|
+
actorType: z__namespace.enum([
|
|
8171
|
+
"admin"
|
|
8172
|
+
]),
|
|
8173
|
+
actorName: z__namespace.string().optional()
|
|
8174
|
+
}).strict(),
|
|
8175
|
+
z__namespace.object({
|
|
8176
|
+
username: z__namespace.string(),
|
|
8177
|
+
actorId: z__namespace.string().describe("Okta user id."),
|
|
8178
|
+
actorType: z__namespace.enum([
|
|
8179
|
+
"admin"
|
|
8180
|
+
]),
|
|
8181
|
+
actorName: z__namespace.string().optional()
|
|
8182
|
+
}).strict(),
|
|
7932
8183
|
z__namespace.object({
|
|
7933
8184
|
projectId: z__namespace.string(),
|
|
7934
8185
|
projectName: z__namespace.string(),
|
|
@@ -8401,6 +8652,15 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8401
8652
|
"access-group-updated",
|
|
8402
8653
|
"access-group-user-added",
|
|
8403
8654
|
"access-group-user-removed",
|
|
8655
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
8656
|
+
"admin-plan-updated",
|
|
8657
|
+
"admin-secondary-email-added",
|
|
8658
|
+
"admin-secondary-email-removed",
|
|
8659
|
+
"admin-team-name-update",
|
|
8660
|
+
"admin-team-slug-update",
|
|
8661
|
+
"admin-user-delete",
|
|
8662
|
+
"admin-user-primary-email-updated",
|
|
8663
|
+
"admin-username-updated",
|
|
8404
8664
|
"agentic-provisioning-account-blocked",
|
|
8405
8665
|
"agentic-provisioning-account-linked",
|
|
8406
8666
|
"agentic-provisioning-account-relinked",
|
|
@@ -8966,6 +9226,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8966
9226
|
"user-emu-recovery-initiated",
|
|
8967
9227
|
"user-emu-toggled",
|
|
8968
9228
|
"user-mfa-challenge-failed",
|
|
9229
|
+
"user-mfa-challenge-initiated",
|
|
8969
9230
|
"user-mfa-challenge-verified",
|
|
8970
9231
|
"user-mfa-change-failed",
|
|
8971
9232
|
"user-mfa-configuration-updated",
|
|
@@ -8978,6 +9239,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8978
9239
|
"user-phone-removed",
|
|
8979
9240
|
"user-phone-updated",
|
|
8980
9241
|
"user-primary-email-updated",
|
|
9242
|
+
"user-provider-email-claim-evaluated",
|
|
8981
9243
|
"user-sudo-mode-removed",
|
|
8982
9244
|
"user-token-created",
|
|
8983
9245
|
"user-token-deleted",
|
|
@@ -9054,6 +9316,15 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9054
9316
|
"access-group-updated",
|
|
9055
9317
|
"access-group-user-added",
|
|
9056
9318
|
"access-group-user-removed",
|
|
9319
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
9320
|
+
"admin-plan-updated",
|
|
9321
|
+
"admin-secondary-email-added",
|
|
9322
|
+
"admin-secondary-email-removed",
|
|
9323
|
+
"admin-team-name-update",
|
|
9324
|
+
"admin-team-slug-update",
|
|
9325
|
+
"admin-user-delete",
|
|
9326
|
+
"admin-user-primary-email-updated",
|
|
9327
|
+
"admin-username-updated",
|
|
9057
9328
|
"agentic-provisioning-account-blocked",
|
|
9058
9329
|
"agentic-provisioning-account-linked",
|
|
9059
9330
|
"agentic-provisioning-account-relinked",
|
|
@@ -9619,6 +9890,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9619
9890
|
"user-emu-recovery-initiated",
|
|
9620
9891
|
"user-emu-toggled",
|
|
9621
9892
|
"user-mfa-challenge-failed",
|
|
9893
|
+
"user-mfa-challenge-initiated",
|
|
9622
9894
|
"user-mfa-challenge-verified",
|
|
9623
9895
|
"user-mfa-change-failed",
|
|
9624
9896
|
"user-mfa-configuration-updated",
|
|
@@ -9631,6 +9903,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9631
9903
|
"user-phone-removed",
|
|
9632
9904
|
"user-phone-updated",
|
|
9633
9905
|
"user-primary-email-updated",
|
|
9906
|
+
"user-provider-email-claim-evaluated",
|
|
9634
9907
|
"user-sudo-mode-removed",
|
|
9635
9908
|
"user-token-created",
|
|
9636
9909
|
"user-token-deleted",
|
|
@@ -10411,7 +10684,8 @@ const invitedTeamMemberSchema = z__namespace.object({
|
|
|
10411
10684
|
"UsageViewer",
|
|
10412
10685
|
"V0Builder",
|
|
10413
10686
|
"V0Chatter",
|
|
10414
|
-
"V0Viewer"
|
|
10687
|
+
"V0Viewer",
|
|
10688
|
+
"WorkflowDecryptor"
|
|
10415
10689
|
])).optional().describe("The team permissions of the user")
|
|
10416
10690
|
}).describe("The member was successfully added to the team.");
|
|
10417
10691
|
const teamSchema = z__namespace.object({
|
|
@@ -10509,7 +10783,8 @@ const teamSchema = z__namespace.object({
|
|
|
10509
10783
|
"UsageViewer",
|
|
10510
10784
|
"V0Builder",
|
|
10511
10785
|
"V0Chatter",
|
|
10512
|
-
"V0Viewer"
|
|
10786
|
+
"V0Viewer",
|
|
10787
|
+
"WorkflowDecryptor"
|
|
10513
10788
|
])).optional()
|
|
10514
10789
|
}).optional().describe("Default roles for the team."),
|
|
10515
10790
|
stagingPrefix: z__namespace.string().describe("The prefix that is prepended to automatic aliases."),
|
|
@@ -10803,7 +11078,8 @@ const teamSchema = z__namespace.object({
|
|
|
10803
11078
|
"UsageViewer",
|
|
10804
11079
|
"V0Builder",
|
|
10805
11080
|
"V0Chatter",
|
|
10806
|
-
"V0Viewer"
|
|
11081
|
+
"V0Viewer",
|
|
11082
|
+
"WorkflowDecryptor"
|
|
10807
11083
|
])).optional(),
|
|
10808
11084
|
createdAt: z__namespace.number(),
|
|
10809
11085
|
created: z__namespace.number(),
|
|
@@ -10932,7 +11208,8 @@ const teamLimitedSchema = z__namespace.object({
|
|
|
10932
11208
|
"UsageViewer",
|
|
10933
11209
|
"V0Builder",
|
|
10934
11210
|
"V0Chatter",
|
|
10935
|
-
"V0Viewer"
|
|
11211
|
+
"V0Viewer",
|
|
11212
|
+
"WorkflowDecryptor"
|
|
10936
11213
|
])).optional(),
|
|
10937
11214
|
createdAt: z__namespace.number(),
|
|
10938
11215
|
created: z__namespace.number(),
|
|
@@ -18286,7 +18563,7 @@ const getRootResponseSchema = z__namespace.union([
|
|
|
18286
18563
|
getRootStatus404Schema,
|
|
18287
18564
|
getRootStatus410Schema
|
|
18288
18565
|
]);
|
|
18289
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18566
|
+
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
18567
|
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
18568
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18292
18569
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18306,7 +18583,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z_
|
|
|
18306
18583
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema,
|
|
18307
18584
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema
|
|
18308
18585
|
]);
|
|
18309
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18586
|
+
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
18587
|
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
18588
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18312
18589
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18326,7 +18603,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema =
|
|
|
18326
18603
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema,
|
|
18327
18604
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema
|
|
18328
18605
|
]);
|
|
18329
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18606
|
+
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
18607
|
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
18608
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18332
18609
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18346,7 +18623,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema
|
|
|
18346
18623
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18347
18624
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18348
18625
|
]);
|
|
18349
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18626
|
+
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
18627
|
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
18628
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18352
18629
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18366,7 +18643,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18366
18643
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18367
18644
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18368
18645
|
]);
|
|
18369
|
-
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18646
|
+
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
18647
|
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
18648
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18372
18649
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18388,7 +18665,7 @@ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18388
18665
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18389
18666
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18390
18667
|
]);
|
|
18391
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18668
|
+
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
18669
|
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
18670
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18394
18671
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18411,11 +18688,11 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSc
|
|
|
18411
18688
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18412
18689
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18413
18690
|
]);
|
|
18414
|
-
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18691
|
+
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
18692
|
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
18693
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18417
18694
|
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(/^
|
|
18695
|
+
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
18696
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = z__namespace.unknown();
|
|
18420
18697
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = z__namespace.unknown();
|
|
18421
18698
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = z__namespace.unknown();
|
|
@@ -18432,7 +18709,7 @@ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema =
|
|
|
18432
18709
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema,
|
|
18433
18710
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema
|
|
18434
18711
|
]);
|
|
18435
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18712
|
+
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
18713
|
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
18714
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18438
18715
|
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 +18731,7 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponse
|
|
|
18454
18731
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema,
|
|
18455
18732
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema
|
|
18456
18733
|
]);
|
|
18457
|
-
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18734
|
+
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
18735
|
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
18736
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18460
18737
|
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 +18749,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSche
|
|
|
18472
18749
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18473
18750
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18474
18751
|
]);
|
|
18475
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18752
|
+
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
18753
|
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
18754
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18478
18755
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18492,7 +18769,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseS
|
|
|
18492
18769
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18493
18770
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18494
18771
|
]);
|
|
18495
|
-
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^
|
|
18772
|
+
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
18773
|
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
18774
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18498
18775
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = z__namespace.int().min(1).max(1000).optional();
|