@orq-ai/node 3.3.6 → 3.3.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 +55 -55
- package/bin/mcp-server.js.map +22 -22
- 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/operations/bulkcreatedatapoints.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.d.ts +4 -4
- package/models/operations/createdatasource.d.ts.map +1 -1
- package/models/operations/createdatasource.js +6 -6
- package/models/operations/createdatasource.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.d.ts +4 -4
- package/models/operations/listdatasources.d.ts.map +1 -1
- package/models/operations/listdatasources.js +6 -6
- package/models/operations/listdatasources.js.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.d.ts +4 -4
- package/models/operations/retrievedatasource.d.ts.map +1 -1
- package/models/operations/retrievedatasource.js +6 -6
- package/models/operations/retrievedatasource.js.map +1 -1
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.d.ts +4 -4
- package/models/operations/updatedatasource.d.ts.map +1 -1
- package/models/operations/updatedatasource.js +6 -6
- package/models/operations/updatedatasource.js.map +1 -1
- package/package.json +1 -1
- 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/operations/bulkcreatedatapoints.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 +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/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +10 -10
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +10 -10
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +10 -10
|
@@ -63,11 +63,11 @@ export type RetrieveDatasourceResponseBody = {
|
|
|
63
63
|
/**
|
|
64
64
|
* The id of the resource
|
|
65
65
|
*/
|
|
66
|
-
createdById?: string | undefined;
|
|
66
|
+
createdById?: string | null | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* The id of the resource
|
|
69
69
|
*/
|
|
70
|
-
updateById?: string | undefined;
|
|
70
|
+
updateById?: string | null | undefined;
|
|
71
71
|
/**
|
|
72
72
|
* The unique identifier of the knowledge base
|
|
73
73
|
*/
|
|
@@ -172,15 +172,15 @@ 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("01JRBK3G4RE6YCS4V3T5KFV6SF"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
179
179
|
file_id: z.nullable(z.string()).optional(),
|
|
180
180
|
created: z.string(),
|
|
181
181
|
updated: z.string(),
|
|
182
|
-
created_by_id: z.string().optional(),
|
|
183
|
-
update_by_id: z.string().optional(),
|
|
182
|
+
created_by_id: z.nullable(z.string()).optional(),
|
|
183
|
+
update_by_id: z.nullable(z.string()).optional(),
|
|
184
184
|
knowledge_id: z.string(),
|
|
185
185
|
chunks_count: z.number(),
|
|
186
186
|
}).transform((v) => {
|
|
@@ -204,8 +204,8 @@ export type RetrieveDatasourceResponseBody$Outbound = {
|
|
|
204
204
|
file_id?: string | null | undefined;
|
|
205
205
|
created: string;
|
|
206
206
|
updated: string;
|
|
207
|
-
created_by_id?: string | undefined;
|
|
208
|
-
update_by_id?: string | undefined;
|
|
207
|
+
created_by_id?: string | null | undefined;
|
|
208
|
+
update_by_id?: string | null | undefined;
|
|
209
209
|
knowledge_id: string;
|
|
210
210
|
chunks_count: number;
|
|
211
211
|
};
|
|
@@ -216,15 +216,15 @@ 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("01JRBK3G4RE6YCS4V3T5KFV6SF"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
223
223
|
fileId: z.nullable(z.string()).optional(),
|
|
224
224
|
created: z.string(),
|
|
225
225
|
updated: z.string(),
|
|
226
|
-
createdById: z.string().optional(),
|
|
227
|
-
updateById: z.string().optional(),
|
|
226
|
+
createdById: z.nullable(z.string()).optional(),
|
|
227
|
+
updateById: z.nullable(z.string()).optional(),
|
|
228
228
|
knowledgeId: z.string(),
|
|
229
229
|
chunksCount: z.number(),
|
|
230
230
|
}).transform((v) => {
|
|
@@ -1638,7 +1638,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1638
1638
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1639
1639
|
.optional(),
|
|
1640
1640
|
updated: z.string().datetime({ offset: true }).default(
|
|
1641
|
-
"2025-04-
|
|
1641
|
+
"2025-04-08T20:57:32.878Z",
|
|
1642
1642
|
).transform(v => new Date(v)),
|
|
1643
1643
|
}).transform((v) => {
|
|
1644
1644
|
return remap$(v, {
|
|
@@ -1682,7 +1682,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
1682
1682
|
createdById: z.string().optional(),
|
|
1683
1683
|
updatedById: z.string().optional(),
|
|
1684
1684
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1685
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
1685
|
+
updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
|
|
1686
1686
|
.transform(v => v.toISOString()),
|
|
1687
1687
|
}).transform((v) => {
|
|
1688
1688
|
return remap$(v, {
|
|
@@ -302,7 +302,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
302
302
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
303
303
|
.optional(),
|
|
304
304
|
updated: z.string().datetime({ offset: true }).default(
|
|
305
|
-
"2025-04-
|
|
305
|
+
"2025-04-08T20:57:32.878Z",
|
|
306
306
|
).transform(v => new Date(v)),
|
|
307
307
|
}).transform((v) => {
|
|
308
308
|
return remap$(v, {
|
|
@@ -347,7 +347,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
347
347
|
parentId: z.string().optional(),
|
|
348
348
|
version: z.string().optional(),
|
|
349
349
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
350
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
|
|
351
351
|
.transform(v => v.toISOString()),
|
|
352
352
|
}).transform((v) => {
|
|
353
353
|
return remap$(v, {
|
|
@@ -66,11 +66,11 @@ export type UpdateDatasourceResponseBody = {
|
|
|
66
66
|
/**
|
|
67
67
|
* The id of the resource
|
|
68
68
|
*/
|
|
69
|
-
createdById?: string | undefined;
|
|
69
|
+
createdById?: string | null | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* The id of the resource
|
|
72
72
|
*/
|
|
73
|
-
updateById?: string | undefined;
|
|
73
|
+
updateById?: string | null | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* The unique identifier of the knowledge base
|
|
76
76
|
*/
|
|
@@ -244,15 +244,15 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01JRBK3G4SN7QQAZA52K8XKP56"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
251
251
|
file_id: z.nullable(z.string()).optional(),
|
|
252
252
|
created: z.string(),
|
|
253
253
|
updated: z.string(),
|
|
254
|
-
created_by_id: z.string().optional(),
|
|
255
|
-
update_by_id: z.string().optional(),
|
|
254
|
+
created_by_id: z.nullable(z.string()).optional(),
|
|
255
|
+
update_by_id: z.nullable(z.string()).optional(),
|
|
256
256
|
knowledge_id: z.string(),
|
|
257
257
|
chunks_count: z.number(),
|
|
258
258
|
}).transform((v) => {
|
|
@@ -276,8 +276,8 @@ export type UpdateDatasourceResponseBody$Outbound = {
|
|
|
276
276
|
file_id?: string | null | undefined;
|
|
277
277
|
created: string;
|
|
278
278
|
updated: string;
|
|
279
|
-
created_by_id?: string | undefined;
|
|
280
|
-
update_by_id?: string | undefined;
|
|
279
|
+
created_by_id?: string | null | undefined;
|
|
280
|
+
update_by_id?: string | null | undefined;
|
|
281
281
|
knowledge_id: string;
|
|
282
282
|
chunks_count: number;
|
|
283
283
|
};
|
|
@@ -288,15 +288,15 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01JRBK3G4SN7QQAZA52K8XKP56"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
295
295
|
fileId: z.nullable(z.string()).optional(),
|
|
296
296
|
created: z.string(),
|
|
297
297
|
updated: z.string(),
|
|
298
|
-
createdById: z.string().optional(),
|
|
299
|
-
updateById: z.string().optional(),
|
|
298
|
+
createdById: z.nullable(z.string()).optional(),
|
|
299
|
+
updateById: z.nullable(z.string()).optional(),
|
|
300
300
|
knowledgeId: z.string(),
|
|
301
301
|
chunksCount: z.number(),
|
|
302
302
|
}).transform((v) => {
|