@orq-ai/node 3.14.37 → 3.14.38
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 +210 -210
- package/bin/mcp-server.js.map +35 -35
- 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/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 +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +10 -10
- 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/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- 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 +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- 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 +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/agents/README.md +2 -0
- package/packages/orq-rc/examples/package-lock.json +2 -10
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +3 -27
- package/packages/orq-rc/package.json +3 -6
- 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/createagent.ts +138 -3
- 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 +8 -8
- 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 +10 -10
- package/packages/orq-rc/src/models/operations/duplicateagent.ts +71 -0
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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 +67 -0
- 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/listagents.ts +69 -0
- 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 +8 -8
- 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 +8 -8
- 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 +75 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +77 -1
- package/packages/orq-rc/src/models/operations/syncmcptool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updateagent.ts +145 -3
- 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 +8 -8
- 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 +10 -10
- 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 +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- 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 +8 -8
- 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/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- 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 +10 -10
|
@@ -300,10 +300,24 @@ export type ParametersT = {
|
|
|
300
300
|
modalities?: Array<Modalities> | null | undefined;
|
|
301
301
|
};
|
|
302
302
|
|
|
303
|
+
/**
|
|
304
|
+
* Retry configuration for model requests. Retries are triggered for specific HTTP status codes (e.g., 500, 429, 502, 503, 504). Supports configurable retry count (1-5) and custom status codes.
|
|
305
|
+
*/
|
|
306
|
+
export type Retry = {
|
|
307
|
+
/**
|
|
308
|
+
* Number of retry attempts (1-5)
|
|
309
|
+
*/
|
|
310
|
+
count?: number | undefined;
|
|
311
|
+
/**
|
|
312
|
+
* HTTP status codes that trigger retry logic
|
|
313
|
+
*/
|
|
314
|
+
onCodes?: Array<number> | undefined;
|
|
315
|
+
};
|
|
316
|
+
|
|
303
317
|
/**
|
|
304
318
|
* @remarks
|
|
305
319
|
*
|
|
306
|
-
* Model configuration with parameters.
|
|
320
|
+
* Model configuration with parameters and retry settings.
|
|
307
321
|
*/
|
|
308
322
|
export type ModelConfiguration2 = {
|
|
309
323
|
/**
|
|
@@ -314,10 +328,14 @@ export type ModelConfiguration2 = {
|
|
|
314
328
|
* Model behavior parameters that control how the model generates responses. Common parameters: `temperature` (0-1, randomness), `max_completion_tokens` (max output length), `top_p` (sampling diversity). Advanced: `frequency_penalty`, `presence_penalty`, `response_format` (JSON/structured), `reasoning_effort`, `seed` (reproducibility). Support varies by model - consult AI Gateway documentation.
|
|
315
329
|
*/
|
|
316
330
|
parameters?: ParametersT | undefined;
|
|
331
|
+
/**
|
|
332
|
+
* Retry configuration for model requests. Retries are triggered for specific HTTP status codes (e.g., 500, 429, 502, 503, 504). Supports configurable retry count (1-5) and custom status codes.
|
|
333
|
+
*/
|
|
334
|
+
retry?: Retry | undefined;
|
|
317
335
|
};
|
|
318
336
|
|
|
319
337
|
/**
|
|
320
|
-
* Model configuration for agent execution. Can be a simple model ID string or a configuration object with optional behavior parameters.
|
|
338
|
+
* Model configuration for agent execution. Can be a simple model ID string or a configuration object with optional behavior parameters and retry settings.
|
|
321
339
|
*/
|
|
322
340
|
export type ModelConfiguration = ModelConfiguration2 | string;
|
|
323
341
|
|
|
@@ -1196,7 +1214,7 @@ export type CreateAgentRequestBody = {
|
|
|
1196
1214
|
*/
|
|
1197
1215
|
path: string;
|
|
1198
1216
|
/**
|
|
1199
|
-
* Model configuration for agent execution. Can be a simple model ID string or a configuration object with optional behavior parameters.
|
|
1217
|
+
* Model configuration for agent execution. Can be a simple model ID string or a configuration object with optional behavior parameters and retry settings.
|
|
1200
1218
|
*/
|
|
1201
1219
|
model: ModelConfiguration2 | string;
|
|
1202
1220
|
/**
|
|
@@ -1679,6 +1697,20 @@ export type CreateAgentParameters = {
|
|
|
1679
1697
|
modalities?: Array<CreateAgentModalities> | null | undefined;
|
|
1680
1698
|
};
|
|
1681
1699
|
|
|
1700
|
+
/**
|
|
1701
|
+
* Retry configuration for model requests. Allows customizing retry count (1-5) and HTTP status codes that trigger retries. Default codes: [429]. Common codes: 500 (internal error), 429 (rate limit), 502/503/504 (gateway errors).
|
|
1702
|
+
*/
|
|
1703
|
+
export type CreateAgentRetry = {
|
|
1704
|
+
/**
|
|
1705
|
+
* Number of retry attempts (1-5)
|
|
1706
|
+
*/
|
|
1707
|
+
count?: number | undefined;
|
|
1708
|
+
/**
|
|
1709
|
+
* HTTP status codes that trigger retry logic
|
|
1710
|
+
*/
|
|
1711
|
+
onCodes?: Array<number> | undefined;
|
|
1712
|
+
};
|
|
1713
|
+
|
|
1682
1714
|
/**
|
|
1683
1715
|
* The voice the model uses to respond. Supported voices are alloy, echo, fable, onyx, nova, and shimmer.
|
|
1684
1716
|
*/
|
|
@@ -2046,6 +2078,10 @@ export type CreateAgentModel = {
|
|
|
2046
2078
|
* Model behavior parameters (snake_case) stored as part of the agent configuration. These become the default parameters used when the agent is executed. Commonly used: temperature (0-1, controls randomness), max_completion_tokens (response length), top_p (nucleus sampling). Advanced: frequency_penalty, presence_penalty, response_format (JSON/structured output), reasoning_effort (for o1/thinking models), seed (reproducibility), stop sequences. Model-specific support varies. Runtime parameters in agent execution requests can override these defaults.
|
|
2047
2079
|
*/
|
|
2048
2080
|
parameters?: CreateAgentParameters | undefined;
|
|
2081
|
+
/**
|
|
2082
|
+
* Retry configuration for model requests. Allows customizing retry count (1-5) and HTTP status codes that trigger retries. Default codes: [429]. Common codes: 500 (internal error), 429 (rate limit), 502/503/504 (gateway errors).
|
|
2083
|
+
*/
|
|
2084
|
+
retry?: CreateAgentRetry | undefined;
|
|
2049
2085
|
/**
|
|
2050
2086
|
* Optional array of fallback models (string IDs or config objects) that will be used automatically in order if the primary model fails
|
|
2051
2087
|
*/
|
|
@@ -2815,6 +2851,49 @@ export function parametersFromJSON(
|
|
|
2815
2851
|
);
|
|
2816
2852
|
}
|
|
2817
2853
|
|
|
2854
|
+
/** @internal */
|
|
2855
|
+
export const Retry$inboundSchema: z.ZodType<Retry, z.ZodTypeDef, unknown> = z
|
|
2856
|
+
.object({
|
|
2857
|
+
count: z.number().default(3),
|
|
2858
|
+
on_codes: z.array(z.number()).optional(),
|
|
2859
|
+
}).transform((v) => {
|
|
2860
|
+
return remap$(v, {
|
|
2861
|
+
"on_codes": "onCodes",
|
|
2862
|
+
});
|
|
2863
|
+
});
|
|
2864
|
+
/** @internal */
|
|
2865
|
+
export type Retry$Outbound = {
|
|
2866
|
+
count: number;
|
|
2867
|
+
on_codes?: Array<number> | undefined;
|
|
2868
|
+
};
|
|
2869
|
+
|
|
2870
|
+
/** @internal */
|
|
2871
|
+
export const Retry$outboundSchema: z.ZodType<
|
|
2872
|
+
Retry$Outbound,
|
|
2873
|
+
z.ZodTypeDef,
|
|
2874
|
+
Retry
|
|
2875
|
+
> = z.object({
|
|
2876
|
+
count: z.number().default(3),
|
|
2877
|
+
onCodes: z.array(z.number()).optional(),
|
|
2878
|
+
}).transform((v) => {
|
|
2879
|
+
return remap$(v, {
|
|
2880
|
+
onCodes: "on_codes",
|
|
2881
|
+
});
|
|
2882
|
+
});
|
|
2883
|
+
|
|
2884
|
+
export function retryToJSON(retry: Retry): string {
|
|
2885
|
+
return JSON.stringify(Retry$outboundSchema.parse(retry));
|
|
2886
|
+
}
|
|
2887
|
+
export function retryFromJSON(
|
|
2888
|
+
jsonString: string,
|
|
2889
|
+
): SafeParseResult<Retry, SDKValidationError> {
|
|
2890
|
+
return safeParse(
|
|
2891
|
+
jsonString,
|
|
2892
|
+
(x) => Retry$inboundSchema.parse(JSON.parse(x)),
|
|
2893
|
+
`Failed to parse 'Retry' from JSON`,
|
|
2894
|
+
);
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2818
2897
|
/** @internal */
|
|
2819
2898
|
export const ModelConfiguration2$inboundSchema: z.ZodType<
|
|
2820
2899
|
ModelConfiguration2,
|
|
@@ -2823,11 +2902,13 @@ export const ModelConfiguration2$inboundSchema: z.ZodType<
|
|
|
2823
2902
|
> = z.object({
|
|
2824
2903
|
id: z.string(),
|
|
2825
2904
|
parameters: z.lazy(() => ParametersT$inboundSchema).optional(),
|
|
2905
|
+
retry: z.lazy(() => Retry$inboundSchema).optional(),
|
|
2826
2906
|
});
|
|
2827
2907
|
/** @internal */
|
|
2828
2908
|
export type ModelConfiguration2$Outbound = {
|
|
2829
2909
|
id: string;
|
|
2830
2910
|
parameters?: ParametersT$Outbound | undefined;
|
|
2911
|
+
retry?: Retry$Outbound | undefined;
|
|
2831
2912
|
};
|
|
2832
2913
|
|
|
2833
2914
|
/** @internal */
|
|
@@ -2838,6 +2919,7 @@ export const ModelConfiguration2$outboundSchema: z.ZodType<
|
|
|
2838
2919
|
> = z.object({
|
|
2839
2920
|
id: z.string(),
|
|
2840
2921
|
parameters: z.lazy(() => ParametersT$outboundSchema).optional(),
|
|
2922
|
+
retry: z.lazy(() => Retry$outboundSchema).optional(),
|
|
2841
2923
|
});
|
|
2842
2924
|
|
|
2843
2925
|
export function modelConfiguration2ToJSON(
|
|
@@ -6402,6 +6484,56 @@ export function createAgentParametersFromJSON(
|
|
|
6402
6484
|
);
|
|
6403
6485
|
}
|
|
6404
6486
|
|
|
6487
|
+
/** @internal */
|
|
6488
|
+
export const CreateAgentRetry$inboundSchema: z.ZodType<
|
|
6489
|
+
CreateAgentRetry,
|
|
6490
|
+
z.ZodTypeDef,
|
|
6491
|
+
unknown
|
|
6492
|
+
> = z.object({
|
|
6493
|
+
count: z.number().default(3),
|
|
6494
|
+
on_codes: z.array(z.number()).optional(),
|
|
6495
|
+
}).transform((v) => {
|
|
6496
|
+
return remap$(v, {
|
|
6497
|
+
"on_codes": "onCodes",
|
|
6498
|
+
});
|
|
6499
|
+
});
|
|
6500
|
+
/** @internal */
|
|
6501
|
+
export type CreateAgentRetry$Outbound = {
|
|
6502
|
+
count: number;
|
|
6503
|
+
on_codes?: Array<number> | undefined;
|
|
6504
|
+
};
|
|
6505
|
+
|
|
6506
|
+
/** @internal */
|
|
6507
|
+
export const CreateAgentRetry$outboundSchema: z.ZodType<
|
|
6508
|
+
CreateAgentRetry$Outbound,
|
|
6509
|
+
z.ZodTypeDef,
|
|
6510
|
+
CreateAgentRetry
|
|
6511
|
+
> = z.object({
|
|
6512
|
+
count: z.number().default(3),
|
|
6513
|
+
onCodes: z.array(z.number()).optional(),
|
|
6514
|
+
}).transform((v) => {
|
|
6515
|
+
return remap$(v, {
|
|
6516
|
+
onCodes: "on_codes",
|
|
6517
|
+
});
|
|
6518
|
+
});
|
|
6519
|
+
|
|
6520
|
+
export function createAgentRetryToJSON(
|
|
6521
|
+
createAgentRetry: CreateAgentRetry,
|
|
6522
|
+
): string {
|
|
6523
|
+
return JSON.stringify(
|
|
6524
|
+
CreateAgentRetry$outboundSchema.parse(createAgentRetry),
|
|
6525
|
+
);
|
|
6526
|
+
}
|
|
6527
|
+
export function createAgentRetryFromJSON(
|
|
6528
|
+
jsonString: string,
|
|
6529
|
+
): SafeParseResult<CreateAgentRetry, SDKValidationError> {
|
|
6530
|
+
return safeParse(
|
|
6531
|
+
jsonString,
|
|
6532
|
+
(x) => CreateAgentRetry$inboundSchema.parse(JSON.parse(x)),
|
|
6533
|
+
`Failed to parse 'CreateAgentRetry' from JSON`,
|
|
6534
|
+
);
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6405
6537
|
/** @internal */
|
|
6406
6538
|
export const CreateAgentFallbackModelConfigurationVoice$inboundSchema:
|
|
6407
6539
|
z.ZodNativeEnum<typeof CreateAgentFallbackModelConfigurationVoice> = z
|
|
@@ -7443,6 +7575,7 @@ export const CreateAgentModel$inboundSchema: z.ZodType<
|
|
|
7443
7575
|
id: z.string(),
|
|
7444
7576
|
integration_id: z.nullable(z.string()).optional(),
|
|
7445
7577
|
parameters: z.lazy(() => CreateAgentParameters$inboundSchema).optional(),
|
|
7578
|
+
retry: z.lazy(() => CreateAgentRetry$inboundSchema).optional(),
|
|
7446
7579
|
fallback_models: z.nullable(
|
|
7447
7580
|
z.array(z.union([
|
|
7448
7581
|
z.lazy(() => CreateAgentFallbackModelConfiguration2$inboundSchema),
|
|
@@ -7460,6 +7593,7 @@ export type CreateAgentModel$Outbound = {
|
|
|
7460
7593
|
id: string;
|
|
7461
7594
|
integration_id?: string | null | undefined;
|
|
7462
7595
|
parameters?: CreateAgentParameters$Outbound | undefined;
|
|
7596
|
+
retry?: CreateAgentRetry$Outbound | undefined;
|
|
7463
7597
|
fallback_models?:
|
|
7464
7598
|
| Array<CreateAgentFallbackModelConfiguration2$Outbound | string>
|
|
7465
7599
|
| null
|
|
@@ -7475,6 +7609,7 @@ export const CreateAgentModel$outboundSchema: z.ZodType<
|
|
|
7475
7609
|
id: z.string(),
|
|
7476
7610
|
integrationId: z.nullable(z.string()).optional(),
|
|
7477
7611
|
parameters: z.lazy(() => CreateAgentParameters$outboundSchema).optional(),
|
|
7612
|
+
retry: z.lazy(() => CreateAgentRetry$outboundSchema).optional(),
|
|
7478
7613
|
fallbackModels: z.nullable(
|
|
7479
7614
|
z.array(z.union([
|
|
7480
7615
|
z.lazy(() => CreateAgentFallbackModelConfiguration2$outboundSchema),
|
|
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
516
516
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
517
517
|
.optional(),
|
|
518
518
|
updated: z.string().datetime({ offset: true }).default(
|
|
519
|
-
"2025-11-
|
|
519
|
+
"2025-11-15T09:08:59.189Z",
|
|
520
520
|
).transform(v => new Date(v)),
|
|
521
521
|
}).transform((v) => {
|
|
522
522
|
return remap$(v, {
|
|
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
553
553
|
isActive: z.boolean(),
|
|
554
554
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
555
555
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
556
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
556
|
+
updated: z.date().default(() => new Date("2025-11-15T09:08:59.189Z"))
|
|
557
557
|
.transform(v => v.toISOString()),
|
|
558
558
|
}).transform((v) => {
|
|
559
559
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-
|
|
170
|
+
"2025-11-15T09:08:58.855Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-15T09:08:58.855Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-
|
|
190
|
+
"2025-11-15T09:08:58.855Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-15T09:08:58.855Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-15T09:09:09.938Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-15T09:09:09.938Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-15T09:09:09.937Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-15T09:09:09.937Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-15T09:09:09.936Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-15T09:09:09.936Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-15T09:08:58.855Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-15T09:08:58.855Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01KA3CD2J8TZKJXCHXYQQPWQ4H"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01KA3CD2J8TZKJXCHXYQQPWQ4H"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5416,8 +5416,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5416
5416
|
> = z.object({
|
|
5417
5417
|
_id: z.string(),
|
|
5418
5418
|
description: z.string(),
|
|
5419
|
-
created: z.string().default("2025-11-
|
|
5420
|
-
updated: z.string().default("2025-11-
|
|
5419
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5421
5421
|
guardrail_config: z.union([
|
|
5422
5422
|
z.lazy(() =>
|
|
5423
5423
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5530,8 +5530,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5530
5530
|
> = z.object({
|
|
5531
5531
|
id: z.string(),
|
|
5532
5532
|
description: z.string(),
|
|
5533
|
-
created: z.string().default("2025-11-
|
|
5534
|
-
updated: z.string().default("2025-11-
|
|
5533
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5535
5535
|
guardrailConfig: z.union([
|
|
5536
5536
|
z.lazy(() =>
|
|
5537
5537
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5848,8 +5848,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5848
5848
|
> = z.object({
|
|
5849
5849
|
_id: z.string(),
|
|
5850
5850
|
description: z.string(),
|
|
5851
|
-
created: z.string().default("2025-11-
|
|
5852
|
-
updated: z.string().default("2025-11-
|
|
5851
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5853
5853
|
guardrail_config: z.union([
|
|
5854
5854
|
z.lazy(() =>
|
|
5855
5855
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5890,8 +5890,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5890
5890
|
> = z.object({
|
|
5891
5891
|
id: z.string(),
|
|
5892
5892
|
description: z.string(),
|
|
5893
|
-
created: z.string().default("2025-11-
|
|
5894
|
-
updated: z.string().default("2025-11-
|
|
5893
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5895
5895
|
guardrailConfig: z.union([
|
|
5896
5896
|
z.lazy(() =>
|
|
5897
5897
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6171,8 +6171,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6171
6171
|
> = z.object({
|
|
6172
6172
|
_id: z.string(),
|
|
6173
6173
|
description: z.string(),
|
|
6174
|
-
created: z.string().default("2025-11-
|
|
6175
|
-
updated: z.string().default("2025-11-
|
|
6174
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6176
6176
|
guardrail_config: z.union([
|
|
6177
6177
|
z.lazy(() =>
|
|
6178
6178
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6219,8 +6219,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6219
6219
|
> = z.object({
|
|
6220
6220
|
id: z.string(),
|
|
6221
6221
|
description: z.string(),
|
|
6222
|
-
created: z.string().default("2025-11-
|
|
6223
|
-
updated: z.string().default("2025-11-
|
|
6222
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6224
6224
|
guardrailConfig: z.union([
|
|
6225
6225
|
z.lazy(() =>
|
|
6226
6226
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6476,8 +6476,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6476
6476
|
> = z.object({
|
|
6477
6477
|
_id: z.string(),
|
|
6478
6478
|
description: z.string(),
|
|
6479
|
-
created: z.string().default("2025-11-
|
|
6480
|
-
updated: z.string().default("2025-11-
|
|
6479
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6481
6481
|
guardrail_config: z.union([
|
|
6482
6482
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6483
6483
|
z.lazy(() =>
|
|
@@ -6516,8 +6516,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6755,8 +6755,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6755
6755
|
> = z.object({
|
|
6756
6756
|
_id: z.string(),
|
|
6757
6757
|
description: z.string(),
|
|
6758
|
-
created: z.string().default("2025-11-
|
|
6759
|
-
updated: z.string().default("2025-11-
|
|
6758
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6760
6760
|
guardrail_config: z.union([
|
|
6761
6761
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6762
6762
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6795,8 +6795,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6795
6795
|
> = z.object({
|
|
6796
6796
|
id: z.string(),
|
|
6797
6797
|
description: z.string(),
|
|
6798
|
-
created: z.string().default("2025-11-
|
|
6799
|
-
updated: z.string().default("2025-11-
|
|
6798
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6800
6800
|
guardrailConfig: z.union([
|
|
6801
6801
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6802
6802
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2570,7 +2570,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2570
2570
|
z.ZodTypeDef,
|
|
2571
2571
|
unknown
|
|
2572
2572
|
> = z.object({
|
|
2573
|
-
_id: z.string().default("
|
|
2573
|
+
_id: z.string().default("tool_01KA3CD2D4EHTTZ41FFPHKW53Z"),
|
|
2574
2574
|
path: z.string(),
|
|
2575
2575
|
key: z.string(),
|
|
2576
2576
|
display_name: z.string().optional(),
|
|
@@ -2624,7 +2624,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2624
2624
|
z.ZodTypeDef,
|
|
2625
2625
|
ResponseBody5
|
|
2626
2626
|
> = z.object({
|
|
2627
|
-
id: z.string().default("
|
|
2627
|
+
id: z.string().default("tool_01KA3CD2D4EHTTZ41FFPHKW53Z"),
|
|
2628
2628
|
path: z.string(),
|
|
2629
2629
|
key: z.string(),
|
|
2630
2630
|
displayName: z.string().optional(),
|
|
@@ -2905,7 +2905,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2905
2905
|
z.ZodTypeDef,
|
|
2906
2906
|
unknown
|
|
2907
2907
|
> = z.object({
|
|
2908
|
-
_id: z.string().default("
|
|
2908
|
+
_id: z.string().default("tool_01KA3CD2D13RYNNXTW8M46D2AE"),
|
|
2909
2909
|
path: z.string(),
|
|
2910
2910
|
key: z.string(),
|
|
2911
2911
|
display_name: z.string().optional(),
|
|
@@ -2958,7 +2958,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2958
2958
|
z.ZodTypeDef,
|
|
2959
2959
|
ResponseBody4
|
|
2960
2960
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2961
|
+
id: z.string().default("tool_01KA3CD2D13RYNNXTW8M46D2AE"),
|
|
2962
2962
|
path: z.string(),
|
|
2963
2963
|
key: z.string(),
|
|
2964
2964
|
displayName: z.string().optional(),
|
|
@@ -3314,7 +3314,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3314
3314
|
z.ZodTypeDef,
|
|
3315
3315
|
unknown
|
|
3316
3316
|
> = z.object({
|
|
3317
|
-
_id: z.string().default("
|
|
3317
|
+
_id: z.string().default("tool_01KA3CD2CYGVP6M69CTQ2RY5GS"),
|
|
3318
3318
|
path: z.string(),
|
|
3319
3319
|
key: z.string(),
|
|
3320
3320
|
display_name: z.string().optional(),
|
|
@@ -3365,7 +3365,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3365
3365
|
z.ZodTypeDef,
|
|
3366
3366
|
ResponseBody3
|
|
3367
3367
|
> = z.object({
|
|
3368
|
-
id: z.string().default("
|
|
3368
|
+
id: z.string().default("tool_01KA3CD2CYGVP6M69CTQ2RY5GS"),
|
|
3369
3369
|
path: z.string(),
|
|
3370
3370
|
key: z.string(),
|
|
3371
3371
|
displayName: z.string().optional(),
|
|
@@ -3535,7 +3535,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3535
3535
|
z.ZodTypeDef,
|
|
3536
3536
|
unknown
|
|
3537
3537
|
> = z.object({
|
|
3538
|
-
_id: z.string().default("
|
|
3538
|
+
_id: z.string().default("tool_01KA3CD2CVZCA9F8EGSHSG18BD"),
|
|
3539
3539
|
path: z.string(),
|
|
3540
3540
|
key: z.string(),
|
|
3541
3541
|
display_name: z.string().optional(),
|
|
@@ -3587,7 +3587,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3587
3587
|
z.ZodTypeDef,
|
|
3588
3588
|
ResponseBody2
|
|
3589
3589
|
> = z.object({
|
|
3590
|
-
id: z.string().default("
|
|
3590
|
+
id: z.string().default("tool_01KA3CD2CVZCA9F8EGSHSG18BD"),
|
|
3591
3591
|
path: z.string(),
|
|
3592
3592
|
key: z.string(),
|
|
3593
3593
|
displayName: z.string().optional(),
|
|
@@ -3773,7 +3773,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3773
3773
|
z.ZodTypeDef,
|
|
3774
3774
|
unknown
|
|
3775
3775
|
> = z.object({
|
|
3776
|
-
_id: z.string().default("
|
|
3776
|
+
_id: z.string().default("tool_01KA3CD2CS3SJ7VPBXHNBGAK4J"),
|
|
3777
3777
|
path: z.string(),
|
|
3778
3778
|
key: z.string(),
|
|
3779
3779
|
display_name: z.string().optional(),
|
|
@@ -3824,7 +3824,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3824
3824
|
z.ZodTypeDef,
|
|
3825
3825
|
ResponseBody1
|
|
3826
3826
|
> = z.object({
|
|
3827
|
-
id: z.string().default("
|
|
3827
|
+
id: z.string().default("tool_01KA3CD2CS3SJ7VPBXHNBGAK4J"),
|
|
3828
3828
|
path: z.string(),
|
|
3829
3829
|
key: z.string(),
|
|
3830
3830
|
displayName: z.string().optional(),
|