vercel-api-js 1.7.2 → 1.8.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.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 +429 -206
- package/dist/index.d.ts +618 -229
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +406 -186
- package/dist/schemas.cjs +236 -63
- package/dist/schemas.d.mts +198 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +216 -43
- package/dist/types.cjs +66 -0
- package/dist/types.d.mts +303 -71
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +64 -1
- 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",
|
|
@@ -931,6 +934,7 @@ const userEventSchema = z__namespace.object({
|
|
|
931
934
|
"subscription-product-removed",
|
|
932
935
|
"subscription-updated",
|
|
933
936
|
"team",
|
|
937
|
+
"team-agent-billing-migration-decision-changed",
|
|
934
938
|
"team-avatar-update",
|
|
935
939
|
"team-collaboration-settings-updated",
|
|
936
940
|
"team-default-build-machine-updated",
|
|
@@ -1274,6 +1278,51 @@ const userEventSchema = z__namespace.object({
|
|
|
1274
1278
|
"set"
|
|
1275
1279
|
])
|
|
1276
1280
|
}).strict(),
|
|
1281
|
+
z__namespace.object({
|
|
1282
|
+
scopeType: z__namespace.enum([
|
|
1283
|
+
"api-key",
|
|
1284
|
+
"project",
|
|
1285
|
+
"team"
|
|
1286
|
+
]),
|
|
1287
|
+
budget: z__namespace.object({
|
|
1288
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
1289
|
+
refreshPeriod: z__namespace.enum([
|
|
1290
|
+
"daily",
|
|
1291
|
+
"monthly",
|
|
1292
|
+
"none",
|
|
1293
|
+
"weekly"
|
|
1294
|
+
])
|
|
1295
|
+
}).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`."),
|
|
1296
|
+
change: z__namespace.enum([
|
|
1297
|
+
"disable",
|
|
1298
|
+
"enable",
|
|
1299
|
+
"remove",
|
|
1300
|
+
"set"
|
|
1301
|
+
])
|
|
1302
|
+
}).strict(),
|
|
1303
|
+
z__namespace.object({
|
|
1304
|
+
scopeType: z__namespace.enum([
|
|
1305
|
+
"project",
|
|
1306
|
+
"team"
|
|
1307
|
+
]),
|
|
1308
|
+
projectId: z__namespace.string().optional().describe("Associates the event with a project for filtering; not rendered."),
|
|
1309
|
+
projectName: z__namespace.string().optional(),
|
|
1310
|
+
budget: z__namespace.object({
|
|
1311
|
+
limitAmount: z__namespace.number().describe("Spend cap, in dollars."),
|
|
1312
|
+
refreshPeriod: z__namespace.enum([
|
|
1313
|
+
"daily",
|
|
1314
|
+
"monthly",
|
|
1315
|
+
"none",
|
|
1316
|
+
"weekly"
|
|
1317
|
+
])
|
|
1318
|
+
}).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`."),
|
|
1319
|
+
change: z__namespace.enum([
|
|
1320
|
+
"disable",
|
|
1321
|
+
"enable",
|
|
1322
|
+
"remove",
|
|
1323
|
+
"set"
|
|
1324
|
+
])
|
|
1325
|
+
}).strict(),
|
|
1277
1326
|
z__namespace.object({
|
|
1278
1327
|
credential: z__namespace.object({
|
|
1279
1328
|
id: z__namespace.string(),
|
|
@@ -2073,6 +2122,15 @@ const userEventSchema = z__namespace.object({
|
|
|
2073
2122
|
title: z__namespace.string(),
|
|
2074
2123
|
fingerprint: z__namespace.string()
|
|
2075
2124
|
}).strict(),
|
|
2125
|
+
z__namespace.object({
|
|
2126
|
+
count: z__namespace.number(),
|
|
2127
|
+
documents: z__namespace.array(z__namespace.object({
|
|
2128
|
+
slug: z__namespace.string(),
|
|
2129
|
+
documentId: z__namespace.string(),
|
|
2130
|
+
title: z__namespace.string(),
|
|
2131
|
+
fingerprint: z__namespace.string()
|
|
2132
|
+
}))
|
|
2133
|
+
}).strict(),
|
|
2076
2134
|
z__namespace.object({
|
|
2077
2135
|
configuration: z__namespace.object({
|
|
2078
2136
|
id: z__namespace.string(),
|
|
@@ -3772,6 +3830,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3772
3830
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
3773
3831
|
"EXPOSURE_CAP_EXCEEDED",
|
|
3774
3832
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
3833
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
3775
3834
|
"SUBSCRIPTION_CANCELED",
|
|
3776
3835
|
"SUBSCRIPTION_EXPIRED",
|
|
3777
3836
|
"UNPAID_INVOICE"
|
|
@@ -3816,7 +3875,56 @@ const userEventSchema = z__namespace.object({
|
|
|
3816
3875
|
"wafOwaspRequests",
|
|
3817
3876
|
"wafRateLimitRequest",
|
|
3818
3877
|
"webAnalyticsEvent"
|
|
3819
|
-
]).optional()
|
|
3878
|
+
]).optional(),
|
|
3879
|
+
hobbyAllocationPause: z__namespace.object({
|
|
3880
|
+
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."),
|
|
3881
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
3882
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
3883
|
+
allocation: z__namespace.enum([
|
|
3884
|
+
"analyticsUsage",
|
|
3885
|
+
"artifacts",
|
|
3886
|
+
"bandwidth",
|
|
3887
|
+
"blobDataTransfer",
|
|
3888
|
+
"blobTotalAdvancedRequests",
|
|
3889
|
+
"blobTotalAvgSizeInBytes",
|
|
3890
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
3891
|
+
"blobTotalSimpleRequests",
|
|
3892
|
+
"connectDataTransfer",
|
|
3893
|
+
"dataCacheRead",
|
|
3894
|
+
"dataCacheWrite",
|
|
3895
|
+
"edgeConfigRead",
|
|
3896
|
+
"edgeConfigWrite",
|
|
3897
|
+
"edgeFunctionExecutionUnits",
|
|
3898
|
+
"edgeMiddlewareInvocations",
|
|
3899
|
+
"edgeRequest",
|
|
3900
|
+
"edgeRequestAdditionalCpuDuration",
|
|
3901
|
+
"elasticConcurrencyBuildSlots",
|
|
3902
|
+
"fastDataTransfer",
|
|
3903
|
+
"fastOriginTransfer",
|
|
3904
|
+
"fluidCpuDuration",
|
|
3905
|
+
"fluidDuration",
|
|
3906
|
+
"functionDuration",
|
|
3907
|
+
"functionInvocation",
|
|
3908
|
+
"imageOptimizationCacheRead",
|
|
3909
|
+
"imageOptimizationCacheWrite",
|
|
3910
|
+
"imageOptimizationTransformation",
|
|
3911
|
+
"logDrainsVolume",
|
|
3912
|
+
"monitoringMetric",
|
|
3913
|
+
"observabilityEvent",
|
|
3914
|
+
"onDemandConcurrencyMinutes",
|
|
3915
|
+
"runtimeCacheRead",
|
|
3916
|
+
"runtimeCacheWrite",
|
|
3917
|
+
"serverlessFunctionExecution",
|
|
3918
|
+
"sourceImages",
|
|
3919
|
+
"wafOwaspExcessBytes",
|
|
3920
|
+
"wafOwaspRequests",
|
|
3921
|
+
"wafRateLimitRequest",
|
|
3922
|
+
"webAnalyticsEvent"
|
|
3923
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
3924
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
3925
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
3926
|
+
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.")
|
|
3927
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
3820
3928
|
}).nullish(),
|
|
3821
3929
|
stagingPrefix: z__namespace.string(),
|
|
3822
3930
|
sysToken: z__namespace.string(),
|
|
@@ -7073,6 +7181,13 @@ const userEventSchema = z__namespace.object({
|
|
|
7073
7181
|
z__namespace.object({
|
|
7074
7182
|
name: z__namespace.string().optional()
|
|
7075
7183
|
}).strict(),
|
|
7184
|
+
z__namespace.object({
|
|
7185
|
+
decision: z__namespace.enum([
|
|
7186
|
+
"keep_on",
|
|
7187
|
+
"turn_off"
|
|
7188
|
+
]),
|
|
7189
|
+
version: z__namespace.string()
|
|
7190
|
+
}).strict(),
|
|
7076
7191
|
z__namespace.object({
|
|
7077
7192
|
consent: z__namespace.enum([
|
|
7078
7193
|
"granted",
|
|
@@ -7660,6 +7775,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7660
7775
|
"ai-gateway-api-key-created",
|
|
7661
7776
|
"ai-gateway-api-key-deleted",
|
|
7662
7777
|
"ai-gateway-api-key-quota-updated",
|
|
7778
|
+
"ai-gateway-budget-default-updated",
|
|
7663
7779
|
"ai-gateway-byok-credential-created",
|
|
7664
7780
|
"ai-gateway-byok-credential-deleted",
|
|
7665
7781
|
"ai-gateway-byok-credential-updated",
|
|
@@ -7677,6 +7793,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7677
7793
|
"ai-gateway-rule-created",
|
|
7678
7794
|
"ai-gateway-rule-deleted",
|
|
7679
7795
|
"ai-gateway-rule-updated",
|
|
7796
|
+
"ai-gateway-scope-budget-updated",
|
|
7680
7797
|
"ai-gateway-virtual-model-config-archived",
|
|
7681
7798
|
"ai-gateway-virtual-model-config-created",
|
|
7682
7799
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -7722,6 +7839,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
7722
7839
|
"cert-system-create",
|
|
7723
7840
|
"code-owners-config-updated",
|
|
7724
7841
|
"compliance-document-downloaded",
|
|
7842
|
+
"compliance-documents-bulk-downloaded",
|
|
7725
7843
|
"concurrent-builds-update",
|
|
7726
7844
|
"connect-attach-project",
|
|
7727
7845
|
"connect-bitbucket",
|
|
@@ -8120,6 +8238,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8120
8238
|
"subscription-product-removed",
|
|
8121
8239
|
"subscription-updated",
|
|
8122
8240
|
"team",
|
|
8241
|
+
"team-agent-billing-migration-decision-changed",
|
|
8123
8242
|
"team-avatar-update",
|
|
8124
8243
|
"team-collaboration-settings-updated",
|
|
8125
8244
|
"team-default-build-machine-updated",
|
|
@@ -8264,6 +8383,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8264
8383
|
"ai-gateway-api-key-created",
|
|
8265
8384
|
"ai-gateway-api-key-deleted",
|
|
8266
8385
|
"ai-gateway-api-key-quota-updated",
|
|
8386
|
+
"ai-gateway-budget-default-updated",
|
|
8267
8387
|
"ai-gateway-byok-credential-created",
|
|
8268
8388
|
"ai-gateway-byok-credential-deleted",
|
|
8269
8389
|
"ai-gateway-byok-credential-updated",
|
|
@@ -8281,6 +8401,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8281
8401
|
"ai-gateway-rule-created",
|
|
8282
8402
|
"ai-gateway-rule-deleted",
|
|
8283
8403
|
"ai-gateway-rule-updated",
|
|
8404
|
+
"ai-gateway-scope-budget-updated",
|
|
8284
8405
|
"ai-gateway-virtual-model-config-archived",
|
|
8285
8406
|
"ai-gateway-virtual-model-config-created",
|
|
8286
8407
|
"ai-gateway-virtual-model-config-restored",
|
|
@@ -8326,6 +8447,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8326
8447
|
"cert-system-create",
|
|
8327
8448
|
"code-owners-config-updated",
|
|
8328
8449
|
"compliance-document-downloaded",
|
|
8450
|
+
"compliance-documents-bulk-downloaded",
|
|
8329
8451
|
"concurrent-builds-update",
|
|
8330
8452
|
"connect-attach-project",
|
|
8331
8453
|
"connect-bitbucket",
|
|
@@ -8724,6 +8846,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8724
8846
|
"subscription-product-removed",
|
|
8725
8847
|
"subscription-updated",
|
|
8726
8848
|
"team",
|
|
8849
|
+
"team-agent-billing-migration-decision-changed",
|
|
8727
8850
|
"team-avatar-update",
|
|
8728
8851
|
"team-collaboration-settings-updated",
|
|
8729
8852
|
"team-default-build-machine-updated",
|
|
@@ -10198,6 +10321,7 @@ const authUserSchema = z__namespace.object({
|
|
|
10198
10321
|
"ENTERPRISE_UNPAID_INVOICE",
|
|
10199
10322
|
"EXPOSURE_CAP_EXCEEDED",
|
|
10200
10323
|
"FAIR_USE_LIMITS_EXCEEDED",
|
|
10324
|
+
"HOBBY_ALLOCATION_PAUSED",
|
|
10201
10325
|
"SUBSCRIPTION_CANCELED",
|
|
10202
10326
|
"SUBSCRIPTION_EXPIRED",
|
|
10203
10327
|
"UNPAID_INVOICE"
|
|
@@ -10242,7 +10366,56 @@ const authUserSchema = z__namespace.object({
|
|
|
10242
10366
|
"wafOwaspRequests",
|
|
10243
10367
|
"wafRateLimitRequest",
|
|
10244
10368
|
"webAnalyticsEvent"
|
|
10245
|
-
]).optional()
|
|
10369
|
+
]).optional(),
|
|
10370
|
+
hobbyAllocationPause: z__namespace.object({
|
|
10371
|
+
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."),
|
|
10372
|
+
pausedAt: z__namespace.number().describe("Unix ms timestamp of when the pause was applied."),
|
|
10373
|
+
triggers: z__namespace.array(z__namespace.object({
|
|
10374
|
+
allocation: z__namespace.enum([
|
|
10375
|
+
"analyticsUsage",
|
|
10376
|
+
"artifacts",
|
|
10377
|
+
"bandwidth",
|
|
10378
|
+
"blobDataTransfer",
|
|
10379
|
+
"blobTotalAdvancedRequests",
|
|
10380
|
+
"blobTotalAvgSizeInBytes",
|
|
10381
|
+
"blobTotalGetResponseObjectSizeInBytes",
|
|
10382
|
+
"blobTotalSimpleRequests",
|
|
10383
|
+
"connectDataTransfer",
|
|
10384
|
+
"dataCacheRead",
|
|
10385
|
+
"dataCacheWrite",
|
|
10386
|
+
"edgeConfigRead",
|
|
10387
|
+
"edgeConfigWrite",
|
|
10388
|
+
"edgeFunctionExecutionUnits",
|
|
10389
|
+
"edgeMiddlewareInvocations",
|
|
10390
|
+
"edgeRequest",
|
|
10391
|
+
"edgeRequestAdditionalCpuDuration",
|
|
10392
|
+
"elasticConcurrencyBuildSlots",
|
|
10393
|
+
"fastDataTransfer",
|
|
10394
|
+
"fastOriginTransfer",
|
|
10395
|
+
"fluidCpuDuration",
|
|
10396
|
+
"fluidDuration",
|
|
10397
|
+
"functionDuration",
|
|
10398
|
+
"functionInvocation",
|
|
10399
|
+
"imageOptimizationCacheRead",
|
|
10400
|
+
"imageOptimizationCacheWrite",
|
|
10401
|
+
"imageOptimizationTransformation",
|
|
10402
|
+
"logDrainsVolume",
|
|
10403
|
+
"monitoringMetric",
|
|
10404
|
+
"observabilityEvent",
|
|
10405
|
+
"onDemandConcurrencyMinutes",
|
|
10406
|
+
"runtimeCacheRead",
|
|
10407
|
+
"runtimeCacheWrite",
|
|
10408
|
+
"serverlessFunctionExecution",
|
|
10409
|
+
"sourceImages",
|
|
10410
|
+
"wafOwaspExcessBytes",
|
|
10411
|
+
"wafOwaspRequests",
|
|
10412
|
+
"wafRateLimitRequest",
|
|
10413
|
+
"webAnalyticsEvent"
|
|
10414
|
+
]).describe("Metered allocation whose included amount was fully consumed."),
|
|
10415
|
+
usage: z__namespace.number().describe("Usage recorded for that allocation when the pause was applied.")
|
|
10416
|
+
})).describe("Allocations that were at or over 100% when the pause was applied."),
|
|
10417
|
+
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.")
|
|
10418
|
+
}).optional().describe("Present only when `reason` is `HOBBY_ALLOCATION_PAUSED`. Makes the pause self-describing for support without a separate lookup.")
|
|
10246
10419
|
}).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
10420
|
billing: z__namespace.object({}).nullable().describe("An object containing billing infomation associated with the User account."),
|
|
10248
10421
|
resourceConfig: z__namespace.object({
|
|
@@ -14234,43 +14407,43 @@ const deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperi
|
|
|
14234
14407
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema,
|
|
14235
14408
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema
|
|
14236
14409
|
]);
|
|
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
|
-
|
|
14410
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
14411
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
14412
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
14413
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = z__namespace.unknown();
|
|
14414
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
14415
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
14416
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
14417
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
14418
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
14419
|
+
const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
14420
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
14421
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema,
|
|
14422
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
14423
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
14424
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
14425
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
14426
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema
|
|
14427
|
+
]);
|
|
14428
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
14429
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = z__namespace.string();
|
|
14430
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = z__namespace.unknown();
|
|
14431
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = z__namespace.unknown();
|
|
14432
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = z__namespace.unknown();
|
|
14433
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = z__namespace.unknown();
|
|
14434
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = z__namespace.unknown();
|
|
14435
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = z__namespace.unknown();
|
|
14436
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = z__namespace.unknown();
|
|
14437
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = z__namespace.unknown();
|
|
14438
|
+
const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = z__namespace.union([
|
|
14439
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema,
|
|
14440
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema,
|
|
14441
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema,
|
|
14442
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema,
|
|
14443
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema,
|
|
14444
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema,
|
|
14445
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema,
|
|
14446
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema
|
|
14274
14447
|
]);
|
|
14275
14448
|
const getMicrofrontendsGroupsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
14276
14449
|
const getMicrofrontendsGroupsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
@@ -16428,7 +16601,7 @@ const getSecurityFirewallEventsResponseSchema = z__namespace.union([
|
|
|
16428
16601
|
getSecurityFirewallEventsStatus410Schema,
|
|
16429
16602
|
getSecurityFirewallEventsStatus500Schema
|
|
16430
16603
|
]);
|
|
16431
|
-
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string();
|
|
16604
|
+
const generateFirewallRuleQueryProjectIdSchema = z__namespace.string().optional();
|
|
16432
16605
|
const generateFirewallRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
16433
16606
|
const generateFirewallRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
16434
16607
|
const generateFirewallRuleStatus200Schema = z__namespace.unknown();
|
|
@@ -19451,16 +19624,16 @@ exports.getFlagStatus402Schema = getFlagStatus402Schema;
|
|
|
19451
19624
|
exports.getFlagStatus403Schema = getFlagStatus403Schema;
|
|
19452
19625
|
exports.getFlagStatus404Schema = getFlagStatus404Schema;
|
|
19453
19626
|
exports.getFlagStatus410Schema = getFlagStatus410Schema;
|
|
19454
|
-
exports.
|
|
19455
|
-
exports.
|
|
19456
|
-
exports.
|
|
19457
|
-
exports.
|
|
19458
|
-
exports.
|
|
19459
|
-
exports.
|
|
19460
|
-
exports.
|
|
19461
|
-
exports.
|
|
19462
|
-
exports.
|
|
19463
|
-
exports.
|
|
19627
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
19628
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
19629
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
19630
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
19631
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema;
|
|
19632
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
19633
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
19634
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
19635
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
19636
|
+
exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
19464
19637
|
exports.getIntegrationLogDrainsQuerySlugSchema = getIntegrationLogDrainsQuerySlugSchema;
|
|
19465
19638
|
exports.getIntegrationLogDrainsQueryTeamIdSchema = getIntegrationLogDrainsQueryTeamIdSchema;
|
|
19466
19639
|
exports.getIntegrationLogDrainsResponseSchema = getIntegrationLogDrainsResponseSchema;
|
|
@@ -20875,17 +21048,17 @@ exports.replaceDomainsByDomainRecordsStatus404Schema = replaceDomainsByDomainRec
|
|
|
20875
21048
|
exports.replaceDomainsByDomainRecordsStatus409Schema = replaceDomainsByDomainRecordsStatus409Schema;
|
|
20876
21049
|
exports.replaceDomainsByDomainRecordsStatus410Schema = replaceDomainsByDomainRecordsStatus410Schema;
|
|
20877
21050
|
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.
|
|
21051
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema;
|
|
21052
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema;
|
|
21053
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema;
|
|
21054
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema;
|
|
21055
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema;
|
|
21056
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema;
|
|
21057
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema;
|
|
21058
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema;
|
|
21059
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema;
|
|
21060
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema;
|
|
21061
|
+
exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema;
|
|
20889
21062
|
exports.requestAccessToTeamPathTeamIdSchema = requestAccessToTeamPathTeamIdSchema;
|
|
20890
21063
|
exports.requestAccessToTeamResponseSchema = requestAccessToTeamResponseSchema;
|
|
20891
21064
|
exports.requestAccessToTeamStatus200Schema = requestAccessToTeamStatus200Schema;
|