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
|
@@ -532,6 +532,15 @@ const userEventSchema = z.object({
|
|
|
532
532
|
"access-group-updated",
|
|
533
533
|
"access-group-user-added",
|
|
534
534
|
"access-group-user-removed",
|
|
535
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
536
|
+
"admin-plan-updated",
|
|
537
|
+
"admin-secondary-email-added",
|
|
538
|
+
"admin-secondary-email-removed",
|
|
539
|
+
"admin-team-name-update",
|
|
540
|
+
"admin-team-slug-update",
|
|
541
|
+
"admin-user-delete",
|
|
542
|
+
"admin-user-primary-email-updated",
|
|
543
|
+
"admin-username-updated",
|
|
535
544
|
"agentic-provisioning-account-blocked",
|
|
536
545
|
"agentic-provisioning-account-linked",
|
|
537
546
|
"agentic-provisioning-account-relinked",
|
|
@@ -1097,6 +1106,7 @@ const userEventSchema = z.object({
|
|
|
1097
1106
|
"user-emu-recovery-initiated",
|
|
1098
1107
|
"user-emu-toggled",
|
|
1099
1108
|
"user-mfa-challenge-failed",
|
|
1109
|
+
"user-mfa-challenge-initiated",
|
|
1100
1110
|
"user-mfa-challenge-verified",
|
|
1101
1111
|
"user-mfa-change-failed",
|
|
1102
1112
|
"user-mfa-configuration-updated",
|
|
@@ -1109,6 +1119,7 @@ const userEventSchema = z.object({
|
|
|
1109
1119
|
"user-phone-removed",
|
|
1110
1120
|
"user-phone-updated",
|
|
1111
1121
|
"user-primary-email-updated",
|
|
1122
|
+
"user-provider-email-claim-evaluated",
|
|
1112
1123
|
"user-sudo-mode-removed",
|
|
1113
1124
|
"user-token-created",
|
|
1114
1125
|
"user-token-deleted",
|
|
@@ -1335,6 +1346,21 @@ const userEventSchema = z.object({
|
|
|
1335
1346
|
resourceId: z.string(),
|
|
1336
1347
|
projectName: z.string()
|
|
1337
1348
|
}).strict(),
|
|
1349
|
+
z.object({
|
|
1350
|
+
provider: z.enum([
|
|
1351
|
+
"chatgpt",
|
|
1352
|
+
"stripe"
|
|
1353
|
+
]).optional().describe('Present on new events only. Equivalent to "stripe" when absent.'),
|
|
1354
|
+
providerAccount: z.string().optional().describe("Present on new events only. Equivalent to `stripeAccount` when absent."),
|
|
1355
|
+
stripeAccount: z.string().optional().describe('Present when `provider` is "stripe". Equivalent to `providerAccount`.'),
|
|
1356
|
+
stripeOrganisation: z.string().optional().describe('Present when `provider` is "stripe".'),
|
|
1357
|
+
teamId: z.string(),
|
|
1358
|
+
actorId: z.string().describe("Okta user id."),
|
|
1359
|
+
actorType: z.enum([
|
|
1360
|
+
"admin"
|
|
1361
|
+
]),
|
|
1362
|
+
actorName: z.string().optional()
|
|
1363
|
+
}).strict(),
|
|
1338
1364
|
z.object({
|
|
1339
1365
|
provider: z.enum([
|
|
1340
1366
|
"chatgpt",
|
|
@@ -3268,7 +3294,10 @@ const userEventSchema = z.object({
|
|
|
3268
3294
|
projectId: z.string().optional(),
|
|
3269
3295
|
projectName: z.string(),
|
|
3270
3296
|
gitCommitterName: z.string(),
|
|
3271
|
-
source: z.string()
|
|
3297
|
+
source: z.string(),
|
|
3298
|
+
reason: z.enum([
|
|
3299
|
+
"ip_allow_list"
|
|
3300
|
+
]).optional()
|
|
3272
3301
|
}).strict(),
|
|
3273
3302
|
z.object({
|
|
3274
3303
|
deployment: z.object({
|
|
@@ -4316,7 +4345,8 @@ const userEventSchema = z.object({
|
|
|
4316
4345
|
"UsageViewer",
|
|
4317
4346
|
"V0Builder",
|
|
4318
4347
|
"V0Chatter",
|
|
4319
|
-
"V0Viewer"
|
|
4348
|
+
"V0Viewer",
|
|
4349
|
+
"WorkflowDecryptor"
|
|
4320
4350
|
])).optional(),
|
|
4321
4351
|
created: z.number(),
|
|
4322
4352
|
joinedFrom: z.object({
|
|
@@ -5190,6 +5220,7 @@ const userEventSchema = z.object({
|
|
|
5190
5220
|
}).nullish(),
|
|
5191
5221
|
env: z.string().optional(),
|
|
5192
5222
|
os: z.string().optional(),
|
|
5223
|
+
loginSessionId: z.string().optional().describe("Browser login correlation ID. This is not an authentication credential."),
|
|
5193
5224
|
username: z.string().optional(),
|
|
5194
5225
|
ssoType: z.string().optional(),
|
|
5195
5226
|
factors: z.union([
|
|
@@ -5199,6 +5230,7 @@ const userEventSchema = z.object({
|
|
|
5199
5230
|
"bitbucket",
|
|
5200
5231
|
"chatgpt",
|
|
5201
5232
|
"email",
|
|
5233
|
+
"emu-recovery",
|
|
5202
5234
|
"github",
|
|
5203
5235
|
"gitlab",
|
|
5204
5236
|
"google",
|
|
@@ -5224,6 +5256,7 @@ const userEventSchema = z.object({
|
|
|
5224
5256
|
"bitbucket",
|
|
5225
5257
|
"chatgpt",
|
|
5226
5258
|
"email",
|
|
5259
|
+
"emu-recovery",
|
|
5227
5260
|
"github",
|
|
5228
5261
|
"gitlab",
|
|
5229
5262
|
"google",
|
|
@@ -5814,6 +5847,89 @@ const userEventSchema = z.object({
|
|
|
5814
5847
|
timestamp: z.number().optional(),
|
|
5815
5848
|
removedMemberCount: z.number().optional()
|
|
5816
5849
|
}).strict(),
|
|
5850
|
+
z.object({
|
|
5851
|
+
plan: z.string(),
|
|
5852
|
+
removedUsers: z.object({}).catchall(z.object({
|
|
5853
|
+
role: z.enum([
|
|
5854
|
+
"BILLING",
|
|
5855
|
+
"CONTRIBUTOR",
|
|
5856
|
+
"DEVELOPER",
|
|
5857
|
+
"MEMBER",
|
|
5858
|
+
"OWNER",
|
|
5859
|
+
"SECURITY",
|
|
5860
|
+
"VIEWER",
|
|
5861
|
+
"VIEWER_FOR_PLUS"
|
|
5862
|
+
]),
|
|
5863
|
+
confirmed: z.union([
|
|
5864
|
+
z.literal(false),
|
|
5865
|
+
z.literal(true)
|
|
5866
|
+
]),
|
|
5867
|
+
confirmedAt: z.number().optional(),
|
|
5868
|
+
joinedFrom: z.object({
|
|
5869
|
+
origin: z.enum([
|
|
5870
|
+
"account-update",
|
|
5871
|
+
"bitbucket",
|
|
5872
|
+
"dsync",
|
|
5873
|
+
"feedback",
|
|
5874
|
+
"github",
|
|
5875
|
+
"gitlab",
|
|
5876
|
+
"import",
|
|
5877
|
+
"link",
|
|
5878
|
+
"mail",
|
|
5879
|
+
"nsnb-auto-approve",
|
|
5880
|
+
"nsnb-hobby-upgrade",
|
|
5881
|
+
"nsnb-invite",
|
|
5882
|
+
"nsnb-redeploy",
|
|
5883
|
+
"nsnb-redeploy-attribution-card",
|
|
5884
|
+
"nsnb-request-access",
|
|
5885
|
+
"nsnb-viewer-upgrade",
|
|
5886
|
+
"organization-teams",
|
|
5887
|
+
"saml",
|
|
5888
|
+
"teams"
|
|
5889
|
+
]),
|
|
5890
|
+
commitId: z.string().optional(),
|
|
5891
|
+
repoId: z.string().optional(),
|
|
5892
|
+
repoPath: z.string().optional(),
|
|
5893
|
+
gitUserId: z.union([
|
|
5894
|
+
z.string(),
|
|
5895
|
+
z.number()
|
|
5896
|
+
]).optional(),
|
|
5897
|
+
gitUserLogin: z.string().optional(),
|
|
5898
|
+
ssoUserId: z.string().optional(),
|
|
5899
|
+
ssoConnectedAt: z.number().optional(),
|
|
5900
|
+
idpUserId: z.string().optional(),
|
|
5901
|
+
dsyncUserId: z.string().optional(),
|
|
5902
|
+
dsyncConnectedAt: z.number().optional()
|
|
5903
|
+
}).optional()
|
|
5904
|
+
})).optional(),
|
|
5905
|
+
prevPlan: z.string().optional(),
|
|
5906
|
+
priorPlan: z.string().optional(),
|
|
5907
|
+
isDowngrade: z.union([
|
|
5908
|
+
z.literal(false),
|
|
5909
|
+
z.literal(true)
|
|
5910
|
+
]).optional(),
|
|
5911
|
+
userAgent: z.string().optional(),
|
|
5912
|
+
isReactivate: z.union([
|
|
5913
|
+
z.literal(false),
|
|
5914
|
+
z.literal(true)
|
|
5915
|
+
]).optional(),
|
|
5916
|
+
isTrialUpgrade: z.union([
|
|
5917
|
+
z.literal(false),
|
|
5918
|
+
z.literal(true)
|
|
5919
|
+
]).optional(),
|
|
5920
|
+
automated: z.union([
|
|
5921
|
+
z.literal(false),
|
|
5922
|
+
z.literal(true)
|
|
5923
|
+
]).optional().describe("Whether the plan change was system-initiated rather than human-initiated."),
|
|
5924
|
+
reason: z.string().optional().describe("Why the plan changed. For downgrades, this is a {@link DowngradeReason} from `@api/pubsub-types` (e.g. `user_downgrade`, `trial_expired`)."),
|
|
5925
|
+
timestamp: z.number().optional(),
|
|
5926
|
+
removedMemberCount: z.number().optional(),
|
|
5927
|
+
actorId: z.string().describe("Okta user id."),
|
|
5928
|
+
actorType: z.enum([
|
|
5929
|
+
"admin"
|
|
5930
|
+
]),
|
|
5931
|
+
actorName: z.string().optional()
|
|
5932
|
+
}).strict(),
|
|
5817
5933
|
z.object({
|
|
5818
5934
|
price: z.number().optional(),
|
|
5819
5935
|
currency: z.string().optional(),
|
|
@@ -6930,6 +7046,18 @@ const userEventSchema = z.object({
|
|
|
6930
7046
|
z.literal(true)
|
|
6931
7047
|
])
|
|
6932
7048
|
}).strict(),
|
|
7049
|
+
z.object({
|
|
7050
|
+
email: z.string(),
|
|
7051
|
+
verified: z.union([
|
|
7052
|
+
z.literal(false),
|
|
7053
|
+
z.literal(true)
|
|
7054
|
+
]),
|
|
7055
|
+
actorId: z.string().describe("Okta user id."),
|
|
7056
|
+
actorType: z.enum([
|
|
7057
|
+
"admin"
|
|
7058
|
+
]),
|
|
7059
|
+
actorName: z.string().optional()
|
|
7060
|
+
}).strict(),
|
|
6933
7061
|
z.object({
|
|
6934
7062
|
email: z.string()
|
|
6935
7063
|
}).strict(),
|
|
@@ -7666,6 +7794,14 @@ const userEventSchema = z.object({
|
|
|
7666
7794
|
z.object({
|
|
7667
7795
|
name: z.string().optional()
|
|
7668
7796
|
}).strict(),
|
|
7797
|
+
z.object({
|
|
7798
|
+
name: z.string().optional(),
|
|
7799
|
+
actorId: z.string().describe("Okta user id."),
|
|
7800
|
+
actorType: z.enum([
|
|
7801
|
+
"admin"
|
|
7802
|
+
]),
|
|
7803
|
+
actorName: z.string().optional()
|
|
7804
|
+
}).strict(),
|
|
7669
7805
|
z.object({
|
|
7670
7806
|
decision: z.enum([
|
|
7671
7807
|
"keep_on",
|
|
@@ -7758,6 +7894,14 @@ const userEventSchema = z.object({
|
|
|
7758
7894
|
z.object({
|
|
7759
7895
|
slug: z.string().optional()
|
|
7760
7896
|
}).strict(),
|
|
7897
|
+
z.object({
|
|
7898
|
+
slug: z.string().optional(),
|
|
7899
|
+
actorId: z.string().describe("Okta user id."),
|
|
7900
|
+
actorType: z.enum([
|
|
7901
|
+
"admin"
|
|
7902
|
+
]),
|
|
7903
|
+
actorName: z.string().optional()
|
|
7904
|
+
}).strict(),
|
|
7761
7905
|
z.object({
|
|
7762
7906
|
projectId: z.string(),
|
|
7763
7907
|
projectName: z.string(),
|
|
@@ -7787,12 +7931,22 @@ const userEventSchema = z.object({
|
|
|
7787
7931
|
"admin",
|
|
7788
7932
|
"user"
|
|
7789
7933
|
]).optional(),
|
|
7934
|
+
actorName: z.string().optional().describe("Human-readable admin who performed the removal."),
|
|
7790
7935
|
reason: z.string().optional()
|
|
7791
7936
|
}).strict(),
|
|
7792
7937
|
z.object({
|
|
7793
7938
|
deletedAt: z.number().nullish(),
|
|
7794
7939
|
username: z.string()
|
|
7795
7940
|
}).strict(),
|
|
7941
|
+
z.object({
|
|
7942
|
+
deletedAt: z.number().nullish(),
|
|
7943
|
+
username: z.string(),
|
|
7944
|
+
actorId: z.string().describe("Okta user id."),
|
|
7945
|
+
actorType: z.enum([
|
|
7946
|
+
"admin"
|
|
7947
|
+
]),
|
|
7948
|
+
actorName: z.string().optional()
|
|
7949
|
+
}).strict(),
|
|
7796
7950
|
z.object({
|
|
7797
7951
|
username: z.string()
|
|
7798
7952
|
}).strict(),
|
|
@@ -7838,7 +7992,19 @@ const userEventSchema = z.object({
|
|
|
7838
7992
|
"totp",
|
|
7839
7993
|
"webauthn"
|
|
7840
7994
|
]),
|
|
7841
|
-
reason: z.string()
|
|
7995
|
+
reason: z.string(),
|
|
7996
|
+
flowId: z.string().optional(),
|
|
7997
|
+
loginSessionId: z.string().optional()
|
|
7998
|
+
}).strict(),
|
|
7999
|
+
z.object({
|
|
8000
|
+
allowedMethods: z.array(z.enum([
|
|
8001
|
+
"recovery-code",
|
|
8002
|
+
"totp",
|
|
8003
|
+
"webauthn"
|
|
8004
|
+
])),
|
|
8005
|
+
firstFactor: z.string(),
|
|
8006
|
+
flowId: z.string(),
|
|
8007
|
+
loginSessionId: z.string().optional()
|
|
7842
8008
|
}).strict(),
|
|
7843
8009
|
z.object({
|
|
7844
8010
|
action: z.enum([
|
|
@@ -7872,10 +8038,20 @@ const userEventSchema = z.object({
|
|
|
7872
8038
|
z.literal(false),
|
|
7873
8039
|
z.literal(true)
|
|
7874
8040
|
])
|
|
7875
|
-
})
|
|
8041
|
+
}),
|
|
8042
|
+
method: z.enum([
|
|
8043
|
+
"passkey",
|
|
8044
|
+
"self_serve_recovery",
|
|
8045
|
+
"totp",
|
|
8046
|
+
"user_disabled"
|
|
8047
|
+
]).optional()
|
|
7876
8048
|
}).strict(),
|
|
7877
8049
|
z.object({
|
|
7878
|
-
remaining: z.number()
|
|
8050
|
+
remaining: z.number(),
|
|
8051
|
+
context: z.enum([
|
|
8052
|
+
"login",
|
|
8053
|
+
"sudo"
|
|
8054
|
+
]).optional().describe("Absent on events predating the field; those were all logins.")
|
|
7879
8055
|
}).strict(),
|
|
7880
8056
|
z.object({
|
|
7881
8057
|
mfaEnabled: z.union([
|
|
@@ -7905,10 +8081,85 @@ const userEventSchema = z.object({
|
|
|
7905
8081
|
z.literal(true)
|
|
7906
8082
|
])
|
|
7907
8083
|
}).strict(),
|
|
8084
|
+
z.object({
|
|
8085
|
+
previous: z.object({
|
|
8086
|
+
enabled: z.union([
|
|
8087
|
+
z.literal(false),
|
|
8088
|
+
z.literal(true)
|
|
8089
|
+
]),
|
|
8090
|
+
totpVerified: z.union([
|
|
8091
|
+
z.literal(false),
|
|
8092
|
+
z.literal(true)
|
|
8093
|
+
])
|
|
8094
|
+
}),
|
|
8095
|
+
next: z.object({
|
|
8096
|
+
enabled: z.union([
|
|
8097
|
+
z.literal(false),
|
|
8098
|
+
z.literal(true)
|
|
8099
|
+
]),
|
|
8100
|
+
totpVerified: z.union([
|
|
8101
|
+
z.literal(false),
|
|
8102
|
+
z.literal(true)
|
|
8103
|
+
])
|
|
8104
|
+
})
|
|
8105
|
+
}).strict(),
|
|
8106
|
+
z.object({
|
|
8107
|
+
provider: z.enum([
|
|
8108
|
+
"google"
|
|
8109
|
+
]),
|
|
8110
|
+
providerSubjectId: z.string(),
|
|
8111
|
+
outcome: z.enum([
|
|
8112
|
+
"account-matched",
|
|
8113
|
+
"linking-required"
|
|
8114
|
+
]),
|
|
8115
|
+
decision: z.object({
|
|
8116
|
+
authoritative: z.union([
|
|
8117
|
+
z.literal(false),
|
|
8118
|
+
z.literal(true)
|
|
8119
|
+
]),
|
|
8120
|
+
basis: z.enum([
|
|
8121
|
+
"gmail",
|
|
8122
|
+
"none",
|
|
8123
|
+
"workspace-mx"
|
|
8124
|
+
]),
|
|
8125
|
+
emailDomain: z.string(),
|
|
8126
|
+
emailVerified: z.union([
|
|
8127
|
+
z.literal(false),
|
|
8128
|
+
z.literal(true)
|
|
8129
|
+
]),
|
|
8130
|
+
hostedDomainMatch: z.union([
|
|
8131
|
+
z.literal(false),
|
|
8132
|
+
z.literal(true)
|
|
8133
|
+
]),
|
|
8134
|
+
mxOutcome: z.enum([
|
|
8135
|
+
"google",
|
|
8136
|
+
"lookup-error",
|
|
8137
|
+
"non-google",
|
|
8138
|
+
"not-checked"
|
|
8139
|
+
])
|
|
8140
|
+
})
|
|
8141
|
+
}).strict(),
|
|
7908
8142
|
z.object({
|
|
7909
8143
|
email: z.string(),
|
|
7910
8144
|
prevEmail: z.string()
|
|
7911
8145
|
}).strict(),
|
|
8146
|
+
z.object({
|
|
8147
|
+
email: z.string(),
|
|
8148
|
+
prevEmail: z.string(),
|
|
8149
|
+
actorId: z.string().describe("Okta user id."),
|
|
8150
|
+
actorType: z.enum([
|
|
8151
|
+
"admin"
|
|
8152
|
+
]),
|
|
8153
|
+
actorName: z.string().optional()
|
|
8154
|
+
}).strict(),
|
|
8155
|
+
z.object({
|
|
8156
|
+
username: z.string(),
|
|
8157
|
+
actorId: z.string().describe("Okta user id."),
|
|
8158
|
+
actorType: z.enum([
|
|
8159
|
+
"admin"
|
|
8160
|
+
]),
|
|
8161
|
+
actorName: z.string().optional()
|
|
8162
|
+
}).strict(),
|
|
7912
8163
|
z.object({
|
|
7913
8164
|
projectId: z.string(),
|
|
7914
8165
|
projectName: z.string(),
|
|
@@ -8381,6 +8632,15 @@ const listEventTypeSchema = z.object({
|
|
|
8381
8632
|
"access-group-updated",
|
|
8382
8633
|
"access-group-user-added",
|
|
8383
8634
|
"access-group-user-removed",
|
|
8635
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
8636
|
+
"admin-plan-updated",
|
|
8637
|
+
"admin-secondary-email-added",
|
|
8638
|
+
"admin-secondary-email-removed",
|
|
8639
|
+
"admin-team-name-update",
|
|
8640
|
+
"admin-team-slug-update",
|
|
8641
|
+
"admin-user-delete",
|
|
8642
|
+
"admin-user-primary-email-updated",
|
|
8643
|
+
"admin-username-updated",
|
|
8384
8644
|
"agentic-provisioning-account-blocked",
|
|
8385
8645
|
"agentic-provisioning-account-linked",
|
|
8386
8646
|
"agentic-provisioning-account-relinked",
|
|
@@ -8946,6 +9206,7 @@ const listEventTypeSchema = z.object({
|
|
|
8946
9206
|
"user-emu-recovery-initiated",
|
|
8947
9207
|
"user-emu-toggled",
|
|
8948
9208
|
"user-mfa-challenge-failed",
|
|
9209
|
+
"user-mfa-challenge-initiated",
|
|
8949
9210
|
"user-mfa-challenge-verified",
|
|
8950
9211
|
"user-mfa-change-failed",
|
|
8951
9212
|
"user-mfa-configuration-updated",
|
|
@@ -8958,6 +9219,7 @@ const listEventTypeSchema = z.object({
|
|
|
8958
9219
|
"user-phone-removed",
|
|
8959
9220
|
"user-phone-updated",
|
|
8960
9221
|
"user-primary-email-updated",
|
|
9222
|
+
"user-provider-email-claim-evaluated",
|
|
8961
9223
|
"user-sudo-mode-removed",
|
|
8962
9224
|
"user-token-created",
|
|
8963
9225
|
"user-token-deleted",
|
|
@@ -9034,6 +9296,15 @@ const listEventTypeSchema = z.object({
|
|
|
9034
9296
|
"access-group-updated",
|
|
9035
9297
|
"access-group-user-added",
|
|
9036
9298
|
"access-group-user-removed",
|
|
9299
|
+
"admin-agentic-provisioning-account-unlinked",
|
|
9300
|
+
"admin-plan-updated",
|
|
9301
|
+
"admin-secondary-email-added",
|
|
9302
|
+
"admin-secondary-email-removed",
|
|
9303
|
+
"admin-team-name-update",
|
|
9304
|
+
"admin-team-slug-update",
|
|
9305
|
+
"admin-user-delete",
|
|
9306
|
+
"admin-user-primary-email-updated",
|
|
9307
|
+
"admin-username-updated",
|
|
9037
9308
|
"agentic-provisioning-account-blocked",
|
|
9038
9309
|
"agentic-provisioning-account-linked",
|
|
9039
9310
|
"agentic-provisioning-account-relinked",
|
|
@@ -9599,6 +9870,7 @@ const listEventTypeSchema = z.object({
|
|
|
9599
9870
|
"user-emu-recovery-initiated",
|
|
9600
9871
|
"user-emu-toggled",
|
|
9601
9872
|
"user-mfa-challenge-failed",
|
|
9873
|
+
"user-mfa-challenge-initiated",
|
|
9602
9874
|
"user-mfa-challenge-verified",
|
|
9603
9875
|
"user-mfa-change-failed",
|
|
9604
9876
|
"user-mfa-configuration-updated",
|
|
@@ -9611,6 +9883,7 @@ const listEventTypeSchema = z.object({
|
|
|
9611
9883
|
"user-phone-removed",
|
|
9612
9884
|
"user-phone-updated",
|
|
9613
9885
|
"user-primary-email-updated",
|
|
9886
|
+
"user-provider-email-claim-evaluated",
|
|
9614
9887
|
"user-sudo-mode-removed",
|
|
9615
9888
|
"user-token-created",
|
|
9616
9889
|
"user-token-deleted",
|
|
@@ -10391,7 +10664,8 @@ const invitedTeamMemberSchema = z.object({
|
|
|
10391
10664
|
"UsageViewer",
|
|
10392
10665
|
"V0Builder",
|
|
10393
10666
|
"V0Chatter",
|
|
10394
|
-
"V0Viewer"
|
|
10667
|
+
"V0Viewer",
|
|
10668
|
+
"WorkflowDecryptor"
|
|
10395
10669
|
])).optional().describe("The team permissions of the user")
|
|
10396
10670
|
}).describe("The member was successfully added to the team.");
|
|
10397
10671
|
const teamSchema = z.object({
|
|
@@ -10489,7 +10763,8 @@ const teamSchema = z.object({
|
|
|
10489
10763
|
"UsageViewer",
|
|
10490
10764
|
"V0Builder",
|
|
10491
10765
|
"V0Chatter",
|
|
10492
|
-
"V0Viewer"
|
|
10766
|
+
"V0Viewer",
|
|
10767
|
+
"WorkflowDecryptor"
|
|
10493
10768
|
])).optional()
|
|
10494
10769
|
}).optional().describe("Default roles for the team."),
|
|
10495
10770
|
stagingPrefix: z.string().describe("The prefix that is prepended to automatic aliases."),
|
|
@@ -10783,7 +11058,8 @@ const teamSchema = z.object({
|
|
|
10783
11058
|
"UsageViewer",
|
|
10784
11059
|
"V0Builder",
|
|
10785
11060
|
"V0Chatter",
|
|
10786
|
-
"V0Viewer"
|
|
11061
|
+
"V0Viewer",
|
|
11062
|
+
"WorkflowDecryptor"
|
|
10787
11063
|
])).optional(),
|
|
10788
11064
|
createdAt: z.number(),
|
|
10789
11065
|
created: z.number(),
|
|
@@ -10912,7 +11188,8 @@ const teamLimitedSchema = z.object({
|
|
|
10912
11188
|
"UsageViewer",
|
|
10913
11189
|
"V0Builder",
|
|
10914
11190
|
"V0Chatter",
|
|
10915
|
-
"V0Viewer"
|
|
11191
|
+
"V0Viewer",
|
|
11192
|
+
"WorkflowDecryptor"
|
|
10916
11193
|
])).optional(),
|
|
10917
11194
|
createdAt: z.number(),
|
|
10918
11195
|
created: z.number(),
|
|
@@ -18266,7 +18543,7 @@ const getRootResponseSchema = z.union([
|
|
|
18266
18543
|
getRootStatus404Schema,
|
|
18267
18544
|
getRootStatus410Schema
|
|
18268
18545
|
]);
|
|
18269
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18546
|
+
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18270
18547
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18271
18548
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18272
18549
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18286,7 +18563,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z.
|
|
|
18286
18563
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema,
|
|
18287
18564
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema
|
|
18288
18565
|
]);
|
|
18289
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18566
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z.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 deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z.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 deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18292
18569
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18306,7 +18583,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema =
|
|
|
18306
18583
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema,
|
|
18307
18584
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema
|
|
18308
18585
|
]);
|
|
18309
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18586
|
+
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.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 getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z.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 getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18312
18589
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18326,7 +18603,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema
|
|
|
18326
18603
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18327
18604
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18328
18605
|
]);
|
|
18329
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18606
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.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 deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z.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 deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18332
18609
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18346,7 +18623,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18346
18623
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18347
18624
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18348
18625
|
]);
|
|
18349
|
-
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18626
|
+
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.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 updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z.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 updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18352
18629
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18368,7 +18645,7 @@ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18368
18645
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18369
18646
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18370
18647
|
]);
|
|
18371
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18648
|
+
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18372
18649
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18373
18650
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18374
18651
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18391,11 +18668,11 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSc
|
|
|
18391
18668
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18392
18669
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18393
18670
|
]);
|
|
18394
|
-
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18671
|
+
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18395
18672
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18396
18673
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18397
18674
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema = z.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).optional().describe("Digest of the blob to mount from another repository.");
|
|
18398
|
-
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z.string().max(255).regex(/^
|
|
18675
|
+
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z.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.");
|
|
18399
18676
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = z.unknown();
|
|
18400
18677
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = z.unknown();
|
|
18401
18678
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = z.unknown();
|
|
@@ -18412,7 +18689,7 @@ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema =
|
|
|
18412
18689
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema,
|
|
18413
18690
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema
|
|
18414
18691
|
]);
|
|
18415
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18692
|
+
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18416
18693
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18417
18694
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18418
18695
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z.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.");
|
|
@@ -18434,7 +18711,7 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponse
|
|
|
18434
18711
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema,
|
|
18435
18712
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema
|
|
18436
18713
|
]);
|
|
18437
|
-
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18714
|
+
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18438
18715
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18439
18716
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18440
18717
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z.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.");
|
|
@@ -18452,7 +18729,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSche
|
|
|
18452
18729
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18453
18730
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18454
18731
|
]);
|
|
18455
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18732
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
|
|
18456
18733
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18457
18734
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18458
18735
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18472,7 +18749,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseS
|
|
|
18472
18749
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18473
18750
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18474
18751
|
]);
|
|
18475
|
-
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z.string().max(255).regex(/^
|
|
18752
|
+
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z.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 getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema = z.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 getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = z.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18478
18755
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = z.int().min(1).max(1000).optional();
|