@orq-ai/node 3.13.1 → 3.13.3
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/bin/mcp-server.js +202 -202
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +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/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +14 -14
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/evalsageappropriate.ts +67 -0
- package/packages/orq-rc/src/models/operations/evalsbotdetection.ts +73 -0
- package/packages/orq-rc/src/models/operations/evalsfactcheckingknowledgebase.ts +90 -0
- package/packages/orq-rc/src/models/operations/evalsgrammar.ts +71 -0
- package/packages/orq-rc/src/models/operations/evalslocalization.ts +73 -0
- package/packages/orq-rc/src/models/operations/evalspii.ts +71 -0
- package/packages/orq-rc/src/models/operations/evalssentimentclassification.ts +89 -0
- package/packages/orq-rc/src/models/operations/evalssummarization.ts +76 -0
- package/packages/orq-rc/src/models/operations/evalstoneofvoice.ts +73 -0
- package/packages/orq-rc/src/models/operations/evalstranslation.ts +73 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/invokeeval.ts +88 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +2 -2
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -1556,8 +1556,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1556
1556
|
> = z.object({
|
|
1557
1557
|
_id: z.string(),
|
|
1558
1558
|
description: z.string(),
|
|
1559
|
-
created: z.string().default("2025-10-
|
|
1560
|
-
updated: z.string().default("2025-10-
|
|
1559
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
1560
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
1561
1561
|
guardrail_config: z.union([
|
|
1562
1562
|
z.lazy(() =>
|
|
1563
1563
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1600,8 +1600,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1600
1600
|
> = z.object({
|
|
1601
1601
|
id: z.string(),
|
|
1602
1602
|
description: z.string(),
|
|
1603
|
-
created: z.string().default("2025-10-
|
|
1604
|
-
updated: z.string().default("2025-10-
|
|
1603
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
1604
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
1605
1605
|
guardrailConfig: z.union([
|
|
1606
1606
|
z.lazy(() =>
|
|
1607
1607
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -2002,8 +2002,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2002
2002
|
> = z.object({
|
|
2003
2003
|
_id: z.string(),
|
|
2004
2004
|
description: z.string(),
|
|
2005
|
-
created: z.string().default("2025-10-
|
|
2006
|
-
updated: z.string().default("2025-10-
|
|
2005
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
2006
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
2007
2007
|
guardrail_config: z.union([
|
|
2008
2008
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2009
2009
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2044,8 +2044,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2044
2044
|
> = z.object({
|
|
2045
2045
|
id: z.string(),
|
|
2046
2046
|
description: z.string(),
|
|
2047
|
-
created: z.string().default("2025-10-
|
|
2048
|
-
updated: z.string().default("2025-10-
|
|
2047
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
2048
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
2049
2049
|
guardrailConfig: z.union([
|
|
2050
2050
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2051
2051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5512,8 +5512,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5512
5512
|
> = z.object({
|
|
5513
5513
|
_id: z.string(),
|
|
5514
5514
|
description: z.string(),
|
|
5515
|
-
created: z.string().default("2025-10-
|
|
5516
|
-
updated: z.string().default("2025-10-
|
|
5515
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
5516
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
5517
5517
|
guardrail_config: z.union([
|
|
5518
5518
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5519
5519
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5623,8 +5623,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5623
5623
|
> = z.object({
|
|
5624
5624
|
id: z.string(),
|
|
5625
5625
|
description: z.string(),
|
|
5626
|
-
created: z.string().default("2025-10-
|
|
5627
|
-
updated: z.string().default("2025-10-
|
|
5626
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
5627
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
5628
5628
|
guardrailConfig: z.union([
|
|
5629
5629
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5630
5630
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6006,8 +6006,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6006
6006
|
> = z.object({
|
|
6007
6007
|
_id: z.string(),
|
|
6008
6008
|
description: z.string(),
|
|
6009
|
-
created: z.string().default("2025-10-
|
|
6010
|
-
updated: z.string().default("2025-10-
|
|
6009
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6010
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6011
6011
|
guardrail_config: z.union([
|
|
6012
6012
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6013
6013
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6045,8 +6045,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6045
6045
|
> = z.object({
|
|
6046
6046
|
id: z.string(),
|
|
6047
6047
|
description: z.string(),
|
|
6048
|
-
created: z.string().default("2025-10-
|
|
6049
|
-
updated: z.string().default("2025-10-
|
|
6048
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6049
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6050
6050
|
guardrailConfig: z.union([
|
|
6051
6051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6052
6052
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6392,8 +6392,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6392
6392
|
> = z.object({
|
|
6393
6393
|
_id: z.string(),
|
|
6394
6394
|
description: z.string(),
|
|
6395
|
-
created: z.string().default("2025-10-
|
|
6396
|
-
updated: z.string().default("2025-10-
|
|
6395
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6396
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6397
6397
|
guardrail_config: z.union([
|
|
6398
6398
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6399
6399
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6437,8 +6437,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6437
6437
|
> = z.object({
|
|
6438
6438
|
id: z.string(),
|
|
6439
6439
|
description: z.string(),
|
|
6440
|
-
created: z.string().default("2025-10-
|
|
6441
|
-
updated: z.string().default("2025-10-
|
|
6440
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6441
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6442
6442
|
guardrailConfig: z.union([
|
|
6443
6443
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6444
6444
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6803,8 +6803,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6803
6803
|
> = z.object({
|
|
6804
6804
|
_id: z.string(),
|
|
6805
6805
|
description: z.string(),
|
|
6806
|
-
created: z.string().default("2025-10-
|
|
6807
|
-
updated: z.string().default("2025-10-
|
|
6806
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6807
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6808
6808
|
guardrail_config: z.union([
|
|
6809
6809
|
z.lazy(() =>
|
|
6810
6810
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6846,8 +6846,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6846
6846
|
> = z.object({
|
|
6847
6847
|
id: z.string(),
|
|
6848
6848
|
description: z.string(),
|
|
6849
|
-
created: z.string().default("2025-10-
|
|
6850
|
-
updated: z.string().default("2025-10-
|
|
6849
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6850
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
6851
6851
|
guardrailConfig: z.union([
|
|
6852
6852
|
z.lazy(() =>
|
|
6853
6853
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7229,8 +7229,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7229
7229
|
z.object({
|
|
7230
7230
|
_id: z.string(),
|
|
7231
7231
|
description: z.string(),
|
|
7232
|
-
created: z.string().default("2025-10-
|
|
7233
|
-
updated: z.string().default("2025-10-
|
|
7232
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
7233
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
7234
7234
|
guardrail_config: z.union([
|
|
7235
7235
|
z.lazy(() =>
|
|
7236
7236
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7274,8 +7274,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7274
7274
|
> = z.object({
|
|
7275
7275
|
id: z.string(),
|
|
7276
7276
|
description: z.string(),
|
|
7277
|
-
created: z.string().default("2025-10-
|
|
7278
|
-
updated: z.string().default("2025-10-
|
|
7277
|
+
created: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
7278
|
+
updated: z.string().default("2025-10-02T08:26:56.871Z"),
|
|
7279
7279
|
guardrailConfig: z.union([
|
|
7280
7280
|
z.lazy(() =>
|
|
7281
7281
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -200,10 +200,14 @@ export type InvokeEvalResponseBodyEvalsResponse200ApplicationJson7Value =
|
|
|
200
200
|
| boolean
|
|
201
201
|
| string;
|
|
202
202
|
|
|
203
|
+
export type ResponseBodyOriginalValue = number | boolean | string;
|
|
204
|
+
|
|
203
205
|
export type InvokeEvalResponseBodyEvalsResponseValue = {
|
|
204
206
|
workflowRunId: string;
|
|
205
207
|
value: number | boolean | string;
|
|
206
208
|
explanation?: string | null | undefined;
|
|
209
|
+
originalValue?: number | boolean | string | null | undefined;
|
|
210
|
+
originalExplanation?: string | null | undefined;
|
|
207
211
|
};
|
|
208
212
|
|
|
209
213
|
export type InvokeEvalResponseBodyLLM = {
|
|
@@ -298,6 +302,7 @@ export type InvokeEvalResponseBodyEvalsType = ClosedEnum<
|
|
|
298
302
|
|
|
299
303
|
export type ResponseBodyNumber = {
|
|
300
304
|
type: InvokeEvalResponseBodyEvalsType;
|
|
305
|
+
originalValue?: number | null | undefined;
|
|
301
306
|
value: number | null;
|
|
302
307
|
};
|
|
303
308
|
|
|
@@ -310,6 +315,7 @@ export type InvokeEvalResponseBodyType = ClosedEnum<
|
|
|
310
315
|
|
|
311
316
|
export type String = {
|
|
312
317
|
type: InvokeEvalResponseBodyType;
|
|
318
|
+
originalValue?: string | null | undefined;
|
|
313
319
|
value?: string | null | undefined;
|
|
314
320
|
};
|
|
315
321
|
|
|
@@ -1498,6 +1504,54 @@ export function invokeEvalResponseBodyEvalsResponse200ApplicationJSON7ValueFromJ
|
|
|
1498
1504
|
);
|
|
1499
1505
|
}
|
|
1500
1506
|
|
|
1507
|
+
/** @internal */
|
|
1508
|
+
export const ResponseBodyOriginalValue$inboundSchema: z.ZodType<
|
|
1509
|
+
ResponseBodyOriginalValue,
|
|
1510
|
+
z.ZodTypeDef,
|
|
1511
|
+
unknown
|
|
1512
|
+
> = z.union([z.number(), z.boolean(), z.string()]);
|
|
1513
|
+
|
|
1514
|
+
/** @internal */
|
|
1515
|
+
export type ResponseBodyOriginalValue$Outbound = number | boolean | string;
|
|
1516
|
+
|
|
1517
|
+
/** @internal */
|
|
1518
|
+
export const ResponseBodyOriginalValue$outboundSchema: z.ZodType<
|
|
1519
|
+
ResponseBodyOriginalValue$Outbound,
|
|
1520
|
+
z.ZodTypeDef,
|
|
1521
|
+
ResponseBodyOriginalValue
|
|
1522
|
+
> = z.union([z.number(), z.boolean(), z.string()]);
|
|
1523
|
+
|
|
1524
|
+
/**
|
|
1525
|
+
* @internal
|
|
1526
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1527
|
+
*/
|
|
1528
|
+
export namespace ResponseBodyOriginalValue$ {
|
|
1529
|
+
/** @deprecated use `ResponseBodyOriginalValue$inboundSchema` instead. */
|
|
1530
|
+
export const inboundSchema = ResponseBodyOriginalValue$inboundSchema;
|
|
1531
|
+
/** @deprecated use `ResponseBodyOriginalValue$outboundSchema` instead. */
|
|
1532
|
+
export const outboundSchema = ResponseBodyOriginalValue$outboundSchema;
|
|
1533
|
+
/** @deprecated use `ResponseBodyOriginalValue$Outbound` instead. */
|
|
1534
|
+
export type Outbound = ResponseBodyOriginalValue$Outbound;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
export function responseBodyOriginalValueToJSON(
|
|
1538
|
+
responseBodyOriginalValue: ResponseBodyOriginalValue,
|
|
1539
|
+
): string {
|
|
1540
|
+
return JSON.stringify(
|
|
1541
|
+
ResponseBodyOriginalValue$outboundSchema.parse(responseBodyOriginalValue),
|
|
1542
|
+
);
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
export function responseBodyOriginalValueFromJSON(
|
|
1546
|
+
jsonString: string,
|
|
1547
|
+
): SafeParseResult<ResponseBodyOriginalValue, SDKValidationError> {
|
|
1548
|
+
return safeParse(
|
|
1549
|
+
jsonString,
|
|
1550
|
+
(x) => ResponseBodyOriginalValue$inboundSchema.parse(JSON.parse(x)),
|
|
1551
|
+
`Failed to parse 'ResponseBodyOriginalValue' from JSON`,
|
|
1552
|
+
);
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1501
1555
|
/** @internal */
|
|
1502
1556
|
export const InvokeEvalResponseBodyEvalsResponseValue$inboundSchema: z.ZodType<
|
|
1503
1557
|
InvokeEvalResponseBodyEvalsResponseValue,
|
|
@@ -1507,9 +1561,14 @@ export const InvokeEvalResponseBodyEvalsResponseValue$inboundSchema: z.ZodType<
|
|
|
1507
1561
|
workflow_run_id: z.string(),
|
|
1508
1562
|
value: z.union([z.number(), z.boolean(), z.string()]),
|
|
1509
1563
|
explanation: z.nullable(z.string()).optional(),
|
|
1564
|
+
original_value: z.nullable(z.union([z.number(), z.boolean(), z.string()]))
|
|
1565
|
+
.optional(),
|
|
1566
|
+
original_explanation: z.nullable(z.string()).optional(),
|
|
1510
1567
|
}).transform((v) => {
|
|
1511
1568
|
return remap$(v, {
|
|
1512
1569
|
"workflow_run_id": "workflowRunId",
|
|
1570
|
+
"original_value": "originalValue",
|
|
1571
|
+
"original_explanation": "originalExplanation",
|
|
1513
1572
|
});
|
|
1514
1573
|
});
|
|
1515
1574
|
|
|
@@ -1518,6 +1577,8 @@ export type InvokeEvalResponseBodyEvalsResponseValue$Outbound = {
|
|
|
1518
1577
|
workflow_run_id: string;
|
|
1519
1578
|
value: number | boolean | string;
|
|
1520
1579
|
explanation?: string | null | undefined;
|
|
1580
|
+
original_value?: number | boolean | string | null | undefined;
|
|
1581
|
+
original_explanation?: string | null | undefined;
|
|
1521
1582
|
};
|
|
1522
1583
|
|
|
1523
1584
|
/** @internal */
|
|
@@ -1529,9 +1590,14 @@ export const InvokeEvalResponseBodyEvalsResponseValue$outboundSchema: z.ZodType<
|
|
|
1529
1590
|
workflowRunId: z.string(),
|
|
1530
1591
|
value: z.union([z.number(), z.boolean(), z.string()]),
|
|
1531
1592
|
explanation: z.nullable(z.string()).optional(),
|
|
1593
|
+
originalValue: z.nullable(z.union([z.number(), z.boolean(), z.string()]))
|
|
1594
|
+
.optional(),
|
|
1595
|
+
originalExplanation: z.nullable(z.string()).optional(),
|
|
1532
1596
|
}).transform((v) => {
|
|
1533
1597
|
return remap$(v, {
|
|
1534
1598
|
workflowRunId: "workflow_run_id",
|
|
1599
|
+
originalValue: "original_value",
|
|
1600
|
+
originalExplanation: "original_explanation",
|
|
1535
1601
|
});
|
|
1536
1602
|
});
|
|
1537
1603
|
|
|
@@ -2324,12 +2390,18 @@ export const ResponseBodyNumber$inboundSchema: z.ZodType<
|
|
|
2324
2390
|
unknown
|
|
2325
2391
|
> = z.object({
|
|
2326
2392
|
type: InvokeEvalResponseBodyEvalsType$inboundSchema,
|
|
2393
|
+
original_value: z.nullable(z.number()).optional(),
|
|
2327
2394
|
value: z.nullable(z.number()),
|
|
2395
|
+
}).transform((v) => {
|
|
2396
|
+
return remap$(v, {
|
|
2397
|
+
"original_value": "originalValue",
|
|
2398
|
+
});
|
|
2328
2399
|
});
|
|
2329
2400
|
|
|
2330
2401
|
/** @internal */
|
|
2331
2402
|
export type ResponseBodyNumber$Outbound = {
|
|
2332
2403
|
type: string;
|
|
2404
|
+
original_value?: number | null | undefined;
|
|
2333
2405
|
value: number | null;
|
|
2334
2406
|
};
|
|
2335
2407
|
|
|
@@ -2340,7 +2412,12 @@ export const ResponseBodyNumber$outboundSchema: z.ZodType<
|
|
|
2340
2412
|
ResponseBodyNumber
|
|
2341
2413
|
> = z.object({
|
|
2342
2414
|
type: InvokeEvalResponseBodyEvalsType$outboundSchema,
|
|
2415
|
+
originalValue: z.nullable(z.number()).optional(),
|
|
2343
2416
|
value: z.nullable(z.number()),
|
|
2417
|
+
}).transform((v) => {
|
|
2418
|
+
return remap$(v, {
|
|
2419
|
+
originalValue: "original_value",
|
|
2420
|
+
});
|
|
2344
2421
|
});
|
|
2345
2422
|
|
|
2346
2423
|
/**
|
|
@@ -2399,12 +2476,18 @@ export namespace InvokeEvalResponseBodyType$ {
|
|
|
2399
2476
|
export const String$inboundSchema: z.ZodType<String, z.ZodTypeDef, unknown> = z
|
|
2400
2477
|
.object({
|
|
2401
2478
|
type: InvokeEvalResponseBodyType$inboundSchema,
|
|
2479
|
+
original_value: z.nullable(z.string()).optional(),
|
|
2402
2480
|
value: z.nullable(z.string()).optional(),
|
|
2481
|
+
}).transform((v) => {
|
|
2482
|
+
return remap$(v, {
|
|
2483
|
+
"original_value": "originalValue",
|
|
2484
|
+
});
|
|
2403
2485
|
});
|
|
2404
2486
|
|
|
2405
2487
|
/** @internal */
|
|
2406
2488
|
export type String$Outbound = {
|
|
2407
2489
|
type: string;
|
|
2490
|
+
original_value?: string | null | undefined;
|
|
2408
2491
|
value?: string | null | undefined;
|
|
2409
2492
|
};
|
|
2410
2493
|
|
|
@@ -2415,7 +2498,12 @@ export const String$outboundSchema: z.ZodType<
|
|
|
2415
2498
|
String
|
|
2416
2499
|
> = z.object({
|
|
2417
2500
|
type: InvokeEvalResponseBodyType$outboundSchema,
|
|
2501
|
+
originalValue: z.nullable(z.string()).optional(),
|
|
2418
2502
|
value: z.nullable(z.string()).optional(),
|
|
2503
|
+
}).transform((v) => {
|
|
2504
|
+
return remap$(v, {
|
|
2505
|
+
originalValue: "original_value",
|
|
2506
|
+
});
|
|
2419
2507
|
});
|
|
2420
2508
|
|
|
2421
2509
|
/**
|
|
@@ -1075,7 +1075,7 @@ export const ListAgentsKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
1075
1075
|
z.ZodTypeDef,
|
|
1076
1076
|
unknown
|
|
1077
1077
|
> = z.object({
|
|
1078
|
-
id: z.string().default("
|
|
1078
|
+
id: z.string().default("01K6J0GBXAB1S65S1A2Z5J4DAS"),
|
|
1079
1079
|
knowledge_id: z.string(),
|
|
1080
1080
|
configuration: z.union([
|
|
1081
1081
|
z.lazy(() =>
|
|
@@ -1106,7 +1106,7 @@ export const ListAgentsKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
1106
1106
|
z.ZodTypeDef,
|
|
1107
1107
|
ListAgentsKnowledgeBases
|
|
1108
1108
|
> = z.object({
|
|
1109
|
-
id: z.string().default("
|
|
1109
|
+
id: z.string().default("01K6J0GBXAB1S65S1A2Z5J4DAS"),
|
|
1110
1110
|
knowledgeId: z.string(),
|
|
1111
1111
|
configuration: z.union([
|
|
1112
1112
|
z.lazy(() =>
|
|
@@ -464,7 +464,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
464
464
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
465
465
|
.optional(),
|
|
466
466
|
updated: z.string().datetime({ offset: true }).default(
|
|
467
|
-
"2025-10-
|
|
467
|
+
"2025-10-02T08:26:54.292Z",
|
|
468
468
|
).transform(v => new Date(v)),
|
|
469
469
|
}).transform((v) => {
|
|
470
470
|
return remap$(v, {
|
|
@@ -499,7 +499,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
499
499
|
isActive: z.boolean(),
|
|
500
500
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
501
501
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
502
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
502
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
503
503
|
.transform(v => v.toISOString()),
|
|
504
504
|
}).transform((v) => {
|
|
505
505
|
return remap$(v, {
|
|
@@ -352,7 +352,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
352
352
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
353
353
|
.optional(),
|
|
354
354
|
updated: z.string().datetime({ offset: true }).default(
|
|
355
|
-
"2025-10-
|
|
355
|
+
"2025-10-02T08:26:54.292Z",
|
|
356
356
|
).transform(v => new Date(v)),
|
|
357
357
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
358
358
|
}).transform((v) => {
|
|
@@ -389,7 +389,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
389
389
|
tags: z.array(z.string()).optional(),
|
|
390
390
|
metadata: z.record(z.any()).optional(),
|
|
391
391
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
392
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
392
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
393
393
|
.transform(v => v.toISOString()),
|
|
394
394
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
395
395
|
}).transform((v) => {
|
|
@@ -3101,7 +3101,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3101
3101
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3102
3102
|
.optional(),
|
|
3103
3103
|
updated: z.string().datetime({ offset: true }).default(
|
|
3104
|
-
"2025-10-
|
|
3104
|
+
"2025-10-02T08:26:54.292Z",
|
|
3105
3105
|
).transform(v => new Date(v)),
|
|
3106
3106
|
}).transform((v) => {
|
|
3107
3107
|
return remap$(v, {
|
|
@@ -3165,7 +3165,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3165
3165
|
createdById: z.string().optional(),
|
|
3166
3166
|
updatedById: z.string().optional(),
|
|
3167
3167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3168
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3168
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
3169
3169
|
.transform(v => v.toISOString()),
|
|
3170
3170
|
}).transform((v) => {
|
|
3171
3171
|
return remap$(v, {
|
|
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
253
253
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
254
254
|
.optional(),
|
|
255
255
|
updated: z.string().datetime({ offset: true }).default(
|
|
256
|
-
"2025-10-
|
|
256
|
+
"2025-10-02T08:26:54.292Z",
|
|
257
257
|
).transform(v => new Date(v)),
|
|
258
258
|
}).transform((v) => {
|
|
259
259
|
return remap$(v, {
|
|
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
|
|
|
293
293
|
updatedById: z.string().optional(),
|
|
294
294
|
metadata: z.lazy(() => ListDatasetsMetadata$outboundSchema),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
unknown
|
|
280
280
|
> = z.object({
|
|
281
|
-
_id: z.string().default("
|
|
281
|
+
_id: z.string().default("01K6J0GC1C7PFPJZ88ZY8B0W98"),
|
|
282
282
|
display_name: z.string(),
|
|
283
283
|
description: z.string().optional(),
|
|
284
284
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
322
322
|
z.ZodTypeDef,
|
|
323
323
|
ListDatasourcesData
|
|
324
324
|
> = z.object({
|
|
325
|
-
id: z.string().default("
|
|
325
|
+
id: z.string().default("01K6J0GC1C7PFPJZ88ZY8B0W98"),
|
|
326
326
|
displayName: z.string(),
|
|
327
327
|
description: z.string().optional(),
|
|
328
328
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -127,7 +127,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
127
127
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
128
128
|
.optional(),
|
|
129
129
|
updated: z.string().datetime({ offset: true }).default(
|
|
130
|
-
"2025-10-
|
|
130
|
+
"2025-10-02T08:26:54.292Z",
|
|
131
131
|
).transform(v => new Date(v)),
|
|
132
132
|
}).transform((v) => {
|
|
133
133
|
return remap$(v, {
|
|
@@ -165,7 +165,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
165
165
|
tags: z.array(z.string()).optional(),
|
|
166
166
|
metadata: z.record(z.any()).optional(),
|
|
167
167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
168
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -2958,7 +2958,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2958
2958
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2959
2959
|
.optional(),
|
|
2960
2960
|
updated: z.string().datetime({ offset: true }).default(
|
|
2961
|
-
"2025-10-
|
|
2961
|
+
"2025-10-02T08:26:54.292Z",
|
|
2962
2962
|
).transform(v => new Date(v)),
|
|
2963
2963
|
}).transform((v) => {
|
|
2964
2964
|
return remap$(v, {
|
|
@@ -3016,7 +3016,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3016
3016
|
createdById: z.string().optional(),
|
|
3017
3017
|
updatedById: z.string().optional(),
|
|
3018
3018
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3019
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3019
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
3020
3020
|
.transform(v => v.toISOString()),
|
|
3021
3021
|
}).transform((v) => {
|
|
3022
3022
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
202
202
|
.optional(),
|
|
203
203
|
updated: z.string().datetime({ offset: true }).default(
|
|
204
|
-
"2025-10-
|
|
204
|
+
"2025-10-02T08:26:54.292Z",
|
|
205
205
|
).transform(v => new Date(v)),
|
|
206
206
|
}).transform((v) => {
|
|
207
207
|
return remap$(v, {
|
|
@@ -241,7 +241,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
241
241
|
updatedById: z.string().optional(),
|
|
242
242
|
metadata: z.lazy(() => RetrieveDatasetMetadata$outboundSchema),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-10-02T08:26:54.292Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|
|
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
172
172
|
z.ZodTypeDef,
|
|
173
173
|
unknown
|
|
174
174
|
> = z.object({
|
|
175
|
-
_id: z.string().default("
|
|
175
|
+
_id: z.string().default("01K6J0GC1D0AJ5SZJNRZ4RAXZ4"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
216
216
|
z.ZodTypeDef,
|
|
217
217
|
RetrieveDatasourceResponseBody
|
|
218
218
|
> = z.object({
|
|
219
|
-
id: z.string().default("
|
|
219
|
+
id: z.string().default("01K6J0GC1D0AJ5SZJNRZ4RAXZ4"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -750,7 +750,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
750
750
|
z.ZodTypeDef,
|
|
751
751
|
unknown
|
|
752
752
|
> = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("01K6J0GC5DQ562F8X6WCDY90S1"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string(),
|
|
@@ -806,7 +806,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
806
806
|
z.ZodTypeDef,
|
|
807
807
|
RetrieveToolResponseBody5
|
|
808
808
|
> = z.object({
|
|
809
|
-
id: z.string().default("
|
|
809
|
+
id: z.string().default("01K6J0GC5DQ562F8X6WCDY90S1"),
|
|
810
810
|
path: z.string(),
|
|
811
811
|
key: z.string(),
|
|
812
812
|
displayName: z.string(),
|
|
@@ -1190,7 +1190,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1190
1190
|
z.ZodTypeDef,
|
|
1191
1191
|
unknown
|
|
1192
1192
|
> = z.object({
|
|
1193
|
-
_id: z.string().default("
|
|
1193
|
+
_id: z.string().default("01K6J0GC5D63FJWZBH828XZHS5"),
|
|
1194
1194
|
path: z.string(),
|
|
1195
1195
|
key: z.string(),
|
|
1196
1196
|
display_name: z.string(),
|
|
@@ -1244,7 +1244,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1244
1244
|
z.ZodTypeDef,
|
|
1245
1245
|
RetrieveToolResponseBody4
|
|
1246
1246
|
> = z.object({
|
|
1247
|
-
id: z.string().default("
|
|
1247
|
+
id: z.string().default("01K6J0GC5D63FJWZBH828XZHS5"),
|
|
1248
1248
|
path: z.string(),
|
|
1249
1249
|
key: z.string(),
|
|
1250
1250
|
displayName: z.string(),
|
|
@@ -1670,7 +1670,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1670
1670
|
z.ZodTypeDef,
|
|
1671
1671
|
unknown
|
|
1672
1672
|
> = z.object({
|
|
1673
|
-
_id: z.string().default("
|
|
1673
|
+
_id: z.string().default("01K6J0GC5C02QX54YF53RBY8TN"),
|
|
1674
1674
|
path: z.string(),
|
|
1675
1675
|
key: z.string(),
|
|
1676
1676
|
display_name: z.string(),
|
|
@@ -1724,7 +1724,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1724
1724
|
z.ZodTypeDef,
|
|
1725
1725
|
RetrieveToolResponseBody3
|
|
1726
1726
|
> = z.object({
|
|
1727
|
-
id: z.string().default("
|
|
1727
|
+
id: z.string().default("01K6J0GC5C02QX54YF53RBY8TN"),
|
|
1728
1728
|
path: z.string(),
|
|
1729
1729
|
key: z.string(),
|
|
1730
1730
|
displayName: z.string(),
|
|
@@ -1902,7 +1902,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("01K6J0GC5C55J5VFJ9W69TD74Q"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string(),
|
|
@@ -1955,7 +1955,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1955
1955
|
z.ZodTypeDef,
|
|
1956
1956
|
RetrieveToolResponseBody2
|
|
1957
1957
|
> = z.object({
|
|
1958
|
-
id: z.string().default("
|
|
1958
|
+
id: z.string().default("01K6J0GC5C55J5VFJ9W69TD74Q"),
|
|
1959
1959
|
path: z.string(),
|
|
1960
1960
|
key: z.string(),
|
|
1961
1961
|
displayName: z.string(),
|
|
@@ -2127,7 +2127,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2127
2127
|
z.ZodTypeDef,
|
|
2128
2128
|
unknown
|
|
2129
2129
|
> = z.object({
|
|
2130
|
-
_id: z.string().default("
|
|
2130
|
+
_id: z.string().default("01K6J0GC5CXNJDJCY07Y1X0HWG"),
|
|
2131
2131
|
path: z.string(),
|
|
2132
2132
|
key: z.string(),
|
|
2133
2133
|
display_name: z.string(),
|
|
@@ -2179,7 +2179,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2179
2179
|
z.ZodTypeDef,
|
|
2180
2180
|
RetrieveToolResponseBody1
|
|
2181
2181
|
> = z.object({
|
|
2182
|
-
id: z.string().default("
|
|
2182
|
+
id: z.string().default("01K6J0GC5CXNJDJCY07Y1X0HWG"),
|
|
2183
2183
|
path: z.string(),
|
|
2184
2184
|
key: z.string(),
|
|
2185
2185
|
displayName: z.string(),
|
|
@@ -2674,7 +2674,7 @@ export const HTTPTool$inboundSchema: z.ZodType<
|
|
|
2674
2674
|
z.ZodTypeDef,
|
|
2675
2675
|
unknown
|
|
2676
2676
|
> = z.object({
|
|
2677
|
-
_id: z.string().default("
|
|
2677
|
+
_id: z.string().default("01K6J0GBY0P5PGP2YCZTH8RYA3"),
|
|
2678
2678
|
key: z.string(),
|
|
2679
2679
|
display_name: z.string(),
|
|
2680
2680
|
description: z.string(),
|
|
@@ -2707,7 +2707,7 @@ export const HTTPTool$outboundSchema: z.ZodType<
|
|
|
2707
2707
|
z.ZodTypeDef,
|
|
2708
2708
|
HTTPTool
|
|
2709
2709
|
> = z.object({
|
|
2710
|
-
id: z.string().default("
|
|
2710
|
+
id: z.string().default("01K6J0GBY0P5PGP2YCZTH8RYA3"),
|
|
2711
2711
|
key: z.string(),
|
|
2712
2712
|
displayName: z.string(),
|
|
2713
2713
|
description: z.string(),
|
|
@@ -2829,7 +2829,7 @@ export const RunAgentRequestToolHTTPTool$inboundSchema: z.ZodType<
|
|
|
2829
2829
|
z.ZodTypeDef,
|
|
2830
2830
|
unknown
|
|
2831
2831
|
> = z.object({
|
|
2832
|
-
_id: z.string().default("
|
|
2832
|
+
_id: z.string().default("01K6J0GBY6KWDFE5DH8SJT0HNV"),
|
|
2833
2833
|
key: z.string(),
|
|
2834
2834
|
display_name: z.string(),
|
|
2835
2835
|
description: z.string(),
|
|
@@ -2862,7 +2862,7 @@ export const RunAgentRequestToolHTTPTool$outboundSchema: z.ZodType<
|
|
|
2862
2862
|
z.ZodTypeDef,
|
|
2863
2863
|
RunAgentRequestToolHTTPTool
|
|
2864
2864
|
> = z.object({
|
|
2865
|
-
id: z.string().default("
|
|
2865
|
+
id: z.string().default("01K6J0GBY6KWDFE5DH8SJT0HNV"),
|
|
2866
2866
|
key: z.string(),
|
|
2867
2867
|
displayName: z.string(),
|
|
2868
2868
|
description: z.string(),
|