vercel-api-js 1.8.0 → 1.8.2
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.d.mts.map +1 -1
- package/dist/effect.d.mts.map +1 -1
- package/dist/index.cjs +190 -2
- package/dist/index.d.ts +459 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +190 -3
- package/dist/schemas.cjs +150 -0
- package/dist/schemas.d.mts +130 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +150 -0
- package/dist/types.cjs +40 -2
- package/dist/types.d.mts +329 -4
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +40 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -9359,6 +9359,10 @@ const userEventSchema = z__namespace.object({
|
|
|
9359
9359
|
"observability-enabled",
|
|
9360
9360
|
"observability-plus-project-disabled",
|
|
9361
9361
|
"observability-plus-project-enabled",
|
|
9362
|
+
"oidc-policy-created",
|
|
9363
|
+
"oidc-policy-deleted",
|
|
9364
|
+
"oidc-policy-updated",
|
|
9365
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
9362
9366
|
"organization-create",
|
|
9363
9367
|
"organization-delete",
|
|
9364
9368
|
"organization-slug-update",
|
|
@@ -9407,6 +9411,7 @@ const userEventSchema = z__namespace.object({
|
|
|
9407
9411
|
"project-build-command-updated",
|
|
9408
9412
|
"project-build-logs-and-source-protection-updated",
|
|
9409
9413
|
"project-build-machine-updated",
|
|
9414
|
+
"project-card-widget-preference-updated",
|
|
9410
9415
|
"project-client-cert-delete",
|
|
9411
9416
|
"project-client-cert-upload",
|
|
9412
9417
|
"project-connect-configurations",
|
|
@@ -9619,7 +9624,9 @@ const userEventSchema = z__namespace.object({
|
|
|
9619
9624
|
"user-emu-account-archived",
|
|
9620
9625
|
"user-emu-account-deleted",
|
|
9621
9626
|
"user-emu-account-recovered",
|
|
9627
|
+
"user-mfa-challenge-failed",
|
|
9622
9628
|
"user-mfa-challenge-verified",
|
|
9629
|
+
"user-mfa-change-failed",
|
|
9623
9630
|
"user-mfa-configuration-updated",
|
|
9624
9631
|
"user-mfa-recovery-codes-regenerated",
|
|
9625
9632
|
"user-mfa-removed",
|
|
@@ -12327,6 +12334,16 @@ const userEventSchema = z__namespace.object({
|
|
|
12327
12334
|
])
|
|
12328
12335
|
]).optional(),
|
|
12329
12336
|
projectDomainsLimit: z__namespace.number().optional().describe("Overrides our DEFAULT project domains limit per account or per project."),
|
|
12337
|
+
projectCardWidgetPreferences: z__namespace.array(z__namespace.object({
|
|
12338
|
+
projectId: z__namespace.string(),
|
|
12339
|
+
widget: z__namespace.enum([
|
|
12340
|
+
"alert",
|
|
12341
|
+
"firewall-allowed",
|
|
12342
|
+
"firewall-denied",
|
|
12343
|
+
"online",
|
|
12344
|
+
"res"
|
|
12345
|
+
])
|
|
12346
|
+
})).optional(),
|
|
12330
12347
|
remoteCaching: z__namespace.object({
|
|
12331
12348
|
enabled: z__namespace.union([
|
|
12332
12349
|
z__namespace.literal(false),
|
|
@@ -12393,6 +12410,7 @@ const userEventSchema = z__namespace.object({
|
|
|
12393
12410
|
bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
|
|
12394
12411
|
buildMachine: z__namespace.object({
|
|
12395
12412
|
default: z__namespace.enum([
|
|
12413
|
+
"basic",
|
|
12396
12414
|
"elastic",
|
|
12397
12415
|
"enhanced",
|
|
12398
12416
|
"standard",
|
|
@@ -13752,6 +13770,10 @@ const userEventSchema = z__namespace.object({
|
|
|
13752
13770
|
z__namespace.literal(false),
|
|
13753
13771
|
z__namespace.literal(true)
|
|
13754
13772
|
]).optional(),
|
|
13773
|
+
connectSrcNotificationsEnabled: z__namespace.union([
|
|
13774
|
+
z__namespace.literal(false),
|
|
13775
|
+
z__namespace.literal(true)
|
|
13776
|
+
]).optional(),
|
|
13755
13777
|
computedScriptSrc: z__namespace.string().optional(),
|
|
13756
13778
|
computedScriptSrcPreview: z__namespace.string().optional(),
|
|
13757
13779
|
computedConnectSrc: z__namespace.string().optional(),
|
|
@@ -13780,6 +13802,10 @@ const userEventSchema = z__namespace.object({
|
|
|
13780
13802
|
z__namespace.literal(false),
|
|
13781
13803
|
z__namespace.literal(true)
|
|
13782
13804
|
]).optional(),
|
|
13805
|
+
connectSrcNotificationsEnabled: z__namespace.union([
|
|
13806
|
+
z__namespace.literal(false),
|
|
13807
|
+
z__namespace.literal(true)
|
|
13808
|
+
]).optional(),
|
|
13783
13809
|
computedScriptSrc: z__namespace.string().optional(),
|
|
13784
13810
|
computedScriptSrcPreview: z__namespace.string().optional(),
|
|
13785
13811
|
computedConnectSrc: z__namespace.string().optional(),
|
|
@@ -14186,6 +14212,17 @@ const userEventSchema = z__namespace.object({
|
|
|
14186
14212
|
]).optional(),
|
|
14187
14213
|
reason: z__namespace.string().optional().describe("For system-initiated (elastic) changes, why the build machine was upgraded/downgraded. Stored as the raw reason code (see `ElasticChangeReason` in `@api/build-machines-types`) and rendered as a human-readable clause in the activity/audit log.")
|
|
14188
14214
|
}).strict(),
|
|
14215
|
+
z__namespace.object({
|
|
14216
|
+
projectId: z__namespace.string(),
|
|
14217
|
+
projectName: z__namespace.string(),
|
|
14218
|
+
widget: z__namespace.enum([
|
|
14219
|
+
"alert",
|
|
14220
|
+
"firewall-allowed",
|
|
14221
|
+
"firewall-denied",
|
|
14222
|
+
"online",
|
|
14223
|
+
"res"
|
|
14224
|
+
]).nullable()
|
|
14225
|
+
}).strict(),
|
|
14189
14226
|
z__namespace.object({
|
|
14190
14227
|
projectId: z__namespace.string().optional(),
|
|
14191
14228
|
projectName: z__namespace.string().optional(),
|
|
@@ -15525,12 +15562,14 @@ const userEventSchema = z__namespace.object({
|
|
|
15525
15562
|
}).strict(),
|
|
15526
15563
|
z__namespace.object({
|
|
15527
15564
|
previous: z__namespace.enum([
|
|
15565
|
+
"basic",
|
|
15528
15566
|
"elastic",
|
|
15529
15567
|
"enhanced",
|
|
15530
15568
|
"standard",
|
|
15531
15569
|
"turbo"
|
|
15532
15570
|
]).optional(),
|
|
15533
15571
|
next: z__namespace.enum([
|
|
15572
|
+
"basic",
|
|
15534
15573
|
"elastic",
|
|
15535
15574
|
"enhanced",
|
|
15536
15575
|
"standard",
|
|
@@ -15953,6 +15992,27 @@ const userEventSchema = z__namespace.object({
|
|
|
15953
15992
|
z__namespace.object({
|
|
15954
15993
|
username: z__namespace.string()
|
|
15955
15994
|
}).strict(),
|
|
15995
|
+
z__namespace.object({
|
|
15996
|
+
method: z__namespace.enum([
|
|
15997
|
+
"email-otp",
|
|
15998
|
+
"recovery-code",
|
|
15999
|
+
"totp",
|
|
16000
|
+
"webauthn"
|
|
16001
|
+
]),
|
|
16002
|
+
reason: z__namespace.string()
|
|
16003
|
+
}).strict(),
|
|
16004
|
+
z__namespace.object({
|
|
16005
|
+
action: z__namespace.enum([
|
|
16006
|
+
"add-passkey",
|
|
16007
|
+
"add-totp",
|
|
16008
|
+
"admin-remove",
|
|
16009
|
+
"disable",
|
|
16010
|
+
"enable",
|
|
16011
|
+
"regenerate-recovery-codes",
|
|
16012
|
+
"remove-passkey"
|
|
16013
|
+
]),
|
|
16014
|
+
reason: z__namespace.string()
|
|
16015
|
+
}).strict(),
|
|
15956
16016
|
z__namespace.object({
|
|
15957
16017
|
previous: z__namespace.object({
|
|
15958
16018
|
enabled: z__namespace.union([
|
|
@@ -16233,6 +16293,81 @@ const userEventSchema = z__namespace.object({
|
|
|
16233
16293
|
policyId: z__namespace.string().optional().describe("ID of the OIDC-exchange policy that authorized a token-exchange grant. Absent for the `client_credentials` + `oidc_token` flow, which matches an app `oidcProviders` entry rather than a policy."),
|
|
16234
16294
|
oidcSubject: z__namespace.string().optional().describe("`sub` claim of the OIDC token. Present for OIDC-authenticated flows (see {@link issuerUrl}).")
|
|
16235
16295
|
}).strict(),
|
|
16296
|
+
z__namespace.object({
|
|
16297
|
+
policy: z__namespace.object({
|
|
16298
|
+
policyId: z__namespace.string(),
|
|
16299
|
+
clientId: z__namespace.string(),
|
|
16300
|
+
issuerUrl: z__namespace.string(),
|
|
16301
|
+
teamId: z__namespace.string(),
|
|
16302
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16303
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16304
|
+
name: z__namespace.string(),
|
|
16305
|
+
values: z__namespace.array(z__namespace.object({
|
|
16306
|
+
value: z__namespace.string(),
|
|
16307
|
+
wildcards: z__namespace.union([
|
|
16308
|
+
z__namespace.literal(false),
|
|
16309
|
+
z__namespace.literal(true)
|
|
16310
|
+
])
|
|
16311
|
+
}))
|
|
16312
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16313
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16314
|
+
resources: z__namespace.object({
|
|
16315
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16316
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16317
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16318
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16319
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16320
|
+
appName: z__namespace.string().optional()
|
|
16321
|
+
}).strict(),
|
|
16322
|
+
z__namespace.object({
|
|
16323
|
+
before: z__namespace.object({
|
|
16324
|
+
policyId: z__namespace.string(),
|
|
16325
|
+
clientId: z__namespace.string(),
|
|
16326
|
+
issuerUrl: z__namespace.string(),
|
|
16327
|
+
teamId: z__namespace.string(),
|
|
16328
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16329
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16330
|
+
name: z__namespace.string(),
|
|
16331
|
+
values: z__namespace.array(z__namespace.object({
|
|
16332
|
+
value: z__namespace.string(),
|
|
16333
|
+
wildcards: z__namespace.union([
|
|
16334
|
+
z__namespace.literal(false),
|
|
16335
|
+
z__namespace.literal(true)
|
|
16336
|
+
])
|
|
16337
|
+
}))
|
|
16338
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16339
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16340
|
+
resources: z__namespace.object({
|
|
16341
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16342
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16343
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16344
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16345
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16346
|
+
after: z__namespace.object({
|
|
16347
|
+
policyId: z__namespace.string(),
|
|
16348
|
+
clientId: z__namespace.string(),
|
|
16349
|
+
issuerUrl: z__namespace.string(),
|
|
16350
|
+
teamId: z__namespace.string(),
|
|
16351
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
16352
|
+
claims: z__namespace.array(z__namespace.object({
|
|
16353
|
+
name: z__namespace.string(),
|
|
16354
|
+
values: z__namespace.array(z__namespace.object({
|
|
16355
|
+
value: z__namespace.string(),
|
|
16356
|
+
wildcards: z__namespace.union([
|
|
16357
|
+
z__namespace.literal(false),
|
|
16358
|
+
z__namespace.literal(true)
|
|
16359
|
+
])
|
|
16360
|
+
}))
|
|
16361
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
16362
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
16363
|
+
resources: z__namespace.object({
|
|
16364
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
16365
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
16366
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
16367
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
16368
|
+
}).describe("A full point-in-time snapshot of an OIDC exchange policy, captured on every lifecycle event so the audit trail records exactly what the policy looked like. Mirrors the management endpoints' public response shape."),
|
|
16369
|
+
appName: z__namespace.string().optional()
|
|
16370
|
+
}).strict(),
|
|
16236
16371
|
z__namespace.object({
|
|
16237
16372
|
tokenId: z__namespace.string().describe("The token's public ID."),
|
|
16238
16373
|
tokenPrefix: z__namespace.enum([
|
|
@@ -16663,6 +16798,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16663
16798
|
"observability-enabled",
|
|
16664
16799
|
"observability-plus-project-disabled",
|
|
16665
16800
|
"observability-plus-project-enabled",
|
|
16801
|
+
"oidc-policy-created",
|
|
16802
|
+
"oidc-policy-deleted",
|
|
16803
|
+
"oidc-policy-updated",
|
|
16804
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
16666
16805
|
"organization-create",
|
|
16667
16806
|
"organization-delete",
|
|
16668
16807
|
"organization-slug-update",
|
|
@@ -16711,6 +16850,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16711
16850
|
"project-build-command-updated",
|
|
16712
16851
|
"project-build-logs-and-source-protection-updated",
|
|
16713
16852
|
"project-build-machine-updated",
|
|
16853
|
+
"project-card-widget-preference-updated",
|
|
16714
16854
|
"project-client-cert-delete",
|
|
16715
16855
|
"project-client-cert-upload",
|
|
16716
16856
|
"project-connect-configurations",
|
|
@@ -16923,7 +17063,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
16923
17063
|
"user-emu-account-archived",
|
|
16924
17064
|
"user-emu-account-deleted",
|
|
16925
17065
|
"user-emu-account-recovered",
|
|
17066
|
+
"user-mfa-challenge-failed",
|
|
16926
17067
|
"user-mfa-challenge-verified",
|
|
17068
|
+
"user-mfa-change-failed",
|
|
16927
17069
|
"user-mfa-configuration-updated",
|
|
16928
17070
|
"user-mfa-recovery-codes-regenerated",
|
|
16929
17071
|
"user-mfa-removed",
|
|
@@ -17271,6 +17413,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17271
17413
|
"observability-enabled",
|
|
17272
17414
|
"observability-plus-project-disabled",
|
|
17273
17415
|
"observability-plus-project-enabled",
|
|
17416
|
+
"oidc-policy-created",
|
|
17417
|
+
"oidc-policy-deleted",
|
|
17418
|
+
"oidc-policy-updated",
|
|
17419
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
17274
17420
|
"organization-create",
|
|
17275
17421
|
"organization-delete",
|
|
17276
17422
|
"organization-slug-update",
|
|
@@ -17319,6 +17465,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17319
17465
|
"project-build-command-updated",
|
|
17320
17466
|
"project-build-logs-and-source-protection-updated",
|
|
17321
17467
|
"project-build-machine-updated",
|
|
17468
|
+
"project-card-widget-preference-updated",
|
|
17322
17469
|
"project-client-cert-delete",
|
|
17323
17470
|
"project-client-cert-upload",
|
|
17324
17471
|
"project-connect-configurations",
|
|
@@ -17531,7 +17678,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
17531
17678
|
"user-emu-account-archived",
|
|
17532
17679
|
"user-emu-account-deleted",
|
|
17533
17680
|
"user-emu-account-recovered",
|
|
17681
|
+
"user-mfa-challenge-failed",
|
|
17534
17682
|
"user-mfa-challenge-verified",
|
|
17683
|
+
"user-mfa-change-failed",
|
|
17535
17684
|
"user-mfa-configuration-updated",
|
|
17536
17685
|
"user-mfa-recovery-codes-regenerated",
|
|
17537
17686
|
"user-mfa-removed",
|
|
@@ -18427,6 +18576,7 @@ const teamSchema = z__namespace.object({
|
|
|
18427
18576
|
}).optional(),
|
|
18428
18577
|
buildMachine: z__namespace.object({
|
|
18429
18578
|
default: z__namespace.enum([
|
|
18579
|
+
"basic",
|
|
18430
18580
|
"elastic",
|
|
18431
18581
|
"enhanced",
|
|
18432
18582
|
"standard",
|
|
@@ -26853,6 +27003,10 @@ const userEventTypeEnum = {
|
|
|
26853
27003
|
"observability-enabled": "observability-enabled",
|
|
26854
27004
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
26855
27005
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
27006
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
27007
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
27008
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
27009
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
26856
27010
|
"organization-create": "organization-create",
|
|
26857
27011
|
"organization-delete": "organization-delete",
|
|
26858
27012
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -26901,6 +27055,7 @@ const userEventTypeEnum = {
|
|
|
26901
27055
|
"project-build-command-updated": "project-build-command-updated",
|
|
26902
27056
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
26903
27057
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
27058
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
26904
27059
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
26905
27060
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
26906
27061
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -27113,7 +27268,9 @@ const userEventTypeEnum = {
|
|
|
27113
27268
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
27114
27269
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
27115
27270
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
27271
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
27116
27272
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
27273
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
27117
27274
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
27118
27275
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
27119
27276
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -27182,8 +27339,13 @@ const userEventCategoriesEnum = {
|
|
|
27182
27339
|
workflow: "workflow"
|
|
27183
27340
|
};
|
|
27184
27341
|
const actionEnum = {
|
|
27185
|
-
|
|
27186
|
-
|
|
27342
|
+
"add-passkey": "add-passkey",
|
|
27343
|
+
"add-totp": "add-totp",
|
|
27344
|
+
"admin-remove": "admin-remove",
|
|
27345
|
+
disable: "disable",
|
|
27346
|
+
enable: "enable",
|
|
27347
|
+
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
27348
|
+
"remove-passkey": "remove-passkey"
|
|
27187
27349
|
};
|
|
27188
27350
|
const providerEnum = {
|
|
27189
27351
|
apple: "apple",
|
|
@@ -27295,11 +27457,19 @@ const importFlowGitProviderEnum = {
|
|
|
27295
27457
|
gitlab: "gitlab",
|
|
27296
27458
|
vercel: "vercel"
|
|
27297
27459
|
};
|
|
27460
|
+
const widgetEnum = {
|
|
27461
|
+
alert: "alert",
|
|
27462
|
+
"firewall-allowed": "firewall-allowed",
|
|
27463
|
+
"firewall-denied": "firewall-denied",
|
|
27464
|
+
online: "online",
|
|
27465
|
+
res: "res"
|
|
27466
|
+
};
|
|
27298
27467
|
const configurationEnum = {
|
|
27299
27468
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
27300
27469
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
27301
27470
|
};
|
|
27302
27471
|
const defaultEnum = {
|
|
27472
|
+
basic: "basic",
|
|
27303
27473
|
elastic: "elastic",
|
|
27304
27474
|
enhanced: "enhanced",
|
|
27305
27475
|
standard: "standard",
|
|
@@ -27617,12 +27787,14 @@ const scopeEnum = {
|
|
|
27617
27787
|
user: "user"
|
|
27618
27788
|
};
|
|
27619
27789
|
const previousEnum = {
|
|
27790
|
+
basic: "basic",
|
|
27620
27791
|
elastic: "elastic",
|
|
27621
27792
|
enhanced: "enhanced",
|
|
27622
27793
|
standard: "standard",
|
|
27623
27794
|
turbo: "turbo"
|
|
27624
27795
|
};
|
|
27625
27796
|
const nextEnum = {
|
|
27797
|
+
basic: "basic",
|
|
27626
27798
|
elastic: "elastic",
|
|
27627
27799
|
enhanced: "enhanced",
|
|
27628
27800
|
standard: "standard",
|
|
@@ -27989,6 +28161,10 @@ const listEventTypeNameEnum = {
|
|
|
27989
28161
|
"observability-enabled": "observability-enabled",
|
|
27990
28162
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
27991
28163
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
28164
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
28165
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
28166
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
28167
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
27992
28168
|
"organization-create": "organization-create",
|
|
27993
28169
|
"organization-delete": "organization-delete",
|
|
27994
28170
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -28037,6 +28213,7 @@ const listEventTypeNameEnum = {
|
|
|
28037
28213
|
"project-build-command-updated": "project-build-command-updated",
|
|
28038
28214
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
28039
28215
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
28216
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
28040
28217
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
28041
28218
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
28042
28219
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -28249,7 +28426,9 @@ const listEventTypeNameEnum = {
|
|
|
28249
28426
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
28250
28427
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
28251
28428
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
28429
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
28252
28430
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
28431
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
28253
28432
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
28254
28433
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
28255
28434
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -28592,6 +28771,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
28592
28771
|
"observability-enabled": "observability-enabled",
|
|
28593
28772
|
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
28594
28773
|
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
28774
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
28775
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
28776
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
28777
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
28595
28778
|
"organization-create": "organization-create",
|
|
28596
28779
|
"organization-delete": "organization-delete",
|
|
28597
28780
|
"organization-slug-update": "organization-slug-update",
|
|
@@ -28640,6 +28823,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
28640
28823
|
"project-build-command-updated": "project-build-command-updated",
|
|
28641
28824
|
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
28642
28825
|
"project-build-machine-updated": "project-build-machine-updated",
|
|
28826
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
28643
28827
|
"project-client-cert-delete": "project-client-cert-delete",
|
|
28644
28828
|
"project-client-cert-upload": "project-client-cert-upload",
|
|
28645
28829
|
"project-connect-configurations": "project-connect-configurations",
|
|
@@ -28852,7 +29036,9 @@ const listEventTypeReplacedByEnum = {
|
|
|
28852
29036
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
28853
29037
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
28854
29038
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
29039
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
28855
29040
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
29041
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
28856
29042
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
28857
29043
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
28858
29044
|
"user-mfa-removed": "user-mfa-removed",
|
|
@@ -29105,6 +29291,7 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
29105
29291
|
V0Viewer: "V0Viewer"
|
|
29106
29292
|
};
|
|
29107
29293
|
const teamResourceConfigBuildMachineDefaultEnum = {
|
|
29294
|
+
basic: "basic",
|
|
29108
29295
|
elastic: "elastic",
|
|
29109
29296
|
enhanced: "enhanced",
|
|
29110
29297
|
standard: "standard",
|
|
@@ -33654,6 +33841,7 @@ exports.verifyProjectDomainStatus403Schema = verifyProjectDomainStatus403Schema;
|
|
|
33654
33841
|
exports.verifyProjectDomainStatus410Schema = verifyProjectDomainStatus410Schema;
|
|
33655
33842
|
exports.versionEnum = versionEnum;
|
|
33656
33843
|
exports.viewPreferenceEnum = viewPreferenceEnum;
|
|
33844
|
+
exports.widgetEnum = widgetEnum;
|
|
33657
33845
|
exports.writeSessionFilesHeaderxCwdSchema = writeSessionFilesHeaderxCwdSchema;
|
|
33658
33846
|
exports.writeSessionFilesPathSessionIdSchema = writeSessionFilesPathSessionIdSchema;
|
|
33659
33847
|
exports.writeSessionFilesQuerySlugSchema = writeSessionFilesQuerySlugSchema;
|