@orq-ai/node 4.5.0-rc.21 → 4.5.0-rc.22
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/funcs/agentsStream.js +4 -2
- package/funcs/agentsStream.js.map +1 -1
- package/funcs/agentsStreamRun.js +4 -2
- package/funcs/agentsStreamRun.js.map +1 -1
- package/funcs/deploymentsStream.js +4 -2
- package/funcs/deploymentsStream.js.map +1 -1
- package/funcs/filesCreate.js +7 -0
- package/funcs/filesCreate.js.map +1 -1
- package/funcs/routerAudioTranscriptionsCreate.js +7 -0
- package/funcs/routerAudioTranscriptionsCreate.js.map +1 -1
- package/funcs/routerAudioTranslationsCreate.js +7 -0
- package/funcs/routerAudioTranslationsCreate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/lib/event-streams.d.ts +5 -0
- package/lib/event-streams.d.ts.map +1 -1
- package/lib/event-streams.js.map +1 -1
- package/lib/matchers.d.ts.map +1 -1
- package/lib/matchers.js +0 -1
- package/lib/matchers.js.map +1 -1
- package/lib/security.d.ts.map +1 -1
- package/lib/security.js +1 -2
- package/lib/security.js.map +1 -1
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createagentresponserequest.d.ts.map +1 -1
- package/models/operations/createagentresponserequest.js +2 -1
- package/models/operations/createagentresponserequest.js.map +1 -1
- package/models/operations/createchatcompletion.d.ts +15 -2
- package/models/operations/createchatcompletion.d.ts.map +1 -1
- package/models/operations/createchatcompletion.js +3 -1
- package/models/operations/createchatcompletion.js.map +1 -1
- package/models/operations/createcompletion.d.ts +6 -2
- package/models/operations/createcompletion.d.ts.map +1 -1
- package/models/operations/createcompletion.js +2 -1
- package/models/operations/createcompletion.js.map +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createresponse.d.ts.map +1 -1
- package/models/operations/createresponse.js +2 -1
- package/models/operations/createresponse.js.map +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +1 -1
- package/models/operations/filelist.js +1 -1
- package/models/operations/fileupload.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatememorystore.d.ts +2 -44
- package/models/operations/updatememorystore.d.ts.map +1 -1
- package/models/operations/updatememorystore.js +2 -46
- package/models/operations/updatememorystore.js.map +1 -1
- package/models/operations/updatetool.d.ts +50 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +54 -9
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- package/src/funcs/agentsStream.ts +4 -1
- package/src/funcs/agentsStreamRun.ts +4 -1
- package/src/funcs/deploymentsStream.ts +4 -1
- package/src/funcs/filesCreate.ts +11 -0
- package/src/funcs/routerAudioTranscriptionsCreate.ts +11 -0
- package/src/funcs/routerAudioTranslationsCreate.ts +11 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/event-streams.ts +10 -1
- package/src/lib/matchers.ts +3 -2
- package/src/lib/security.ts +1 -2
- package/src/models/components/partdoneevent.ts +1 -1
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createagentresponserequest.ts +2 -1
- package/src/models/operations/createchatcompletion.ts +14 -3
- package/src/models/operations/createcompletion.ts +8 -3
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createresponse.ts +2 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +1 -1
- package/src/models/operations/filelist.ts +1 -1
- package/src/models/operations/fileupload.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatememorystore.ts +3 -62
- package/src/models/operations/updatetool.ts +96 -7
|
@@ -745,7 +745,7 @@ exports.UpdateDatapointEvaluations3$inboundSchema = z.object({
|
|
|
745
745
|
source: exports.UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
746
746
|
.default("orq"),
|
|
747
747
|
reviewed_by_id: z.string(),
|
|
748
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
748
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-03T08:16:14.135Z").transform(v => new Date(v)),
|
|
749
749
|
type: z.literal("string_array"),
|
|
750
750
|
values: z.array(z.string()),
|
|
751
751
|
}).transform((v) => {
|
|
@@ -772,7 +772,7 @@ exports.UpdateDatapointEvaluations2$inboundSchema = z.object({
|
|
|
772
772
|
human_review_id: z.string(),
|
|
773
773
|
source: exports.UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
774
774
|
reviewed_by_id: z.string(),
|
|
775
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
775
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-03T08:16:14.130Z").transform(v => new Date(v)),
|
|
776
776
|
type: z.literal("number"),
|
|
777
777
|
value: z.number(),
|
|
778
778
|
}).transform((v) => {
|
|
@@ -798,7 +798,7 @@ exports.UpdateDatapointEvaluations1$inboundSchema = z.object({
|
|
|
798
798
|
human_review_id: z.string(),
|
|
799
799
|
source: exports.UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
800
800
|
reviewed_by_id: z.string(),
|
|
801
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-
|
|
801
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-03-03T08:16:14.130Z").transform(v => new Date(v)),
|
|
802
802
|
type: z.literal("string"),
|
|
803
803
|
value: z.string(),
|
|
804
804
|
}).transform((v) => {
|
|
@@ -845,7 +845,7 @@ exports.UpdateDatapointResponseBody$inboundSchema = z.object({
|
|
|
845
845
|
updated_by_id: z.string().optional(),
|
|
846
846
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
847
847
|
.optional(),
|
|
848
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
848
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-03T08:15:58.819Z").transform(v => new Date(v)),
|
|
849
849
|
}).transform((v) => {
|
|
850
850
|
return (0, primitives_js_1.remap)(v, {
|
|
851
851
|
"_id": "id",
|
|
@@ -95,7 +95,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
95
95
|
updated_by_id: z.string().optional(),
|
|
96
96
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
97
97
|
.optional(),
|
|
98
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
98
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-03T08:15:58.819Z").transform(v => new Date(v)),
|
|
99
99
|
}).transform((v) => {
|
|
100
100
|
return (0, primitives_js_1.remap)(v, {
|
|
101
101
|
"_id": "id",
|
|
@@ -80,7 +80,7 @@ function updateDatasourceRequestToJSON(updateDatasourceRequest) {
|
|
|
80
80
|
exports.UpdateDatasourceStatus$inboundSchema = z.nativeEnum(exports.UpdateDatasourceStatus);
|
|
81
81
|
/** @internal */
|
|
82
82
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
83
|
-
_id: z.string().default("
|
|
83
|
+
_id: z.string().default("01KJSC9S2KDY8ET1KX2X7RVGFY"),
|
|
84
84
|
display_name: z.string(),
|
|
85
85
|
description: z.string().optional(),
|
|
86
86
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -736,8 +736,8 @@ exports.UpdateEvalResponseBodyEvalsResponse200ApplicationJson7Type$inboundSchema
|
|
|
736
736
|
exports.ResponseBodyTypescript$inboundSchema = z.object({
|
|
737
737
|
_id: z.string(),
|
|
738
738
|
description: z.string(),
|
|
739
|
-
created: z.string().default("2026-03-
|
|
740
|
-
updated: z.string().default("2026-03-
|
|
739
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
740
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
741
741
|
guardrail_config: z.union([
|
|
742
742
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
743
743
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
@@ -804,8 +804,8 @@ exports.ResponseBodyRagasMetric$inboundSchema = z.nativeEnum(exports.ResponseBod
|
|
|
804
804
|
exports.ResponseBodyRagas$inboundSchema = z.object({
|
|
805
805
|
_id: z.string(),
|
|
806
806
|
description: z.string(),
|
|
807
|
-
created: z.string().default("2026-03-
|
|
808
|
-
updated: z.string().default("2026-03-
|
|
807
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
808
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
809
809
|
guardrail_config: z.union([
|
|
810
810
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
811
811
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
@@ -1146,8 +1146,8 @@ function responseBodyFunctionParamsFromJSON(jsonString) {
|
|
|
1146
1146
|
exports.ResponseBodyFunction$inboundSchema = z.object({
|
|
1147
1147
|
_id: z.string(),
|
|
1148
1148
|
description: z.string(),
|
|
1149
|
-
created: z.string().default("2026-03-
|
|
1150
|
-
updated: z.string().default("2026-03-
|
|
1149
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1150
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1151
1151
|
guardrail_config: z.union([
|
|
1152
1152
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1153
1153
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -1246,8 +1246,8 @@ exports.UpdateEvalResponseBodyEvalsResponseType$inboundSchema = z
|
|
|
1246
1246
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1247
1247
|
_id: z.string(),
|
|
1248
1248
|
description: z.string(),
|
|
1249
|
-
created: z.string().default("2026-03-
|
|
1250
|
-
updated: z.string().default("2026-03-
|
|
1249
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1250
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1251
1251
|
guardrail_config: z.union([
|
|
1252
1252
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
1253
1253
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -1312,8 +1312,8 @@ exports.UpdateEvalResponseBodyMethod$inboundSchema = z.nativeEnum(exports.Update
|
|
|
1312
1312
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1313
1313
|
_id: z.string(),
|
|
1314
1314
|
description: z.string(),
|
|
1315
|
-
created: z.string().default("2026-03-
|
|
1316
|
-
updated: z.string().default("2026-03-
|
|
1315
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1316
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1317
1317
|
guardrail_config: z.union([
|
|
1318
1318
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1319
1319
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1379,8 +1379,8 @@ exports.UpdateEvalResponseBodyType$inboundSchema = z.nativeEnum(exports.UpdateEv
|
|
|
1379
1379
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1380
1380
|
_id: z.string(),
|
|
1381
1381
|
description: z.string(),
|
|
1382
|
-
created: z.string().default("2026-03-
|
|
1383
|
-
updated: z.string().default("2026-03-
|
|
1382
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1383
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1384
1384
|
guardrail_config: z.union([
|
|
1385
1385
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1386
1386
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1520,8 +1520,8 @@ function updateEvalLLMJuryFromJSON(jsonString) {
|
|
|
1520
1520
|
exports.UpdateEvalLlm2$inboundSchema = z.object({
|
|
1521
1521
|
_id: z.string(),
|
|
1522
1522
|
description: z.string(),
|
|
1523
|
-
created: z.string().default("2026-03-
|
|
1524
|
-
updated: z.string().default("2026-03-
|
|
1523
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1524
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1525
1525
|
guardrail_config: z.union([
|
|
1526
1526
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema),
|
|
1527
1527
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMNumber$inboundSchema),
|
|
@@ -1588,8 +1588,8 @@ exports.UpdateEvalLLMType$inboundSchema = z.nativeEnum(exports.UpdateEvalLLMType
|
|
|
1588
1588
|
exports.UpdateEvalLlm1$inboundSchema = z.object({
|
|
1589
1589
|
_id: z.string(),
|
|
1590
1590
|
description: z.string(),
|
|
1591
|
-
created: z.string().default("2026-03-
|
|
1592
|
-
updated: z.string().default("2026-03-
|
|
1591
|
+
created: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1592
|
+
updated: z.string().default("2026-03-03T08:16:00.101Z"),
|
|
1593
1593
|
guardrail_config: z.union([
|
|
1594
1594
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema),
|
|
1595
1595
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Number$inboundSchema),
|
|
@@ -83,7 +83,7 @@ exports.UpdateIdentityResponseBody$inboundSchema = z.object({
|
|
|
83
83
|
metadata: z.record(z.any()).optional(),
|
|
84
84
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
85
85
|
.optional(),
|
|
86
|
-
updated: z.string().datetime({ offset: true }).default("2026-03-
|
|
86
|
+
updated: z.string().datetime({ offset: true }).default("2026-03-03T08:15:58.819Z").transform(v => new Date(v)),
|
|
87
87
|
}).transform((v) => {
|
|
88
88
|
return (0, primitives_js_1.remap)(v, {
|
|
89
89
|
"_id": "id",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as z from "zod/v3";
|
|
2
|
-
import { ClosedEnum } from "../../types/enums.js";
|
|
3
2
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
4
3
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
4
|
export type UpdateMemoryStoreRequestBody = {
|
|
@@ -20,46 +19,11 @@ export type UpdateMemoryStoreRequest = {
|
|
|
20
19
|
memoryStoreKey: string;
|
|
21
20
|
requestBody?: UpdateMemoryStoreRequestBody | undefined;
|
|
22
21
|
};
|
|
23
|
-
export declare const UpdateMemoryStoreProvider: {
|
|
24
|
-
readonly Openai: "openai";
|
|
25
|
-
readonly Groq: "groq";
|
|
26
|
-
readonly Cohere: "cohere";
|
|
27
|
-
readonly Azure: "azure";
|
|
28
|
-
readonly Aws: "aws";
|
|
29
|
-
readonly Google: "google";
|
|
30
|
-
readonly GoogleAi: "google-ai";
|
|
31
|
-
readonly Huggingface: "huggingface";
|
|
32
|
-
readonly Togetherai: "togetherai";
|
|
33
|
-
readonly Perplexity: "perplexity";
|
|
34
|
-
readonly Anthropic: "anthropic";
|
|
35
|
-
readonly Leonardoai: "leonardoai";
|
|
36
|
-
readonly Fal: "fal";
|
|
37
|
-
readonly Nvidia: "nvidia";
|
|
38
|
-
readonly Jina: "jina";
|
|
39
|
-
readonly Elevenlabs: "elevenlabs";
|
|
40
|
-
readonly Litellm: "litellm";
|
|
41
|
-
readonly Cerebras: "cerebras";
|
|
42
|
-
readonly Openailike: "openailike";
|
|
43
|
-
readonly Bytedance: "bytedance";
|
|
44
|
-
readonly Mistral: "mistral";
|
|
45
|
-
readonly Deepseek: "deepseek";
|
|
46
|
-
readonly Contextualai: "contextualai";
|
|
47
|
-
readonly Moonshotai: "moonshotai";
|
|
48
|
-
readonly Zai: "zai";
|
|
49
|
-
readonly Minimax: "minimax";
|
|
50
|
-
readonly Xai: "xai";
|
|
51
|
-
readonly Alibaba: "alibaba";
|
|
52
|
-
readonly Slack: "slack";
|
|
53
|
-
};
|
|
54
|
-
export type UpdateMemoryStoreProvider = ClosedEnum<typeof UpdateMemoryStoreProvider>;
|
|
55
22
|
export type UpdateMemoryStoreEmbeddingConfig = {
|
|
56
|
-
modelId: string;
|
|
57
|
-
integrationId?: string | undefined;
|
|
58
23
|
/**
|
|
59
|
-
*
|
|
24
|
+
* The embeddings model to use for the knowledge base in the format "provider/model" for public models or "workspaceKey@provider/model" for private workspace models. This model will be used to embed the chunks when they are added to the knowledge base. Refer to the (Supported models)[/docs/proxy/supported-models] to browse available models.
|
|
60
25
|
*/
|
|
61
|
-
|
|
62
|
-
provider: UpdateMemoryStoreProvider;
|
|
26
|
+
model: string;
|
|
63
27
|
};
|
|
64
28
|
/**
|
|
65
29
|
* Memory store successfully updated.
|
|
@@ -73,10 +37,6 @@ export type UpdateMemoryStoreResponseBody = {
|
|
|
73
37
|
* The unique key of the memory store. The key is unique and inmmutable and cannot be repeated within the same workspace.
|
|
74
38
|
*/
|
|
75
39
|
key: string;
|
|
76
|
-
/**
|
|
77
|
-
* The project unique identifier. This entity is assigned based on the provided `path` property
|
|
78
|
-
*/
|
|
79
|
-
projectId: string;
|
|
80
40
|
/**
|
|
81
41
|
* The description of the memory store. Be as precise as possible to help the AI to understand the purpose of the memory store.
|
|
82
42
|
*/
|
|
@@ -121,8 +81,6 @@ export type UpdateMemoryStoreRequest$Outbound = {
|
|
|
121
81
|
export declare const UpdateMemoryStoreRequest$outboundSchema: z.ZodType<UpdateMemoryStoreRequest$Outbound, z.ZodTypeDef, UpdateMemoryStoreRequest>;
|
|
122
82
|
export declare function updateMemoryStoreRequestToJSON(updateMemoryStoreRequest: UpdateMemoryStoreRequest): string;
|
|
123
83
|
/** @internal */
|
|
124
|
-
export declare const UpdateMemoryStoreProvider$inboundSchema: z.ZodNativeEnum<typeof UpdateMemoryStoreProvider>;
|
|
125
|
-
/** @internal */
|
|
126
84
|
export declare const UpdateMemoryStoreEmbeddingConfig$inboundSchema: z.ZodType<UpdateMemoryStoreEmbeddingConfig, z.ZodTypeDef, unknown>;
|
|
127
85
|
export declare function updateMemoryStoreEmbeddingConfigFromJSON(jsonString: string): SafeParseResult<UpdateMemoryStoreEmbeddingConfig, SDKValidationError>;
|
|
128
86
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updatememorystore.d.ts","sourceRoot":"","sources":["../../src/models/operations/updatememorystore.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"updatememorystore.d.ts","sourceRoot":"","sources":["../../src/models/operations/updatememorystore.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,4BAA4B,GAAG;IACzC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,4BAA4B,GAAG,SAAS,CAAC;CACxD,CAAC;AAEF,MAAM,MAAM,gCAAgC,GAAG;IAC7C;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,6BAA6B,GAAG;IAC1C;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,eAAe,EAAE,gCAAgC,CAAC;CACnD,CAAC;AAEF,gBAAgB;AAChB,MAAM,MAAM,qCAAqC,GAAG;IAClD,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,qCAAqC,EACrC,CAAC,CAAC,UAAU,EACZ,4BAA4B,CAK5B,CAAC;AAEH,wBAAgB,kCAAkC,CAChD,4BAA4B,EAAE,4BAA4B,GACzD,MAAM,CAMR;AAED,gBAAgB;AAChB,MAAM,MAAM,iCAAiC,GAAG;IAC9C,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,qCAAqC,GAAG,SAAS,CAAC;CACjE,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAC7D,iCAAiC,EACjC,CAAC,CAAC,UAAU,EACZ,wBAAwB,CAUxB,CAAC;AAEH,wBAAgB,8BAA8B,CAC5C,wBAAwB,EAAE,wBAAwB,GACjD,MAAM,CAIR;AAED,gBAAgB;AAChB,eAAO,MAAM,8CAA8C,EAAE,CAAC,CAAC,OAAO,CACpE,gCAAgC,EAChC,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC;AAEH,wBAAgB,wCAAwC,CACtD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,gCAAgC,EAAE,kBAAkB,CAAC,CAMvE;AAED,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CAoBP,CAAC;AAEH,wBAAgB,qCAAqC,CACnD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,6BAA6B,EAAE,kBAAkB,CAAC,CAMpE"}
|
|
@@ -36,7 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.UpdateMemoryStoreResponseBody$inboundSchema = exports.UpdateMemoryStoreEmbeddingConfig$inboundSchema = exports.
|
|
39
|
+
exports.UpdateMemoryStoreResponseBody$inboundSchema = exports.UpdateMemoryStoreEmbeddingConfig$inboundSchema = exports.UpdateMemoryStoreRequest$outboundSchema = exports.UpdateMemoryStoreRequestBody$outboundSchema = void 0;
|
|
40
40
|
exports.updateMemoryStoreRequestBodyToJSON = updateMemoryStoreRequestBodyToJSON;
|
|
41
41
|
exports.updateMemoryStoreRequestToJSON = updateMemoryStoreRequestToJSON;
|
|
42
42
|
exports.updateMemoryStoreEmbeddingConfigFromJSON = updateMemoryStoreEmbeddingConfigFromJSON;
|
|
@@ -44,37 +44,6 @@ exports.updateMemoryStoreResponseBodyFromJSON = updateMemoryStoreResponseBodyFro
|
|
|
44
44
|
const z = __importStar(require("zod/v3"));
|
|
45
45
|
const primitives_js_1 = require("../../lib/primitives.js");
|
|
46
46
|
const schemas_js_1 = require("../../lib/schemas.js");
|
|
47
|
-
exports.UpdateMemoryStoreProvider = {
|
|
48
|
-
Openai: "openai",
|
|
49
|
-
Groq: "groq",
|
|
50
|
-
Cohere: "cohere",
|
|
51
|
-
Azure: "azure",
|
|
52
|
-
Aws: "aws",
|
|
53
|
-
Google: "google",
|
|
54
|
-
GoogleAi: "google-ai",
|
|
55
|
-
Huggingface: "huggingface",
|
|
56
|
-
Togetherai: "togetherai",
|
|
57
|
-
Perplexity: "perplexity",
|
|
58
|
-
Anthropic: "anthropic",
|
|
59
|
-
Leonardoai: "leonardoai",
|
|
60
|
-
Fal: "fal",
|
|
61
|
-
Nvidia: "nvidia",
|
|
62
|
-
Jina: "jina",
|
|
63
|
-
Elevenlabs: "elevenlabs",
|
|
64
|
-
Litellm: "litellm",
|
|
65
|
-
Cerebras: "cerebras",
|
|
66
|
-
Openailike: "openailike",
|
|
67
|
-
Bytedance: "bytedance",
|
|
68
|
-
Mistral: "mistral",
|
|
69
|
-
Deepseek: "deepseek",
|
|
70
|
-
Contextualai: "contextualai",
|
|
71
|
-
Moonshotai: "moonshotai",
|
|
72
|
-
Zai: "zai",
|
|
73
|
-
Minimax: "minimax",
|
|
74
|
-
Xai: "xai",
|
|
75
|
-
Alibaba: "alibaba",
|
|
76
|
-
Slack: "slack",
|
|
77
|
-
};
|
|
78
47
|
/** @internal */
|
|
79
48
|
exports.UpdateMemoryStoreRequestBody$outboundSchema = z.object({
|
|
80
49
|
description: z.string().optional(),
|
|
@@ -99,19 +68,8 @@ function updateMemoryStoreRequestToJSON(updateMemoryStoreRequest) {
|
|
|
99
68
|
return JSON.stringify(exports.UpdateMemoryStoreRequest$outboundSchema.parse(updateMemoryStoreRequest));
|
|
100
69
|
}
|
|
101
70
|
/** @internal */
|
|
102
|
-
exports.UpdateMemoryStoreProvider$inboundSchema = z.nativeEnum(exports.UpdateMemoryStoreProvider);
|
|
103
|
-
/** @internal */
|
|
104
71
|
exports.UpdateMemoryStoreEmbeddingConfig$inboundSchema = z.object({
|
|
105
|
-
|
|
106
|
-
integration_id: z.string().optional(),
|
|
107
|
-
top_k: z.number().optional(),
|
|
108
|
-
provider: exports.UpdateMemoryStoreProvider$inboundSchema,
|
|
109
|
-
}).transform((v) => {
|
|
110
|
-
return (0, primitives_js_1.remap)(v, {
|
|
111
|
-
"model_id": "modelId",
|
|
112
|
-
"integration_id": "integrationId",
|
|
113
|
-
"top_k": "topK",
|
|
114
|
-
});
|
|
72
|
+
model: z.string(),
|
|
115
73
|
});
|
|
116
74
|
function updateMemoryStoreEmbeddingConfigFromJSON(jsonString) {
|
|
117
75
|
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.UpdateMemoryStoreEmbeddingConfig$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UpdateMemoryStoreEmbeddingConfig' from JSON`);
|
|
@@ -120,7 +78,6 @@ function updateMemoryStoreEmbeddingConfigFromJSON(jsonString) {
|
|
|
120
78
|
exports.UpdateMemoryStoreResponseBody$inboundSchema = z.object({
|
|
121
79
|
_id: z.string(),
|
|
122
80
|
key: z.string(),
|
|
123
|
-
project_id: z.string(),
|
|
124
81
|
description: z.string(),
|
|
125
82
|
created_by_id: z.string().optional(),
|
|
126
83
|
updated_by_id: z.string().optional(),
|
|
@@ -131,7 +88,6 @@ exports.UpdateMemoryStoreResponseBody$inboundSchema = z.object({
|
|
|
131
88
|
}).transform((v) => {
|
|
132
89
|
return (0, primitives_js_1.remap)(v, {
|
|
133
90
|
"_id": "id",
|
|
134
|
-
"project_id": "projectId",
|
|
135
91
|
"created_by_id": "createdById",
|
|
136
92
|
"updated_by_id": "updatedById",
|
|
137
93
|
"embedding_config": "embeddingConfig",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updatememorystore.js","sourceRoot":"","sources":["../../src/models/operations/updatememorystore.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"updatememorystore.js","sourceRoot":"","sources":["../../src/models/operations/updatememorystore.ts"],"names":[],"mappings":"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"}
|
|
@@ -62,6 +62,12 @@ export type UpdateToolRequestBodyCodeTool = {
|
|
|
62
62
|
*/
|
|
63
63
|
code: string;
|
|
64
64
|
};
|
|
65
|
+
export declare const UpdateToolRequestBodyToolsRequestVersionIncrement: {
|
|
66
|
+
readonly Major: "major";
|
|
67
|
+
readonly Minor: "minor";
|
|
68
|
+
readonly Patch: "patch";
|
|
69
|
+
};
|
|
70
|
+
export type UpdateToolRequestBodyToolsRequestVersionIncrement = ClosedEnum<typeof UpdateToolRequestBodyToolsRequestVersionIncrement>;
|
|
65
71
|
/**
|
|
66
72
|
* Updates an existing code execution tool configuration.
|
|
67
73
|
*/
|
|
@@ -94,6 +100,7 @@ export type UpdateCodeExecutionTool = {
|
|
|
94
100
|
status?: UpdateToolRequestBodyToolsRequest5Status | undefined;
|
|
95
101
|
type: "code";
|
|
96
102
|
codeTool?: UpdateToolRequestBodyCodeTool | undefined;
|
|
103
|
+
versionIncrement?: UpdateToolRequestBodyToolsRequestVersionIncrement | undefined;
|
|
97
104
|
};
|
|
98
105
|
/**
|
|
99
106
|
* The status of the tool. `Live` is the latest version of the tool. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
|
|
@@ -160,6 +167,12 @@ export type UpdateToolRequestBodyMcp = {
|
|
|
160
167
|
*/
|
|
161
168
|
connectionType?: UpdateToolRequestBodyConnectionType | undefined;
|
|
162
169
|
};
|
|
170
|
+
export declare const UpdateToolRequestBodyToolsVersionIncrement: {
|
|
171
|
+
readonly Major: "major";
|
|
172
|
+
readonly Minor: "minor";
|
|
173
|
+
readonly Patch: "patch";
|
|
174
|
+
};
|
|
175
|
+
export type UpdateToolRequestBodyToolsVersionIncrement = ClosedEnum<typeof UpdateToolRequestBodyToolsVersionIncrement>;
|
|
163
176
|
/**
|
|
164
177
|
* Updates an existing MCP tool configuration.
|
|
165
178
|
*/
|
|
@@ -192,6 +205,7 @@ export type UpdateMCPTool = {
|
|
|
192
205
|
status?: UpdateToolRequestBodyToolsRequest4Status | undefined;
|
|
193
206
|
type: "mcp";
|
|
194
207
|
mcp?: UpdateToolRequestBodyMcp | undefined;
|
|
208
|
+
versionIncrement?: UpdateToolRequestBodyToolsVersionIncrement | undefined;
|
|
195
209
|
};
|
|
196
210
|
/**
|
|
197
211
|
* The status of the tool. `Live` is the latest version of the tool. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
|
|
@@ -295,6 +309,12 @@ export type UpdateToolRequestBodyHttp = {
|
|
|
295
309
|
[k: string]: UpdateToolRequestBodyArguments;
|
|
296
310
|
} | undefined;
|
|
297
311
|
};
|
|
312
|
+
export declare const UpdateToolRequestBodyVersionIncrement: {
|
|
313
|
+
readonly Major: "major";
|
|
314
|
+
readonly Minor: "minor";
|
|
315
|
+
readonly Patch: "patch";
|
|
316
|
+
};
|
|
317
|
+
export type UpdateToolRequestBodyVersionIncrement = ClosedEnum<typeof UpdateToolRequestBodyVersionIncrement>;
|
|
298
318
|
/**
|
|
299
319
|
* Updates an existing HTTP tool configuration.
|
|
300
320
|
*/
|
|
@@ -327,6 +347,7 @@ export type UpdateHTTPTool = {
|
|
|
327
347
|
status?: UpdateToolRequestBodyToolsRequestStatus | undefined;
|
|
328
348
|
type: "http";
|
|
329
349
|
http?: UpdateToolRequestBodyHttp | undefined;
|
|
350
|
+
versionIncrement?: UpdateToolRequestBodyVersionIncrement | undefined;
|
|
330
351
|
};
|
|
331
352
|
/**
|
|
332
353
|
* The status of the tool. `Live` is the latest version of the tool. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
|
|
@@ -381,6 +402,12 @@ export type UpdateToolRequestBodyJsonSchema = {
|
|
|
381
402
|
*/
|
|
382
403
|
strict?: boolean | undefined;
|
|
383
404
|
};
|
|
405
|
+
export declare const RequestBodyVersionIncrement: {
|
|
406
|
+
readonly Major: "major";
|
|
407
|
+
readonly Minor: "minor";
|
|
408
|
+
readonly Patch: "patch";
|
|
409
|
+
};
|
|
410
|
+
export type RequestBodyVersionIncrement = ClosedEnum<typeof RequestBodyVersionIncrement>;
|
|
384
411
|
/**
|
|
385
412
|
* Updates an existing JSON Schema tool configuration.
|
|
386
413
|
*/
|
|
@@ -413,6 +440,7 @@ export type UpdateJSONSchemaTool = {
|
|
|
413
440
|
status?: UpdateToolRequestBodyToolsStatus | undefined;
|
|
414
441
|
type: "json_schema";
|
|
415
442
|
jsonSchema?: UpdateToolRequestBodyJsonSchema | undefined;
|
|
443
|
+
versionIncrement?: RequestBodyVersionIncrement | undefined;
|
|
416
444
|
};
|
|
417
445
|
/**
|
|
418
446
|
* The status of the tool. `Live` is the latest version of the tool. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
|
|
@@ -477,6 +505,12 @@ export type UpdateToolRequestBodyFunction = {
|
|
|
477
505
|
*/
|
|
478
506
|
parameters?: UpdateToolRequestBodyParameters | undefined;
|
|
479
507
|
};
|
|
508
|
+
export declare const VersionIncrement: {
|
|
509
|
+
readonly Major: "major";
|
|
510
|
+
readonly Minor: "minor";
|
|
511
|
+
readonly Patch: "patch";
|
|
512
|
+
};
|
|
513
|
+
export type VersionIncrement = ClosedEnum<typeof VersionIncrement>;
|
|
480
514
|
/**
|
|
481
515
|
* Updates an existing function tool configuration.
|
|
482
516
|
*/
|
|
@@ -509,6 +543,7 @@ export type UpdateFunctionTool = {
|
|
|
509
543
|
status?: UpdateToolRequestBodyStatus | undefined;
|
|
510
544
|
type: "function";
|
|
511
545
|
function?: UpdateToolRequestBodyFunction | undefined;
|
|
546
|
+
versionIncrement?: VersionIncrement | undefined;
|
|
512
547
|
};
|
|
513
548
|
/**
|
|
514
549
|
* The tool to update
|
|
@@ -1131,6 +1166,8 @@ export type UpdateToolRequestBodyCodeTool$Outbound = {
|
|
|
1131
1166
|
export declare const UpdateToolRequestBodyCodeTool$outboundSchema: z.ZodType<UpdateToolRequestBodyCodeTool$Outbound, z.ZodTypeDef, UpdateToolRequestBodyCodeTool>;
|
|
1132
1167
|
export declare function updateToolRequestBodyCodeToolToJSON(updateToolRequestBodyCodeTool: UpdateToolRequestBodyCodeTool): string;
|
|
1133
1168
|
/** @internal */
|
|
1169
|
+
export declare const UpdateToolRequestBodyToolsRequestVersionIncrement$outboundSchema: z.ZodNativeEnum<typeof UpdateToolRequestBodyToolsRequestVersionIncrement>;
|
|
1170
|
+
/** @internal */
|
|
1134
1171
|
export type UpdateCodeExecutionTool$Outbound = {
|
|
1135
1172
|
path?: string | undefined;
|
|
1136
1173
|
key?: string | undefined;
|
|
@@ -1139,6 +1176,7 @@ export type UpdateCodeExecutionTool$Outbound = {
|
|
|
1139
1176
|
status: string;
|
|
1140
1177
|
type: "code";
|
|
1141
1178
|
code_tool?: UpdateToolRequestBodyCodeTool$Outbound | undefined;
|
|
1179
|
+
versionIncrement?: string | undefined;
|
|
1142
1180
|
};
|
|
1143
1181
|
/** @internal */
|
|
1144
1182
|
export declare const UpdateCodeExecutionTool$outboundSchema: z.ZodType<UpdateCodeExecutionTool$Outbound, z.ZodTypeDef, UpdateCodeExecutionTool>;
|
|
@@ -1191,6 +1229,8 @@ export type UpdateToolRequestBodyMcp$Outbound = {
|
|
|
1191
1229
|
export declare const UpdateToolRequestBodyMcp$outboundSchema: z.ZodType<UpdateToolRequestBodyMcp$Outbound, z.ZodTypeDef, UpdateToolRequestBodyMcp>;
|
|
1192
1230
|
export declare function updateToolRequestBodyMcpToJSON(updateToolRequestBodyMcp: UpdateToolRequestBodyMcp): string;
|
|
1193
1231
|
/** @internal */
|
|
1232
|
+
export declare const UpdateToolRequestBodyToolsVersionIncrement$outboundSchema: z.ZodNativeEnum<typeof UpdateToolRequestBodyToolsVersionIncrement>;
|
|
1233
|
+
/** @internal */
|
|
1194
1234
|
export type UpdateMCPTool$Outbound = {
|
|
1195
1235
|
path?: string | undefined;
|
|
1196
1236
|
key?: string | undefined;
|
|
@@ -1199,6 +1239,7 @@ export type UpdateMCPTool$Outbound = {
|
|
|
1199
1239
|
status: string;
|
|
1200
1240
|
type: "mcp";
|
|
1201
1241
|
mcp?: UpdateToolRequestBodyMcp$Outbound | undefined;
|
|
1242
|
+
versionIncrement?: string | undefined;
|
|
1202
1243
|
};
|
|
1203
1244
|
/** @internal */
|
|
1204
1245
|
export declare const UpdateMCPTool$outboundSchema: z.ZodType<UpdateMCPTool$Outbound, z.ZodTypeDef, UpdateMCPTool>;
|
|
@@ -1262,6 +1303,8 @@ export type UpdateToolRequestBodyHttp$Outbound = {
|
|
|
1262
1303
|
export declare const UpdateToolRequestBodyHttp$outboundSchema: z.ZodType<UpdateToolRequestBodyHttp$Outbound, z.ZodTypeDef, UpdateToolRequestBodyHttp>;
|
|
1263
1304
|
export declare function updateToolRequestBodyHttpToJSON(updateToolRequestBodyHttp: UpdateToolRequestBodyHttp): string;
|
|
1264
1305
|
/** @internal */
|
|
1306
|
+
export declare const UpdateToolRequestBodyVersionIncrement$outboundSchema: z.ZodNativeEnum<typeof UpdateToolRequestBodyVersionIncrement>;
|
|
1307
|
+
/** @internal */
|
|
1265
1308
|
export type UpdateHTTPTool$Outbound = {
|
|
1266
1309
|
path?: string | undefined;
|
|
1267
1310
|
key?: string | undefined;
|
|
@@ -1270,6 +1313,7 @@ export type UpdateHTTPTool$Outbound = {
|
|
|
1270
1313
|
status: string;
|
|
1271
1314
|
type: "http";
|
|
1272
1315
|
http?: UpdateToolRequestBodyHttp$Outbound | undefined;
|
|
1316
|
+
versionIncrement?: string | undefined;
|
|
1273
1317
|
};
|
|
1274
1318
|
/** @internal */
|
|
1275
1319
|
export declare const UpdateHTTPTool$outboundSchema: z.ZodType<UpdateHTTPTool$Outbound, z.ZodTypeDef, UpdateHTTPTool>;
|
|
@@ -1299,6 +1343,8 @@ export type UpdateToolRequestBodyJsonSchema$Outbound = {
|
|
|
1299
1343
|
export declare const UpdateToolRequestBodyJsonSchema$outboundSchema: z.ZodType<UpdateToolRequestBodyJsonSchema$Outbound, z.ZodTypeDef, UpdateToolRequestBodyJsonSchema>;
|
|
1300
1344
|
export declare function updateToolRequestBodyJsonSchemaToJSON(updateToolRequestBodyJsonSchema: UpdateToolRequestBodyJsonSchema): string;
|
|
1301
1345
|
/** @internal */
|
|
1346
|
+
export declare const RequestBodyVersionIncrement$outboundSchema: z.ZodNativeEnum<typeof RequestBodyVersionIncrement>;
|
|
1347
|
+
/** @internal */
|
|
1302
1348
|
export type UpdateJSONSchemaTool$Outbound = {
|
|
1303
1349
|
path?: string | undefined;
|
|
1304
1350
|
key?: string | undefined;
|
|
@@ -1307,6 +1353,7 @@ export type UpdateJSONSchemaTool$Outbound = {
|
|
|
1307
1353
|
status: string;
|
|
1308
1354
|
type: "json_schema";
|
|
1309
1355
|
json_schema?: UpdateToolRequestBodyJsonSchema$Outbound | undefined;
|
|
1356
|
+
versionIncrement?: string | undefined;
|
|
1310
1357
|
};
|
|
1311
1358
|
/** @internal */
|
|
1312
1359
|
export declare const UpdateJSONSchemaTool$outboundSchema: z.ZodType<UpdateJSONSchemaTool$Outbound, z.ZodTypeDef, UpdateJSONSchemaTool>;
|
|
@@ -1338,6 +1385,8 @@ export type UpdateToolRequestBodyFunction$Outbound = {
|
|
|
1338
1385
|
export declare const UpdateToolRequestBodyFunction$outboundSchema: z.ZodType<UpdateToolRequestBodyFunction$Outbound, z.ZodTypeDef, UpdateToolRequestBodyFunction>;
|
|
1339
1386
|
export declare function updateToolRequestBodyFunctionToJSON(updateToolRequestBodyFunction: UpdateToolRequestBodyFunction): string;
|
|
1340
1387
|
/** @internal */
|
|
1388
|
+
export declare const VersionIncrement$outboundSchema: z.ZodNativeEnum<typeof VersionIncrement>;
|
|
1389
|
+
/** @internal */
|
|
1341
1390
|
export type UpdateFunctionTool$Outbound = {
|
|
1342
1391
|
path?: string | undefined;
|
|
1343
1392
|
key?: string | undefined;
|
|
@@ -1346,6 +1395,7 @@ export type UpdateFunctionTool$Outbound = {
|
|
|
1346
1395
|
status: string;
|
|
1347
1396
|
type: "function";
|
|
1348
1397
|
function?: UpdateToolRequestBodyFunction$Outbound | undefined;
|
|
1398
|
+
versionIncrement?: string | undefined;
|
|
1349
1399
|
};
|
|
1350
1400
|
/** @internal */
|
|
1351
1401
|
export declare const UpdateFunctionTool$outboundSchema: z.ZodType<UpdateFunctionTool$Outbound, z.ZodTypeDef, UpdateFunctionTool>;
|