vercel-api-js 1.7.2 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.cjs +129 -145
- package/dist/components.d.mts +99 -111
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +128 -144
- package/dist/effect.cjs +111 -115
- package/dist/effect.d.mts +90 -94
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +111 -115
- package/dist/index.cjs +611 -208
- package/dist/index.d.ts +1065 -231
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +587 -188
- package/dist/schemas.cjs +378 -63
- package/dist/schemas.d.mts +326 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +358 -43
- package/dist/types.cjs +106 -2
- package/dist/types.d.mts +622 -73
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +103 -3
- package/package.json +1 -1
package/dist/schemas.cjs
CHANGED
|
@@ -411,7 +411,7 @@ const edgeConfigItemSchema = z__namespace.object({
|
|
|
411
411
|
edgeConfigId: z__namespace.string(),
|
|
412
412
|
createdAt: z__namespace.number(),
|
|
413
413
|
updatedAt: z__namespace.number()
|
|
414
|
-
}).describe("The
|
|
414
|
+
}).describe("The Global Config.");
|
|
415
415
|
const edgeConfigTokenSchema = z__namespace.object({
|
|
416
416
|
partialToken: z__namespace.string().describe("A partially-masked representation of the token, safe to display in UIs. The format is the first 3 characters of the token followed by a fixed 8-character `*` mask (e.g. `550e8400-e29b-41d4-a716-446655440000` → `550********`). The mask length is intentionally fixed (not proportional to the original token length) to avoid leaking the token length. Prefer this field for display/reference in UIs and logs. The full, plaintext token is only disclosed once at creation time via `POST /v1/edge-config/:edgeConfigId/token`; use `id` to reference a token in subsequent calls (e.g. when deleting)."),
|
|
417
417
|
label: z__namespace.string(),
|
|
@@ -419,7 +419,7 @@ const edgeConfigTokenSchema = z__namespace.object({
|
|
|
419
419
|
edgeConfigId: z__namespace.string(),
|
|
420
420
|
createdAt: z__namespace.number(),
|
|
421
421
|
token: z__namespace.string().optional().describe("Deprecated: the full, plaintext token. - Returned once by `POST /v1/edge-config/:edgeConfigId/token` (create). - Still returned by `GET /v1/edge-config/:edgeConfigId/token/:token` (detail) for backwards compatibility, but scheduled for removal. - **Not** returned by `GET /v1/edge-config/:edgeConfigId/tokens` (list); use `partialToken` for display and `id` to reference tokens. Do not rely on this field being present on read operations. Prefer `partialToken` for display and `id` for references.")
|
|
422
|
-
}).describe("The
|
|
422
|
+
}).describe("The Global Config.");
|
|
423
423
|
const userEventSchema = z__namespace.object({
|
|
424
424
|
id: z__namespace.string().describe("The unique identifier of the Event."),
|
|
425
425
|
text: z__namespace.string().describe("The human-readable text of the Event."),
|
|
@@ -471,6 +471,7 @@ const userEventSchema = z__namespace.object({
|
|
|
471
471
|
"ai-gateway-api-key-created",
|
|
472
472
|
"ai-gateway-api-key-deleted",
|
|
473
473
|
"ai-gateway-api-key-quota-updated",
|
|
474
|
+
"ai-gateway-budget-default-updated",
|
|
474
475
|
"ai-gateway-byok-credential-created",
|
|
475
476
|
"ai-gateway-byok-credential-deleted",
|
|
476
477
|
"ai-gateway-byok-credential-updated",
|
|
@@ -488,6 +489,7 @@ const userEventSchema = z__namespace.object({
|
|
|
488
489
|
"ai-gateway-rule-created",
|
|
489
490
|
"ai-gateway-rule-deleted",
|
|
490
491
|
"ai-gateway-rule-updated",
|
|
492
|
+
"ai-gateway-scope-budget-updated",
|
|
491
493
|
"ai-gateway-virtual-model-config-archived",
|
|
492
494
|
"ai-gateway-virtual-model-config-created",
|
|
493
495
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -533,6 +535,7 @@ const userEventSchema = z__namespace.object({
|
|
|
533
535
|
"cert-system-create",
|
|
534
536
|
"code-owners-config-updated",
|
|
535
537
|
"compliance-document-downloaded",
|
|
538
|
+
"compliance-documents-bulk-downloaded",
|
|
536
539
|
"concurrent-builds-update",
|
|
537
540
|
"connect-attach-project",
|
|
538
541
|
"connect-bitbucket",
|
|
@@ -724,6 +727,10 @@ const userEventSchema = z__namespace.object({
|
|
|
724
727
|
"observability-enabled",
|
|
725
728
|
"observability-plus-project-disabled",
|
|
726
729
|
"observability-plus-project-enabled",
|
|
730
|
+
"oidc-policy-created",
|
|
731
|
+
"oidc-policy-deleted",
|
|
732
|
+
"oidc-policy-updated",
|
|
733
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
727
734
|
"organization-create",
|
|
728
735
|
"organization-delete",
|
|
729
736
|
"organization-slug-update",
|
|
@@ -772,6 +779,7 @@ const userEventSchema = z__namespace.object({
|
|
|
772
779
|
"project-build-command-updated",
|
|
773
780
|
"project-build-logs-and-source-protection-updated",
|
|
774
781
|
"project-build-machine-updated",
|
|
782
|
+
"project-card-widget-preference-updated",
|
|
775
783
|
"project-client-cert-delete",
|
|
776
784
|
"project-client-cert-upload",
|
|
777
785
|
"project-connect-configurations",
|
|
@@ -931,6 +939,7 @@ const userEventSchema = z__namespace.object({
|
|
|
931
939
|
"subscription-product-removed",
|
|
932
940
|
"subscription-updated",
|
|
933
941
|
"team",
|
|
942
|
+
"team-agent-billing-migration-decision-changed",
|
|
934
943
|
"team-avatar-update",
|
|
935
944
|
"team-collaboration-settings-updated",
|
|
936
945
|
"team-default-build-machine-updated",
|
|
@@ -983,7 +992,9 @@ const userEventSchema = z__namespace.object({
|
|
|
983
992
|
"user-emu-account-archived",
|
|
984
993
|
"user-emu-account-deleted",
|
|
985
994
|
"user-emu-account-recovered",
|
|
995
|
+
"user-mfa-challenge-failed",
|
|
986
996
|
"user-mfa-challenge-verified",
|
|
997
|
+
"user-mfa-change-failed",
|
|
987
998
|
"user-mfa-configuration-updated",
|
|
988
999
|
"user-mfa-recovery-codes-regenerated",
|
|
989
1000
|
"user-mfa-removed",
|
|
@@ -1274,6 +1285,51 @@ const userEventSchema = z__namespace.object({
|
|
|
1274
1285
|
"set"
|
|
1275
1286
|
])
|
|
1276
1287
|
}).strict(),
|
|
1288
|
+
z__namespace.object({
|
|
1289
|
+
scopeType: z__namespace.enum([
|
|
1290
|
+
"api-key",
|
|
1291
|
+
"project",
|
|
1292
|
+
"team"
|
|
1293
|
+
]),
|
|
1294
|
+
budget: z__namespace.object({
|
|
1295
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
1296
|
+
refreshPeriod: z__namespace.enum([
|
|
1297
|
+
"daily",
|
|
1298
|
+
"monthly",
|
|
1299
|
+
"none",
|
|
1300
|
+
"weekly"
|
|
1301
|
+
])
|
|
1302
|
+
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1303
|
+
change: z__namespace.enum([
|
|
1304
|
+
"disable",
|
|
1305
|
+
"enable",
|
|
1306
|
+
"remove",
|
|
1307
|
+
"set"
|
|
1308
|
+
])
|
|
1309
|
+
}).strict(),
|
|
1310
|
+
z__namespace.object({
|
|
1311
|
+
scopeType: z__namespace.enum([
|
|
1312
|
+
"project",
|
|
1313
|
+
"team"
|
|
1314
|
+
]),
|
|
1315
|
+
projectId: z__namespace.string().optional().describe("Associates the event with a project for filtering; not rendered."),
|
|
1316
|
+
projectName: z__namespace.string().optional(),
|
|
1317
|
+
budget: z__namespace.object({
|
|
1318
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
1319
|
+
refreshPeriod: z__namespace.enum([
|
|
1320
|
+
"daily",
|
|
1321
|
+
"monthly",
|
|
1322
|
+
"none",
|
|
1323
|
+
"weekly"
|
|
1324
|
+
])
|
|
1325
|
+
}).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
|
|
1326
|
+
change: z__namespace.enum([
|
|
1327
|
+
"disable",
|
|
1328
|
+
"enable",
|
|
1329
|
+
"remove",
|
|
1330
|
+
"set"
|
|
1331
|
+
])
|
|
1332
|
+
}).strict(),
|
|
1277
1333
|
z__namespace.object({
|
|
1278
1334
|
credential: z__namespace.object({
|
|
1279
1335
|
id: z__namespace.string(),
|
|
@@ -2073,6 +2129,15 @@ const userEventSchema = z__namespace.object({
|
|
|
2073
2129
|
title: z__namespace.string(),
|
|
2074
2130
|
fingerprint: z__namespace.string()
|
|
2075
2131
|
}).strict(),
|
|
2132
|
+
z__namespace.object({
|
|
2133
|
+
count: z__namespace.number(),
|
|
2134
|
+
documents: z__namespace.array(z__namespace.object({
|
|
2135
|
+
slug: z__namespace.string(),
|
|
2136
|
+
documentId: z__namespace.string(),
|
|
2137
|
+
title: z__namespace.string(),
|
|
2138
|
+
fingerprint: z__namespace.string()
|
|
2139
|
+
}))
|
|
2140
|
+
}).strict(),
|
|
2076
2141
|
z__namespace.object({
|
|
2077
2142
|
configuration: z__namespace.object({
|
|
2078
2143
|
id: z__namespace.string(),
|
|
@@ -3637,6 +3702,16 @@ const userEventSchema = z__namespace.object({
|
|
|
3637
3702
|
])
|
|
3638
3703
|
]).optional(),
|
|
3639
3704
|
projectDomainsLimit: z__namespace.number().optional().describe("Overrides our DEFAULT project domains limit per account or per project."),
|
|
3705
|
+
projectCardWidgetPreferences: z__namespace.array(z__namespace.object({
|
|
3706
|
+
projectId: z__namespace.string(),
|
|
3707
|
+
widget: z__namespace.enum([
|
|
3708
|
+
"alert",
|
|
3709
|
+
"firewall-allowed",
|
|
3710
|
+
"firewall-denied",
|
|
3711
|
+
"online",
|
|
3712
|
+
"res"
|
|
3713
|
+
])
|
|
3714
|
+
})).optional(),
|
|
3640
3715
|
remoteCaching: z__namespace.object({
|
|
3641
3716
|
enabled: z__namespace.union([
|
|
3642
3717
|
z__namespace.literal(false),
|
|
@@ -3703,6 +3778,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3703
3778
|
bulkRedirectsFreeLimitOverride: z__namespace.number().optional(),
|
|
3704
3779
|
buildMachine: z__namespace.object({
|
|
3705
3780
|
default: z__namespace.enum([
|
|
3781
|
+
"basic",
|
|
3706
3782
|
"elastic",
|
|
3707
3783
|
"enhanced",
|
|
3708
3784
|
"standard",
|
|
@@ -3772,6 +3848,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3772
3848
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
3773
3849
|
"EXPOSURE_CAP_EXCEEDED",
|
|
3774
3850
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
3851
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
3775
3852
|
"SUBSCRIPTION_CANCELED",
|
|
3776
3853
|
"SUBSCRIPTION_EXPIRED",
|
|
3777
3854
|
"UNPAID_INVOICE"
|
|
@@ -3816,7 +3893,56 @@ const userEventSchema = z__namespace.object({
|
|
|
3816
3893
|
"wafOwaspRequests",
|
|
3817
3894
|
"wafRateLimitRequest",
|
|
3818
3895
|
"webAnalyticsEvent"
|
|
3819
|
-
]).optional()
|
|
3896
|
+
]).optional(),
|
|
3897
|
+
hobbyAllocationPause: z__namespace.object({
|
|
3898
|
+
pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
|
|
3899
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
3900
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
3901
|
+
allocation: z__namespace.enum([
|
|
3902
|
+
"analyticsUsage",
|
|
3903
|
+
"artifacts",
|
|
3904
|
+
"bandwidth",
|
|
3905
|
+
"blobDataTransfer",
|
|
3906
|
+
"blobTotalAdvancedRequests",
|
|
3907
|
+
"blobTotalAvgSizeInBytes",
|
|
3908
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
3909
|
+
"blobTotalSimpleRequests",
|
|
3910
|
+
"connectDataTransfer",
|
|
3911
|
+
"dataCacheRead",
|
|
3912
|
+
"dataCacheWrite",
|
|
3913
|
+
"edgeConfigRead",
|
|
3914
|
+
"edgeConfigWrite",
|
|
3915
|
+
"edgeFunctionExecutionUnits",
|
|
3916
|
+
"edgeMiddlewareInvocations",
|
|
3917
|
+
"edgeRequest",
|
|
3918
|
+
"edgeRequestAdditionalCpuDuration",
|
|
3919
|
+
"elasticConcurrencyBuildSlots",
|
|
3920
|
+
"fastDataTransfer",
|
|
3921
|
+
"fastOriginTransfer",
|
|
3922
|
+
"fluidCpuDuration",
|
|
3923
|
+
"fluidDuration",
|
|
3924
|
+
"functionDuration",
|
|
3925
|
+
"functionInvocation",
|
|
3926
|
+
"imageOptimizationCacheRead",
|
|
3927
|
+
"imageOptimizationCacheWrite",
|
|
3928
|
+
"imageOptimizationTransformation",
|
|
3929
|
+
"logDrainsVolume",
|
|
3930
|
+
"monitoringMetric",
|
|
3931
|
+
"observabilityEvent",
|
|
3932
|
+
"onDemandConcurrencyMinutes",
|
|
3933
|
+
"runtimeCacheRead",
|
|
3934
|
+
"runtimeCacheWrite",
|
|
3935
|
+
"serverlessFunctionExecution",
|
|
3936
|
+
"sourceImages",
|
|
3937
|
+
"wafOwaspExcessBytes",
|
|
3938
|
+
"wafOwaspRequests",
|
|
3939
|
+
"wafRateLimitRequest",
|
|
3940
|
+
"webAnalyticsEvent"
|
|
3941
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
3942
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
3943
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
3944
|
+
cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
|
|
3945
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
3820
3946
|
}).nullish(),
|
|
3821
3947
|
stagingPrefix: z__namespace.string(),
|
|
3822
3948
|
sysToken: z__namespace.string(),
|
|
@@ -5446,6 +5572,17 @@ const userEventSchema = z__namespace.object({
|
|
|
5446
5572
|
]).optional(),
|
|
5447
5573
|
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.")
|
|
5448
5574
|
}).strict(),
|
|
5575
|
+
z__namespace.object({
|
|
5576
|
+
projectId: z__namespace.string(),
|
|
5577
|
+
projectName: z__namespace.string(),
|
|
5578
|
+
widget: z__namespace.enum([
|
|
5579
|
+
"alert",
|
|
5580
|
+
"firewall-allowed",
|
|
5581
|
+
"firewall-denied",
|
|
5582
|
+
"online",
|
|
5583
|
+
"res"
|
|
5584
|
+
]).nullable()
|
|
5585
|
+
}).strict(),
|
|
5449
5586
|
z__namespace.object({
|
|
5450
5587
|
projectId: z__namespace.string().optional(),
|
|
5451
5588
|
projectName: z__namespace.string().optional(),
|
|
@@ -6785,12 +6922,14 @@ const userEventSchema = z__namespace.object({
|
|
|
6785
6922
|
}).strict(),
|
|
6786
6923
|
z__namespace.object({
|
|
6787
6924
|
previous: z__namespace.enum([
|
|
6925
|
+
"basic",
|
|
6788
6926
|
"elastic",
|
|
6789
6927
|
"enhanced",
|
|
6790
6928
|
"standard",
|
|
6791
6929
|
"turbo"
|
|
6792
6930
|
]).optional(),
|
|
6793
6931
|
next: z__namespace.enum([
|
|
6932
|
+
"basic",
|
|
6794
6933
|
"elastic",
|
|
6795
6934
|
"enhanced",
|
|
6796
6935
|
"standard",
|
|
@@ -7073,6 +7212,13 @@ const userEventSchema = z__namespace.object({
|
|
|
7073
7212
|
z__namespace.object({
|
|
7074
7213
|
name: z__namespace.string().optional()
|
|
7075
7214
|
}).strict(),
|
|
7215
|
+
z__namespace.object({
|
|
7216
|
+
decision: z__namespace.enum([
|
|
7217
|
+
"keep_on",
|
|
7218
|
+
"turn_off"
|
|
7219
|
+
]),
|
|
7220
|
+
version: z__namespace.string()
|
|
7221
|
+
}).strict(),
|
|
7076
7222
|
z__namespace.object({
|
|
7077
7223
|
consent: z__namespace.enum([
|
|
7078
7224
|
"granted",
|
|
@@ -7206,6 +7352,27 @@ const userEventSchema = z__namespace.object({
|
|
|
7206
7352
|
z__namespace.object({
|
|
7207
7353
|
username: z__namespace.string()
|
|
7208
7354
|
}).strict(),
|
|
7355
|
+
z__namespace.object({
|
|
7356
|
+
method: z__namespace.enum([
|
|
7357
|
+
"email-otp",
|
|
7358
|
+
"recovery-code",
|
|
7359
|
+
"totp",
|
|
7360
|
+
"webauthn"
|
|
7361
|
+
]),
|
|
7362
|
+
reason: z__namespace.string()
|
|
7363
|
+
}).strict(),
|
|
7364
|
+
z__namespace.object({
|
|
7365
|
+
action: z__namespace.enum([
|
|
7366
|
+
"add-passkey",
|
|
7367
|
+
"add-totp",
|
|
7368
|
+
"admin-remove",
|
|
7369
|
+
"disable",
|
|
7370
|
+
"enable",
|
|
7371
|
+
"regenerate-recovery-codes",
|
|
7372
|
+
"remove-passkey"
|
|
7373
|
+
]),
|
|
7374
|
+
reason: z__namespace.string()
|
|
7375
|
+
}).strict(),
|
|
7209
7376
|
z__namespace.object({
|
|
7210
7377
|
previous: z__namespace.object({
|
|
7211
7378
|
enabled: z__namespace.union([
|
|
@@ -7486,6 +7653,81 @@ const userEventSchema = z__namespace.object({
|
|
|
7486
7653
|
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."),
|
|
7487
7654
|
oidcSubject: z__namespace.string().optional().describe("`sub` claim of the OIDC token. Present for OIDC-authenticated flows (see {@link issuerUrl}).")
|
|
7488
7655
|
}).strict(),
|
|
7656
|
+
z__namespace.object({
|
|
7657
|
+
policy: z__namespace.object({
|
|
7658
|
+
policyId: z__namespace.string(),
|
|
7659
|
+
clientId: z__namespace.string(),
|
|
7660
|
+
issuerUrl: z__namespace.string(),
|
|
7661
|
+
teamId: z__namespace.string(),
|
|
7662
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
7663
|
+
claims: z__namespace.array(z__namespace.object({
|
|
7664
|
+
name: z__namespace.string(),
|
|
7665
|
+
values: z__namespace.array(z__namespace.object({
|
|
7666
|
+
value: z__namespace.string(),
|
|
7667
|
+
wildcards: z__namespace.union([
|
|
7668
|
+
z__namespace.literal(false),
|
|
7669
|
+
z__namespace.literal(true)
|
|
7670
|
+
])
|
|
7671
|
+
}))
|
|
7672
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
7673
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
7674
|
+
resources: z__namespace.object({
|
|
7675
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
7676
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
7677
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
7678
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
7679
|
+
}).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."),
|
|
7680
|
+
appName: z__namespace.string().optional()
|
|
7681
|
+
}).strict(),
|
|
7682
|
+
z__namespace.object({
|
|
7683
|
+
before: z__namespace.object({
|
|
7684
|
+
policyId: z__namespace.string(),
|
|
7685
|
+
clientId: z__namespace.string(),
|
|
7686
|
+
issuerUrl: z__namespace.string(),
|
|
7687
|
+
teamId: z__namespace.string(),
|
|
7688
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
7689
|
+
claims: z__namespace.array(z__namespace.object({
|
|
7690
|
+
name: z__namespace.string(),
|
|
7691
|
+
values: z__namespace.array(z__namespace.object({
|
|
7692
|
+
value: z__namespace.string(),
|
|
7693
|
+
wildcards: z__namespace.union([
|
|
7694
|
+
z__namespace.literal(false),
|
|
7695
|
+
z__namespace.literal(true)
|
|
7696
|
+
])
|
|
7697
|
+
}))
|
|
7698
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
7699
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
7700
|
+
resources: z__namespace.object({
|
|
7701
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
7702
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
7703
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
7704
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
7705
|
+
}).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."),
|
|
7706
|
+
after: z__namespace.object({
|
|
7707
|
+
policyId: z__namespace.string(),
|
|
7708
|
+
clientId: z__namespace.string(),
|
|
7709
|
+
issuerUrl: z__namespace.string(),
|
|
7710
|
+
teamId: z__namespace.string(),
|
|
7711
|
+
name: z__namespace.string().nullable().describe("Human-readable policy name, or `null` when unnamed."),
|
|
7712
|
+
claims: z__namespace.array(z__namespace.object({
|
|
7713
|
+
name: z__namespace.string(),
|
|
7714
|
+
values: z__namespace.array(z__namespace.object({
|
|
7715
|
+
value: z__namespace.string(),
|
|
7716
|
+
wildcards: z__namespace.union([
|
|
7717
|
+
z__namespace.literal(false),
|
|
7718
|
+
z__namespace.literal(true)
|
|
7719
|
+
])
|
|
7720
|
+
}))
|
|
7721
|
+
})).describe("Claim matchers an OIDC token must satisfy to use the policy."),
|
|
7722
|
+
permissions: z__namespace.array(z__namespace.string()).describe("Permission boundary (`['*']` = the app's full declared permissions)."),
|
|
7723
|
+
resources: z__namespace.object({
|
|
7724
|
+
projectIds: z__namespace.array(z__namespace.string())
|
|
7725
|
+
}).nullable().describe("Resource boundary, or `null` when the policy has none."),
|
|
7726
|
+
createdAt: z__namespace.number().describe("Creation time (epoch ms)."),
|
|
7727
|
+
updatedAt: z__namespace.number().describe("Last-update time (epoch ms).")
|
|
7728
|
+
}).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."),
|
|
7729
|
+
appName: z__namespace.string().optional()
|
|
7730
|
+
}).strict(),
|
|
7489
7731
|
z__namespace.object({
|
|
7490
7732
|
tokenId: z__namespace.string().describe("The token's public ID."),
|
|
7491
7733
|
tokenPrefix: z__namespace.enum([
|
|
@@ -7660,6 +7902,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7660
7902
|
"ai-gateway-api-key-created",
|
|
7661
7903
|
"ai-gateway-api-key-deleted",
|
|
7662
7904
|
"ai-gateway-api-key-quota-updated",
|
|
7905
|
+
"ai-gateway-budget-default-updated",
|
|
7663
7906
|
"ai-gateway-byok-credential-created",
|
|
7664
7907
|
"ai-gateway-byok-credential-deleted",
|
|
7665
7908
|
"ai-gateway-byok-credential-updated",
|
|
@@ -7677,6 +7920,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7677
7920
|
"ai-gateway-rule-created",
|
|
7678
7921
|
"ai-gateway-rule-deleted",
|
|
7679
7922
|
"ai-gateway-rule-updated",
|
|
7923
|
+
"ai-gateway-scope-budget-updated",
|
|
7680
7924
|
"ai-gateway-virtual-model-config-archived",
|
|
7681
7925
|
"ai-gateway-virtual-model-config-created",
|
|
7682
7926
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -7722,6 +7966,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7722
7966
|
"cert-system-create",
|
|
7723
7967
|
"code-owners-config-updated",
|
|
7724
7968
|
"compliance-document-downloaded",
|
|
7969
|
+
"compliance-documents-bulk-downloaded",
|
|
7725
7970
|
"concurrent-builds-update",
|
|
7726
7971
|
"connect-attach-project",
|
|
7727
7972
|
"connect-bitbucket",
|
|
@@ -7913,6 +8158,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7913
8158
|
"observability-enabled",
|
|
7914
8159
|
"observability-plus-project-disabled",
|
|
7915
8160
|
"observability-plus-project-enabled",
|
|
8161
|
+
"oidc-policy-created",
|
|
8162
|
+
"oidc-policy-deleted",
|
|
8163
|
+
"oidc-policy-updated",
|
|
8164
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
7916
8165
|
"organization-create",
|
|
7917
8166
|
"organization-delete",
|
|
7918
8167
|
"organization-slug-update",
|
|
@@ -7961,6 +8210,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7961
8210
|
"project-build-command-updated",
|
|
7962
8211
|
"project-build-logs-and-source-protection-updated",
|
|
7963
8212
|
"project-build-machine-updated",
|
|
8213
|
+
"project-card-widget-preference-updated",
|
|
7964
8214
|
"project-client-cert-delete",
|
|
7965
8215
|
"project-client-cert-upload",
|
|
7966
8216
|
"project-connect-configurations",
|
|
@@ -8120,6 +8370,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8120
8370
|
"subscription-product-removed",
|
|
8121
8371
|
"subscription-updated",
|
|
8122
8372
|
"team",
|
|
8373
|
+
"team-agent-billing-migration-decision-changed",
|
|
8123
8374
|
"team-avatar-update",
|
|
8124
8375
|
"team-collaboration-settings-updated",
|
|
8125
8376
|
"team-default-build-machine-updated",
|
|
@@ -8172,7 +8423,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8172
8423
|
"user-emu-account-archived",
|
|
8173
8424
|
"user-emu-account-deleted",
|
|
8174
8425
|
"user-emu-account-recovered",
|
|
8426
|
+
"user-mfa-challenge-failed",
|
|
8175
8427
|
"user-mfa-challenge-verified",
|
|
8428
|
+
"user-mfa-change-failed",
|
|
8176
8429
|
"user-mfa-configuration-updated",
|
|
8177
8430
|
"user-mfa-recovery-codes-regenerated",
|
|
8178
8431
|
"user-mfa-removed",
|
|
@@ -8264,6 +8517,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8264
8517
|
"ai-gateway-api-key-created",
|
|
8265
8518
|
"ai-gateway-api-key-deleted",
|
|
8266
8519
|
"ai-gateway-api-key-quota-updated",
|
|
8520
|
+
"ai-gateway-budget-default-updated",
|
|
8267
8521
|
"ai-gateway-byok-credential-created",
|
|
8268
8522
|
"ai-gateway-byok-credential-deleted",
|
|
8269
8523
|
"ai-gateway-byok-credential-updated",
|
|
@@ -8281,6 +8535,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8281
8535
|
"ai-gateway-rule-created",
|
|
8282
8536
|
"ai-gateway-rule-deleted",
|
|
8283
8537
|
"ai-gateway-rule-updated",
|
|
8538
|
+
"ai-gateway-scope-budget-updated",
|
|
8284
8539
|
"ai-gateway-virtual-model-config-archived",
|
|
8285
8540
|
"ai-gateway-virtual-model-config-created",
|
|
8286
8541
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -8326,6 +8581,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8326
8581
|
"cert-system-create",
|
|
8327
8582
|
"code-owners-config-updated",
|
|
8328
8583
|
"compliance-document-downloaded",
|
|
8584
|
+
"compliance-documents-bulk-downloaded",
|
|
8329
8585
|
"concurrent-builds-update",
|
|
8330
8586
|
"connect-attach-project",
|
|
8331
8587
|
"connect-bitbucket",
|
|
@@ -8517,6 +8773,10 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8517
8773
|
"observability-enabled",
|
|
8518
8774
|
"observability-plus-project-disabled",
|
|
8519
8775
|
"observability-plus-project-enabled",
|
|
8776
|
+
"oidc-policy-created",
|
|
8777
|
+
"oidc-policy-deleted",
|
|
8778
|
+
"oidc-policy-updated",
|
|
8779
|
+
"oidc-policy-used-to-obtain-app-token",
|
|
8520
8780
|
"organization-create",
|
|
8521
8781
|
"organization-delete",
|
|
8522
8782
|
"organization-slug-update",
|
|
@@ -8565,6 +8825,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8565
8825
|
"project-build-command-updated",
|
|
8566
8826
|
"project-build-logs-and-source-protection-updated",
|
|
8567
8827
|
"project-build-machine-updated",
|
|
8828
|
+
"project-card-widget-preference-updated",
|
|
8568
8829
|
"project-client-cert-delete",
|
|
8569
8830
|
"project-client-cert-upload",
|
|
8570
8831
|
"project-connect-configurations",
|
|
@@ -8724,6 +8985,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8724
8985
|
"subscription-product-removed",
|
|
8725
8986
|
"subscription-updated",
|
|
8726
8987
|
"team",
|
|
8988
|
+
"team-agent-billing-migration-decision-changed",
|
|
8727
8989
|
"team-avatar-update",
|
|
8728
8990
|
"team-collaboration-settings-updated",
|
|
8729
8991
|
"team-default-build-machine-updated",
|
|
@@ -8776,7 +9038,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8776
9038
|
"user-emu-account-archived",
|
|
8777
9039
|
"user-emu-account-deleted",
|
|
8778
9040
|
"user-emu-account-recovered",
|
|
9041
|
+
"user-mfa-challenge-failed",
|
|
8779
9042
|
"user-mfa-challenge-verified",
|
|
9043
|
+
"user-mfa-change-failed",
|
|
8780
9044
|
"user-mfa-configuration-updated",
|
|
8781
9045
|
"user-mfa-recovery-codes-regenerated",
|
|
8782
9046
|
"user-mfa-removed",
|
|
@@ -9672,6 +9936,7 @@ const teamSchema = z__namespace.object({
|
|
|
9672
9936
|
}).optional(),
|
|
9673
9937
|
buildMachine: z__namespace.object({
|
|
9674
9938
|
default: z__namespace.enum([
|
|
9939
|
+
"basic",
|
|
9675
9940
|
"elastic",
|
|
9676
9941
|
"enhanced",
|
|
9677
9942
|
"standard",
|
|
@@ -10198,6 +10463,7 @@ const authUserSchema = z__namespace.object({
|
|
|
10198
10463
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
10199
10464
|
"EXPOSURE_CAP_EXCEEDED",
|
|
10200
10465
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
10466
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
10201
10467
|
"SUBSCRIPTION_CANCELED",
|
|
10202
10468
|
"SUBSCRIPTION_EXPIRED",
|
|
10203
10469
|
"UNPAID_INVOICE"
|
|
@@ -10242,7 +10508,56 @@ const authUserSchema = z__namespace.object({
|
|
|
10242
10508
|
"wafOwaspRequests",
|
|
10243
10509
|
"wafRateLimitRequest",
|
|
10244
10510
|
"webAnalyticsEvent"
|
|
10245
|
-
]).optional()
|
|
10511
|
+
]).optional(),
|
|
10512
|
+
hobbyAllocationPause: z__namespace.object({
|
|
10513
|
+
pausedUntil: z__namespace.number().describe("Unix ms timestamp at which the pause is eligible to end. This is the single source of truth for when the pause ends. Never re-derive it by re-checking usage — usage keeps moving while a team is paused, and the pause duration is a fixed experiment parameter."),
|
|
10514
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
10515
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
10516
|
+
allocation: z__namespace.enum([
|
|
10517
|
+
"analyticsUsage",
|
|
10518
|
+
"artifacts",
|
|
10519
|
+
"bandwidth",
|
|
10520
|
+
"blobDataTransfer",
|
|
10521
|
+
"blobTotalAdvancedRequests",
|
|
10522
|
+
"blobTotalAvgSizeInBytes",
|
|
10523
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
10524
|
+
"blobTotalSimpleRequests",
|
|
10525
|
+
"connectDataTransfer",
|
|
10526
|
+
"dataCacheRead",
|
|
10527
|
+
"dataCacheWrite",
|
|
10528
|
+
"edgeConfigRead",
|
|
10529
|
+
"edgeConfigWrite",
|
|
10530
|
+
"edgeFunctionExecutionUnits",
|
|
10531
|
+
"edgeMiddlewareInvocations",
|
|
10532
|
+
"edgeRequest",
|
|
10533
|
+
"edgeRequestAdditionalCpuDuration",
|
|
10534
|
+
"elasticConcurrencyBuildSlots",
|
|
10535
|
+
"fastDataTransfer",
|
|
10536
|
+
"fastOriginTransfer",
|
|
10537
|
+
"fluidCpuDuration",
|
|
10538
|
+
"fluidDuration",
|
|
10539
|
+
"functionDuration",
|
|
10540
|
+
"functionInvocation",
|
|
10541
|
+
"imageOptimizationCacheRead",
|
|
10542
|
+
"imageOptimizationCacheWrite",
|
|
10543
|
+
"imageOptimizationTransformation",
|
|
10544
|
+
"logDrainsVolume",
|
|
10545
|
+
"monitoringMetric",
|
|
10546
|
+
"observabilityEvent",
|
|
10547
|
+
"onDemandConcurrencyMinutes",
|
|
10548
|
+
"runtimeCacheRead",
|
|
10549
|
+
"runtimeCacheWrite",
|
|
10550
|
+
"serverlessFunctionExecution",
|
|
10551
|
+
"sourceImages",
|
|
10552
|
+
"wafOwaspExcessBytes",
|
|
10553
|
+
"wafOwaspRequests",
|
|
10554
|
+
"wafRateLimitRequest",
|
|
10555
|
+
"webAnalyticsEvent"
|
|
10556
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
10557
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
10558
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
10559
|
+
cohort: z__namespace.string().describe("Experiment cohort the owner was assigned to when the pause fired. Free-form so cohort naming stays owned by the assignment path.")
|
|
10560
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
10246
10561
|
}).nullable().describe('When the User account has been "soft blocked", this property will contain the date when the restriction was enacted, and the identifier for why.'),
|
|
10247
10562
|
billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
|
|
10248
10563
|
resourceConfig: z__namespace.object({
|
|
@@ -14234,43 +14549,43 @@ const deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperi
|
|
|
14234
14549
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema,
|
|
14235
14550
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema
|
|
14236
14551
|
]);
|
|
14237
|
-
const
|
|
14238
|
-
const
|
|
14239
|
-
const
|
|
14240
|
-
const
|
|
14241
|
-
const
|
|
14242
|
-
const
|
|
14243
|
-
const
|
|
14244
|
-
const
|
|
14245
|
-
const
|
|
14246
|
-
const
|
|
14247
|
-
|
|
14248
|
-
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14253
|
-
|
|
14254
|
-
]);
|
|
14255
|
-
const
|
|
14256
|
-
const
|
|
14257
|
-
const
|
|
14258
|
-
const
|
|
14259
|
-
const
|
|
14260
|
-
const
|
|
14261
|
-
const
|
|
14262
|
-
const
|
|
14263
|
-
const
|
|
14264
|
-
const
|
|
14265
|
-
const
|
|
14266
|
-
|
|
14267
|
-
|
|
14268
|
-
|
|
14269
|
-
|
|
14270
|
-
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14552
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
14553
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
14554
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
14555
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = z__namespace.unknown();
|
|
14556
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
14557
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
14558
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
14559
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
14560
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
14561
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
14562
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
14563
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema,
|
|
14564
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
14565
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
14566
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
14567
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
14568
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema
|
|
14569
|
+
]);
|
|
14570
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
14571
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
14572
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
14573
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
14574
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
14575
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
14576
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
14577
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = z__namespace.unknown();
|
|
14578
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
14579
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = z__namespace.unknown();
|
|
14580
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
14581
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
14582
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
14583
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
14584
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
14585
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
14586
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema,
|
|
14587
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema,
|
|
14588
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema
|
|
14274
14589
|
]);
|
|
14275
14590
|
const getMicrofrontendsGroupsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
14276
14591
|
const getMicrofrontendsGroupsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
@@ -16428,7 +16743,7 @@ const getSecurityFirewallEventsResponseSchema = z__namespace.union([
|
|
|
16428
16743
|
getSecurityFirewallEventsStatus410Schema,
|
|
16429
16744
|
getSecurityFirewallEventsStatus500Schema
|
|
16430
16745
|
]);
|
|
16431
|
-
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string();
|
|
16746
|
+
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string().optional();
|
|
16432
16747
|
const generateFirewallRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
16433
16748
|
const generateFirewallRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
16434
16749
|
const generateFirewallRuleStatus200Schema = z__namespace.unknown();
|
|
@@ -19451,16 +19766,16 @@ exports.getFlagStatus402Schema = getFlagStatus402Schema;
|
|
|
19451
19766
|
exports.getFlagStatus403Schema = getFlagStatus403Schema;
|
|
19452
19767
|
exports.getFlagStatus404Schema = getFlagStatus404Schema;
|
|
19453
19768
|
exports.getFlagStatus410Schema = getFlagStatus410Schema;
|
|
19454
|
-
exports.
|
|
19455
|
-
exports.
|
|
19456
|
-
exports.
|
|
19457
|
-
exports.
|
|
19458
|
-
exports.
|
|
19459
|
-
exports.
|
|
19460
|
-
exports.
|
|
19461
|
-
exports.
|
|
19462
|
-
exports.
|
|
19463
|
-
exports.
|
|
19769
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
19770
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
19771
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
19772
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
19773
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema;
|
|
19774
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
19775
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
19776
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
19777
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
19778
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
19464
19779
|
exports.getIntegrationLogDrainsQuerySlugSchema = getIntegrationLogDrainsQuerySlugSchema;
|
|
19465
19780
|
exports.getIntegrationLogDrainsQueryTeamIdSchema = getIntegrationLogDrainsQueryTeamIdSchema;
|
|
19466
19781
|
exports.getIntegrationLogDrainsResponseSchema = getIntegrationLogDrainsResponseSchema;
|
|
@@ -20875,17 +21190,17 @@ exports.replaceDomainsByDomainRecordsStatus404Schema = replaceDomainsByDomainRec
|
|
|
20875
21190
|
exports.replaceDomainsByDomainRecordsStatus409Schema = replaceDomainsByDomainRecordsStatus409Schema;
|
|
20876
21191
|
exports.replaceDomainsByDomainRecordsStatus410Schema = replaceDomainsByDomainRecordsStatus410Schema;
|
|
20877
21192
|
exports.replaceDomainsByDomainRecordsStatus415Schema = replaceDomainsByDomainRecordsStatus415Schema;
|
|
20878
|
-
exports.
|
|
20879
|
-
exports.
|
|
20880
|
-
exports.
|
|
20881
|
-
exports.
|
|
20882
|
-
exports.
|
|
20883
|
-
exports.
|
|
20884
|
-
exports.
|
|
20885
|
-
exports.
|
|
20886
|
-
exports.
|
|
20887
|
-
exports.
|
|
20888
|
-
exports.
|
|
21193
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
21194
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
21195
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
21196
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
21197
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
21198
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
21199
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
21200
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
21201
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema;
|
|
21202
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
21203
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema;
|
|
20889
21204
|
exports.requestAccessToTeamPathTeamIdSchema = requestAccessToTeamPathTeamIdSchema;
|
|
20890
21205
|
exports.requestAccessToTeamResponseSchema = requestAccessToTeamResponseSchema;
|
|
20891
21206
|
exports.requestAccessToTeamStatus200Schema = requestAccessToTeamStatus200Schema;
|