vercel-api-js 1.11.0 → 1.12.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 +86 -32
- package/dist/index.d.ts +813 -117
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{schemas-b886m3zr.cjs → schemas-i3c9gf4z.cjs} +335 -85
- package/dist/{schemas-i84xmv7o.js → schemas-o2rt4pyr.js} +252 -56
- package/dist/schemas.cjs +85 -31
- package/dist/schemas.d.mts +381 -232
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +17 -10
- package/dist/types.d.mts +548 -75
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +17 -10
- 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([
|
|
@@ -787,6 +789,7 @@ const userEventSchema = z__namespace.object({
|
|
|
787
789
|
"git-integration-repo-push",
|
|
788
790
|
"git_account_integration_link_added",
|
|
789
791
|
"instant-rollback-created",
|
|
792
|
+
"integration-configuration-credential-rotated",
|
|
790
793
|
"integration-configuration-owner-changed",
|
|
791
794
|
"integration-configuration-scope-change-confirmed",
|
|
792
795
|
"integration-configuration-transfer-in-success",
|
|
@@ -3542,7 +3545,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3542
3545
|
z__namespace.object({
|
|
3543
3546
|
edgeConfigId: z__namespace.string(),
|
|
3544
3547
|
edgeConfigSlug: z__namespace.string(),
|
|
3545
|
-
|
|
3548
|
+
globalConfigSchema: z__namespace.object({}).optional()
|
|
3546
3549
|
}).strict(),
|
|
3547
3550
|
z__namespace.object({
|
|
3548
3551
|
edgeConfigId: z__namespace.string(),
|
|
@@ -3915,6 +3918,12 @@ const userEventSchema = z__namespace.object({
|
|
|
3915
3918
|
projectName: z__namespace.string(),
|
|
3916
3919
|
reason: z__namespace.string().optional()
|
|
3917
3920
|
}).strict(),
|
|
3921
|
+
z__namespace.object({
|
|
3922
|
+
integrationId: z__namespace.string(),
|
|
3923
|
+
configurationId: z__namespace.string(),
|
|
3924
|
+
integrationSlug: z__namespace.string(),
|
|
3925
|
+
integrationName: z__namespace.string()
|
|
3926
|
+
}).strict(),
|
|
3918
3927
|
z__namespace.object({
|
|
3919
3928
|
userId: z__namespace.string(),
|
|
3920
3929
|
integrationId: z__namespace.string(),
|
|
@@ -4621,6 +4630,10 @@ const userEventSchema = z__namespace.object({
|
|
|
4621
4630
|
increasedOnDemandEmailSentAt: z__namespace.number().optional().describe("Tracks the last time we sent a increased on-demand email."),
|
|
4622
4631
|
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
4632
|
}).optional().describe("Contains the timestamps for usage summary emails."),
|
|
4633
|
+
speedInsightsFreeUsageAlert: z__namespace.object({
|
|
4634
|
+
currentThreshold: z__namespace.number().describe("Highest allocation percentage threshold notified (e.g. 75 or 100)."),
|
|
4635
|
+
notifiedAt: z__namespace.number().describe("When the notification for `currentThreshold` was sent.")
|
|
4636
|
+
}).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
4637
|
username: z__namespace.string(),
|
|
4625
4638
|
updatedAt: z__namespace.number(),
|
|
4626
4639
|
enablePreviewFeedback: z__namespace.enum([
|
|
@@ -4940,7 +4953,17 @@ const userEventSchema = z__namespace.object({
|
|
|
4940
4953
|
"hard_blocked",
|
|
4941
4954
|
"limits_exceeded"
|
|
4942
4955
|
])
|
|
4943
|
-
}).optional()
|
|
4956
|
+
}).optional(),
|
|
4957
|
+
speedInsightsFree: z__namespace.object({
|
|
4958
|
+
updatedAt: z__namespace.number(),
|
|
4959
|
+
blockedFrom: z__namespace.number().optional(),
|
|
4960
|
+
blockedUntil: z__namespace.number().optional(),
|
|
4961
|
+
blockReason: z__namespace.enum([
|
|
4962
|
+
"admin_override",
|
|
4963
|
+
"hard_blocked",
|
|
4964
|
+
"limits_exceeded"
|
|
4965
|
+
])
|
|
4966
|
+
}).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
4967
|
}).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
4968
|
defaultTeamId: z__namespace.string().optional(),
|
|
4946
4969
|
version: z__namespace.enum([
|
|
@@ -7536,6 +7559,23 @@ const userEventSchema = z__namespace.object({
|
|
|
7536
7559
|
"enhanced",
|
|
7537
7560
|
"standard",
|
|
7538
7561
|
"turbo"
|
|
7562
|
+
]).optional(),
|
|
7563
|
+
isSystemInitiated: z__namespace.union([
|
|
7564
|
+
z__namespace.literal(false),
|
|
7565
|
+
z__namespace.literal(true)
|
|
7566
|
+
]).optional(),
|
|
7567
|
+
reason: z__namespace.enum([
|
|
7568
|
+
"basic-floor",
|
|
7569
|
+
"build-timeout-failure",
|
|
7570
|
+
"enospc-failure",
|
|
7571
|
+
"enterprise-floor",
|
|
7572
|
+
"high-peak-disk",
|
|
7573
|
+
"high-peak-memory",
|
|
7574
|
+
"long-build-duration",
|
|
7575
|
+
"oom-failure",
|
|
7576
|
+
"plan-change",
|
|
7577
|
+
"short-build-duration",
|
|
7578
|
+
"sustained-high-cpu"
|
|
7539
7579
|
]).optional()
|
|
7540
7580
|
}).strict(),
|
|
7541
7581
|
z__namespace.object({
|
|
@@ -7752,6 +7792,64 @@ const userEventSchema = z__namespace.object({
|
|
|
7752
7792
|
}).optional(),
|
|
7753
7793
|
role: z__namespace.string().optional(),
|
|
7754
7794
|
previousRole: z__namespace.string(),
|
|
7795
|
+
previousTeamRoles: z__namespace.array(z__namespace.enum([
|
|
7796
|
+
"BILLING",
|
|
7797
|
+
"CONTRIBUTOR",
|
|
7798
|
+
"DEVELOPER",
|
|
7799
|
+
"MEMBER",
|
|
7800
|
+
"OWNER",
|
|
7801
|
+
"SECURITY",
|
|
7802
|
+
"VIEWER",
|
|
7803
|
+
"VIEWER_FOR_PLUS"
|
|
7804
|
+
])).optional(),
|
|
7805
|
+
teamRoles: z__namespace.array(z__namespace.enum([
|
|
7806
|
+
"BILLING",
|
|
7807
|
+
"CONTRIBUTOR",
|
|
7808
|
+
"DEVELOPER",
|
|
7809
|
+
"MEMBER",
|
|
7810
|
+
"OWNER",
|
|
7811
|
+
"SECURITY",
|
|
7812
|
+
"VIEWER",
|
|
7813
|
+
"VIEWER_FOR_PLUS"
|
|
7814
|
+
])).optional(),
|
|
7815
|
+
previousTeamPermissions: z__namespace.array(z__namespace.enum([
|
|
7816
|
+
"AiGatewayApiKeyOwnedBySelf",
|
|
7817
|
+
"AiGatewayBudgetManager",
|
|
7818
|
+
"AiGatewayCredits",
|
|
7819
|
+
"AiGatewaySettings",
|
|
7820
|
+
"ConnectorManager",
|
|
7821
|
+
"CreateProject",
|
|
7822
|
+
"EnvVariableManager",
|
|
7823
|
+
"EnvironmentManager",
|
|
7824
|
+
"FullProductionDeployment",
|
|
7825
|
+
"IntegrationManager",
|
|
7826
|
+
"OrgAdmin",
|
|
7827
|
+
"OrgViewer",
|
|
7828
|
+
"UsageViewer",
|
|
7829
|
+
"V0Builder",
|
|
7830
|
+
"V0Chatter",
|
|
7831
|
+
"V0Viewer",
|
|
7832
|
+
"WorkflowDecryptor"
|
|
7833
|
+
])).optional(),
|
|
7834
|
+
teamPermissions: z__namespace.array(z__namespace.enum([
|
|
7835
|
+
"AiGatewayApiKeyOwnedBySelf",
|
|
7836
|
+
"AiGatewayBudgetManager",
|
|
7837
|
+
"AiGatewayCredits",
|
|
7838
|
+
"AiGatewaySettings",
|
|
7839
|
+
"ConnectorManager",
|
|
7840
|
+
"CreateProject",
|
|
7841
|
+
"EnvVariableManager",
|
|
7842
|
+
"EnvironmentManager",
|
|
7843
|
+
"FullProductionDeployment",
|
|
7844
|
+
"IntegrationManager",
|
|
7845
|
+
"OrgAdmin",
|
|
7846
|
+
"OrgViewer",
|
|
7847
|
+
"UsageViewer",
|
|
7848
|
+
"V0Builder",
|
|
7849
|
+
"V0Chatter",
|
|
7850
|
+
"V0Viewer",
|
|
7851
|
+
"WorkflowDecryptor"
|
|
7852
|
+
])).optional(),
|
|
7755
7853
|
updatedUid: z__namespace.string().optional(),
|
|
7756
7854
|
origin: z__namespace.string().optional(),
|
|
7757
7855
|
teamSlug: z__namespace.string().optional()
|
|
@@ -8887,6 +8985,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
8887
8985
|
"git-integration-repo-push",
|
|
8888
8986
|
"git_account_integration_link_added",
|
|
8889
8987
|
"instant-rollback-created",
|
|
8988
|
+
"integration-configuration-credential-rotated",
|
|
8890
8989
|
"integration-configuration-owner-changed",
|
|
8891
8990
|
"integration-configuration-scope-change-confirmed",
|
|
8892
8991
|
"integration-configuration-transfer-in-success",
|
|
@@ -9551,6 +9650,7 @@ const listEventTypeSchema = z__namespace.object({
|
|
|
9551
9650
|
"git-integration-repo-push",
|
|
9552
9651
|
"git_account_integration_link_added",
|
|
9553
9652
|
"instant-rollback-created",
|
|
9653
|
+
"integration-configuration-credential-rotated",
|
|
9554
9654
|
"integration-configuration-owner-changed",
|
|
9555
9655
|
"integration-configuration-scope-change-confirmed",
|
|
9556
9656
|
"integration-configuration-transfer-in-success",
|
|
@@ -10503,7 +10603,7 @@ const namedSandboxSchema = z__namespace.object({
|
|
|
10503
10603
|
z__namespace.literal(false),
|
|
10504
10604
|
z__namespace.literal(true)
|
|
10505
10605
|
]).describe("Whether the sandbox persists its state across restarts via automatic snapshots."),
|
|
10506
|
-
region: z__namespace.string().optional().describe("The region the sandbox is
|
|
10606
|
+
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
10607
|
vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated."),
|
|
10508
10608
|
memory: z__namespace.number().optional().describe("Memory allocated in MB."),
|
|
10509
10609
|
runtime: z__namespace.string().optional().describe("Runtime identifier."),
|
|
@@ -15094,6 +15194,23 @@ const getMemberResponseSchema = z__namespace.union([
|
|
|
15094
15194
|
getMemberStatus404Schema,
|
|
15095
15195
|
getMemberStatus410Schema
|
|
15096
15196
|
]);
|
|
15197
|
+
const rotateInstallationCredentialPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
15198
|
+
const rotateInstallationCredentialStatus200Schema = z__namespace.unknown();
|
|
15199
|
+
const rotateInstallationCredentialStatus400Schema = z__namespace.unknown();
|
|
15200
|
+
const rotateInstallationCredentialStatus401Schema = z__namespace.unknown();
|
|
15201
|
+
const rotateInstallationCredentialStatus403Schema = z__namespace.unknown();
|
|
15202
|
+
const rotateInstallationCredentialStatus404Schema = z__namespace.unknown();
|
|
15203
|
+
const rotateInstallationCredentialStatus409Schema = z__namespace.unknown();
|
|
15204
|
+
const rotateInstallationCredentialStatus410Schema = z__namespace.unknown();
|
|
15205
|
+
const rotateInstallationCredentialResponseSchema = z__namespace.union([
|
|
15206
|
+
rotateInstallationCredentialStatus200Schema,
|
|
15207
|
+
rotateInstallationCredentialStatus400Schema,
|
|
15208
|
+
rotateInstallationCredentialStatus401Schema,
|
|
15209
|
+
rotateInstallationCredentialStatus403Schema,
|
|
15210
|
+
rotateInstallationCredentialStatus404Schema,
|
|
15211
|
+
rotateInstallationCredentialStatus409Schema,
|
|
15212
|
+
rotateInstallationCredentialStatus410Schema
|
|
15213
|
+
]);
|
|
15097
15214
|
const createEventPathIntegrationConfigurationIdSchema = z__namespace.string();
|
|
15098
15215
|
const createEventStatus201Schema = z__namespace.unknown();
|
|
15099
15216
|
const createEventStatus400Schema = z__namespace.unknown();
|
|
@@ -17470,58 +17587,58 @@ const writeSessionFilesResponseSchema = z__namespace.union([
|
|
|
17470
17587
|
writeSessionFilesStatus429Schema,
|
|
17471
17588
|
writeSessionFilesStatus500Schema
|
|
17472
17589
|
]);
|
|
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
|
-
|
|
17590
|
+
const createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
|
|
17591
|
+
const createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17592
|
+
const createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17593
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = z__namespace.unknown();
|
|
17594
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = z__namespace.unknown();
|
|
17595
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = z__namespace.unknown();
|
|
17596
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = z__namespace.unknown();
|
|
17597
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = z__namespace.unknown();
|
|
17598
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = z__namespace.unknown();
|
|
17599
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = z__namespace.unknown();
|
|
17600
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = z__namespace.unknown();
|
|
17601
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = z__namespace.unknown();
|
|
17602
|
+
const createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = z__namespace.unknown();
|
|
17603
|
+
const createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = z__namespace.union([
|
|
17604
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status201Schema,
|
|
17605
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status400Schema,
|
|
17606
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status401Schema,
|
|
17607
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status402Schema,
|
|
17608
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status403Schema,
|
|
17609
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status404Schema,
|
|
17610
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status410Schema,
|
|
17611
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status422Schema,
|
|
17612
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status429Schema,
|
|
17613
|
+
createSandboxesSessionsBySessionIdSnapshotV2Status500Schema
|
|
17614
|
+
]);
|
|
17615
|
+
const createSandboxesByNameForkV2PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
|
|
17616
|
+
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.");
|
|
17617
|
+
const createSandboxesByNameForkV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17618
|
+
const createSandboxesByNameForkV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17619
|
+
const createSandboxesByNameForkV2Status200Schema = z__namespace.unknown();
|
|
17620
|
+
const createSandboxesByNameForkV2Status400Schema = z__namespace.unknown();
|
|
17621
|
+
const createSandboxesByNameForkV2Status401Schema = z__namespace.unknown();
|
|
17622
|
+
const createSandboxesByNameForkV2Status402Schema = z__namespace.unknown();
|
|
17623
|
+
const createSandboxesByNameForkV2Status403Schema = z__namespace.unknown();
|
|
17624
|
+
const createSandboxesByNameForkV2Status404Schema = z__namespace.unknown();
|
|
17625
|
+
const createSandboxesByNameForkV2Status409Schema = z__namespace.unknown();
|
|
17626
|
+
const createSandboxesByNameForkV2Status410Schema = z__namespace.unknown();
|
|
17627
|
+
const createSandboxesByNameForkV2Status422Schema = z__namespace.unknown();
|
|
17628
|
+
const createSandboxesByNameForkV2Status429Schema = z__namespace.unknown();
|
|
17629
|
+
const createSandboxesByNameForkV2Status500Schema = z__namespace.unknown();
|
|
17630
|
+
const createSandboxesByNameForkV2ResponseSchema = z__namespace.union([
|
|
17631
|
+
createSandboxesByNameForkV2Status200Schema,
|
|
17632
|
+
createSandboxesByNameForkV2Status400Schema,
|
|
17633
|
+
createSandboxesByNameForkV2Status401Schema,
|
|
17634
|
+
createSandboxesByNameForkV2Status402Schema,
|
|
17635
|
+
createSandboxesByNameForkV2Status403Schema,
|
|
17636
|
+
createSandboxesByNameForkV2Status404Schema,
|
|
17637
|
+
createSandboxesByNameForkV2Status409Schema,
|
|
17638
|
+
createSandboxesByNameForkV2Status410Schema,
|
|
17639
|
+
createSandboxesByNameForkV2Status422Schema,
|
|
17640
|
+
createSandboxesByNameForkV2Status429Schema,
|
|
17641
|
+
createSandboxesByNameForkV2Status500Schema
|
|
17525
17642
|
]);
|
|
17526
17643
|
const createSandboxesV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17527
17644
|
const createSandboxesV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
@@ -17549,6 +17666,85 @@ const createSandboxesV3ResponseSchema = z__namespace.union([
|
|
|
17549
17666
|
createSandboxesV3Status429Schema,
|
|
17550
17667
|
createSandboxesV3Status500Schema
|
|
17551
17668
|
]);
|
|
17669
|
+
const createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = z__namespace.string().describe("The unique identifier of the session to snapshot.");
|
|
17670
|
+
const createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17671
|
+
const createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17672
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = z__namespace.unknown();
|
|
17673
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = z__namespace.unknown();
|
|
17674
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = z__namespace.unknown();
|
|
17675
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = z__namespace.unknown();
|
|
17676
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = z__namespace.unknown();
|
|
17677
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = z__namespace.unknown();
|
|
17678
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = z__namespace.unknown();
|
|
17679
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = z__namespace.unknown();
|
|
17680
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = z__namespace.unknown();
|
|
17681
|
+
const createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = z__namespace.unknown();
|
|
17682
|
+
const createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = z__namespace.union([
|
|
17683
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status201Schema,
|
|
17684
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status400Schema,
|
|
17685
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status401Schema,
|
|
17686
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status402Schema,
|
|
17687
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status403Schema,
|
|
17688
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status404Schema,
|
|
17689
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status410Schema,
|
|
17690
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status422Schema,
|
|
17691
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status429Schema,
|
|
17692
|
+
createSandboxesSessionsBySessionIdSnapshotV3Status500Schema
|
|
17693
|
+
]);
|
|
17694
|
+
const createSandboxesByNameForkV3PathNameSchema = z__namespace.string().max(128).regex(/^[a-zA-Z0-9_-]+$/).describe("Name of the source sandbox to fork.");
|
|
17695
|
+
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.");
|
|
17696
|
+
const createSandboxesByNameForkV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17697
|
+
const createSandboxesByNameForkV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17698
|
+
const createSandboxesByNameForkV3Status200Schema = z__namespace.unknown();
|
|
17699
|
+
const createSandboxesByNameForkV3Status400Schema = z__namespace.unknown();
|
|
17700
|
+
const createSandboxesByNameForkV3Status401Schema = z__namespace.unknown();
|
|
17701
|
+
const createSandboxesByNameForkV3Status402Schema = z__namespace.unknown();
|
|
17702
|
+
const createSandboxesByNameForkV3Status403Schema = z__namespace.unknown();
|
|
17703
|
+
const createSandboxesByNameForkV3Status404Schema = z__namespace.unknown();
|
|
17704
|
+
const createSandboxesByNameForkV3Status409Schema = z__namespace.unknown();
|
|
17705
|
+
const createSandboxesByNameForkV3Status410Schema = z__namespace.unknown();
|
|
17706
|
+
const createSandboxesByNameForkV3Status422Schema = z__namespace.unknown();
|
|
17707
|
+
const createSandboxesByNameForkV3Status429Schema = z__namespace.unknown();
|
|
17708
|
+
const createSandboxesByNameForkV3Status500Schema = z__namespace.unknown();
|
|
17709
|
+
const createSandboxesByNameForkV3ResponseSchema = z__namespace.union([
|
|
17710
|
+
createSandboxesByNameForkV3Status200Schema,
|
|
17711
|
+
createSandboxesByNameForkV3Status400Schema,
|
|
17712
|
+
createSandboxesByNameForkV3Status401Schema,
|
|
17713
|
+
createSandboxesByNameForkV3Status402Schema,
|
|
17714
|
+
createSandboxesByNameForkV3Status403Schema,
|
|
17715
|
+
createSandboxesByNameForkV3Status404Schema,
|
|
17716
|
+
createSandboxesByNameForkV3Status409Schema,
|
|
17717
|
+
createSandboxesByNameForkV3Status410Schema,
|
|
17718
|
+
createSandboxesByNameForkV3Status422Schema,
|
|
17719
|
+
createSandboxesByNameForkV3Status429Schema,
|
|
17720
|
+
createSandboxesByNameForkV3Status500Schema
|
|
17721
|
+
]);
|
|
17722
|
+
const createSandboxesV4QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17723
|
+
const createSandboxesV4QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17724
|
+
const createSandboxesV4Status200Schema = z__namespace.unknown();
|
|
17725
|
+
const createSandboxesV4Status400Schema = z__namespace.unknown();
|
|
17726
|
+
const createSandboxesV4Status401Schema = z__namespace.unknown();
|
|
17727
|
+
const createSandboxesV4Status402Schema = z__namespace.unknown();
|
|
17728
|
+
const createSandboxesV4Status403Schema = z__namespace.unknown();
|
|
17729
|
+
const createSandboxesV4Status404Schema = z__namespace.unknown();
|
|
17730
|
+
const createSandboxesV4Status409Schema = z__namespace.unknown();
|
|
17731
|
+
const createSandboxesV4Status410Schema = z__namespace.unknown();
|
|
17732
|
+
const createSandboxesV4Status422Schema = z__namespace.unknown();
|
|
17733
|
+
const createSandboxesV4Status429Schema = z__namespace.unknown();
|
|
17734
|
+
const createSandboxesV4Status500Schema = z__namespace.unknown();
|
|
17735
|
+
const createSandboxesV4ResponseSchema = z__namespace.union([
|
|
17736
|
+
createSandboxesV4Status200Schema,
|
|
17737
|
+
createSandboxesV4Status400Schema,
|
|
17738
|
+
createSandboxesV4Status401Schema,
|
|
17739
|
+
createSandboxesV4Status402Schema,
|
|
17740
|
+
createSandboxesV4Status403Schema,
|
|
17741
|
+
createSandboxesV4Status404Schema,
|
|
17742
|
+
createSandboxesV4Status409Schema,
|
|
17743
|
+
createSandboxesV4Status410Schema,
|
|
17744
|
+
createSandboxesV4Status422Schema,
|
|
17745
|
+
createSandboxesV4Status429Schema,
|
|
17746
|
+
createSandboxesV4Status500Schema
|
|
17747
|
+
]);
|
|
17552
17748
|
const updateAttackChallengeModeQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
17553
17749
|
const updateAttackChallengeModeQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
17554
17750
|
const updateAttackChallengeModeStatus200Schema = z__namespace.unknown();
|
|
@@ -19367,6 +19563,7 @@ exports.aggregatePageviewsStatus401Schema = aggregatePageviewsStatus401Schema;
|
|
|
19367
19563
|
exports.aggregatePageviewsStatus402Schema = aggregatePageviewsStatus402Schema;
|
|
19368
19564
|
exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
|
|
19369
19565
|
exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
|
|
19566
|
+
exports.aiGatewayProviderOptionBagSchema = aiGatewayProviderOptionBagSchema;
|
|
19370
19567
|
exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
|
|
19371
19568
|
exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
|
|
19372
19569
|
exports.aiGatewayVirtualModelConfigListSchema = aiGatewayVirtualModelConfigListSchema;
|
|
@@ -19884,22 +20081,66 @@ exports.createRepositoryStatus403Schema = createRepositoryStatus403Schema;
|
|
|
19884
20081
|
exports.createRepositoryStatus404Schema = createRepositoryStatus404Schema;
|
|
19885
20082
|
exports.createRepositoryStatus409Schema = createRepositoryStatus409Schema;
|
|
19886
20083
|
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.
|
|
20084
|
+
exports.createSandboxesByNameForkV2PathNameSchema = createSandboxesByNameForkV2PathNameSchema;
|
|
20085
|
+
exports.createSandboxesByNameForkV2QueryProjectIdSchema = createSandboxesByNameForkV2QueryProjectIdSchema;
|
|
20086
|
+
exports.createSandboxesByNameForkV2QuerySlugSchema = createSandboxesByNameForkV2QuerySlugSchema;
|
|
20087
|
+
exports.createSandboxesByNameForkV2QueryTeamIdSchema = createSandboxesByNameForkV2QueryTeamIdSchema;
|
|
20088
|
+
exports.createSandboxesByNameForkV2ResponseSchema = createSandboxesByNameForkV2ResponseSchema;
|
|
20089
|
+
exports.createSandboxesByNameForkV2Status200Schema = createSandboxesByNameForkV2Status200Schema;
|
|
20090
|
+
exports.createSandboxesByNameForkV2Status400Schema = createSandboxesByNameForkV2Status400Schema;
|
|
20091
|
+
exports.createSandboxesByNameForkV2Status401Schema = createSandboxesByNameForkV2Status401Schema;
|
|
20092
|
+
exports.createSandboxesByNameForkV2Status402Schema = createSandboxesByNameForkV2Status402Schema;
|
|
20093
|
+
exports.createSandboxesByNameForkV2Status403Schema = createSandboxesByNameForkV2Status403Schema;
|
|
20094
|
+
exports.createSandboxesByNameForkV2Status404Schema = createSandboxesByNameForkV2Status404Schema;
|
|
20095
|
+
exports.createSandboxesByNameForkV2Status409Schema = createSandboxesByNameForkV2Status409Schema;
|
|
20096
|
+
exports.createSandboxesByNameForkV2Status410Schema = createSandboxesByNameForkV2Status410Schema;
|
|
20097
|
+
exports.createSandboxesByNameForkV2Status422Schema = createSandboxesByNameForkV2Status422Schema;
|
|
20098
|
+
exports.createSandboxesByNameForkV2Status429Schema = createSandboxesByNameForkV2Status429Schema;
|
|
20099
|
+
exports.createSandboxesByNameForkV2Status500Schema = createSandboxesByNameForkV2Status500Schema;
|
|
20100
|
+
exports.createSandboxesByNameForkV3PathNameSchema = createSandboxesByNameForkV3PathNameSchema;
|
|
20101
|
+
exports.createSandboxesByNameForkV3QueryProjectIdSchema = createSandboxesByNameForkV3QueryProjectIdSchema;
|
|
20102
|
+
exports.createSandboxesByNameForkV3QuerySlugSchema = createSandboxesByNameForkV3QuerySlugSchema;
|
|
20103
|
+
exports.createSandboxesByNameForkV3QueryTeamIdSchema = createSandboxesByNameForkV3QueryTeamIdSchema;
|
|
20104
|
+
exports.createSandboxesByNameForkV3ResponseSchema = createSandboxesByNameForkV3ResponseSchema;
|
|
20105
|
+
exports.createSandboxesByNameForkV3Status200Schema = createSandboxesByNameForkV3Status200Schema;
|
|
20106
|
+
exports.createSandboxesByNameForkV3Status400Schema = createSandboxesByNameForkV3Status400Schema;
|
|
20107
|
+
exports.createSandboxesByNameForkV3Status401Schema = createSandboxesByNameForkV3Status401Schema;
|
|
20108
|
+
exports.createSandboxesByNameForkV3Status402Schema = createSandboxesByNameForkV3Status402Schema;
|
|
20109
|
+
exports.createSandboxesByNameForkV3Status403Schema = createSandboxesByNameForkV3Status403Schema;
|
|
20110
|
+
exports.createSandboxesByNameForkV3Status404Schema = createSandboxesByNameForkV3Status404Schema;
|
|
20111
|
+
exports.createSandboxesByNameForkV3Status409Schema = createSandboxesByNameForkV3Status409Schema;
|
|
20112
|
+
exports.createSandboxesByNameForkV3Status410Schema = createSandboxesByNameForkV3Status410Schema;
|
|
20113
|
+
exports.createSandboxesByNameForkV3Status422Schema = createSandboxesByNameForkV3Status422Schema;
|
|
20114
|
+
exports.createSandboxesByNameForkV3Status429Schema = createSandboxesByNameForkV3Status429Schema;
|
|
20115
|
+
exports.createSandboxesByNameForkV3Status500Schema = createSandboxesByNameForkV3Status500Schema;
|
|
20116
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema;
|
|
20117
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema;
|
|
20118
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema;
|
|
20119
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema;
|
|
20120
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status201Schema = createSandboxesSessionsBySessionIdSnapshotV2Status201Schema;
|
|
20121
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status400Schema = createSandboxesSessionsBySessionIdSnapshotV2Status400Schema;
|
|
20122
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status401Schema = createSandboxesSessionsBySessionIdSnapshotV2Status401Schema;
|
|
20123
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status402Schema = createSandboxesSessionsBySessionIdSnapshotV2Status402Schema;
|
|
20124
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status403Schema = createSandboxesSessionsBySessionIdSnapshotV2Status403Schema;
|
|
20125
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status404Schema = createSandboxesSessionsBySessionIdSnapshotV2Status404Schema;
|
|
20126
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status410Schema = createSandboxesSessionsBySessionIdSnapshotV2Status410Schema;
|
|
20127
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status422Schema = createSandboxesSessionsBySessionIdSnapshotV2Status422Schema;
|
|
20128
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status429Schema = createSandboxesSessionsBySessionIdSnapshotV2Status429Schema;
|
|
20129
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV2Status500Schema = createSandboxesSessionsBySessionIdSnapshotV2Status500Schema;
|
|
20130
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema = createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema;
|
|
20131
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema = createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema;
|
|
20132
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema = createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema;
|
|
20133
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema = createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema;
|
|
20134
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status201Schema = createSandboxesSessionsBySessionIdSnapshotV3Status201Schema;
|
|
20135
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status400Schema = createSandboxesSessionsBySessionIdSnapshotV3Status400Schema;
|
|
20136
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status401Schema = createSandboxesSessionsBySessionIdSnapshotV3Status401Schema;
|
|
20137
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status402Schema = createSandboxesSessionsBySessionIdSnapshotV3Status402Schema;
|
|
20138
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status403Schema = createSandboxesSessionsBySessionIdSnapshotV3Status403Schema;
|
|
20139
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status404Schema = createSandboxesSessionsBySessionIdSnapshotV3Status404Schema;
|
|
20140
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status410Schema = createSandboxesSessionsBySessionIdSnapshotV3Status410Schema;
|
|
20141
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status422Schema = createSandboxesSessionsBySessionIdSnapshotV3Status422Schema;
|
|
20142
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status429Schema = createSandboxesSessionsBySessionIdSnapshotV3Status429Schema;
|
|
20143
|
+
exports.createSandboxesSessionsBySessionIdSnapshotV3Status500Schema = createSandboxesSessionsBySessionIdSnapshotV3Status500Schema;
|
|
19903
20144
|
exports.createSandboxesV2QuerySlugSchema = createSandboxesV2QuerySlugSchema;
|
|
19904
20145
|
exports.createSandboxesV2QueryTeamIdSchema = createSandboxesV2QueryTeamIdSchema;
|
|
19905
20146
|
exports.createSandboxesV2ResponseSchema = createSandboxesV2ResponseSchema;
|
|
@@ -19928,6 +20169,20 @@ exports.createSandboxesV3Status410Schema = createSandboxesV3Status410Schema;
|
|
|
19928
20169
|
exports.createSandboxesV3Status422Schema = createSandboxesV3Status422Schema;
|
|
19929
20170
|
exports.createSandboxesV3Status429Schema = createSandboxesV3Status429Schema;
|
|
19930
20171
|
exports.createSandboxesV3Status500Schema = createSandboxesV3Status500Schema;
|
|
20172
|
+
exports.createSandboxesV4QuerySlugSchema = createSandboxesV4QuerySlugSchema;
|
|
20173
|
+
exports.createSandboxesV4QueryTeamIdSchema = createSandboxesV4QueryTeamIdSchema;
|
|
20174
|
+
exports.createSandboxesV4ResponseSchema = createSandboxesV4ResponseSchema;
|
|
20175
|
+
exports.createSandboxesV4Status200Schema = createSandboxesV4Status200Schema;
|
|
20176
|
+
exports.createSandboxesV4Status400Schema = createSandboxesV4Status400Schema;
|
|
20177
|
+
exports.createSandboxesV4Status401Schema = createSandboxesV4Status401Schema;
|
|
20178
|
+
exports.createSandboxesV4Status402Schema = createSandboxesV4Status402Schema;
|
|
20179
|
+
exports.createSandboxesV4Status403Schema = createSandboxesV4Status403Schema;
|
|
20180
|
+
exports.createSandboxesV4Status404Schema = createSandboxesV4Status404Schema;
|
|
20181
|
+
exports.createSandboxesV4Status409Schema = createSandboxesV4Status409Schema;
|
|
20182
|
+
exports.createSandboxesV4Status410Schema = createSandboxesV4Status410Schema;
|
|
20183
|
+
exports.createSandboxesV4Status422Schema = createSandboxesV4Status422Schema;
|
|
20184
|
+
exports.createSandboxesV4Status429Schema = createSandboxesV4Status429Schema;
|
|
20185
|
+
exports.createSandboxesV4Status500Schema = createSandboxesV4Status500Schema;
|
|
19931
20186
|
exports.createSdkKeyPathProjectIdOrNameSchema = createSdkKeyPathProjectIdOrNameSchema;
|
|
19932
20187
|
exports.createSdkKeyQuerySlugSchema = createSdkKeyQuerySlugSchema;
|
|
19933
20188
|
exports.createSdkKeyQueryTeamIdSchema = createSdkKeyQueryTeamIdSchema;
|
|
@@ -19963,20 +20218,6 @@ exports.createSessionDirectoryStatus410Schema = createSessionDirectoryStatus410S
|
|
|
19963
20218
|
exports.createSessionDirectoryStatus422Schema = createSessionDirectoryStatus422Schema;
|
|
19964
20219
|
exports.createSessionDirectoryStatus429Schema = createSessionDirectoryStatus429Schema;
|
|
19965
20220
|
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
20221
|
exports.createSharedEnvVariableQuerySlugSchema = createSharedEnvVariableQuerySlugSchema;
|
|
19981
20222
|
exports.createSharedEnvVariableQueryTeamIdSchema = createSharedEnvVariableQueryTeamIdSchema;
|
|
19982
20223
|
exports.createSharedEnvVariableResponseSchema = createSharedEnvVariableResponseSchema;
|
|
@@ -22876,6 +23117,15 @@ exports.restoreRedirectsStatus403Schema = restoreRedirectsStatus403Schema;
|
|
|
22876
23117
|
exports.restoreRedirectsStatus404Schema = restoreRedirectsStatus404Schema;
|
|
22877
23118
|
exports.restoreRedirectsStatus410Schema = restoreRedirectsStatus410Schema;
|
|
22878
23119
|
exports.restoreRedirectsStatus500Schema = restoreRedirectsStatus500Schema;
|
|
23120
|
+
exports.rotateInstallationCredentialPathIntegrationConfigurationIdSchema = rotateInstallationCredentialPathIntegrationConfigurationIdSchema;
|
|
23121
|
+
exports.rotateInstallationCredentialResponseSchema = rotateInstallationCredentialResponseSchema;
|
|
23122
|
+
exports.rotateInstallationCredentialStatus200Schema = rotateInstallationCredentialStatus200Schema;
|
|
23123
|
+
exports.rotateInstallationCredentialStatus400Schema = rotateInstallationCredentialStatus400Schema;
|
|
23124
|
+
exports.rotateInstallationCredentialStatus401Schema = rotateInstallationCredentialStatus401Schema;
|
|
23125
|
+
exports.rotateInstallationCredentialStatus403Schema = rotateInstallationCredentialStatus403Schema;
|
|
23126
|
+
exports.rotateInstallationCredentialStatus404Schema = rotateInstallationCredentialStatus404Schema;
|
|
23127
|
+
exports.rotateInstallationCredentialStatus409Schema = rotateInstallationCredentialStatus409Schema;
|
|
23128
|
+
exports.rotateInstallationCredentialStatus410Schema = rotateInstallationCredentialStatus410Schema;
|
|
22879
23129
|
exports.runSessionCommandPathSessionIdSchema = runSessionCommandPathSessionIdSchema;
|
|
22880
23130
|
exports.runSessionCommandQueryCmdIdSchema = runSessionCommandQueryCmdIdSchema;
|
|
22881
23131
|
exports.runSessionCommandQuerySlugSchema = runSessionCommandQuerySlugSchema;
|