vercel-api-js 1.9.2 → 1.10.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-nbgupmvz.js → components-f5r2um56.js} +113 -1
- package/dist/{components-ma60hj42.cjs → components-k1idfow7.cjs} +117 -0
- package/dist/components.cjs +6 -1
- package/dist/components.d.mts +96 -1
- 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 -1
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +68 -2
- package/dist/index.d.ts +1111 -36
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-jzkupi74.js → schemas-j4m5o9a7.js} +257 -15
- package/dist/{schemas-in74gnjm.cjs → schemas-mq2xg0ty.cjs} +315 -14
- package/dist/schemas.cjs +60 -1
- package/dist/schemas.d.mts +182 -5
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +49 -7
- package/dist/types.d.mts +831 -33
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +43 -8
- package/package.json +1 -1
|
@@ -21,6 +21,101 @@ function _interopNamespace(e) {
|
|
|
21
21
|
var z__namespace = /*#__PURE__*/_interopNamespace(z);
|
|
22
22
|
|
|
23
23
|
// @ts-nocheck
|
|
24
|
+
const aiGatewayVirtualModelConfigSchema = z__namespace.object({
|
|
25
|
+
ownerId: z__namespace.string().describe("Team (owner) that owns this VMC."),
|
|
26
|
+
virtualModelSlug: z__namespace.string().describe("Client-facing alias used as the model slug in Gateway calls."),
|
|
27
|
+
displayName: z__namespace.string().optional().describe("Human-readable name for UI."),
|
|
28
|
+
description: z__namespace.string().optional().describe("Optional description for UI."),
|
|
29
|
+
deleted: z__namespace.union([
|
|
30
|
+
z__namespace.literal(false),
|
|
31
|
+
z__namespace.literal(true)
|
|
32
|
+
]).describe("Whether this VMC is soft-deleted."),
|
|
33
|
+
status: z__namespace.string().describe("UI lifecycle status: draft, active, or archived."),
|
|
34
|
+
visibility: z__namespace.string().optional().describe("Visibility in listings: public, internal, or stealth."),
|
|
35
|
+
updatedBy: z__namespace.string().optional().describe("User id that last updated this VMC."),
|
|
36
|
+
kind: z__namespace.string().describe("VMC kind: alias, relay, or router."),
|
|
37
|
+
baseUrl: z__namespace.string().optional().describe("For kind=relay: URL the gateway forwards requests to as a transparent proxy."),
|
|
38
|
+
instanceId: z__namespace.string().optional().describe("The concrete model-provider instance this VMC resolves to."),
|
|
39
|
+
providerOrder: z__namespace.array(z__namespace.string()).optional().describe("Ordered list of providers to try as fallbacks on failure."),
|
|
40
|
+
providerOnly: z__namespace.array(z__namespace.string()).optional().describe("Restrict routing to only these providers."),
|
|
41
|
+
inferenceRegion: z__namespace.object({
|
|
42
|
+
providers: z__namespace.object({}).catchall(z__namespace.object({
|
|
43
|
+
scope: z__namespace.enum([
|
|
44
|
+
"global",
|
|
45
|
+
"specific",
|
|
46
|
+
"zone"
|
|
47
|
+
]).optional().describe("Pin scope: `specific` (one provider region), `zone` (geo zone), or `global`."),
|
|
48
|
+
geoRegion: z__namespace.string().optional().describe('Geo zone (e.g. "us", "eu").'),
|
|
49
|
+
providerRegion: z__namespace.string().optional().describe("Provider-specific region identifier.")
|
|
50
|
+
})).optional().describe("Per-provider region overrides keyed by provider slug."),
|
|
51
|
+
scope: z__namespace.enum([
|
|
52
|
+
"global",
|
|
53
|
+
"specific",
|
|
54
|
+
"zone"
|
|
55
|
+
]).optional().describe("Pin scope: `specific` (one provider region), `zone` (geo zone), or `global`."),
|
|
56
|
+
geoRegion: z__namespace.string().optional().describe('Geo zone (e.g. "us", "eu").'),
|
|
57
|
+
providerRegion: z__namespace.string().optional().describe("Provider-specific region identifier.")
|
|
58
|
+
}).optional().describe("Region pinned on the VMC for system-credential routing (alias/router only)."),
|
|
59
|
+
modelSlug: z__namespace.string().optional().describe('Canonical model slug this VMC maps to (e.g. "creator/model"). Not used by kind=router.'),
|
|
60
|
+
models: z__namespace.array(z__namespace.string()).optional().describe("For kind=router: ordered candidates, model slugs or router references. Otherwise: fallback models."),
|
|
61
|
+
selector: z__namespace.enum([
|
|
62
|
+
"cost",
|
|
63
|
+
"priority",
|
|
64
|
+
"tps",
|
|
65
|
+
"ttft"
|
|
66
|
+
]).optional().describe("For kind=router: how to order candidates."),
|
|
67
|
+
requires: z__namespace.array(z__namespace.string()).optional().describe("For kind=router: capability tags a candidate must have."),
|
|
68
|
+
byokCredentialIds: z__namespace.array(z__namespace.string()).optional().describe("BYOK credential IDs allowed for this VMC."),
|
|
69
|
+
observabilityTags: z__namespace.array(z__namespace.string()).optional().describe("Observability tags attached to requests through this VMC."),
|
|
70
|
+
sort: z__namespace.enum([
|
|
71
|
+
"cost",
|
|
72
|
+
"latency",
|
|
73
|
+
"price",
|
|
74
|
+
"throughput",
|
|
75
|
+
"tps",
|
|
76
|
+
"ttft"
|
|
77
|
+
]).optional().describe("Rank eligible providers by an attribute."),
|
|
78
|
+
has: z__namespace.array(z__namespace.enum([
|
|
79
|
+
"implicit-caching",
|
|
80
|
+
"vision"
|
|
81
|
+
])).optional().describe("Limit providers to those with these features."),
|
|
82
|
+
caching: z__namespace.enum([
|
|
83
|
+
"auto"
|
|
84
|
+
]).optional().describe("Use caching if available."),
|
|
85
|
+
serviceTier: z__namespace.enum([
|
|
86
|
+
"fast",
|
|
87
|
+
"flex",
|
|
88
|
+
"priority"
|
|
89
|
+
]).optional().describe("Service tier for providers that support it."),
|
|
90
|
+
providerTimeouts: z__namespace.object({
|
|
91
|
+
byok: z__namespace.object({}).catchall(z__namespace.number()).optional()
|
|
92
|
+
}).optional().describe("Per-request provider timeouts in ms, keyed by provider slug for BYOK credentials."),
|
|
93
|
+
zeroDataRetention: z__namespace.union([
|
|
94
|
+
z__namespace.literal(false),
|
|
95
|
+
z__namespace.literal(true)
|
|
96
|
+
]).optional().describe("Only use providers with zero data retention."),
|
|
97
|
+
hipaaCompliant: z__namespace.union([
|
|
98
|
+
z__namespace.literal(false),
|
|
99
|
+
z__namespace.literal(true)
|
|
100
|
+
]).optional().describe("Only use HIPAA-compliant providers."),
|
|
101
|
+
disallowPromptTraining: z__namespace.union([
|
|
102
|
+
z__namespace.literal(false),
|
|
103
|
+
z__namespace.literal(true)
|
|
104
|
+
]).optional().describe("Only use providers that will not train on your prompts."),
|
|
105
|
+
speed: z__namespace.enum([
|
|
106
|
+
"fast"
|
|
107
|
+
]).optional().describe("Only use fastest providers with short timeouts."),
|
|
108
|
+
allowFallbackFromFast: z__namespace.union([
|
|
109
|
+
z__namespace.literal(false),
|
|
110
|
+
z__namespace.literal(true)
|
|
111
|
+
]).optional().describe("Allow fallback from fast to standard providers on failure."),
|
|
112
|
+
createdAt: z__namespace.number().describe("Creation timestamp (epoch ms)."),
|
|
113
|
+
updatedAt: z__namespace.number().describe("Last update timestamp (epoch ms).")
|
|
114
|
+
}).describe("Public response shape for virtual model configs. Used so OpenAPI generation can avoid ElectroDB's recursive EntityItem types.");
|
|
115
|
+
const aiGatewayVirtualModelConfigListSchema = z__namespace.object({
|
|
116
|
+
virtualModelConfigs: z__namespace.array(z__namespace.unknown()).describe("The page of VMCs."),
|
|
117
|
+
cursor: z__namespace.string().nullable().describe("Cursor for the next page, or null when no more pages remain.")
|
|
118
|
+
});
|
|
24
119
|
const aiGatewayRuleSchema = z__namespace.object({
|
|
25
120
|
ownerId: z__namespace.string(),
|
|
26
121
|
ruleId: z__namespace.string(),
|
|
@@ -3136,6 +3231,45 @@ const userEventSchema = z__namespace.object({
|
|
|
3136
3231
|
]),
|
|
3137
3232
|
customEnvId: z__namespace.string().nullish(),
|
|
3138
3233
|
prId: z__namespace.number().nullish()
|
|
3234
|
+
}).strict(),
|
|
3235
|
+
z__namespace.object({
|
|
3236
|
+
createdAt: z__namespace.number().optional(),
|
|
3237
|
+
eventful: z__namespace.union([
|
|
3238
|
+
z__namespace.literal(false),
|
|
3239
|
+
z__namespace.literal(true)
|
|
3240
|
+
]).optional(),
|
|
3241
|
+
headInfo: z__namespace.object({
|
|
3242
|
+
owner: z__namespace.string().describe("Owner (namespace) slug, e.g. `acme`."),
|
|
3243
|
+
ownerId: z__namespace.string().describe("Origin namespace id (`ns_…`)."),
|
|
3244
|
+
ref: z__namespace.string(),
|
|
3245
|
+
repo: z__namespace.string().describe("Repository name, e.g. `api`."),
|
|
3246
|
+
repoId: z__namespace.string().describe("Origin repository id."),
|
|
3247
|
+
sha: z__namespace.string()
|
|
3248
|
+
}).describe("Cursor Origin"),
|
|
3249
|
+
installationId: z__namespace.string().describe("Origin installation id (`i_…`) used to resolve the credential."),
|
|
3250
|
+
linkedProjectId: z__namespace.string().optional(),
|
|
3251
|
+
owner: z__namespace.string(),
|
|
3252
|
+
prId: z__namespace.number(),
|
|
3253
|
+
projectId: z__namespace.unknown().nullable(),
|
|
3254
|
+
customEnvId: z__namespace.unknown().nullish(),
|
|
3255
|
+
repo: z__namespace.string(),
|
|
3256
|
+
repoId: z__namespace.string(),
|
|
3257
|
+
type: z__namespace.enum([
|
|
3258
|
+
"cursor-origin-now-comment"
|
|
3259
|
+
]),
|
|
3260
|
+
gitComments: z__namespace.object({
|
|
3261
|
+
onPullRequest: z__namespace.union([
|
|
3262
|
+
z__namespace.literal(false),
|
|
3263
|
+
z__namespace.literal(true)
|
|
3264
|
+
]),
|
|
3265
|
+
onCommit: z__namespace.union([
|
|
3266
|
+
z__namespace.literal(false),
|
|
3267
|
+
z__namespace.literal(true)
|
|
3268
|
+
])
|
|
3269
|
+
}).optional(),
|
|
3270
|
+
provider: z__namespace.enum([
|
|
3271
|
+
"cursor-origin"
|
|
3272
|
+
])
|
|
3139
3273
|
}).strict()
|
|
3140
3274
|
])
|
|
3141
3275
|
}).strict(),
|
|
@@ -3727,7 +3861,7 @@ const userEventSchema = z__namespace.object({
|
|
|
3727
3861
|
z__namespace.literal(false),
|
|
3728
3862
|
z__namespace.literal(true)
|
|
3729
3863
|
]),
|
|
3730
|
-
sourceRepo: z__namespace.string().describe('Source repository, "owner/name".'),
|
|
3864
|
+
sourceRepo: z__namespace.string().nullable().describe('Source repository, "owner/name". Null when the pushed content was generated in-request (push-files-to-repo) rather than copied from a repository.'),
|
|
3731
3865
|
sourceCommitSha: z__namespace.string().nullable(),
|
|
3732
3866
|
destinationRepo: z__namespace.string().describe('"owner/name", or the raw request value if blocked before it resolved.'),
|
|
3733
3867
|
destinationBranch: z__namespace.string().nullable().describe("Branch actually pushed to, or the requested one if blocked."),
|
|
@@ -3740,7 +3874,8 @@ const userEventSchema = z__namespace.object({
|
|
|
3740
3874
|
"authorization",
|
|
3741
3875
|
"push",
|
|
3742
3876
|
"unexpected",
|
|
3743
|
-
"unknown"
|
|
3877
|
+
"unknown",
|
|
3878
|
+
"validation"
|
|
3744
3879
|
]).optional().describe("Mirrors `PushFailureStage` in `@api/git-push-repo`."),
|
|
3745
3880
|
failureCode: z__namespace.string().optional().describe("Sanitized code, never a raw error message.")
|
|
3746
3881
|
}).strict(),
|
|
@@ -4756,6 +4891,16 @@ const userEventSchema = z__namespace.object({
|
|
|
4756
4891
|
"limits_exceeded"
|
|
4757
4892
|
])
|
|
4758
4893
|
}).optional(),
|
|
4894
|
+
kmsOperations: z__namespace.object({
|
|
4895
|
+
updatedAt: z__namespace.number(),
|
|
4896
|
+
blockedFrom: z__namespace.number().optional(),
|
|
4897
|
+
blockedUntil: z__namespace.number().optional(),
|
|
4898
|
+
blockReason: z__namespace.enum([
|
|
4899
|
+
"admin_override",
|
|
4900
|
+
"hard_blocked",
|
|
4901
|
+
"limits_exceeded"
|
|
4902
|
+
])
|
|
4903
|
+
}).optional(),
|
|
4759
4904
|
vcr: z__namespace.object({
|
|
4760
4905
|
updatedAt: z__namespace.number(),
|
|
4761
4906
|
blockedFrom: z__namespace.number().optional(),
|
|
@@ -11668,6 +11813,103 @@ const deleteAccessGroupProjectResponseSchema = z__namespace.union([
|
|
|
11668
11813
|
deleteAccessGroupProjectStatus403Schema,
|
|
11669
11814
|
deleteAccessGroupProjectStatus410Schema
|
|
11670
11815
|
]);
|
|
11816
|
+
const createAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11817
|
+
const createAiGatewayVirtualModelConfigQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11818
|
+
const createAiGatewayVirtualModelConfigStatus201Schema = z__namespace.unknown();
|
|
11819
|
+
const createAiGatewayVirtualModelConfigStatus400Schema = z__namespace.unknown();
|
|
11820
|
+
const createAiGatewayVirtualModelConfigStatus401Schema = z__namespace.unknown();
|
|
11821
|
+
const createAiGatewayVirtualModelConfigStatus403Schema = z__namespace.unknown();
|
|
11822
|
+
const createAiGatewayVirtualModelConfigStatus409Schema = z__namespace.unknown();
|
|
11823
|
+
const createAiGatewayVirtualModelConfigStatus410Schema = z__namespace.unknown();
|
|
11824
|
+
const createAiGatewayVirtualModelConfigStatus429Schema = z__namespace.unknown();
|
|
11825
|
+
const createAiGatewayVirtualModelConfigStatus500Schema = z__namespace.unknown();
|
|
11826
|
+
const createAiGatewayVirtualModelConfigResponseSchema = z__namespace.union([
|
|
11827
|
+
createAiGatewayVirtualModelConfigStatus201Schema,
|
|
11828
|
+
createAiGatewayVirtualModelConfigStatus400Schema,
|
|
11829
|
+
createAiGatewayVirtualModelConfigStatus401Schema,
|
|
11830
|
+
createAiGatewayVirtualModelConfigStatus403Schema,
|
|
11831
|
+
createAiGatewayVirtualModelConfigStatus409Schema,
|
|
11832
|
+
createAiGatewayVirtualModelConfigStatus410Schema,
|
|
11833
|
+
createAiGatewayVirtualModelConfigStatus429Schema,
|
|
11834
|
+
createAiGatewayVirtualModelConfigStatus500Schema
|
|
11835
|
+
]);
|
|
11836
|
+
const getAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
|
|
11837
|
+
const getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
|
|
11838
|
+
const getAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11839
|
+
const getAiGatewayVirtualModelConfigQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11840
|
+
const getAiGatewayVirtualModelConfigStatus200Schema = z__namespace.unknown();
|
|
11841
|
+
const getAiGatewayVirtualModelConfigStatus400Schema = z__namespace.unknown();
|
|
11842
|
+
const getAiGatewayVirtualModelConfigStatus401Schema = z__namespace.unknown();
|
|
11843
|
+
const getAiGatewayVirtualModelConfigStatus403Schema = z__namespace.unknown();
|
|
11844
|
+
const getAiGatewayVirtualModelConfigStatus404Schema = z__namespace.unknown();
|
|
11845
|
+
const getAiGatewayVirtualModelConfigStatus410Schema = z__namespace.unknown();
|
|
11846
|
+
const getAiGatewayVirtualModelConfigStatus500Schema = z__namespace.unknown();
|
|
11847
|
+
const getAiGatewayVirtualModelConfigResponseSchema = z__namespace.union([
|
|
11848
|
+
getAiGatewayVirtualModelConfigStatus200Schema,
|
|
11849
|
+
getAiGatewayVirtualModelConfigStatus400Schema,
|
|
11850
|
+
getAiGatewayVirtualModelConfigStatus401Schema,
|
|
11851
|
+
getAiGatewayVirtualModelConfigStatus403Schema,
|
|
11852
|
+
getAiGatewayVirtualModelConfigStatus404Schema,
|
|
11853
|
+
getAiGatewayVirtualModelConfigStatus410Schema,
|
|
11854
|
+
getAiGatewayVirtualModelConfigStatus500Schema
|
|
11855
|
+
]);
|
|
11856
|
+
const updateAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11857
|
+
const updateAiGatewayVirtualModelConfigQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11858
|
+
const updateAiGatewayVirtualModelConfigStatus200Schema = z__namespace.unknown();
|
|
11859
|
+
const updateAiGatewayVirtualModelConfigStatus400Schema = z__namespace.unknown();
|
|
11860
|
+
const updateAiGatewayVirtualModelConfigStatus401Schema = z__namespace.unknown();
|
|
11861
|
+
const updateAiGatewayVirtualModelConfigStatus403Schema = z__namespace.unknown();
|
|
11862
|
+
const updateAiGatewayVirtualModelConfigStatus404Schema = z__namespace.unknown();
|
|
11863
|
+
const updateAiGatewayVirtualModelConfigStatus410Schema = z__namespace.unknown();
|
|
11864
|
+
const updateAiGatewayVirtualModelConfigStatus500Schema = z__namespace.unknown();
|
|
11865
|
+
const updateAiGatewayVirtualModelConfigResponseSchema = z__namespace.union([
|
|
11866
|
+
updateAiGatewayVirtualModelConfigStatus200Schema,
|
|
11867
|
+
updateAiGatewayVirtualModelConfigStatus400Schema,
|
|
11868
|
+
updateAiGatewayVirtualModelConfigStatus401Schema,
|
|
11869
|
+
updateAiGatewayVirtualModelConfigStatus403Schema,
|
|
11870
|
+
updateAiGatewayVirtualModelConfigStatus404Schema,
|
|
11871
|
+
updateAiGatewayVirtualModelConfigStatus410Schema,
|
|
11872
|
+
updateAiGatewayVirtualModelConfigStatus500Schema
|
|
11873
|
+
]);
|
|
11874
|
+
const deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = z__namespace.string().optional();
|
|
11875
|
+
const deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = z__namespace.string();
|
|
11876
|
+
const deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11877
|
+
const deleteAiGatewayVirtualModelConfigQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11878
|
+
const deleteAiGatewayVirtualModelConfigStatus204Schema = z__namespace.unknown();
|
|
11879
|
+
const deleteAiGatewayVirtualModelConfigStatus400Schema = z__namespace.unknown();
|
|
11880
|
+
const deleteAiGatewayVirtualModelConfigStatus401Schema = z__namespace.unknown();
|
|
11881
|
+
const deleteAiGatewayVirtualModelConfigStatus403Schema = z__namespace.unknown();
|
|
11882
|
+
const deleteAiGatewayVirtualModelConfigStatus404Schema = z__namespace.unknown();
|
|
11883
|
+
const deleteAiGatewayVirtualModelConfigStatus410Schema = z__namespace.unknown();
|
|
11884
|
+
const deleteAiGatewayVirtualModelConfigStatus500Schema = z__namespace.unknown();
|
|
11885
|
+
const deleteAiGatewayVirtualModelConfigResponseSchema = z__namespace.union([
|
|
11886
|
+
deleteAiGatewayVirtualModelConfigStatus204Schema,
|
|
11887
|
+
deleteAiGatewayVirtualModelConfigStatus400Schema,
|
|
11888
|
+
deleteAiGatewayVirtualModelConfigStatus401Schema,
|
|
11889
|
+
deleteAiGatewayVirtualModelConfigStatus403Schema,
|
|
11890
|
+
deleteAiGatewayVirtualModelConfigStatus404Schema,
|
|
11891
|
+
deleteAiGatewayVirtualModelConfigStatus410Schema,
|
|
11892
|
+
deleteAiGatewayVirtualModelConfigStatus500Schema
|
|
11893
|
+
]);
|
|
11894
|
+
const listAiGatewayVirtualModelConfigsQueryOwnerIdSchema = z__namespace.string().optional();
|
|
11895
|
+
const listAiGatewayVirtualModelConfigsQueryLimitSchema = z__namespace.int().min(1).optional();
|
|
11896
|
+
const listAiGatewayVirtualModelConfigsQueryCursorSchema = z__namespace.string().optional();
|
|
11897
|
+
const listAiGatewayVirtualModelConfigsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11898
|
+
const listAiGatewayVirtualModelConfigsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11899
|
+
const listAiGatewayVirtualModelConfigsStatus200Schema = z__namespace.unknown();
|
|
11900
|
+
const listAiGatewayVirtualModelConfigsStatus400Schema = z__namespace.unknown();
|
|
11901
|
+
const listAiGatewayVirtualModelConfigsStatus401Schema = z__namespace.unknown();
|
|
11902
|
+
const listAiGatewayVirtualModelConfigsStatus403Schema = z__namespace.unknown();
|
|
11903
|
+
const listAiGatewayVirtualModelConfigsStatus410Schema = z__namespace.unknown();
|
|
11904
|
+
const listAiGatewayVirtualModelConfigsStatus500Schema = z__namespace.unknown();
|
|
11905
|
+
const listAiGatewayVirtualModelConfigsResponseSchema = z__namespace.union([
|
|
11906
|
+
listAiGatewayVirtualModelConfigsStatus200Schema,
|
|
11907
|
+
listAiGatewayVirtualModelConfigsStatus400Schema,
|
|
11908
|
+
listAiGatewayVirtualModelConfigsStatus401Schema,
|
|
11909
|
+
listAiGatewayVirtualModelConfigsStatus403Schema,
|
|
11910
|
+
listAiGatewayVirtualModelConfigsStatus410Schema,
|
|
11911
|
+
listAiGatewayVirtualModelConfigsStatus500Schema
|
|
11912
|
+
]);
|
|
11671
11913
|
const createAiGatewayRuleQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
|
|
11672
11914
|
const createAiGatewayRuleQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
|
|
11673
11915
|
const createAiGatewayRuleStatus201Schema = z__namespace.unknown();
|
|
@@ -18044,7 +18286,7 @@ const getRootResponseSchema = z__namespace.union([
|
|
|
18044
18286
|
getRootStatus404Schema,
|
|
18045
18287
|
getRootStatus410Schema
|
|
18046
18288
|
]);
|
|
18047
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18289
|
+
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18048
18290
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18049
18291
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18050
18292
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18064,7 +18306,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z_
|
|
|
18064
18306
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema,
|
|
18065
18307
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema
|
|
18066
18308
|
]);
|
|
18067
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18309
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18068
18310
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18069
18311
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18070
18312
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18084,7 +18326,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema =
|
|
|
18084
18326
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema,
|
|
18085
18327
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema
|
|
18086
18328
|
]);
|
|
18087
|
-
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18329
|
+
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18088
18330
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18089
18331
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18090
18332
|
const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18104,7 +18346,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema
|
|
|
18104
18346
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18105
18347
|
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18106
18348
|
]);
|
|
18107
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18349
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18108
18350
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18109
18351
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18110
18352
|
const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18124,7 +18366,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18124
18366
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
|
|
18125
18367
|
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
|
|
18126
18368
|
]);
|
|
18127
|
-
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18369
|
+
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18128
18370
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18129
18371
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18130
18372
|
const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18146,7 +18388,7 @@ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSch
|
|
|
18146
18388
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18147
18389
|
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18148
18390
|
]);
|
|
18149
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18391
|
+
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18150
18392
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18151
18393
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18152
18394
|
const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
|
|
@@ -18169,11 +18411,11 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSc
|
|
|
18169
18411
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
|
|
18170
18412
|
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
|
|
18171
18413
|
]);
|
|
18172
|
-
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18414
|
+
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18173
18415
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18174
18416
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18175
18417
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).optional().describe("Digest of the blob to mount from another repository.");
|
|
18176
|
-
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18418
|
+
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)\\\/[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).optional().describe("Source repository to mount the blob from.");
|
|
18177
18419
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = z__namespace.unknown();
|
|
18178
18420
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = z__namespace.unknown();
|
|
18179
18421
|
const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = z__namespace.unknown();
|
|
@@ -18190,7 +18432,7 @@ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema =
|
|
|
18190
18432
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema,
|
|
18191
18433
|
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema
|
|
18192
18434
|
]);
|
|
18193
|
-
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18435
|
+
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18194
18436
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18195
18437
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18196
18438
|
const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
|
|
@@ -18212,7 +18454,7 @@ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponse
|
|
|
18212
18454
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema,
|
|
18213
18455
|
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema
|
|
18214
18456
|
]);
|
|
18215
|
-
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18457
|
+
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18216
18458
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18217
18459
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18218
18460
|
const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
|
|
@@ -18230,7 +18472,7 @@ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSche
|
|
|
18230
18472
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18231
18473
|
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18232
18474
|
]);
|
|
18233
|
-
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18475
|
+
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18234
18476
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18235
18477
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18236
18478
|
const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
|
|
@@ -18250,7 +18492,7 @@ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseS
|
|
|
18250
18492
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
|
|
18251
18493
|
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
|
|
18252
18494
|
]);
|
|
18253
|
-
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])
|
|
18495
|
+
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^(?:[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?|team_[a-zA-Z0-9]+)$/).describe("Single Docker repository team slug or team ID component.");
|
|
18254
18496
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
|
|
18255
18497
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
|
|
18256
18498
|
const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = z__namespace.int().min(1).max(1000).optional();
|
|
@@ -18850,6 +19092,8 @@ exports.aggregatePageviewsStatus403Schema = aggregatePageviewsStatus403Schema;
|
|
|
18850
19092
|
exports.aggregatePageviewsStatus410Schema = aggregatePageviewsStatus410Schema;
|
|
18851
19093
|
exports.aiGatewayRuleListSchema = aiGatewayRuleListSchema;
|
|
18852
19094
|
exports.aiGatewayRuleSchema = aiGatewayRuleSchema;
|
|
19095
|
+
exports.aiGatewayVirtualModelConfigListSchema = aiGatewayVirtualModelConfigListSchema;
|
|
19096
|
+
exports.aiGatewayVirtualModelConfigSchema = aiGatewayVirtualModelConfigSchema;
|
|
18853
19097
|
exports.approveRollingReleaseStagePathIdOrNameSchema = approveRollingReleaseStagePathIdOrNameSchema;
|
|
18854
19098
|
exports.approveRollingReleaseStageQuerySlugSchema = approveRollingReleaseStageQuerySlugSchema;
|
|
18855
19099
|
exports.approveRollingReleaseStageQueryTeamIdSchema = approveRollingReleaseStageQueryTeamIdSchema;
|
|
@@ -19035,6 +19279,17 @@ exports.createAiGatewayRuleStatus403Schema = createAiGatewayRuleStatus403Schema;
|
|
|
19035
19279
|
exports.createAiGatewayRuleStatus409Schema = createAiGatewayRuleStatus409Schema;
|
|
19036
19280
|
exports.createAiGatewayRuleStatus410Schema = createAiGatewayRuleStatus410Schema;
|
|
19037
19281
|
exports.createAiGatewayRuleStatus500Schema = createAiGatewayRuleStatus500Schema;
|
|
19282
|
+
exports.createAiGatewayVirtualModelConfigQuerySlugSchema = createAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
19283
|
+
exports.createAiGatewayVirtualModelConfigQueryTeamIdSchema = createAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
19284
|
+
exports.createAiGatewayVirtualModelConfigResponseSchema = createAiGatewayVirtualModelConfigResponseSchema;
|
|
19285
|
+
exports.createAiGatewayVirtualModelConfigStatus201Schema = createAiGatewayVirtualModelConfigStatus201Schema;
|
|
19286
|
+
exports.createAiGatewayVirtualModelConfigStatus400Schema = createAiGatewayVirtualModelConfigStatus400Schema;
|
|
19287
|
+
exports.createAiGatewayVirtualModelConfigStatus401Schema = createAiGatewayVirtualModelConfigStatus401Schema;
|
|
19288
|
+
exports.createAiGatewayVirtualModelConfigStatus403Schema = createAiGatewayVirtualModelConfigStatus403Schema;
|
|
19289
|
+
exports.createAiGatewayVirtualModelConfigStatus409Schema = createAiGatewayVirtualModelConfigStatus409Schema;
|
|
19290
|
+
exports.createAiGatewayVirtualModelConfigStatus410Schema = createAiGatewayVirtualModelConfigStatus410Schema;
|
|
19291
|
+
exports.createAiGatewayVirtualModelConfigStatus429Schema = createAiGatewayVirtualModelConfigStatus429Schema;
|
|
19292
|
+
exports.createAiGatewayVirtualModelConfigStatus500Schema = createAiGatewayVirtualModelConfigStatus500Schema;
|
|
19038
19293
|
exports.createApiKeysResponseSchema = createApiKeysResponseSchema;
|
|
19039
19294
|
exports.createApiKeysStatus200Schema = createApiKeysStatus200Schema;
|
|
19040
19295
|
exports.createApiKeysStatus400Schema = createApiKeysStatus400Schema;
|
|
@@ -19557,6 +19812,18 @@ exports.deleteAiGatewayRuleStatus403Schema = deleteAiGatewayRuleStatus403Schema;
|
|
|
19557
19812
|
exports.deleteAiGatewayRuleStatus404Schema = deleteAiGatewayRuleStatus404Schema;
|
|
19558
19813
|
exports.deleteAiGatewayRuleStatus410Schema = deleteAiGatewayRuleStatus410Schema;
|
|
19559
19814
|
exports.deleteAiGatewayRuleStatus500Schema = deleteAiGatewayRuleStatus500Schema;
|
|
19815
|
+
exports.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema;
|
|
19816
|
+
exports.deleteAiGatewayVirtualModelConfigQuerySlugSchema = deleteAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
19817
|
+
exports.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = deleteAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
19818
|
+
exports.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
|
|
19819
|
+
exports.deleteAiGatewayVirtualModelConfigResponseSchema = deleteAiGatewayVirtualModelConfigResponseSchema;
|
|
19820
|
+
exports.deleteAiGatewayVirtualModelConfigStatus204Schema = deleteAiGatewayVirtualModelConfigStatus204Schema;
|
|
19821
|
+
exports.deleteAiGatewayVirtualModelConfigStatus400Schema = deleteAiGatewayVirtualModelConfigStatus400Schema;
|
|
19822
|
+
exports.deleteAiGatewayVirtualModelConfigStatus401Schema = deleteAiGatewayVirtualModelConfigStatus401Schema;
|
|
19823
|
+
exports.deleteAiGatewayVirtualModelConfigStatus403Schema = deleteAiGatewayVirtualModelConfigStatus403Schema;
|
|
19824
|
+
exports.deleteAiGatewayVirtualModelConfigStatus404Schema = deleteAiGatewayVirtualModelConfigStatus404Schema;
|
|
19825
|
+
exports.deleteAiGatewayVirtualModelConfigStatus410Schema = deleteAiGatewayVirtualModelConfigStatus410Schema;
|
|
19826
|
+
exports.deleteAiGatewayVirtualModelConfigStatus500Schema = deleteAiGatewayVirtualModelConfigStatus500Schema;
|
|
19560
19827
|
exports.deleteAliasPathAliasIdSchema = deleteAliasPathAliasIdSchema;
|
|
19561
19828
|
exports.deleteAliasQuerySlugSchema = deleteAliasQuerySlugSchema;
|
|
19562
19829
|
exports.deleteAliasQueryTeamIdSchema = deleteAliasQueryTeamIdSchema;
|
|
@@ -20123,6 +20390,18 @@ exports.getActiveAttackStatusStatus401Schema = getActiveAttackStatusStatus401Sch
|
|
|
20123
20390
|
exports.getActiveAttackStatusStatus403Schema = getActiveAttackStatusStatus403Schema;
|
|
20124
20391
|
exports.getActiveAttackStatusStatus404Schema = getActiveAttackStatusStatus404Schema;
|
|
20125
20392
|
exports.getActiveAttackStatusStatus410Schema = getActiveAttackStatusStatus410Schema;
|
|
20393
|
+
exports.getAiGatewayVirtualModelConfigQueryOwnerIdSchema = getAiGatewayVirtualModelConfigQueryOwnerIdSchema;
|
|
20394
|
+
exports.getAiGatewayVirtualModelConfigQuerySlugSchema = getAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
20395
|
+
exports.getAiGatewayVirtualModelConfigQueryTeamIdSchema = getAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
20396
|
+
exports.getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
|
|
20397
|
+
exports.getAiGatewayVirtualModelConfigResponseSchema = getAiGatewayVirtualModelConfigResponseSchema;
|
|
20398
|
+
exports.getAiGatewayVirtualModelConfigStatus200Schema = getAiGatewayVirtualModelConfigStatus200Schema;
|
|
20399
|
+
exports.getAiGatewayVirtualModelConfigStatus400Schema = getAiGatewayVirtualModelConfigStatus400Schema;
|
|
20400
|
+
exports.getAiGatewayVirtualModelConfigStatus401Schema = getAiGatewayVirtualModelConfigStatus401Schema;
|
|
20401
|
+
exports.getAiGatewayVirtualModelConfigStatus403Schema = getAiGatewayVirtualModelConfigStatus403Schema;
|
|
20402
|
+
exports.getAiGatewayVirtualModelConfigStatus404Schema = getAiGatewayVirtualModelConfigStatus404Schema;
|
|
20403
|
+
exports.getAiGatewayVirtualModelConfigStatus410Schema = getAiGatewayVirtualModelConfigStatus410Schema;
|
|
20404
|
+
exports.getAiGatewayVirtualModelConfigStatus500Schema = getAiGatewayVirtualModelConfigStatus500Schema;
|
|
20126
20405
|
exports.getAliasPathIdOrAliasSchema = getAliasPathIdOrAliasSchema;
|
|
20127
20406
|
exports.getAliasQueryFromSchema = getAliasQueryFromSchema;
|
|
20128
20407
|
exports.getAliasQueryProjectIdSchema = getAliasQueryProjectIdSchema;
|
|
@@ -21504,6 +21783,18 @@ exports.listAiGatewayRulesStatus401Schema = listAiGatewayRulesStatus401Schema;
|
|
|
21504
21783
|
exports.listAiGatewayRulesStatus403Schema = listAiGatewayRulesStatus403Schema;
|
|
21505
21784
|
exports.listAiGatewayRulesStatus410Schema = listAiGatewayRulesStatus410Schema;
|
|
21506
21785
|
exports.listAiGatewayRulesStatus500Schema = listAiGatewayRulesStatus500Schema;
|
|
21786
|
+
exports.listAiGatewayVirtualModelConfigsQueryCursorSchema = listAiGatewayVirtualModelConfigsQueryCursorSchema;
|
|
21787
|
+
exports.listAiGatewayVirtualModelConfigsQueryLimitSchema = listAiGatewayVirtualModelConfigsQueryLimitSchema;
|
|
21788
|
+
exports.listAiGatewayVirtualModelConfigsQueryOwnerIdSchema = listAiGatewayVirtualModelConfigsQueryOwnerIdSchema;
|
|
21789
|
+
exports.listAiGatewayVirtualModelConfigsQuerySlugSchema = listAiGatewayVirtualModelConfigsQuerySlugSchema;
|
|
21790
|
+
exports.listAiGatewayVirtualModelConfigsQueryTeamIdSchema = listAiGatewayVirtualModelConfigsQueryTeamIdSchema;
|
|
21791
|
+
exports.listAiGatewayVirtualModelConfigsResponseSchema = listAiGatewayVirtualModelConfigsResponseSchema;
|
|
21792
|
+
exports.listAiGatewayVirtualModelConfigsStatus200Schema = listAiGatewayVirtualModelConfigsStatus200Schema;
|
|
21793
|
+
exports.listAiGatewayVirtualModelConfigsStatus400Schema = listAiGatewayVirtualModelConfigsStatus400Schema;
|
|
21794
|
+
exports.listAiGatewayVirtualModelConfigsStatus401Schema = listAiGatewayVirtualModelConfigsStatus401Schema;
|
|
21795
|
+
exports.listAiGatewayVirtualModelConfigsStatus403Schema = listAiGatewayVirtualModelConfigsStatus403Schema;
|
|
21796
|
+
exports.listAiGatewayVirtualModelConfigsStatus410Schema = listAiGatewayVirtualModelConfigsStatus410Schema;
|
|
21797
|
+
exports.listAiGatewayVirtualModelConfigsStatus500Schema = listAiGatewayVirtualModelConfigsStatus500Schema;
|
|
21507
21798
|
exports.listAliasesQueryDomainSchema = listAliasesQueryDomainSchema;
|
|
21508
21799
|
exports.listAliasesQueryFromSchema = listAliasesQueryFromSchema;
|
|
21509
21800
|
exports.listAliasesQueryLimitSchema = listAliasesQueryLimitSchema;
|
|
@@ -22499,6 +22790,16 @@ exports.updateAiGatewayRuleStatus403Schema = updateAiGatewayRuleStatus403Schema;
|
|
|
22499
22790
|
exports.updateAiGatewayRuleStatus404Schema = updateAiGatewayRuleStatus404Schema;
|
|
22500
22791
|
exports.updateAiGatewayRuleStatus410Schema = updateAiGatewayRuleStatus410Schema;
|
|
22501
22792
|
exports.updateAiGatewayRuleStatus500Schema = updateAiGatewayRuleStatus500Schema;
|
|
22793
|
+
exports.updateAiGatewayVirtualModelConfigQuerySlugSchema = updateAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
22794
|
+
exports.updateAiGatewayVirtualModelConfigQueryTeamIdSchema = updateAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
22795
|
+
exports.updateAiGatewayVirtualModelConfigResponseSchema = updateAiGatewayVirtualModelConfigResponseSchema;
|
|
22796
|
+
exports.updateAiGatewayVirtualModelConfigStatus200Schema = updateAiGatewayVirtualModelConfigStatus200Schema;
|
|
22797
|
+
exports.updateAiGatewayVirtualModelConfigStatus400Schema = updateAiGatewayVirtualModelConfigStatus400Schema;
|
|
22798
|
+
exports.updateAiGatewayVirtualModelConfigStatus401Schema = updateAiGatewayVirtualModelConfigStatus401Schema;
|
|
22799
|
+
exports.updateAiGatewayVirtualModelConfigStatus403Schema = updateAiGatewayVirtualModelConfigStatus403Schema;
|
|
22800
|
+
exports.updateAiGatewayVirtualModelConfigStatus404Schema = updateAiGatewayVirtualModelConfigStatus404Schema;
|
|
22801
|
+
exports.updateAiGatewayVirtualModelConfigStatus410Schema = updateAiGatewayVirtualModelConfigStatus410Schema;
|
|
22802
|
+
exports.updateAiGatewayVirtualModelConfigStatus500Schema = updateAiGatewayVirtualModelConfigStatus500Schema;
|
|
22502
22803
|
exports.updateAttackChallengeModeQuerySlugSchema = updateAttackChallengeModeQuerySlugSchema;
|
|
22503
22804
|
exports.updateAttackChallengeModeQueryTeamIdSchema = updateAttackChallengeModeQueryTeamIdSchema;
|
|
22504
22805
|
exports.updateAttackChallengeModeResponseSchema = updateAttackChallengeModeResponseSchema;
|
package/dist/schemas.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
var schemas = require('./schemas-
|
|
3
|
+
var schemas = require('./schemas-mq2xg0ty.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -105,6 +105,8 @@ exports.aggregatePageviewsStatus403Schema = schemas.aggregatePageviewsStatus403S
|
|
|
105
105
|
exports.aggregatePageviewsStatus410Schema = schemas.aggregatePageviewsStatus410Schema;
|
|
106
106
|
exports.aiGatewayRuleListSchema = schemas.aiGatewayRuleListSchema;
|
|
107
107
|
exports.aiGatewayRuleSchema = schemas.aiGatewayRuleSchema;
|
|
108
|
+
exports.aiGatewayVirtualModelConfigListSchema = schemas.aiGatewayVirtualModelConfigListSchema;
|
|
109
|
+
exports.aiGatewayVirtualModelConfigSchema = schemas.aiGatewayVirtualModelConfigSchema;
|
|
108
110
|
exports.approveRollingReleaseStagePathIdOrNameSchema = schemas.approveRollingReleaseStagePathIdOrNameSchema;
|
|
109
111
|
exports.approveRollingReleaseStageQuerySlugSchema = schemas.approveRollingReleaseStageQuerySlugSchema;
|
|
110
112
|
exports.approveRollingReleaseStageQueryTeamIdSchema = schemas.approveRollingReleaseStageQueryTeamIdSchema;
|
|
@@ -290,6 +292,17 @@ exports.createAiGatewayRuleStatus403Schema = schemas.createAiGatewayRuleStatus40
|
|
|
290
292
|
exports.createAiGatewayRuleStatus409Schema = schemas.createAiGatewayRuleStatus409Schema;
|
|
291
293
|
exports.createAiGatewayRuleStatus410Schema = schemas.createAiGatewayRuleStatus410Schema;
|
|
292
294
|
exports.createAiGatewayRuleStatus500Schema = schemas.createAiGatewayRuleStatus500Schema;
|
|
295
|
+
exports.createAiGatewayVirtualModelConfigQuerySlugSchema = schemas.createAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
296
|
+
exports.createAiGatewayVirtualModelConfigQueryTeamIdSchema = schemas.createAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
297
|
+
exports.createAiGatewayVirtualModelConfigResponseSchema = schemas.createAiGatewayVirtualModelConfigResponseSchema;
|
|
298
|
+
exports.createAiGatewayVirtualModelConfigStatus201Schema = schemas.createAiGatewayVirtualModelConfigStatus201Schema;
|
|
299
|
+
exports.createAiGatewayVirtualModelConfigStatus400Schema = schemas.createAiGatewayVirtualModelConfigStatus400Schema;
|
|
300
|
+
exports.createAiGatewayVirtualModelConfigStatus401Schema = schemas.createAiGatewayVirtualModelConfigStatus401Schema;
|
|
301
|
+
exports.createAiGatewayVirtualModelConfigStatus403Schema = schemas.createAiGatewayVirtualModelConfigStatus403Schema;
|
|
302
|
+
exports.createAiGatewayVirtualModelConfigStatus409Schema = schemas.createAiGatewayVirtualModelConfigStatus409Schema;
|
|
303
|
+
exports.createAiGatewayVirtualModelConfigStatus410Schema = schemas.createAiGatewayVirtualModelConfigStatus410Schema;
|
|
304
|
+
exports.createAiGatewayVirtualModelConfigStatus429Schema = schemas.createAiGatewayVirtualModelConfigStatus429Schema;
|
|
305
|
+
exports.createAiGatewayVirtualModelConfigStatus500Schema = schemas.createAiGatewayVirtualModelConfigStatus500Schema;
|
|
293
306
|
exports.createApiKeysResponseSchema = schemas.createApiKeysResponseSchema;
|
|
294
307
|
exports.createApiKeysStatus200Schema = schemas.createApiKeysStatus200Schema;
|
|
295
308
|
exports.createApiKeysStatus400Schema = schemas.createApiKeysStatus400Schema;
|
|
@@ -812,6 +825,18 @@ exports.deleteAiGatewayRuleStatus403Schema = schemas.deleteAiGatewayRuleStatus40
|
|
|
812
825
|
exports.deleteAiGatewayRuleStatus404Schema = schemas.deleteAiGatewayRuleStatus404Schema;
|
|
813
826
|
exports.deleteAiGatewayRuleStatus410Schema = schemas.deleteAiGatewayRuleStatus410Schema;
|
|
814
827
|
exports.deleteAiGatewayRuleStatus500Schema = schemas.deleteAiGatewayRuleStatus500Schema;
|
|
828
|
+
exports.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema = schemas.deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema;
|
|
829
|
+
exports.deleteAiGatewayVirtualModelConfigQuerySlugSchema = schemas.deleteAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
830
|
+
exports.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema = schemas.deleteAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
831
|
+
exports.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = schemas.deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
|
|
832
|
+
exports.deleteAiGatewayVirtualModelConfigResponseSchema = schemas.deleteAiGatewayVirtualModelConfigResponseSchema;
|
|
833
|
+
exports.deleteAiGatewayVirtualModelConfigStatus204Schema = schemas.deleteAiGatewayVirtualModelConfigStatus204Schema;
|
|
834
|
+
exports.deleteAiGatewayVirtualModelConfigStatus400Schema = schemas.deleteAiGatewayVirtualModelConfigStatus400Schema;
|
|
835
|
+
exports.deleteAiGatewayVirtualModelConfigStatus401Schema = schemas.deleteAiGatewayVirtualModelConfigStatus401Schema;
|
|
836
|
+
exports.deleteAiGatewayVirtualModelConfigStatus403Schema = schemas.deleteAiGatewayVirtualModelConfigStatus403Schema;
|
|
837
|
+
exports.deleteAiGatewayVirtualModelConfigStatus404Schema = schemas.deleteAiGatewayVirtualModelConfigStatus404Schema;
|
|
838
|
+
exports.deleteAiGatewayVirtualModelConfigStatus410Schema = schemas.deleteAiGatewayVirtualModelConfigStatus410Schema;
|
|
839
|
+
exports.deleteAiGatewayVirtualModelConfigStatus500Schema = schemas.deleteAiGatewayVirtualModelConfigStatus500Schema;
|
|
815
840
|
exports.deleteAliasPathAliasIdSchema = schemas.deleteAliasPathAliasIdSchema;
|
|
816
841
|
exports.deleteAliasQuerySlugSchema = schemas.deleteAliasQuerySlugSchema;
|
|
817
842
|
exports.deleteAliasQueryTeamIdSchema = schemas.deleteAliasQueryTeamIdSchema;
|
|
@@ -1378,6 +1403,18 @@ exports.getActiveAttackStatusStatus401Schema = schemas.getActiveAttackStatusStat
|
|
|
1378
1403
|
exports.getActiveAttackStatusStatus403Schema = schemas.getActiveAttackStatusStatus403Schema;
|
|
1379
1404
|
exports.getActiveAttackStatusStatus404Schema = schemas.getActiveAttackStatusStatus404Schema;
|
|
1380
1405
|
exports.getActiveAttackStatusStatus410Schema = schemas.getActiveAttackStatusStatus410Schema;
|
|
1406
|
+
exports.getAiGatewayVirtualModelConfigQueryOwnerIdSchema = schemas.getAiGatewayVirtualModelConfigQueryOwnerIdSchema;
|
|
1407
|
+
exports.getAiGatewayVirtualModelConfigQuerySlugSchema = schemas.getAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
1408
|
+
exports.getAiGatewayVirtualModelConfigQueryTeamIdSchema = schemas.getAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
1409
|
+
exports.getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema = schemas.getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema;
|
|
1410
|
+
exports.getAiGatewayVirtualModelConfigResponseSchema = schemas.getAiGatewayVirtualModelConfigResponseSchema;
|
|
1411
|
+
exports.getAiGatewayVirtualModelConfigStatus200Schema = schemas.getAiGatewayVirtualModelConfigStatus200Schema;
|
|
1412
|
+
exports.getAiGatewayVirtualModelConfigStatus400Schema = schemas.getAiGatewayVirtualModelConfigStatus400Schema;
|
|
1413
|
+
exports.getAiGatewayVirtualModelConfigStatus401Schema = schemas.getAiGatewayVirtualModelConfigStatus401Schema;
|
|
1414
|
+
exports.getAiGatewayVirtualModelConfigStatus403Schema = schemas.getAiGatewayVirtualModelConfigStatus403Schema;
|
|
1415
|
+
exports.getAiGatewayVirtualModelConfigStatus404Schema = schemas.getAiGatewayVirtualModelConfigStatus404Schema;
|
|
1416
|
+
exports.getAiGatewayVirtualModelConfigStatus410Schema = schemas.getAiGatewayVirtualModelConfigStatus410Schema;
|
|
1417
|
+
exports.getAiGatewayVirtualModelConfigStatus500Schema = schemas.getAiGatewayVirtualModelConfigStatus500Schema;
|
|
1381
1418
|
exports.getAliasPathIdOrAliasSchema = schemas.getAliasPathIdOrAliasSchema;
|
|
1382
1419
|
exports.getAliasQueryFromSchema = schemas.getAliasQueryFromSchema;
|
|
1383
1420
|
exports.getAliasQueryProjectIdSchema = schemas.getAliasQueryProjectIdSchema;
|
|
@@ -2759,6 +2796,18 @@ exports.listAiGatewayRulesStatus401Schema = schemas.listAiGatewayRulesStatus401S
|
|
|
2759
2796
|
exports.listAiGatewayRulesStatus403Schema = schemas.listAiGatewayRulesStatus403Schema;
|
|
2760
2797
|
exports.listAiGatewayRulesStatus410Schema = schemas.listAiGatewayRulesStatus410Schema;
|
|
2761
2798
|
exports.listAiGatewayRulesStatus500Schema = schemas.listAiGatewayRulesStatus500Schema;
|
|
2799
|
+
exports.listAiGatewayVirtualModelConfigsQueryCursorSchema = schemas.listAiGatewayVirtualModelConfigsQueryCursorSchema;
|
|
2800
|
+
exports.listAiGatewayVirtualModelConfigsQueryLimitSchema = schemas.listAiGatewayVirtualModelConfigsQueryLimitSchema;
|
|
2801
|
+
exports.listAiGatewayVirtualModelConfigsQueryOwnerIdSchema = schemas.listAiGatewayVirtualModelConfigsQueryOwnerIdSchema;
|
|
2802
|
+
exports.listAiGatewayVirtualModelConfigsQuerySlugSchema = schemas.listAiGatewayVirtualModelConfigsQuerySlugSchema;
|
|
2803
|
+
exports.listAiGatewayVirtualModelConfigsQueryTeamIdSchema = schemas.listAiGatewayVirtualModelConfigsQueryTeamIdSchema;
|
|
2804
|
+
exports.listAiGatewayVirtualModelConfigsResponseSchema = schemas.listAiGatewayVirtualModelConfigsResponseSchema;
|
|
2805
|
+
exports.listAiGatewayVirtualModelConfigsStatus200Schema = schemas.listAiGatewayVirtualModelConfigsStatus200Schema;
|
|
2806
|
+
exports.listAiGatewayVirtualModelConfigsStatus400Schema = schemas.listAiGatewayVirtualModelConfigsStatus400Schema;
|
|
2807
|
+
exports.listAiGatewayVirtualModelConfigsStatus401Schema = schemas.listAiGatewayVirtualModelConfigsStatus401Schema;
|
|
2808
|
+
exports.listAiGatewayVirtualModelConfigsStatus403Schema = schemas.listAiGatewayVirtualModelConfigsStatus403Schema;
|
|
2809
|
+
exports.listAiGatewayVirtualModelConfigsStatus410Schema = schemas.listAiGatewayVirtualModelConfigsStatus410Schema;
|
|
2810
|
+
exports.listAiGatewayVirtualModelConfigsStatus500Schema = schemas.listAiGatewayVirtualModelConfigsStatus500Schema;
|
|
2762
2811
|
exports.listAliasesQueryDomainSchema = schemas.listAliasesQueryDomainSchema;
|
|
2763
2812
|
exports.listAliasesQueryFromSchema = schemas.listAliasesQueryFromSchema;
|
|
2764
2813
|
exports.listAliasesQueryLimitSchema = schemas.listAliasesQueryLimitSchema;
|
|
@@ -3754,6 +3803,16 @@ exports.updateAiGatewayRuleStatus403Schema = schemas.updateAiGatewayRuleStatus40
|
|
|
3754
3803
|
exports.updateAiGatewayRuleStatus404Schema = schemas.updateAiGatewayRuleStatus404Schema;
|
|
3755
3804
|
exports.updateAiGatewayRuleStatus410Schema = schemas.updateAiGatewayRuleStatus410Schema;
|
|
3756
3805
|
exports.updateAiGatewayRuleStatus500Schema = schemas.updateAiGatewayRuleStatus500Schema;
|
|
3806
|
+
exports.updateAiGatewayVirtualModelConfigQuerySlugSchema = schemas.updateAiGatewayVirtualModelConfigQuerySlugSchema;
|
|
3807
|
+
exports.updateAiGatewayVirtualModelConfigQueryTeamIdSchema = schemas.updateAiGatewayVirtualModelConfigQueryTeamIdSchema;
|
|
3808
|
+
exports.updateAiGatewayVirtualModelConfigResponseSchema = schemas.updateAiGatewayVirtualModelConfigResponseSchema;
|
|
3809
|
+
exports.updateAiGatewayVirtualModelConfigStatus200Schema = schemas.updateAiGatewayVirtualModelConfigStatus200Schema;
|
|
3810
|
+
exports.updateAiGatewayVirtualModelConfigStatus400Schema = schemas.updateAiGatewayVirtualModelConfigStatus400Schema;
|
|
3811
|
+
exports.updateAiGatewayVirtualModelConfigStatus401Schema = schemas.updateAiGatewayVirtualModelConfigStatus401Schema;
|
|
3812
|
+
exports.updateAiGatewayVirtualModelConfigStatus403Schema = schemas.updateAiGatewayVirtualModelConfigStatus403Schema;
|
|
3813
|
+
exports.updateAiGatewayVirtualModelConfigStatus404Schema = schemas.updateAiGatewayVirtualModelConfigStatus404Schema;
|
|
3814
|
+
exports.updateAiGatewayVirtualModelConfigStatus410Schema = schemas.updateAiGatewayVirtualModelConfigStatus410Schema;
|
|
3815
|
+
exports.updateAiGatewayVirtualModelConfigStatus500Schema = schemas.updateAiGatewayVirtualModelConfigStatus500Schema;
|
|
3757
3816
|
exports.updateAttackChallengeModeQuerySlugSchema = schemas.updateAttackChallengeModeQuerySlugSchema;
|
|
3758
3817
|
exports.updateAttackChallengeModeQueryTeamIdSchema = schemas.updateAttackChallengeModeQueryTeamIdSchema;
|
|
3759
3818
|
exports.updateAttackChallengeModeResponseSchema = schemas.updateAttackChallengeModeResponseSchema;
|