vercel-api-js 1.11.0 → 1.13.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-bvvdngtm.js → components-eqgrkxe2.js} +99 -11
- package/dist/{components-nlsfs355.cjs → components-j923ydcw.cjs} +104 -12
- package/dist/components.cjs +7 -3
- package/dist/components.d.mts +79 -9
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +13 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +87 -39
- package/dist/index.d.ts +1035 -354
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-i84xmv7o.js → schemas-kwntyl9n.js} +334 -134
- package/dist/{schemas-b886m3zr.cjs → schemas-nxmmau12.cjs} +417 -163
- package/dist/schemas.cjs +85 -31
- package/dist/schemas.d.mts +257 -109
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +35 -51
- package/dist/types.d.mts +695 -236
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +35 -45
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ function _interopNamespace(e) {
|
|
|
21
21
|
var z__namespace = /*#__PURE__*/_interopNamespace(z);
|
|
22
22
|
|
|
23
23
|
// @ts-nocheck
|
|
24
|
+
const aiGatewayProviderOptionBagSchema = z__namespace.object({}).catchall(z__namespace.unknown()).describe("Arbitrary per-provider AI SDK options, keyed by gateway provider slug.");
|
|
24
25
|
const aiGatewayVirtualModelConfigSchema = z__namespace.object({
|
|
25
26
|
ownerId: z__namespace.string().describe("Team (owner) that owns this VMC."),
|
|
26
27
|
virtualModelSlug: z__namespace.string().describe("Client-facing alias used as the model slug in Gateway calls."),
|
|
@@ -38,6 +39,7 @@ const aiGatewayVirtualModelConfigSchema = z__namespace.object({
|
|
|
38
39
|
instanceId: z__namespace.string().optional().describe("The concrete model-provider instance this VMC resolves to."),
|
|
39
40
|
providerOrder: z__namespace.array(z__namespace.string()).optional().describe("Ordered list of providers to try as fallbacks on failure."),
|
|
40
41
|
providerOnly: z__namespace.array(z__namespace.string()).optional().describe("Restrict routing to only these providers."),
|
|
42
|
+
providerOptions: z__namespace.object({}).catchall(z__namespace.unknown()).optional().describe("Arbitrary per-provider AI SDK options, keyed by gateway provider slug."),
|
|
41
43
|
inferenceRegion: z__namespace.object({
|
|
42
44
|
providers: z__namespace.object({}).catchall(z__namespace.object({
|
|
43
45
|
scope: z__namespace.enum([
|
|
@@ -573,10 +575,12 @@ const userEventSchema = z__namespace.object({
|
|
|
573
575
|
"ai-gateway-api-key-created",
|
|
574
576
|
"ai-gateway-api-key-deleted",
|
|
575
577
|
"ai-gateway-api-key-quota-updated",
|
|
578
|
+
"ai-gateway-auto-reload-updated",
|
|
576
579
|
"ai-gateway-budget-default-updated",
|
|
577
580
|
"ai-gateway-byok-credential-created",
|
|
578
581
|
"ai-gateway-byok-credential-deleted",
|
|
579
582
|
"ai-gateway-byok-credential-updated",
|
|
583
|
+
"ai-gateway-credits-purchased",
|
|
580
584
|
"ai-gateway-guardrails-updated",
|
|
581
585
|
"ai-gateway-model-allowlist-models-updated",
|
|
582
586
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -763,6 +767,9 @@ const userEventSchema = z__namespace.object({
|
|
|
763
767
|
"env-variable-read:unknown-source",
|
|
764
768
|
"env-variable-read:v0:env:pull",
|
|
765
769
|
"env-variable-rotated",
|
|
770
|
+
"experiment-created",
|
|
771
|
+
"experiment-transitioned",
|
|
772
|
+
"experiment-updated",
|
|
766
773
|
"firewall-bypass-created",
|
|
767
774
|
"firewall-bypass-deleted",
|
|
768
775
|
"firewall-config-modified",
|
|
@@ -787,6 +794,7 @@ const userEventSchema = z__namespace.object({
|
|
|
787
794
|
"git-integration-repo-push",
|
|
788
795
|
"git_account_integration_link_added",
|
|
789
796
|
"instant-rollback-created",
|
|
797
|
+
"integration-configuration-credential-rotated",
|
|
790
798
|
"integration-configuration-owner-changed",
|
|
791
799
|
"integration-configuration-scope-change-confirmed",
|
|
792
800
|
"integration-configuration-transfer-in-success",
|
|
@@ -1294,6 +1302,18 @@ const userEventSchema = z__namespace.object({
|
|
|
1294
1302
|
projectId: z__namespace.string(),
|
|
1295
1303
|
projectName: z__namespace.string().optional()
|
|
1296
1304
|
}).strict(),
|
|
1305
|
+
z__namespace.object({
|
|
1306
|
+
action: z__namespace.enum([
|
|
1307
|
+
"created",
|
|
1308
|
+
"transitioned",
|
|
1309
|
+
"updated"
|
|
1310
|
+
]),
|
|
1311
|
+
id: z__namespace.string(),
|
|
1312
|
+
name: z__namespace.string(),
|
|
1313
|
+
state: z__namespace.string(),
|
|
1314
|
+
projectId: z__namespace.string(),
|
|
1315
|
+
projectName: z__namespace.string().optional()
|
|
1316
|
+
}).strict(),
|
|
1297
1317
|
z__namespace.object({
|
|
1298
1318
|
action: z__namespace.enum([
|
|
1299
1319
|
"added",
|
|
@@ -1446,6 +1466,29 @@ const userEventSchema = z__namespace.object({
|
|
|
1446
1466
|
"set"
|
|
1447
1467
|
])
|
|
1448
1468
|
}).strict(),
|
|
1469
|
+
z__namespace.object({
|
|
1470
|
+
change: z__namespace.enum([
|
|
1471
|
+
"disable",
|
|
1472
|
+
"disable-commitment",
|
|
1473
|
+
"enable",
|
|
1474
|
+
"enable-commitment",
|
|
1475
|
+
"update"
|
|
1476
|
+
]),
|
|
1477
|
+
settings: z__namespace.object({
|
|
1478
|
+
minimumBalance: z__namespace.string(),
|
|
1479
|
+
targetBalance: z__namespace.string(),
|
|
1480
|
+
maximumMonthlySpend: z__namespace.string().nullable()
|
|
1481
|
+
}).optional(),
|
|
1482
|
+
previous: z__namespace.object({
|
|
1483
|
+
minimumBalance: z__namespace.string(),
|
|
1484
|
+
targetBalance: z__namespace.string(),
|
|
1485
|
+
maximumMonthlySpend: z__namespace.string().nullable()
|
|
1486
|
+
}).optional(),
|
|
1487
|
+
commitment: z__namespace.object({
|
|
1488
|
+
maximumMonthlySpend: z__namespace.string().nullable(),
|
|
1489
|
+
deferredInvoiceTargetBalance: z__namespace.string()
|
|
1490
|
+
}).optional()
|
|
1491
|
+
}).strict(),
|
|
1449
1492
|
z__namespace.object({
|
|
1450
1493
|
scopeType: z__namespace.enum([
|
|
1451
1494
|
"api-key",
|
|
@@ -1498,6 +1541,10 @@ const userEventSchema = z__namespace.object({
|
|
|
1498
1541
|
providerSlug: z__namespace.string()
|
|
1499
1542
|
})
|
|
1500
1543
|
}).strict(),
|
|
1544
|
+
z__namespace.object({
|
|
1545
|
+
amount: z__namespace.string(),
|
|
1546
|
+
purchaseIntentId: z__namespace.string()
|
|
1547
|
+
}).strict(),
|
|
1501
1548
|
z__namespace.object({
|
|
1502
1549
|
enabled: z__namespace.union([
|
|
1503
1550
|
z__namespace.literal(false),
|
|
@@ -3542,7 +3589,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3542
3589
|
z__namespace.object({
|
|
3543
3590
|
edgeConfigId: z__namespace.string(),
|
|
3544
3591
|
edgeConfigSlug: z__namespace.string(),
|
|
3545
|
-
|
|
3592
|
+
globalConfigSchema: z__namespace.object({}).optional()
|
|
3546
3593
|
}).strict(),
|
|
3547
3594
|
z__namespace.object({
|
|
3548
3595
|
edgeConfigId: z__namespace.string(),
|
|
@@ -3915,6 +3962,12 @@ const userEventSchema = z__namespace.object({
|
|
|
3915
3962
|
projectName: z__namespace.string(),
|
|
3916
3963
|
reason: z__namespace.string().optional()
|
|
3917
3964
|
}).strict(),
|
|
3965
|
+
z__namespace.object({
|
|
3966
|
+
integrationId: z__namespace.string(),
|
|
3967
|
+
configurationId: z__namespace.string(),
|
|
3968
|
+
integrationSlug: z__namespace.string(),
|
|
3969
|
+
integrationName: z__namespace.string()
|
|
3970
|
+
}).strict(),
|
|
3918
3971
|
z__namespace.object({
|
|
3919
3972
|
userId: z__namespace.string(),
|
|
3920
3973
|
integrationId: z__namespace.string(),
|
|
@@ -4621,6 +4674,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4621
4674
|
increasedOnDemandEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
|
|
4622
4675
|
increasedOnDemandEmailAttemptedAt: z__namespace.number().optional().describe("Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day.")
|
|
4623
4676
|
}).optional().describe("Contains the timestamps for usage summary emails."),
|
|
4677
|
+
speedInsightsFreeUsageAlert: z__namespace.object({
|
|
4678
|
+
currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
|
|
4679
|
+
notifiedAt: z__namespace.number().describe("When the notification for `currentThreshold` was sent.")
|
|
4680
|
+
}).optional().describe("Tracks notifications sent for the team-wide Speed Insights free allocation. The allocation is measured over a rolling window (not a billing period), so deduplication is time-based rather than reset at period start."),
|
|
4624
4681
|
username: z__namespace.string(),
|
|
4625
4682
|
updatedAt: z__namespace.number(),
|
|
4626
4683
|
enablePreviewFeedback: z__namespace.enum([
|
|
@@ -4940,7 +4997,17 @@ const userEventSchema = z__namespace.object({
|
|
|
4940
4997
|
"hard_blocked",
|
|
4941
4998
|
"limits_exceeded"
|
|
4942
4999
|
])
|
|
4943
|
-
}).optional()
|
|
5000
|
+
}).optional(),
|
|
5001
|
+
speedInsightsFree: z__namespace.object({
|
|
5002
|
+
updatedAt: z__namespace.number(),
|
|
5003
|
+
blockedFrom: z__namespace.number().optional(),
|
|
5004
|
+
blockedUntil: z__namespace.number().optional(),
|
|
5005
|
+
blockReason: z__namespace.enum([
|
|
5006
|
+
"admin_override",
|
|
5007
|
+
"hard_blocked",
|
|
5008
|
+
"limits_exceeded"
|
|
5009
|
+
])
|
|
5010
|
+
}).optional().describe("Pauses Speed Insights free data-point ingestion when the team-wide free allocation is exhausted. The block lasts at least 14 days and is extended while rolling usage stays above half of the allocation.")
|
|
4944
5011
|
}).optional().describe("Information about which features are blocked for a user. Blocks can be either soft (the user can still access the feature, but with a warning, e.g. prompting an upgrade) or hard (the user cannot access the feature at all)."),
|
|
4945
5012
|
defaultTeamId: z__namespace.string().optional(),
|
|
4946
5013
|
version: z__namespace.enum([
|
|
@@ -7536,6 +7603,23 @@ const userEventSchema = z__namespace.object({
|
|
|
7536
7603
|
"enhanced",
|
|
7537
7604
|
"standard",
|
|
7538
7605
|
"turbo"
|
|
7606
|
+
]).optional(),
|
|
7607
|
+
isSystemInitiated: z__namespace.union([
|
|
7608
|
+
z__namespace.literal(false),
|
|
7609
|
+
z__namespace.literal(true)
|
|
7610
|
+
]).optional(),
|
|
7611
|
+
reason: z__namespace.enum([
|
|
7612
|
+
"basic-floor",
|
|
7613
|
+
"build-timeout-failure",
|
|
7614
|
+
"enospc-failure",
|
|
7615
|
+
"enterprise-floor",
|
|
7616
|
+
"high-peak-disk",
|
|
7617
|
+
"high-peak-memory",
|
|
7618
|
+
"long-build-duration",
|
|
7619
|
+
"oom-failure",
|
|
7620
|
+
"plan-change",
|
|
7621
|
+
"short-build-duration",
|
|
7622
|
+
"sustained-high-cpu"
|
|
7539
7623
|
]).optional()
|
|
7540
7624
|
}).strict(),
|
|
7541
7625
|
z__namespace.object({
|
|
@@ -7752,6 +7836,64 @@ const userEventSchema = z__namespace.object({
|
|
|
7752
7836
|
}).optional(),
|
|
7753
7837
|
role: z__namespace.string().optional(),
|
|
7754
7838
|
previousRole: z__namespace.string(),
|
|
7839
|
+
previousTeamRoles: z__namespace.array(z__namespace.enum([
|
|
7840
|
+
"BILLING",
|
|
7841
|
+
"CONTRIBUTOR",
|
|
7842
|
+
"DEVELOPER",
|
|
7843
|
+
"MEMBER",
|
|
7844
|
+
"OWNER",
|
|
7845
|
+
"SECURITY",
|
|
7846
|
+
"VIEWER",
|
|
7847
|
+
"VIEWER_FOR_PLUS"
|
|
7848
|
+
])).optional(),
|
|
7849
|
+
teamRoles: z__namespace.array(z__namespace.enum([
|
|
7850
|
+
"BILLING",
|
|
7851
|
+
"CONTRIBUTOR",
|
|
7852
|
+
"DEVELOPER",
|
|
7853
|
+
"MEMBER",
|
|
7854
|
+
"OWNER",
|
|
7855
|
+
"SECURITY",
|
|
7856
|
+
"VIEWER",
|
|
7857
|
+
"VIEWER_FOR_PLUS"
|
|
7858
|
+
])).optional(),
|
|
7859
|
+
previousTeamPermissions: z__namespace.array(z__namespace.enum([
|
|
7860
|
+
"AiGatewayApiKeyOwnedBySelf",
|
|
7861
|
+
"AiGatewayBudgetManager",
|
|
7862
|
+
"AiGatewayCredits",
|
|
7863
|
+
"AiGatewaySettings",
|
|
7864
|
+
"ConnectorManager",
|
|
7865
|
+
"CreateProject",
|
|
7866
|
+
"EnvVariableManager",
|
|
7867
|
+
"EnvironmentManager",
|
|
7868
|
+
"FullProductionDeployment",
|
|
7869
|
+
"IntegrationManager",
|
|
7870
|
+
"OrgAdmin",
|
|
7871
|
+
"OrgViewer",
|
|
7872
|
+
"UsageViewer",
|
|
7873
|
+
"V0Builder",
|
|
7874
|
+
"V0Chatter",
|
|
7875
|
+
"V0Viewer",
|
|
7876
|
+
"WorkflowDecryptor"
|
|
7877
|
+
])).optional(),
|
|
7878
|
+
teamPermissions: z__namespace.array(z__namespace.enum([
|
|
7879
|
+
"AiGatewayApiKeyOwnedBySelf",
|
|
7880
|
+
"AiGatewayBudgetManager",
|
|
7881
|
+
"AiGatewayCredits",
|
|
7882
|
+
"AiGatewaySettings",
|
|
7883
|
+
"ConnectorManager",
|
|
7884
|
+
"CreateProject",
|
|
7885
|
+
"EnvVariableManager",
|
|
7886
|
+
"EnvironmentManager",
|
|
7887
|
+
"FullProductionDeployment",
|
|
7888
|
+
"IntegrationManager",
|
|
7889
|
+
"OrgAdmin",
|
|
7890
|
+
"OrgViewer",
|
|
7891
|
+
"UsageViewer",
|
|
7892
|
+
"V0Builder",
|
|
7893
|
+
"V0Chatter",
|
|
7894
|
+
"V0Viewer",
|
|
7895
|
+
"WorkflowDecryptor"
|
|
7896
|
+
])).optional(),
|
|
7755
7897
|
updatedUid: z__namespace.string().optional(),
|
|
7756
7898
|
origin: z__namespace.string().optional(),
|
|
7757
7899
|
teamSlug: z__namespace.string().optional()
|
|
@@ -8673,10 +8815,12 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8673
8815
|
"ai-gateway-api-key-created",
|
|
8674
8816
|
"ai-gateway-api-key-deleted",
|
|
8675
8817
|
"ai-gateway-api-key-quota-updated",
|
|
8818
|
+
"ai-gateway-auto-reload-updated",
|
|
8676
8819
|
"ai-gateway-budget-default-updated",
|
|
8677
8820
|
"ai-gateway-byok-credential-created",
|
|
8678
8821
|
"ai-gateway-byok-credential-deleted",
|
|
8679
8822
|
"ai-gateway-byok-credential-updated",
|
|
8823
|
+
"ai-gateway-credits-purchased",
|
|
8680
8824
|
"ai-gateway-guardrails-updated",
|
|
8681
8825
|
"ai-gateway-model-allowlist-models-updated",
|
|
8682
8826
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -8863,6 +9007,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8863
9007
|
"env-variable-read:unknown-source",
|
|
8864
9008
|
"env-variable-read:v0:env:pull",
|
|
8865
9009
|
"env-variable-rotated",
|
|
9010
|
+
"experiment-created",
|
|
9011
|
+
"experiment-transitioned",
|
|
9012
|
+
"experiment-updated",
|
|
8866
9013
|
"firewall-bypass-created",
|
|
8867
9014
|
"firewall-bypass-deleted",
|
|
8868
9015
|
"firewall-config-modified",
|
|
@@ -8887,6 +9034,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8887
9034
|
"git-integration-repo-push",
|
|
8888
9035
|
"git_account_integration_link_added",
|
|
8889
9036
|
"instant-rollback-created",
|
|
9037
|
+
"integration-configuration-credential-rotated",
|
|
8890
9038
|
"integration-configuration-owner-changed",
|
|
8891
9039
|
"integration-configuration-scope-change-confirmed",
|
|
8892
9040
|
"integration-configuration-transfer-in-success",
|
|
@@ -9337,10 +9485,12 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9337
9485
|
"ai-gateway-api-key-created",
|
|
9338
9486
|
"ai-gateway-api-key-deleted",
|
|
9339
9487
|
"ai-gateway-api-key-quota-updated",
|
|
9488
|
+
"ai-gateway-auto-reload-updated",
|
|
9340
9489
|
"ai-gateway-budget-default-updated",
|
|
9341
9490
|
"ai-gateway-byok-credential-created",
|
|
9342
9491
|
"ai-gateway-byok-credential-deleted",
|
|
9343
9492
|
"ai-gateway-byok-credential-updated",
|
|
9493
|
+
"ai-gateway-credits-purchased",
|
|
9344
9494
|
"ai-gateway-guardrails-updated",
|
|
9345
9495
|
"ai-gateway-model-allowlist-models-updated",
|
|
9346
9496
|
"ai-gateway-model-allowlist-toggled",
|
|
@@ -9527,6 +9677,9 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9527
9677
|
"env-variable-read:unknown-source",
|
|
9528
9678
|
"env-variable-read:v0:env:pull",
|
|
9529
9679
|
"env-variable-rotated",
|
|
9680
|
+
"experiment-created",
|
|
9681
|
+
"experiment-transitioned",
|
|
9682
|
+
"experiment-updated",
|
|
9530
9683
|
"firewall-bypass-created",
|
|
9531
9684
|
"firewall-bypass-deleted",
|
|
9532
9685
|
"firewall-config-modified",
|
|
@@ -9551,6 +9704,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9551
9704
|
"git-integration-repo-push",
|
|
9552
9705
|
"git_account_integration_link_added",
|
|
9553
9706
|
"instant-rollback-created",
|
|
9707
|
+
"integration-configuration-credential-rotated",
|
|
9554
9708
|
"integration-configuration-owner-changed",
|
|
9555
9709
|
"integration-configuration-scope-change-confirmed",
|
|
9556
9710
|
"integration-configuration-transfer-in-success",
|
|
@@ -9977,90 +10131,30 @@ const listEventTypesResponseSchema = z__namespace.object({
|
|
|
9977
10131
|
}).describe("Response returned by the List Event Types endpoint.");
|
|
9978
10132
|
const flagSchema = z__namespace.object({
|
|
9979
10133
|
description: z__namespace.string().optional(),
|
|
10134
|
+
experiment: z__namespace.object({
|
|
10135
|
+
rampId: z__namespace.string().optional(),
|
|
10136
|
+
rampPercentage: z__namespace.number().optional(),
|
|
10137
|
+
id: z__namespace.string(),
|
|
10138
|
+
base: z__namespace.object({
|
|
10139
|
+
type: z__namespace.enum([
|
|
10140
|
+
"entity"
|
|
10141
|
+
]),
|
|
10142
|
+
kind: z__namespace.string(),
|
|
10143
|
+
attribute: z__namespace.string()
|
|
10144
|
+
}),
|
|
10145
|
+
weights: z__namespace.object({}).catchall(z__namespace.number()),
|
|
10146
|
+
defaultVariantId: z__namespace.string(),
|
|
10147
|
+
exposureLogging: z__namespace.union([
|
|
10148
|
+
z__namespace.literal(false),
|
|
10149
|
+
z__namespace.literal(true)
|
|
10150
|
+
])
|
|
10151
|
+
}).nullish(),
|
|
9980
10152
|
maintainerIds: z__namespace.array(z__namespace.string()).optional(),
|
|
9981
10153
|
permanent: z__namespace.union([
|
|
9982
10154
|
z__namespace.literal(false),
|
|
9983
10155
|
z__namespace.literal(true)
|
|
9984
10156
|
]).optional(),
|
|
9985
10157
|
tags: z__namespace.array(z__namespace.string()).optional(),
|
|
9986
|
-
experiment: z__namespace.object({
|
|
9987
|
-
id: z__namespace.string().optional(),
|
|
9988
|
-
name: z__namespace.string().optional(),
|
|
9989
|
-
numVariants: z__namespace.number().optional(),
|
|
9990
|
-
surfaceArea: z__namespace.string().optional(),
|
|
9991
|
-
stickyRequirement: z__namespace.union([
|
|
9992
|
-
z__namespace.literal(false),
|
|
9993
|
-
z__namespace.literal(true)
|
|
9994
|
-
]).optional(),
|
|
9995
|
-
layer: z__namespace.string().optional(),
|
|
9996
|
-
guardrailMetrics: z__namespace.array(z__namespace.object({
|
|
9997
|
-
description: z__namespace.string().optional(),
|
|
9998
|
-
metricFormula: z__namespace.string().optional(),
|
|
9999
|
-
name: z__namespace.string(),
|
|
10000
|
-
metricType: z__namespace.enum([
|
|
10001
|
-
"count",
|
|
10002
|
-
"currency",
|
|
10003
|
-
"percentage"
|
|
10004
|
-
]),
|
|
10005
|
-
metricUnit: z__namespace.enum([
|
|
10006
|
-
"session",
|
|
10007
|
-
"user",
|
|
10008
|
-
"visitor"
|
|
10009
|
-
]),
|
|
10010
|
-
directionality: z__namespace.enum([
|
|
10011
|
-
"decreaseIsGood",
|
|
10012
|
-
"increaseIsGood"
|
|
10013
|
-
])
|
|
10014
|
-
})).optional(),
|
|
10015
|
-
hypothesis: z__namespace.string().optional(),
|
|
10016
|
-
device: z__namespace.enum([
|
|
10017
|
-
"android",
|
|
10018
|
-
"desktop",
|
|
10019
|
-
"ios",
|
|
10020
|
-
"mweb"
|
|
10021
|
-
]).optional(),
|
|
10022
|
-
controlVariantId: z__namespace.string().optional(),
|
|
10023
|
-
startedAt: z__namespace.number().optional(),
|
|
10024
|
-
endedAt: z__namespace.number().optional(),
|
|
10025
|
-
decision: z__namespace.string().optional(),
|
|
10026
|
-
decisionReason: z__namespace.string().optional(),
|
|
10027
|
-
duration: z__namespace.number().optional(),
|
|
10028
|
-
durationUnit: z__namespace.enum([
|
|
10029
|
-
"days",
|
|
10030
|
-
"exposures"
|
|
10031
|
-
]).optional(),
|
|
10032
|
-
allocationPercent: z__namespace.number().optional(),
|
|
10033
|
-
allocationUnit: z__namespace.enum([
|
|
10034
|
-
"cookieId",
|
|
10035
|
-
"userId",
|
|
10036
|
-
"visitorId"
|
|
10037
|
-
]),
|
|
10038
|
-
primaryMetrics: z__namespace.array(z__namespace.object({
|
|
10039
|
-
description: z__namespace.string().optional(),
|
|
10040
|
-
metricFormula: z__namespace.string().optional(),
|
|
10041
|
-
name: z__namespace.string(),
|
|
10042
|
-
metricType: z__namespace.enum([
|
|
10043
|
-
"count",
|
|
10044
|
-
"currency",
|
|
10045
|
-
"percentage"
|
|
10046
|
-
]),
|
|
10047
|
-
metricUnit: z__namespace.enum([
|
|
10048
|
-
"session",
|
|
10049
|
-
"user",
|
|
10050
|
-
"visitor"
|
|
10051
|
-
]),
|
|
10052
|
-
directionality: z__namespace.enum([
|
|
10053
|
-
"decreaseIsGood",
|
|
10054
|
-
"increaseIsGood"
|
|
10055
|
-
])
|
|
10056
|
-
})),
|
|
10057
|
-
status: z__namespace.enum([
|
|
10058
|
-
"closed",
|
|
10059
|
-
"draft",
|
|
10060
|
-
"paused",
|
|
10061
|
-
"running"
|
|
10062
|
-
])
|
|
10063
|
-
}).optional(),
|
|
10064
10158
|
updatedBy: z__namespace.string().optional(),
|
|
10065
10159
|
variants: z__namespace.array(z__namespace.object({})),
|
|
10066
10160
|
id: z__namespace.string(),
|
|
@@ -10123,6 +10217,11 @@ const flagSchema = z__namespace.object({
|
|
|
10123
10217
|
promille: z__namespace.number(),
|
|
10124
10218
|
durationMs: z__namespace.number()
|
|
10125
10219
|
}))
|
|
10220
|
+
}).strict(),
|
|
10221
|
+
z__namespace.object({
|
|
10222
|
+
type: z__namespace.enum([
|
|
10223
|
+
"experiment"
|
|
10224
|
+
])
|
|
10126
10225
|
}).strict()
|
|
10127
10226
|
]),
|
|
10128
10227
|
active: z__namespace.union([
|
|
@@ -10171,6 +10270,11 @@ const flagSchema = z__namespace.object({
|
|
|
10171
10270
|
promille: z__namespace.number(),
|
|
10172
10271
|
durationMs: z__namespace.number()
|
|
10173
10272
|
}))
|
|
10273
|
+
}).strict(),
|
|
10274
|
+
z__namespace.object({
|
|
10275
|
+
type: z__namespace.enum([
|
|
10276
|
+
"experiment"
|
|
10277
|
+
])
|
|
10174
10278
|
}).strict()
|
|
10175
10279
|
]),
|
|
10176
10280
|
conditions: z__namespace.array(z__namespace.object({
|
|
@@ -10503,7 +10607,7 @@ const namedSandboxSchema = z__namespace.object({
|
|
|
10503
10607
|
z__namespace.literal(false),
|
|
10504
10608
|
z__namespace.literal(true)
|
|
10505
10609
|
]).describe("Whether the sandbox persists its state across restarts via automatic snapshots."),
|
|
10506
|
-
region: z__namespace.string().optional().describe("The region the sandbox is
|
|
10610
|
+
region: z__namespace.string().optional().describe("The region the sandbox is pinned to: the region stored on the sandbox, otherwise the platform default. Where a running session actually landed is reported by `session.region`."),
|
|
10507
10611
|
vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated."),
|
|
10508
10612
|
memory: z__namespace.number().optional().describe("Memory allocated in MB."),
|
|
10509
10613
|
runtime: z__namespace.string().optional().describe("Runtime identifier."),
|
|
@@ -15094,6 +15198,23 @@ const getMemberResponseSchema = z__namespace.union([
|
|
|
15094
15198
|
getMemberStatus404Schema,
|
|
15095
15199
|
getMemberStatus410Schema
|
|
15096
15200
|
]);
|
|
15201
|
+
const rotateInstallationCredentialPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
15202
|
+
const rotateInstallationCredentialStatus200Schema = z__namespace.unknown();
|
|
15203
|
+
const rotateInstallationCredentialStatus400Schema = z__namespace.unknown();
|
|
15204
|
+
const rotateInstallationCredentialStatus401Schema = z__namespace.unknown();
|
|
15205
|
+
const rotateInstallationCredentialStatus403Schema = z__namespace.unknown();
|
|
15206
|
+
const rotateInstallationCredentialStatus404Schema = z__namespace.unknown();
|
|
15207
|
+
const rotateInstallationCredentialStatus409Schema = z__namespace.unknown();
|
|
15208
|
+
const rotateInstallationCredentialStatus410Schema = z__namespace.unknown();
|
|
15209
|
+
const rotateInstallationCredentialResponseSchema = z__namespace.union([
|
|
15210
|
+
rotateInstallationCredentialStatus200Schema,
|
|
15211
|
+
rotateInstallationCredentialStatus400Schema,
|
|
15212
|
+
rotateInstallationCredentialStatus401Schema,
|
|
15213
|
+
rotateInstallationCredentialStatus403Schema,
|
|
15214
|
+
rotateInstallationCredentialStatus404Schema,
|
|
15215
|
+
rotateInstallationCredentialStatus409Schema,
|
|
15216
|
+
rotateInstallationCredentialStatus410Schema
|
|
15217
|
+
]);
|
|
15097
15218
|
const createEventPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
15098
15219
|
const createEventStatus201Schema = z__namespace.unknown();
|
|
15099
15220
|
const createEventStatus400Schema = z__namespace.unknown();
|
|
@@ -17470,58 +17591,58 @@ const writeSessionFilesResponseSchema = z__namespace.union([
|
|
|
17470
17591
|
writeSessionFilesStatus429Schema,
|
|
17471
17592
|
writeSessionFilesStatus500Schema
|
|
17472
17593
|
]);
|
|
17473
|
-
const
|
|
17474
|
-
const
|
|
17475
|
-
const
|
|
17476
|
-
const
|
|
17477
|
-
const
|
|
17478
|
-
const
|
|
17479
|
-
const
|
|
17480
|
-
const
|
|
17481
|
-
const
|
|
17482
|
-
const
|
|
17483
|
-
const
|
|
17484
|
-
const
|
|
17485
|
-
const
|
|
17486
|
-
const
|
|
17487
|
-
|
|
17488
|
-
|
|
17489
|
-
|
|
17490
|
-
|
|
17491
|
-
|
|
17492
|
-
|
|
17493
|
-
|
|
17494
|
-
|
|
17495
|
-
|
|
17496
|
-
|
|
17497
|
-
]);
|
|
17498
|
-
const
|
|
17499
|
-
const
|
|
17500
|
-
const
|
|
17501
|
-
const
|
|
17502
|
-
const
|
|
17503
|
-
const
|
|
17504
|
-
const
|
|
17505
|
-
const
|
|
17506
|
-
const
|
|
17507
|
-
const
|
|
17508
|
-
const
|
|
17509
|
-
const
|
|
17510
|
-
const
|
|
17511
|
-
const
|
|
17512
|
-
const
|
|
17513
|
-
const
|
|
17514
|
-
|
|
17515
|
-
|
|
17516
|
-
|
|
17517
|
-
|
|
17518
|
-
|
|
17519
|
-
|
|
17520
|
-
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
|
|
17524
|
-
|
|
17594
|
+
const createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
|
|
17595
|
+
const createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17596
|
+
const createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17597
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = z__namespace.unknown();
|
|
17598
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = z__namespace.unknown();
|
|
17599
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = z__namespace.unknown();
|
|
17600
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = z__namespace.unknown();
|
|
17601
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = z__namespace.unknown();
|
|
17602
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = z__namespace.unknown();
|
|
17603
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = z__namespace.unknown();
|
|
17604
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = z__namespace.unknown();
|
|
17605
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = z__namespace.unknown();
|
|
17606
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = z__namespace.unknown();
|
|
17607
|
+
const createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = z__namespace.union([
|
|
17608
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status201Schema,
|
|
17609
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status400Schema,
|
|
17610
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status401Schema,
|
|
17611
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status402Schema,
|
|
17612
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status403Schema,
|
|
17613
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status404Schema,
|
|
17614
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status410Schema,
|
|
17615
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status422Schema,
|
|
17616
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status429Schema,
|
|
17617
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status500Schema
|
|
17618
|
+
]);
|
|
17619
|
+
const createSandboxesByNameForkV2PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
|
|
17620
|
+
const createSandboxesByNameForkV2QueryProjectIdSchema = z__namespace.string().max(128).optional().describe("The ID of the project the source sandbox belongs to. Required unless authenticating with an OIDC token.");
|
|
17621
|
+
const createSandboxesByNameForkV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17622
|
+
const createSandboxesByNameForkV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17623
|
+
const createSandboxesByNameForkV2Status200Schema = z__namespace.unknown();
|
|
17624
|
+
const createSandboxesByNameForkV2Status400Schema = z__namespace.unknown();
|
|
17625
|
+
const createSandboxesByNameForkV2Status401Schema = z__namespace.unknown();
|
|
17626
|
+
const createSandboxesByNameForkV2Status402Schema = z__namespace.unknown();
|
|
17627
|
+
const createSandboxesByNameForkV2Status403Schema = z__namespace.unknown();
|
|
17628
|
+
const createSandboxesByNameForkV2Status404Schema = z__namespace.unknown();
|
|
17629
|
+
const createSandboxesByNameForkV2Status409Schema = z__namespace.unknown();
|
|
17630
|
+
const createSandboxesByNameForkV2Status410Schema = z__namespace.unknown();
|
|
17631
|
+
const createSandboxesByNameForkV2Status422Schema = z__namespace.unknown();
|
|
17632
|
+
const createSandboxesByNameForkV2Status429Schema = z__namespace.unknown();
|
|
17633
|
+
const createSandboxesByNameForkV2Status500Schema = z__namespace.unknown();
|
|
17634
|
+
const createSandboxesByNameForkV2ResponseSchema = z__namespace.union([
|
|
17635
|
+
createSandboxesByNameForkV2Status200Schema,
|
|
17636
|
+
createSandboxesByNameForkV2Status400Schema,
|
|
17637
|
+
createSandboxesByNameForkV2Status401Schema,
|
|
17638
|
+
createSandboxesByNameForkV2Status402Schema,
|
|
17639
|
+
createSandboxesByNameForkV2Status403Schema,
|
|
17640
|
+
createSandboxesByNameForkV2Status404Schema,
|
|
17641
|
+
createSandboxesByNameForkV2Status409Schema,
|
|
17642
|
+
createSandboxesByNameForkV2Status410Schema,
|
|
17643
|
+
createSandboxesByNameForkV2Status422Schema,
|
|
17644
|
+
createSandboxesByNameForkV2Status429Schema,
|
|
17645
|
+
createSandboxesByNameForkV2Status500Schema
|
|
17525
17646
|
]);
|
|
17526
17647
|
const createSandboxesV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17527
17648
|
const createSandboxesV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
@@ -17549,6 +17670,85 @@ const createSandboxesV3ResponseSchema = z__namespace.union([
|
|
|
17549
17670
|
createSandboxesV3Status429Schema,
|
|
17550
17671
|
createSandboxesV3Status500Schema
|
|
17551
17672
|
]);
|
|
17673
|
+
const createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
|
|
17674
|
+
const createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17675
|
+
const createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17676
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = z__namespace.unknown();
|
|
17677
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = z__namespace.unknown();
|
|
17678
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = z__namespace.unknown();
|
|
17679
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = z__namespace.unknown();
|
|
17680
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = z__namespace.unknown();
|
|
17681
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = z__namespace.unknown();
|
|
17682
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = z__namespace.unknown();
|
|
17683
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = z__namespace.unknown();
|
|
17684
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = z__namespace.unknown();
|
|
17685
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = z__namespace.unknown();
|
|
17686
|
+
const createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = z__namespace.union([
|
|
17687
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status201Schema,
|
|
17688
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status400Schema,
|
|
17689
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status401Schema,
|
|
17690
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status402Schema,
|
|
17691
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status403Schema,
|
|
17692
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status404Schema,
|
|
17693
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status410Schema,
|
|
17694
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status422Schema,
|
|
17695
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status429Schema,
|
|
17696
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status500Schema
|
|
17697
|
+
]);
|
|
17698
|
+
const createSandboxesByNameForkV3PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
|
|
17699
|
+
const createSandboxesByNameForkV3QueryProjectIdSchema = z__namespace.string().max(128).optional().describe("The ID of the project the source sandbox belongs to. Required unless authenticating with an OIDC token.");
|
|
17700
|
+
const createSandboxesByNameForkV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17701
|
+
const createSandboxesByNameForkV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17702
|
+
const createSandboxesByNameForkV3Status200Schema = z__namespace.unknown();
|
|
17703
|
+
const createSandboxesByNameForkV3Status400Schema = z__namespace.unknown();
|
|
17704
|
+
const createSandboxesByNameForkV3Status401Schema = z__namespace.unknown();
|
|
17705
|
+
const createSandboxesByNameForkV3Status402Schema = z__namespace.unknown();
|
|
17706
|
+
const createSandboxesByNameForkV3Status403Schema = z__namespace.unknown();
|
|
17707
|
+
const createSandboxesByNameForkV3Status404Schema = z__namespace.unknown();
|
|
17708
|
+
const createSandboxesByNameForkV3Status409Schema = z__namespace.unknown();
|
|
17709
|
+
const createSandboxesByNameForkV3Status410Schema = z__namespace.unknown();
|
|
17710
|
+
const createSandboxesByNameForkV3Status422Schema = z__namespace.unknown();
|
|
17711
|
+
const createSandboxesByNameForkV3Status429Schema = z__namespace.unknown();
|
|
17712
|
+
const createSandboxesByNameForkV3Status500Schema = z__namespace.unknown();
|
|
17713
|
+
const createSandboxesByNameForkV3ResponseSchema = z__namespace.union([
|
|
17714
|
+
createSandboxesByNameForkV3Status200Schema,
|
|
17715
|
+
createSandboxesByNameForkV3Status400Schema,
|
|
17716
|
+
createSandboxesByNameForkV3Status401Schema,
|
|
17717
|
+
createSandboxesByNameForkV3Status402Schema,
|
|
17718
|
+
createSandboxesByNameForkV3Status403Schema,
|
|
17719
|
+
createSandboxesByNameForkV3Status404Schema,
|
|
17720
|
+
createSandboxesByNameForkV3Status409Schema,
|
|
17721
|
+
createSandboxesByNameForkV3Status410Schema,
|
|
17722
|
+
createSandboxesByNameForkV3Status422Schema,
|
|
17723
|
+
createSandboxesByNameForkV3Status429Schema,
|
|
17724
|
+
createSandboxesByNameForkV3Status500Schema
|
|
17725
|
+
]);
|
|
17726
|
+
const createSandboxesV4QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17727
|
+
const createSandboxesV4QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17728
|
+
const createSandboxesV4Status200Schema = z__namespace.unknown();
|
|
17729
|
+
const createSandboxesV4Status400Schema = z__namespace.unknown();
|
|
17730
|
+
const createSandboxesV4Status401Schema = z__namespace.unknown();
|
|
17731
|
+
const createSandboxesV4Status402Schema = z__namespace.unknown();
|
|
17732
|
+
const createSandboxesV4Status403Schema = z__namespace.unknown();
|
|
17733
|
+
const createSandboxesV4Status404Schema = z__namespace.unknown();
|
|
17734
|
+
const createSandboxesV4Status409Schema = z__namespace.unknown();
|
|
17735
|
+
const createSandboxesV4Status410Schema = z__namespace.unknown();
|
|
17736
|
+
const createSandboxesV4Status422Schema = z__namespace.unknown();
|
|
17737
|
+
const createSandboxesV4Status429Schema = z__namespace.unknown();
|
|
17738
|
+
const createSandboxesV4Status500Schema = z__namespace.unknown();
|
|
17739
|
+
const createSandboxesV4ResponseSchema = z__namespace.union([
|
|
17740
|
+
createSandboxesV4Status200Schema,
|
|
17741
|
+
createSandboxesV4Status400Schema,
|
|
17742
|
+
createSandboxesV4Status401Schema,
|
|
17743
|
+
createSandboxesV4Status402Schema,
|
|
17744
|
+
createSandboxesV4Status403Schema,
|
|
17745
|
+
createSandboxesV4Status404Schema,
|
|
17746
|
+
createSandboxesV4Status409Schema,
|
|
17747
|
+
createSandboxesV4Status410Schema,
|
|
17748
|
+
createSandboxesV4Status422Schema,
|
|
17749
|
+
createSandboxesV4Status429Schema,
|
|
17750
|
+
createSandboxesV4Status500Schema
|
|
17751
|
+
]);
|
|
17552
17752
|
const updateAttackChallengeModeQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17553
17753
|
const updateAttackChallengeModeQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17554
17754
|
const updateAttackChallengeModeStatus200Schema = z__namespace.unknown();
|
|
@@ -19367,6 +19567,7 @@ exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
|
|
|
19367
19567
|
exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
|
|
19368
19568
|
exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
|
|
19369
19569
|
exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
|
|
19570
|
+
exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
|
|
19370
19571
|
exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
|
|
19371
19572
|
exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
|
|
19372
19573
|
exports.aiGatewayVirtualModelConfigListSchema = aiGatewayVirtualModelConfigListSchema;
|
|
@@ -19884,22 +20085,66 @@ exports.createRepositoryStatus403Schema = createRepositoryStatus403Schema;
|
|
|
19884
20085
|
exports.createRepositoryStatus404Schema = createRepositoryStatus404Schema;
|
|
19885
20086
|
exports.createRepositoryStatus409Schema = createRepositoryStatus409Schema;
|
|
19886
20087
|
exports.createRepositoryStatus410Schema = createRepositoryStatus410Schema;
|
|
19887
|
-
exports.
|
|
19888
|
-
exports.
|
|
19889
|
-
exports.
|
|
19890
|
-
exports.
|
|
19891
|
-
exports.
|
|
19892
|
-
exports.
|
|
19893
|
-
exports.
|
|
19894
|
-
exports.
|
|
19895
|
-
exports.
|
|
19896
|
-
exports.
|
|
19897
|
-
exports.
|
|
19898
|
-
exports.
|
|
19899
|
-
exports.
|
|
19900
|
-
exports.
|
|
19901
|
-
exports.
|
|
19902
|
-
exports.
|
|
20088
|
+
exports.createSandboxesByNameForkV2PathNameSchema = createSandboxesByNameForkV2PathNameSchema;
|
|
20089
|
+
exports.createSandboxesByNameForkV2QueryProjectIdSchema = createSandboxesByNameForkV2QueryProjectIdSchema;
|
|
20090
|
+
exports.createSandboxesByNameForkV2QuerySlugSchema = createSandboxesByNameForkV2QuerySlugSchema;
|
|
20091
|
+
exports.createSandboxesByNameForkV2QueryTeamIdSchema = createSandboxesByNameForkV2QueryTeamIdSchema;
|
|
20092
|
+
exports.createSandboxesByNameForkV2ResponseSchema = createSandboxesByNameForkV2ResponseSchema;
|
|
20093
|
+
exports.createSandboxesByNameForkV2Status200Schema = createSandboxesByNameForkV2Status200Schema;
|
|
20094
|
+
exports.createSandboxesByNameForkV2Status400Schema = createSandboxesByNameForkV2Status400Schema;
|
|
20095
|
+
exports.createSandboxesByNameForkV2Status401Schema = createSandboxesByNameForkV2Status401Schema;
|
|
20096
|
+
exports.createSandboxesByNameForkV2Status402Schema = createSandboxesByNameForkV2Status402Schema;
|
|
20097
|
+
exports.createSandboxesByNameForkV2Status403Schema = createSandboxesByNameForkV2Status403Schema;
|
|
20098
|
+
exports.createSandboxesByNameForkV2Status404Schema = createSandboxesByNameForkV2Status404Schema;
|
|
20099
|
+
exports.createSandboxesByNameForkV2Status409Schema = createSandboxesByNameForkV2Status409Schema;
|
|
20100
|
+
exports.createSandboxesByNameForkV2Status410Schema = createSandboxesByNameForkV2Status410Schema;
|
|
20101
|
+
exports.createSandboxesByNameForkV2Status422Schema = createSandboxesByNameForkV2Status422Schema;
|
|
20102
|
+
exports.createSandboxesByNameForkV2Status429Schema = createSandboxesByNameForkV2Status429Schema;
|
|
20103
|
+
exports.createSandboxesByNameForkV2Status500Schema = createSandboxesByNameForkV2Status500Schema;
|
|
20104
|
+
exports.createSandboxesByNameForkV3PathNameSchema = createSandboxesByNameForkV3PathNameSchema;
|
|
20105
|
+
exports.createSandboxesByNameForkV3QueryProjectIdSchema = createSandboxesByNameForkV3QueryProjectIdSchema;
|
|
20106
|
+
exports.createSandboxesByNameForkV3QuerySlugSchema = createSandboxesByNameForkV3QuerySlugSchema;
|
|
20107
|
+
exports.createSandboxesByNameForkV3QueryTeamIdSchema = createSandboxesByNameForkV3QueryTeamIdSchema;
|
|
20108
|
+
exports.createSandboxesByNameForkV3ResponseSchema = createSandboxesByNameForkV3ResponseSchema;
|
|
20109
|
+
exports.createSandboxesByNameForkV3Status200Schema = createSandboxesByNameForkV3Status200Schema;
|
|
20110
|
+
exports.createSandboxesByNameForkV3Status400Schema = createSandboxesByNameForkV3Status400Schema;
|
|
20111
|
+
exports.createSandboxesByNameForkV3Status401Schema = createSandboxesByNameForkV3Status401Schema;
|
|
20112
|
+
exports.createSandboxesByNameForkV3Status402Schema = createSandboxesByNameForkV3Status402Schema;
|
|
20113
|
+
exports.createSandboxesByNameForkV3Status403Schema = createSandboxesByNameForkV3Status403Schema;
|
|
20114
|
+
exports.createSandboxesByNameForkV3Status404Schema = createSandboxesByNameForkV3Status404Schema;
|
|
20115
|
+
exports.createSandboxesByNameForkV3Status409Schema = createSandboxesByNameForkV3Status409Schema;
|
|
20116
|
+
exports.createSandboxesByNameForkV3Status410Schema = createSandboxesByNameForkV3Status410Schema;
|
|
20117
|
+
exports.createSandboxesByNameForkV3Status422Schema = createSandboxesByNameForkV3Status422Schema;
|
|
20118
|
+
exports.createSandboxesByNameForkV3Status429Schema = createSandboxesByNameForkV3Status429Schema;
|
|
20119
|
+
exports.createSandboxesByNameForkV3Status500Schema = createSandboxesByNameForkV3Status500Schema;
|
|
20120
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema;
|
|
20121
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema;
|
|
20122
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema;
|
|
20123
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema;
|
|
20124
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = createSandboxesSessionsBySessionIdSnapshotV2Status201Schema;
|
|
20125
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = createSandboxesSessionsBySessionIdSnapshotV2Status400Schema;
|
|
20126
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = createSandboxesSessionsBySessionIdSnapshotV2Status401Schema;
|
|
20127
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = createSandboxesSessionsBySessionIdSnapshotV2Status402Schema;
|
|
20128
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = createSandboxesSessionsBySessionIdSnapshotV2Status403Schema;
|
|
20129
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = createSandboxesSessionsBySessionIdSnapshotV2Status404Schema;
|
|
20130
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = createSandboxesSessionsBySessionIdSnapshotV2Status410Schema;
|
|
20131
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = createSandboxesSessionsBySessionIdSnapshotV2Status422Schema;
|
|
20132
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = createSandboxesSessionsBySessionIdSnapshotV2Status429Schema;
|
|
20133
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = createSandboxesSessionsBySessionIdSnapshotV2Status500Schema;
|
|
20134
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema;
|
|
20135
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema;
|
|
20136
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema;
|
|
20137
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema;
|
|
20138
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = createSandboxesSessionsBySessionIdSnapshotV3Status201Schema;
|
|
20139
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = createSandboxesSessionsBySessionIdSnapshotV3Status400Schema;
|
|
20140
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = createSandboxesSessionsBySessionIdSnapshotV3Status401Schema;
|
|
20141
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = createSandboxesSessionsBySessionIdSnapshotV3Status402Schema;
|
|
20142
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = createSandboxesSessionsBySessionIdSnapshotV3Status403Schema;
|
|
20143
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = createSandboxesSessionsBySessionIdSnapshotV3Status404Schema;
|
|
20144
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = createSandboxesSessionsBySessionIdSnapshotV3Status410Schema;
|
|
20145
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = createSandboxesSessionsBySessionIdSnapshotV3Status422Schema;
|
|
20146
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = createSandboxesSessionsBySessionIdSnapshotV3Status429Schema;
|
|
20147
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = createSandboxesSessionsBySessionIdSnapshotV3Status500Schema;
|
|
19903
20148
|
exports.createSandboxesV2QuerySlugSchema = createSandboxesV2QuerySlugSchema;
|
|
19904
20149
|
exports.createSandboxesV2QueryTeamIdSchema = createSandboxesV2QueryTeamIdSchema;
|
|
19905
20150
|
exports.createSandboxesV2ResponseSchema = createSandboxesV2ResponseSchema;
|
|
@@ -19928,6 +20173,20 @@ exports.createSandboxesV3Status410Schema = createSandboxesV3Status410Schema;
|
|
|
19928
20173
|
exports.createSandboxesV3Status422Schema = createSandboxesV3Status422Schema;
|
|
19929
20174
|
exports.createSandboxesV3Status429Schema = createSandboxesV3Status429Schema;
|
|
19930
20175
|
exports.createSandboxesV3Status500Schema = createSandboxesV3Status500Schema;
|
|
20176
|
+
exports.createSandboxesV4QuerySlugSchema = createSandboxesV4QuerySlugSchema;
|
|
20177
|
+
exports.createSandboxesV4QueryTeamIdSchema = createSandboxesV4QueryTeamIdSchema;
|
|
20178
|
+
exports.createSandboxesV4ResponseSchema = createSandboxesV4ResponseSchema;
|
|
20179
|
+
exports.createSandboxesV4Status200Schema = createSandboxesV4Status200Schema;
|
|
20180
|
+
exports.createSandboxesV4Status400Schema = createSandboxesV4Status400Schema;
|
|
20181
|
+
exports.createSandboxesV4Status401Schema = createSandboxesV4Status401Schema;
|
|
20182
|
+
exports.createSandboxesV4Status402Schema = createSandboxesV4Status402Schema;
|
|
20183
|
+
exports.createSandboxesV4Status403Schema = createSandboxesV4Status403Schema;
|
|
20184
|
+
exports.createSandboxesV4Status404Schema = createSandboxesV4Status404Schema;
|
|
20185
|
+
exports.createSandboxesV4Status409Schema = createSandboxesV4Status409Schema;
|
|
20186
|
+
exports.createSandboxesV4Status410Schema = createSandboxesV4Status410Schema;
|
|
20187
|
+
exports.createSandboxesV4Status422Schema = createSandboxesV4Status422Schema;
|
|
20188
|
+
exports.createSandboxesV4Status429Schema = createSandboxesV4Status429Schema;
|
|
20189
|
+
exports.createSandboxesV4Status500Schema = createSandboxesV4Status500Schema;
|
|
19931
20190
|
exports.createSdkKeyPathProjectIdOrNameSchema = createSdkKeyPathProjectIdOrNameSchema;
|
|
19932
20191
|
exports.createSdkKeyQuerySlugSchema = createSdkKeyQuerySlugSchema;
|
|
19933
20192
|
exports.createSdkKeyQueryTeamIdSchema = createSdkKeyQueryTeamIdSchema;
|
|
@@ -19963,20 +20222,6 @@ exports.createSessionDirectoryStatus410Schema = createSessionDirectoryStatus410S
|
|
|
19963
20222
|
exports.createSessionDirectoryStatus422Schema = createSessionDirectoryStatus422Schema;
|
|
19964
20223
|
exports.createSessionDirectoryStatus429Schema = createSessionDirectoryStatus429Schema;
|
|
19965
20224
|
exports.createSessionDirectoryStatus500Schema = createSessionDirectoryStatus500Schema;
|
|
19966
|
-
exports.createSessionSnapshotPathSessionIdSchema = createSessionSnapshotPathSessionIdSchema;
|
|
19967
|
-
exports.createSessionSnapshotQuerySlugSchema = createSessionSnapshotQuerySlugSchema;
|
|
19968
|
-
exports.createSessionSnapshotQueryTeamIdSchema = createSessionSnapshotQueryTeamIdSchema;
|
|
19969
|
-
exports.createSessionSnapshotResponseSchema = createSessionSnapshotResponseSchema;
|
|
19970
|
-
exports.createSessionSnapshotStatus201Schema = createSessionSnapshotStatus201Schema;
|
|
19971
|
-
exports.createSessionSnapshotStatus400Schema = createSessionSnapshotStatus400Schema;
|
|
19972
|
-
exports.createSessionSnapshotStatus401Schema = createSessionSnapshotStatus401Schema;
|
|
19973
|
-
exports.createSessionSnapshotStatus402Schema = createSessionSnapshotStatus402Schema;
|
|
19974
|
-
exports.createSessionSnapshotStatus403Schema = createSessionSnapshotStatus403Schema;
|
|
19975
|
-
exports.createSessionSnapshotStatus404Schema = createSessionSnapshotStatus404Schema;
|
|
19976
|
-
exports.createSessionSnapshotStatus410Schema = createSessionSnapshotStatus410Schema;
|
|
19977
|
-
exports.createSessionSnapshotStatus422Schema = createSessionSnapshotStatus422Schema;
|
|
19978
|
-
exports.createSessionSnapshotStatus429Schema = createSessionSnapshotStatus429Schema;
|
|
19979
|
-
exports.createSessionSnapshotStatus500Schema = createSessionSnapshotStatus500Schema;
|
|
19980
20225
|
exports.createSharedEnvVariableQuerySlugSchema = createSharedEnvVariableQuerySlugSchema;
|
|
19981
20226
|
exports.createSharedEnvVariableQueryTeamIdSchema = createSharedEnvVariableQueryTeamIdSchema;
|
|
19982
20227
|
exports.createSharedEnvVariableResponseSchema = createSharedEnvVariableResponseSchema;
|
|
@@ -22876,6 +23121,15 @@ exports.restoreRedirectsStatus403Schema = restoreRedirectsStatus403Schema;
|
|
|
22876
23121
|
exports.restoreRedirectsStatus404Schema = restoreRedirectsStatus404Schema;
|
|
22877
23122
|
exports.restoreRedirectsStatus410Schema = restoreRedirectsStatus410Schema;
|
|
22878
23123
|
exports.restoreRedirectsStatus500Schema = restoreRedirectsStatus500Schema;
|
|
23124
|
+
exports.rotateInstallationCredentialPathIntegrationConfigurationIdSchema = rotateInstallationCredentialPathIntegrationConfigurationIdSchema;
|
|
23125
|
+
exports.rotateInstallationCredentialResponseSchema = rotateInstallationCredentialResponseSchema;
|
|
23126
|
+
exports.rotateInstallationCredentialStatus200Schema = rotateInstallationCredentialStatus200Schema;
|
|
23127
|
+
exports.rotateInstallationCredentialStatus400Schema = rotateInstallationCredentialStatus400Schema;
|
|
23128
|
+
exports.rotateInstallationCredentialStatus401Schema = rotateInstallationCredentialStatus401Schema;
|
|
23129
|
+
exports.rotateInstallationCredentialStatus403Schema = rotateInstallationCredentialStatus403Schema;
|
|
23130
|
+
exports.rotateInstallationCredentialStatus404Schema = rotateInstallationCredentialStatus404Schema;
|
|
23131
|
+
exports.rotateInstallationCredentialStatus409Schema = rotateInstallationCredentialStatus409Schema;
|
|
23132
|
+
exports.rotateInstallationCredentialStatus410Schema = rotateInstallationCredentialStatus410Schema;
|
|
22879
23133
|
exports.runSessionCommandPathSessionIdSchema = runSessionCommandPathSessionIdSchema;
|
|
22880
23134
|
exports.runSessionCommandQueryCmdIdSchema = runSessionCommandQueryCmdIdSchema;
|
|
22881
23135
|
exports.runSessionCommandQuerySlugSchema = runSessionCommandQuerySlugSchema;
|