@orq-ai/node 4.1.5 → 4.1.7
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 +219 -219
- 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 +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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 +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- 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/retrieveconversation.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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.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 +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/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +164 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.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 +12 -12
- 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/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagents.ts +84 -1
- 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/retrieveagentrequest.ts +89 -1
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveconversation.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 +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +85 -3
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +89 -3
- package/packages/orq-rc/src/models/operations/updateagent.ts +169 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.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 +14 -14
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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 +12 -12
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- 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/retrieveconversation.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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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 +14 -14
|
@@ -748,7 +748,21 @@ export type FallbackModelConfigurationParameters = {
|
|
|
748
748
|
};
|
|
749
749
|
|
|
750
750
|
/**
|
|
751
|
-
*
|
|
751
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
752
|
+
*/
|
|
753
|
+
export type FallbackModelConfigurationRetry = {
|
|
754
|
+
/**
|
|
755
|
+
* Number of retry attempts (1-5)
|
|
756
|
+
*/
|
|
757
|
+
count?: number | undefined;
|
|
758
|
+
/**
|
|
759
|
+
* HTTP status codes that trigger retry logic
|
|
760
|
+
*/
|
|
761
|
+
onCodes?: Array<number> | undefined;
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Fallback model configuration with optional parameters and retry settings.
|
|
752
766
|
*/
|
|
753
767
|
export type FallbackModelConfiguration2 = {
|
|
754
768
|
/**
|
|
@@ -759,6 +773,10 @@ export type FallbackModelConfiguration2 = {
|
|
|
759
773
|
* Optional model parameters specific to this fallback model. Overrides primary model parameters if this fallback is used.
|
|
760
774
|
*/
|
|
761
775
|
parameters?: FallbackModelConfigurationParameters | undefined;
|
|
776
|
+
/**
|
|
777
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
778
|
+
*/
|
|
779
|
+
retry?: FallbackModelConfigurationRetry | undefined;
|
|
762
780
|
};
|
|
763
781
|
|
|
764
782
|
/**
|
|
@@ -2276,7 +2294,21 @@ export type CreateAgentRequestFallbackModelConfigurationParameters = {
|
|
|
2276
2294
|
};
|
|
2277
2295
|
|
|
2278
2296
|
/**
|
|
2279
|
-
*
|
|
2297
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
2298
|
+
*/
|
|
2299
|
+
export type CreateAgentRequestFallbackModelConfigurationRetry = {
|
|
2300
|
+
/**
|
|
2301
|
+
* Number of retry attempts (1-5)
|
|
2302
|
+
*/
|
|
2303
|
+
count?: number | undefined;
|
|
2304
|
+
/**
|
|
2305
|
+
* HTTP status codes that trigger retry logic
|
|
2306
|
+
*/
|
|
2307
|
+
onCodes?: Array<number> | undefined;
|
|
2308
|
+
};
|
|
2309
|
+
|
|
2310
|
+
/**
|
|
2311
|
+
* Fallback model configuration with optional parameters and retry settings.
|
|
2280
2312
|
*/
|
|
2281
2313
|
export type CreateAgentRequestFallbackModelConfiguration2 = {
|
|
2282
2314
|
/**
|
|
@@ -2289,6 +2321,10 @@ export type CreateAgentRequestFallbackModelConfiguration2 = {
|
|
|
2289
2321
|
parameters?:
|
|
2290
2322
|
| CreateAgentRequestFallbackModelConfigurationParameters
|
|
2291
2323
|
| undefined;
|
|
2324
|
+
/**
|
|
2325
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
2326
|
+
*/
|
|
2327
|
+
retry?: CreateAgentRequestFallbackModelConfigurationRetry | undefined;
|
|
2292
2328
|
};
|
|
2293
2329
|
|
|
2294
2330
|
/**
|
|
@@ -4171,6 +4207,58 @@ export function fallbackModelConfigurationParametersFromJSON(
|
|
|
4171
4207
|
);
|
|
4172
4208
|
}
|
|
4173
4209
|
|
|
4210
|
+
/** @internal */
|
|
4211
|
+
export const FallbackModelConfigurationRetry$inboundSchema: z.ZodType<
|
|
4212
|
+
FallbackModelConfigurationRetry,
|
|
4213
|
+
z.ZodTypeDef,
|
|
4214
|
+
unknown
|
|
4215
|
+
> = z.object({
|
|
4216
|
+
count: z.number().default(3),
|
|
4217
|
+
on_codes: z.array(z.number()).optional(),
|
|
4218
|
+
}).transform((v) => {
|
|
4219
|
+
return remap$(v, {
|
|
4220
|
+
"on_codes": "onCodes",
|
|
4221
|
+
});
|
|
4222
|
+
});
|
|
4223
|
+
/** @internal */
|
|
4224
|
+
export type FallbackModelConfigurationRetry$Outbound = {
|
|
4225
|
+
count: number;
|
|
4226
|
+
on_codes?: Array<number> | undefined;
|
|
4227
|
+
};
|
|
4228
|
+
|
|
4229
|
+
/** @internal */
|
|
4230
|
+
export const FallbackModelConfigurationRetry$outboundSchema: z.ZodType<
|
|
4231
|
+
FallbackModelConfigurationRetry$Outbound,
|
|
4232
|
+
z.ZodTypeDef,
|
|
4233
|
+
FallbackModelConfigurationRetry
|
|
4234
|
+
> = z.object({
|
|
4235
|
+
count: z.number().default(3),
|
|
4236
|
+
onCodes: z.array(z.number()).optional(),
|
|
4237
|
+
}).transform((v) => {
|
|
4238
|
+
return remap$(v, {
|
|
4239
|
+
onCodes: "on_codes",
|
|
4240
|
+
});
|
|
4241
|
+
});
|
|
4242
|
+
|
|
4243
|
+
export function fallbackModelConfigurationRetryToJSON(
|
|
4244
|
+
fallbackModelConfigurationRetry: FallbackModelConfigurationRetry,
|
|
4245
|
+
): string {
|
|
4246
|
+
return JSON.stringify(
|
|
4247
|
+
FallbackModelConfigurationRetry$outboundSchema.parse(
|
|
4248
|
+
fallbackModelConfigurationRetry,
|
|
4249
|
+
),
|
|
4250
|
+
);
|
|
4251
|
+
}
|
|
4252
|
+
export function fallbackModelConfigurationRetryFromJSON(
|
|
4253
|
+
jsonString: string,
|
|
4254
|
+
): SafeParseResult<FallbackModelConfigurationRetry, SDKValidationError> {
|
|
4255
|
+
return safeParse(
|
|
4256
|
+
jsonString,
|
|
4257
|
+
(x) => FallbackModelConfigurationRetry$inboundSchema.parse(JSON.parse(x)),
|
|
4258
|
+
`Failed to parse 'FallbackModelConfigurationRetry' from JSON`,
|
|
4259
|
+
);
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4174
4262
|
/** @internal */
|
|
4175
4263
|
export const FallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
4176
4264
|
FallbackModelConfiguration2,
|
|
@@ -4180,11 +4268,13 @@ export const FallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
|
4180
4268
|
id: z.string(),
|
|
4181
4269
|
parameters: z.lazy(() => FallbackModelConfigurationParameters$inboundSchema)
|
|
4182
4270
|
.optional(),
|
|
4271
|
+
retry: z.lazy(() => FallbackModelConfigurationRetry$inboundSchema).optional(),
|
|
4183
4272
|
});
|
|
4184
4273
|
/** @internal */
|
|
4185
4274
|
export type FallbackModelConfiguration2$Outbound = {
|
|
4186
4275
|
id: string;
|
|
4187
4276
|
parameters?: FallbackModelConfigurationParameters$Outbound | undefined;
|
|
4277
|
+
retry?: FallbackModelConfigurationRetry$Outbound | undefined;
|
|
4188
4278
|
};
|
|
4189
4279
|
|
|
4190
4280
|
/** @internal */
|
|
@@ -4196,6 +4286,8 @@ export const FallbackModelConfiguration2$outboundSchema: z.ZodType<
|
|
|
4196
4286
|
id: z.string(),
|
|
4197
4287
|
parameters: z.lazy(() => FallbackModelConfigurationParameters$outboundSchema)
|
|
4198
4288
|
.optional(),
|
|
4289
|
+
retry: z.lazy(() => FallbackModelConfigurationRetry$outboundSchema)
|
|
4290
|
+
.optional(),
|
|
4199
4291
|
});
|
|
4200
4292
|
|
|
4201
4293
|
export function fallbackModelConfiguration2ToJSON(
|
|
@@ -8152,6 +8244,67 @@ export function createAgentRequestFallbackModelConfigurationParametersFromJSON(
|
|
|
8152
8244
|
);
|
|
8153
8245
|
}
|
|
8154
8246
|
|
|
8247
|
+
/** @internal */
|
|
8248
|
+
export const CreateAgentRequestFallbackModelConfigurationRetry$inboundSchema:
|
|
8249
|
+
z.ZodType<
|
|
8250
|
+
CreateAgentRequestFallbackModelConfigurationRetry,
|
|
8251
|
+
z.ZodTypeDef,
|
|
8252
|
+
unknown
|
|
8253
|
+
> = z.object({
|
|
8254
|
+
count: z.number().default(3),
|
|
8255
|
+
on_codes: z.array(z.number()).optional(),
|
|
8256
|
+
}).transform((v) => {
|
|
8257
|
+
return remap$(v, {
|
|
8258
|
+
"on_codes": "onCodes",
|
|
8259
|
+
});
|
|
8260
|
+
});
|
|
8261
|
+
/** @internal */
|
|
8262
|
+
export type CreateAgentRequestFallbackModelConfigurationRetry$Outbound = {
|
|
8263
|
+
count: number;
|
|
8264
|
+
on_codes?: Array<number> | undefined;
|
|
8265
|
+
};
|
|
8266
|
+
|
|
8267
|
+
/** @internal */
|
|
8268
|
+
export const CreateAgentRequestFallbackModelConfigurationRetry$outboundSchema:
|
|
8269
|
+
z.ZodType<
|
|
8270
|
+
CreateAgentRequestFallbackModelConfigurationRetry$Outbound,
|
|
8271
|
+
z.ZodTypeDef,
|
|
8272
|
+
CreateAgentRequestFallbackModelConfigurationRetry
|
|
8273
|
+
> = z.object({
|
|
8274
|
+
count: z.number().default(3),
|
|
8275
|
+
onCodes: z.array(z.number()).optional(),
|
|
8276
|
+
}).transform((v) => {
|
|
8277
|
+
return remap$(v, {
|
|
8278
|
+
onCodes: "on_codes",
|
|
8279
|
+
});
|
|
8280
|
+
});
|
|
8281
|
+
|
|
8282
|
+
export function createAgentRequestFallbackModelConfigurationRetryToJSON(
|
|
8283
|
+
createAgentRequestFallbackModelConfigurationRetry:
|
|
8284
|
+
CreateAgentRequestFallbackModelConfigurationRetry,
|
|
8285
|
+
): string {
|
|
8286
|
+
return JSON.stringify(
|
|
8287
|
+
CreateAgentRequestFallbackModelConfigurationRetry$outboundSchema.parse(
|
|
8288
|
+
createAgentRequestFallbackModelConfigurationRetry,
|
|
8289
|
+
),
|
|
8290
|
+
);
|
|
8291
|
+
}
|
|
8292
|
+
export function createAgentRequestFallbackModelConfigurationRetryFromJSON(
|
|
8293
|
+
jsonString: string,
|
|
8294
|
+
): SafeParseResult<
|
|
8295
|
+
CreateAgentRequestFallbackModelConfigurationRetry,
|
|
8296
|
+
SDKValidationError
|
|
8297
|
+
> {
|
|
8298
|
+
return safeParse(
|
|
8299
|
+
jsonString,
|
|
8300
|
+
(x) =>
|
|
8301
|
+
CreateAgentRequestFallbackModelConfigurationRetry$inboundSchema.parse(
|
|
8302
|
+
JSON.parse(x),
|
|
8303
|
+
),
|
|
8304
|
+
`Failed to parse 'CreateAgentRequestFallbackModelConfigurationRetry' from JSON`,
|
|
8305
|
+
);
|
|
8306
|
+
}
|
|
8307
|
+
|
|
8155
8308
|
/** @internal */
|
|
8156
8309
|
export const CreateAgentRequestFallbackModelConfiguration2$inboundSchema:
|
|
8157
8310
|
z.ZodType<
|
|
@@ -8163,6 +8316,9 @@ export const CreateAgentRequestFallbackModelConfiguration2$inboundSchema:
|
|
|
8163
8316
|
parameters: z.lazy(() =>
|
|
8164
8317
|
CreateAgentRequestFallbackModelConfigurationParameters$inboundSchema
|
|
8165
8318
|
).optional(),
|
|
8319
|
+
retry: z.lazy(() =>
|
|
8320
|
+
CreateAgentRequestFallbackModelConfigurationRetry$inboundSchema
|
|
8321
|
+
).optional(),
|
|
8166
8322
|
});
|
|
8167
8323
|
/** @internal */
|
|
8168
8324
|
export type CreateAgentRequestFallbackModelConfiguration2$Outbound = {
|
|
@@ -8170,6 +8326,9 @@ export type CreateAgentRequestFallbackModelConfiguration2$Outbound = {
|
|
|
8170
8326
|
parameters?:
|
|
8171
8327
|
| CreateAgentRequestFallbackModelConfigurationParameters$Outbound
|
|
8172
8328
|
| undefined;
|
|
8329
|
+
retry?:
|
|
8330
|
+
| CreateAgentRequestFallbackModelConfigurationRetry$Outbound
|
|
8331
|
+
| undefined;
|
|
8173
8332
|
};
|
|
8174
8333
|
|
|
8175
8334
|
/** @internal */
|
|
@@ -8183,6 +8342,9 @@ export const CreateAgentRequestFallbackModelConfiguration2$outboundSchema:
|
|
|
8183
8342
|
parameters: z.lazy(() =>
|
|
8184
8343
|
CreateAgentRequestFallbackModelConfigurationParameters$outboundSchema
|
|
8185
8344
|
).optional(),
|
|
8345
|
+
retry: z.lazy(() =>
|
|
8346
|
+
CreateAgentRequestFallbackModelConfigurationRetry$outboundSchema
|
|
8347
|
+
).optional(),
|
|
8186
8348
|
});
|
|
8187
8349
|
|
|
8188
8350
|
export function createAgentRequestFallbackModelConfiguration2ToJSON(
|
|
@@ -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
|
-
"2026-01-
|
|
170
|
+
"2026-01-07T04:59:57.150Z",
|
|
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("2026-01-
|
|
210
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const CreateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("conv_01kebd76qdfdddzex75339szmn"),
|
|
248
248
|
entityId: z.string(),
|
|
249
249
|
kind: CreateConversationKind$inboundSchema,
|
|
250
250
|
displayName: z.string(),
|
|
@@ -278,7 +278,7 @@ export const CreateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
CreateConversationResponseBody
|
|
280
280
|
> = z.object({
|
|
281
|
-
id: z.string().default("
|
|
281
|
+
id: z.string().default("conv_01kebd76qdfdddzex75339szmn"),
|
|
282
282
|
entityId: z.string(),
|
|
283
283
|
kind: CreateConversationKind$outboundSchema,
|
|
284
284
|
displayName: z.string(),
|
|
@@ -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
|
-
"2026-01-
|
|
190
|
+
"2026-01-07T04:59:57.150Z",
|
|
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("2026-01-
|
|
229
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -3612,7 +3612,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
3612
3612
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
3613
3613
|
reviewed_by_id: z.string(),
|
|
3614
3614
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3615
|
-
"2026-01-
|
|
3615
|
+
"2026-01-07T05:00:09.360Z",
|
|
3616
3616
|
).transform(v => new Date(v)),
|
|
3617
3617
|
type: z.literal("string_array"),
|
|
3618
3618
|
values: z.array(z.string()),
|
|
@@ -3647,7 +3647,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
3647
3647
|
humanReviewId: z.string(),
|
|
3648
3648
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
3649
3649
|
reviewedById: z.string(),
|
|
3650
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3650
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.360Z"))
|
|
3651
3651
|
.transform(v => v.toISOString()),
|
|
3652
3652
|
type: z.literal("string_array"),
|
|
3653
3653
|
values: z.array(z.string()),
|
|
@@ -3703,7 +3703,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
3703
3703
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
3704
3704
|
reviewed_by_id: z.string(),
|
|
3705
3705
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3706
|
-
"2026-01-
|
|
3706
|
+
"2026-01-07T05:00:09.360Z",
|
|
3707
3707
|
).transform(v => new Date(v)),
|
|
3708
3708
|
type: z.literal("number"),
|
|
3709
3709
|
value: z.number(),
|
|
@@ -3738,7 +3738,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
3738
3738
|
humanReviewId: z.string(),
|
|
3739
3739
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
3740
3740
|
reviewedById: z.string(),
|
|
3741
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3741
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.360Z"))
|
|
3742
3742
|
.transform(v => v.toISOString()),
|
|
3743
3743
|
type: z.literal("number"),
|
|
3744
3744
|
value: z.number(),
|
|
@@ -3792,7 +3792,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
3792
3792
|
source: Source$inboundSchema.default("orq"),
|
|
3793
3793
|
reviewed_by_id: z.string(),
|
|
3794
3794
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3795
|
-
"2026-01-
|
|
3795
|
+
"2026-01-07T05:00:09.359Z",
|
|
3796
3796
|
).transform(v => new Date(v)),
|
|
3797
3797
|
type: z.literal("string"),
|
|
3798
3798
|
value: z.string(),
|
|
@@ -3827,7 +3827,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
3827
3827
|
humanReviewId: z.string(),
|
|
3828
3828
|
source: Source$outboundSchema.default("orq"),
|
|
3829
3829
|
reviewedById: z.string(),
|
|
3830
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3830
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.359Z"))
|
|
3831
3831
|
.transform(v => v.toISOString()),
|
|
3832
3832
|
type: z.literal("string"),
|
|
3833
3833
|
value: z.string(),
|
|
@@ -3932,7 +3932,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3932
3932
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3933
3933
|
.optional(),
|
|
3934
3934
|
updated: z.string().datetime({ offset: true }).default(
|
|
3935
|
-
"2026-01-
|
|
3935
|
+
"2026-01-07T04:59:57.150Z",
|
|
3936
3936
|
).transform(v => new Date(v)),
|
|
3937
3937
|
}).transform((v) => {
|
|
3938
3938
|
return remap$(v, {
|
|
@@ -4010,7 +4010,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
4010
4010
|
createdById: z.string().optional(),
|
|
4011
4011
|
updatedById: z.string().optional(),
|
|
4012
4012
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4013
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4013
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
4014
4014
|
.transform(v => v.toISOString()),
|
|
4015
4015
|
}).transform((v) => {
|
|
4016
4016
|
return remap$(v, {
|
|
@@ -576,7 +576,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
576
576
|
z.ZodTypeDef,
|
|
577
577
|
unknown
|
|
578
578
|
> = z.object({
|
|
579
|
-
_id: z.string().default("
|
|
579
|
+
_id: z.string().default("01KEBD775489TZ74CNH2P7ETYR"),
|
|
580
580
|
display_name: z.string(),
|
|
581
581
|
description: z.string().optional(),
|
|
582
582
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -619,7 +619,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
619
619
|
z.ZodTypeDef,
|
|
620
620
|
CreateDatasourceResponseBody
|
|
621
621
|
> = z.object({
|
|
622
|
-
id: z.string().default("
|
|
622
|
+
id: z.string().default("01KEBD775489TZ74CNH2P7ETYR"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2124,8 +2124,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2124
2124
|
> = z.object({
|
|
2125
2125
|
_id: z.string(),
|
|
2126
2126
|
description: z.string(),
|
|
2127
|
-
created: z.string().default("2026-01-
|
|
2128
|
-
updated: z.string().default("2026-01-
|
|
2127
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2128
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2129
2129
|
guardrail_config: z.union([
|
|
2130
2130
|
z.lazy(() =>
|
|
2131
2131
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2166,8 +2166,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
> = z.object({
|
|
2167
2167
|
id: z.string(),
|
|
2168
2168
|
description: z.string(),
|
|
2169
|
-
created: z.string().default("2026-01-
|
|
2170
|
-
updated: z.string().default("2026-01-
|
|
2169
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2170
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2171
2171
|
guardrailConfig: z.union([
|
|
2172
2172
|
z.lazy(() =>
|
|
2173
2173
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2426,8 +2426,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2426
2426
|
.object({
|
|
2427
2427
|
_id: z.string(),
|
|
2428
2428
|
description: z.string(),
|
|
2429
|
-
created: z.string().default("2026-01-
|
|
2430
|
-
updated: z.string().default("2026-01-
|
|
2429
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2430
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2431
2431
|
guardrail_config: z.union([
|
|
2432
2432
|
z.lazy(() =>
|
|
2433
2433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2471,8 +2471,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2471
2471
|
> = z.object({
|
|
2472
2472
|
id: z.string(),
|
|
2473
2473
|
description: z.string(),
|
|
2474
|
-
created: z.string().default("2026-01-
|
|
2475
|
-
updated: z.string().default("2026-01-
|
|
2474
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2475
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
2476
2476
|
guardrailConfig: z.union([
|
|
2477
2477
|
z.lazy(() =>
|
|
2478
2478
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4000,8 +4000,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4000
4000
|
> = z.object({
|
|
4001
4001
|
_id: z.string(),
|
|
4002
4002
|
description: z.string(),
|
|
4003
|
-
created: z.string().default("2026-01-
|
|
4004
|
-
updated: z.string().default("2026-01-
|
|
4003
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4004
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4005
4005
|
guardrail_config: z.union([
|
|
4006
4006
|
z.lazy(() =>
|
|
4007
4007
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4108,8 +4108,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4108
4108
|
> = z.object({
|
|
4109
4109
|
id: z.string(),
|
|
4110
4110
|
description: z.string(),
|
|
4111
|
-
created: z.string().default("2026-01-
|
|
4112
|
-
updated: z.string().default("2026-01-
|
|
4111
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4112
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4113
4113
|
guardrailConfig: z.union([
|
|
4114
4114
|
z.lazy(() =>
|
|
4115
4115
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4404,8 +4404,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4404
4404
|
> = z.object({
|
|
4405
4405
|
_id: z.string(),
|
|
4406
4406
|
description: z.string(),
|
|
4407
|
-
created: z.string().default("2026-01-
|
|
4408
|
-
updated: z.string().default("2026-01-
|
|
4407
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4408
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4409
4409
|
guardrail_config: z.union([
|
|
4410
4410
|
z.lazy(() =>
|
|
4411
4411
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4446,8 +4446,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4446
4446
|
> = z.object({
|
|
4447
4447
|
id: z.string(),
|
|
4448
4448
|
description: z.string(),
|
|
4449
|
-
created: z.string().default("2026-01-
|
|
4450
|
-
updated: z.string().default("2026-01-
|
|
4449
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4450
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4451
4451
|
guardrailConfig: z.union([
|
|
4452
4452
|
z.lazy(() =>
|
|
4453
4453
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4708,8 +4708,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4708
4708
|
> = z.object({
|
|
4709
4709
|
_id: z.string(),
|
|
4710
4710
|
description: z.string(),
|
|
4711
|
-
created: z.string().default("2026-01-
|
|
4712
|
-
updated: z.string().default("2026-01-
|
|
4711
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4712
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4713
4713
|
guardrail_config: z.union([
|
|
4714
4714
|
z.lazy(() =>
|
|
4715
4715
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4756,8 +4756,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4756
4756
|
> = z.object({
|
|
4757
4757
|
id: z.string(),
|
|
4758
4758
|
description: z.string(),
|
|
4759
|
-
created: z.string().default("2026-01-
|
|
4760
|
-
updated: z.string().default("2026-01-
|
|
4759
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4760
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4761
4761
|
guardrailConfig: z.union([
|
|
4762
4762
|
z.lazy(() =>
|
|
4763
4763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4994,8 +4994,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4994
4994
|
> = z.object({
|
|
4995
4995
|
_id: z.string(),
|
|
4996
4996
|
description: z.string(),
|
|
4997
|
-
created: z.string().default("2026-01-
|
|
4998
|
-
updated: z.string().default("2026-01-
|
|
4997
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4998
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
4999
4999
|
guardrail_config: z.union([
|
|
5000
5000
|
z.lazy(() =>
|
|
5001
5001
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5034,8 +5034,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5034
5034
|
> = z.object({
|
|
5035
5035
|
id: z.string(),
|
|
5036
5036
|
description: z.string(),
|
|
5037
|
-
created: z.string().default("2026-01-
|
|
5038
|
-
updated: z.string().default("2026-01-
|
|
5037
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5038
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5039
5039
|
guardrailConfig: z.union([
|
|
5040
5040
|
z.lazy(() =>
|
|
5041
5041
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5268,8 +5268,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5268
5268
|
> = z.object({
|
|
5269
5269
|
_id: z.string(),
|
|
5270
5270
|
description: z.string(),
|
|
5271
|
-
created: z.string().default("2026-01-
|
|
5272
|
-
updated: z.string().default("2026-01-
|
|
5271
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5272
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5273
5273
|
guardrail_config: z.union([
|
|
5274
5274
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5275
5275
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5308,8 +5308,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5308
5308
|
> = z.object({
|
|
5309
5309
|
id: z.string(),
|
|
5310
5310
|
description: z.string(),
|
|
5311
|
-
created: z.string().default("2026-01-
|
|
5312
|
-
updated: z.string().default("2026-01-
|
|
5311
|
+
created: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5312
|
+
updated: z.string().default("2026-01-07T04:59:59.500Z"),
|
|
5313
5313
|
guardrailConfig: z.union([
|
|
5314
5314
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5315
5315
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -2458,7 +2458,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2458
2458
|
z.ZodTypeDef,
|
|
2459
2459
|
unknown
|
|
2460
2460
|
> = z.object({
|
|
2461
|
-
_id: z.string().default("
|
|
2461
|
+
_id: z.string().default("tool_01KEBD770D7EN1WMP6Y03JHNSQ"),
|
|
2462
2462
|
path: z.string(),
|
|
2463
2463
|
key: z.string(),
|
|
2464
2464
|
display_name: z.string().optional(),
|
|
@@ -2512,7 +2512,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2512
2512
|
z.ZodTypeDef,
|
|
2513
2513
|
ResponseBodyCodeExecutionTool
|
|
2514
2514
|
> = z.object({
|
|
2515
|
-
id: z.string().default("
|
|
2515
|
+
id: z.string().default("tool_01KEBD770D7EN1WMP6Y03JHNSQ"),
|
|
2516
2516
|
path: z.string(),
|
|
2517
2517
|
key: z.string(),
|
|
2518
2518
|
displayName: z.string().optional(),
|
|
@@ -2678,7 +2678,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2678
2678
|
z.ZodTypeDef,
|
|
2679
2679
|
unknown
|
|
2680
2680
|
> = z.object({
|
|
2681
|
-
id: z.string().default("
|
|
2681
|
+
id: z.string().default("01KEBD770CSSBRTK4X544NKVE9"),
|
|
2682
2682
|
name: z.string(),
|
|
2683
2683
|
description: z.string().optional(),
|
|
2684
2684
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2697,7 +2697,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2697
2697
|
z.ZodTypeDef,
|
|
2698
2698
|
ResponseBodyTools
|
|
2699
2699
|
> = z.object({
|
|
2700
|
-
id: z.string().default("
|
|
2700
|
+
id: z.string().default("01KEBD770CSSBRTK4X544NKVE9"),
|
|
2701
2701
|
name: z.string(),
|
|
2702
2702
|
description: z.string().optional(),
|
|
2703
2703
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2792,7 +2792,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2792
2792
|
z.ZodTypeDef,
|
|
2793
2793
|
unknown
|
|
2794
2794
|
> = z.object({
|
|
2795
|
-
_id: z.string().default("
|
|
2795
|
+
_id: z.string().default("tool_01KEBD7703J90GCJG11A6PB69M"),
|
|
2796
2796
|
path: z.string(),
|
|
2797
2797
|
key: z.string(),
|
|
2798
2798
|
display_name: z.string().optional(),
|
|
@@ -2845,7 +2845,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
2845
2845
|
z.ZodTypeDef,
|
|
2846
2846
|
ResponseBodyMCPTool
|
|
2847
2847
|
> = z.object({
|
|
2848
|
-
id: z.string().default("
|
|
2848
|
+
id: z.string().default("tool_01KEBD7703J90GCJG11A6PB69M"),
|
|
2849
2849
|
path: z.string(),
|
|
2850
2850
|
key: z.string(),
|
|
2851
2851
|
displayName: z.string().optional(),
|
|
@@ -3196,7 +3196,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3196
3196
|
z.ZodTypeDef,
|
|
3197
3197
|
unknown
|
|
3198
3198
|
> = z.object({
|
|
3199
|
-
_id: z.string().default("
|
|
3199
|
+
_id: z.string().default("tool_01KEBD770083GVSQMW5X7EJPMK"),
|
|
3200
3200
|
path: z.string(),
|
|
3201
3201
|
key: z.string(),
|
|
3202
3202
|
display_name: z.string().optional(),
|
|
@@ -3247,7 +3247,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3247
3247
|
z.ZodTypeDef,
|
|
3248
3248
|
ResponseBodyHTTPTool
|
|
3249
3249
|
> = z.object({
|
|
3250
|
-
id: z.string().default("
|
|
3250
|
+
id: z.string().default("tool_01KEBD770083GVSQMW5X7EJPMK"),
|
|
3251
3251
|
path: z.string(),
|
|
3252
3252
|
key: z.string(),
|
|
3253
3253
|
displayName: z.string().optional(),
|
|
@@ -3412,7 +3412,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3412
3412
|
z.ZodTypeDef,
|
|
3413
3413
|
unknown
|
|
3414
3414
|
> = z.object({
|
|
3415
|
-
_id: z.string().default("
|
|
3415
|
+
_id: z.string().default("tool_01KEBD76ZXE1XRF48CT5Y8RW4A"),
|
|
3416
3416
|
path: z.string(),
|
|
3417
3417
|
key: z.string(),
|
|
3418
3418
|
display_name: z.string().optional(),
|
|
@@ -3464,7 +3464,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3464
3464
|
z.ZodTypeDef,
|
|
3465
3465
|
ResponseBodyJSONSchemaTool
|
|
3466
3466
|
> = z.object({
|
|
3467
|
-
id: z.string().default("
|
|
3467
|
+
id: z.string().default("tool_01KEBD76ZXE1XRF48CT5Y8RW4A"),
|
|
3468
3468
|
path: z.string(),
|
|
3469
3469
|
key: z.string(),
|
|
3470
3470
|
displayName: z.string().optional(),
|
|
@@ -3645,7 +3645,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3645
3645
|
z.ZodTypeDef,
|
|
3646
3646
|
unknown
|
|
3647
3647
|
> = z.object({
|
|
3648
|
-
_id: z.string().default("
|
|
3648
|
+
_id: z.string().default("tool_01KEBD76ZVESZA6RACBQGHBPR4"),
|
|
3649
3649
|
path: z.string(),
|
|
3650
3650
|
key: z.string(),
|
|
3651
3651
|
display_name: z.string().optional(),
|
|
@@ -3696,7 +3696,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
3696
3696
|
z.ZodTypeDef,
|
|
3697
3697
|
ResponseBodyFunctionTool
|
|
3698
3698
|
> = z.object({
|
|
3699
|
-
id: z.string().default("
|
|
3699
|
+
id: z.string().default("tool_01KEBD76ZVESZA6RACBQGHBPR4"),
|
|
3700
3700
|
path: z.string(),
|
|
3701
3701
|
key: z.string(),
|
|
3702
3702
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2026-01-
|
|
122
|
+
"2026-01-07T05:00:00.701Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2026-01-
|
|
155
|
+
created: z.date().default(() => new Date("2026-01-07T05:00:00.701Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|