vercel-api-js 1.7.1 → 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/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 EdgeConfig.");
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 EdgeConfig.");
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({
@@ -11639,6 +11812,7 @@ const createConnectorStatus403Schema = z__namespace.unknown();
11639
11812
  const createConnectorStatus404Schema = z__namespace.unknown();
11640
11813
  const createConnectorStatus409Schema = z__namespace.unknown();
11641
11814
  const createConnectorStatus410Schema = z__namespace.unknown();
11815
+ const createConnectorStatus422Schema = z__namespace.unknown();
11642
11816
  const createConnectorStatus502Schema = z__namespace.unknown();
11643
11817
  const createConnectorResponseSchema = z__namespace.union([
11644
11818
  createConnectorStatus201Schema,
@@ -11648,6 +11822,7 @@ const createConnectorResponseSchema = z__namespace.union([
11648
11822
  createConnectorStatus404Schema,
11649
11823
  createConnectorStatus409Schema,
11650
11824
  createConnectorStatus410Schema,
11825
+ createConnectorStatus422Schema,
11651
11826
  createConnectorStatus502Schema
11652
11827
  ]);
11653
11828
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
@@ -14232,43 +14407,43 @@ const deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperi
14232
14407
  deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema,
14233
14408
  deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema
14234
14409
  ]);
14235
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
14236
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = z__namespace.string();
14237
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = z__namespace.unknown();
14238
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema = z__namespace.unknown();
14239
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = z__namespace.unknown();
14240
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = z__namespace.unknown();
14241
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = z__namespace.unknown();
14242
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = z__namespace.unknown();
14243
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = z__namespace.unknown();
14244
- const getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = z__namespace.union([
14245
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema,
14246
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema,
14247
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema,
14248
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema,
14249
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema,
14250
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema,
14251
- getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema
14252
- ]);
14253
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = z__namespace.string();
14254
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = z__namespace.string();
14255
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = z__namespace.unknown();
14256
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = z__namespace.unknown();
14257
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = z__namespace.unknown();
14258
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = z__namespace.unknown();
14259
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = z__namespace.unknown();
14260
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema = z__namespace.unknown();
14261
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = z__namespace.unknown();
14262
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema = z__namespace.unknown();
14263
- const replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = z__namespace.union([
14264
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema,
14265
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema,
14266
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema,
14267
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema,
14268
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema,
14269
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema,
14270
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema,
14271
- replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema
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
14272
14447
  ]);
14273
14448
  const getMicrofrontendsGroupsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
14274
14449
  const getMicrofrontendsGroupsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -16426,7 +16601,7 @@ const getSecurityFirewallEventsResponseSchema = z__namespace.union([
16426
16601
  getSecurityFirewallEventsStatus410Schema,
16427
16602
  getSecurityFirewallEventsStatus500Schema
16428
16603
  ]);
16429
- const generateFirewallRuleQueryProjectIdSchema = z__namespace.string();
16604
+ const generateFirewallRuleQueryProjectIdSchema = z__namespace.string().optional();
16430
16605
  const generateFirewallRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
16431
16606
  const generateFirewallRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
16432
16607
  const generateFirewallRuleStatus200Schema = z__namespace.unknown();
@@ -17927,6 +18102,7 @@ exports.createConnectorStatus403Schema = createConnectorStatus403Schema;
17927
18102
  exports.createConnectorStatus404Schema = createConnectorStatus404Schema;
17928
18103
  exports.createConnectorStatus409Schema = createConnectorStatus409Schema;
17929
18104
  exports.createConnectorStatus410Schema = createConnectorStatus410Schema;
18105
+ exports.createConnectorStatus422Schema = createConnectorStatus422Schema;
17930
18106
  exports.createConnectorStatus502Schema = createConnectorStatus502Schema;
17931
18107
  exports.createCustomEnvironmentPathIdOrNameSchema = createCustomEnvironmentPathIdOrNameSchema;
17932
18108
  exports.createCustomEnvironmentQuerySlugSchema = createCustomEnvironmentQuerySlugSchema;
@@ -19448,16 +19624,16 @@ exports.getFlagStatus402Schema = getFlagStatus402Schema;
19448
19624
  exports.getFlagStatus403Schema = getFlagStatus403Schema;
19449
19625
  exports.getFlagStatus404Schema = getFlagStatus404Schema;
19450
19626
  exports.getFlagStatus410Schema = getFlagStatus410Schema;
19451
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema;
19452
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema;
19453
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema;
19454
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema;
19455
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus304Schema;
19456
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema;
19457
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema;
19458
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema;
19459
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema;
19460
- exports.getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema;
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;
19461
19637
  exports.getIntegrationLogDrainsQuerySlugSchema = getIntegrationLogDrainsQuerySlugSchema;
19462
19638
  exports.getIntegrationLogDrainsQueryTeamIdSchema = getIntegrationLogDrainsQueryTeamIdSchema;
19463
19639
  exports.getIntegrationLogDrainsResponseSchema = getIntegrationLogDrainsResponseSchema;
@@ -20872,17 +21048,17 @@ exports.replaceDomainsByDomainRecordsStatus404Schema = replaceDomainsByDomainRec
20872
21048
  exports.replaceDomainsByDomainRecordsStatus409Schema = replaceDomainsByDomainRecordsStatus409Schema;
20873
21049
  exports.replaceDomainsByDomainRecordsStatus410Schema = replaceDomainsByDomainRecordsStatus410Schema;
20874
21050
  exports.replaceDomainsByDomainRecordsStatus415Schema = replaceDomainsByDomainRecordsStatus415Schema;
20875
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathIntegrationConfigurationIdSchema;
20876
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigPathResourceIdSchema;
20877
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigResponseSchema;
20878
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus200Schema;
20879
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus400Schema;
20880
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus401Schema;
20881
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus403Schema;
20882
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus404Schema;
20883
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus409Schema;
20884
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus410Schema;
20885
- exports.replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema = replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationEdgeConfigStatus412Schema;
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;
20886
21062
  exports.requestAccessToTeamPathTeamIdSchema = requestAccessToTeamPathTeamIdSchema;
20887
21063
  exports.requestAccessToTeamResponseSchema = requestAccessToTeamResponseSchema;
20888
21064
  exports.requestAccessToTeamStatus200Schema = requestAccessToTeamStatus200Schema;