@orq-ai/node 3.3.5 → 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.
Files changed (71) hide show
  1. package/bin/mcp-server.js +77 -71
  2. package/bin/mcp-server.js.map +28 -28
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/prompts.d.ts.map +1 -1
  8. package/mcp-server/prompts.js +5 -1
  9. package/mcp-server/prompts.js.map +1 -1
  10. package/mcp-server/resources.d.ts.map +1 -1
  11. package/mcp-server/resources.js +10 -2
  12. package/mcp-server/resources.js.map +1 -1
  13. package/mcp-server/server.d.ts.map +1 -1
  14. package/mcp-server/server.js +2 -3
  15. package/mcp-server/server.js.map +1 -1
  16. package/mcp-server/tools.d.ts.map +1 -1
  17. package/mcp-server/tools.js +4 -3
  18. package/mcp-server/tools.js.map +1 -1
  19. package/models/operations/bulkcreatedatapoints.js +2 -2
  20. package/models/operations/createcontact.js +2 -2
  21. package/models/operations/createdataset.js +2 -2
  22. package/models/operations/createdatasetitem.js +2 -2
  23. package/models/operations/createdatasource.d.ts +4 -4
  24. package/models/operations/createdatasource.d.ts.map +1 -1
  25. package/models/operations/createdatasource.js +6 -6
  26. package/models/operations/createdatasource.js.map +1 -1
  27. package/models/operations/fileget.js +2 -2
  28. package/models/operations/filelist.js +2 -2
  29. package/models/operations/fileupload.js +2 -2
  30. package/models/operations/listdatasetdatapoints.js +2 -2
  31. package/models/operations/listdatasets.js +2 -2
  32. package/models/operations/listdatasources.d.ts +4 -4
  33. package/models/operations/listdatasources.d.ts.map +1 -1
  34. package/models/operations/listdatasources.js +6 -6
  35. package/models/operations/listdatasources.js.map +1 -1
  36. package/models/operations/retrievedatapoint.js +2 -2
  37. package/models/operations/retrievedataset.js +2 -2
  38. package/models/operations/retrievedatasource.d.ts +4 -4
  39. package/models/operations/retrievedatasource.d.ts.map +1 -1
  40. package/models/operations/retrievedatasource.js +6 -6
  41. package/models/operations/retrievedatasource.js.map +1 -1
  42. package/models/operations/updatedatapoint.js +2 -2
  43. package/models/operations/updatedataset.js +2 -2
  44. package/models/operations/updatedatasource.d.ts +4 -4
  45. package/models/operations/updatedatasource.d.ts.map +1 -1
  46. package/models/operations/updatedatasource.js +6 -6
  47. package/models/operations/updatedatasource.js.map +1 -1
  48. package/package.json +1 -1
  49. package/src/lib/config.ts +3 -3
  50. package/src/mcp-server/mcp-server.ts +1 -1
  51. package/src/mcp-server/prompts.ts +8 -1
  52. package/src/mcp-server/resources.ts +16 -2
  53. package/src/mcp-server/server.ts +3 -3
  54. package/src/mcp-server/tools.ts +6 -3
  55. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  56. package/src/models/operations/createcontact.ts +2 -2
  57. package/src/models/operations/createdataset.ts +2 -2
  58. package/src/models/operations/createdatasetitem.ts +2 -2
  59. package/src/models/operations/createdatasource.ts +10 -10
  60. package/src/models/operations/fileget.ts +2 -2
  61. package/src/models/operations/filelist.ts +2 -2
  62. package/src/models/operations/fileupload.ts +2 -2
  63. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  64. package/src/models/operations/listdatasets.ts +2 -2
  65. package/src/models/operations/listdatasources.ts +10 -10
  66. package/src/models/operations/retrievedatapoint.ts +2 -2
  67. package/src/models/operations/retrievedataset.ts +2 -2
  68. package/src/models/operations/retrievedatasource.ts +10 -10
  69. package/src/models/operations/updatedatapoint.ts +2 -2
  70. package/src/models/operations/updatedataset.ts +2 -2
  71. package/src/models/operations/updatedatasource.ts +10 -10
@@ -171,11 +171,11 @@ export type CreateDatasourceResponseBody = {
171
171
  /**
172
172
  * The id of the resource
173
173
  */
174
- createdById?: string | undefined;
174
+ createdById?: string | null | undefined;
175
175
  /**
176
176
  * The id of the resource
177
177
  */
178
- updateById?: string | undefined;
178
+ updateById?: string | null | undefined;
179
179
  /**
180
180
  * The unique identifier of the knowledge base
181
181
  */
@@ -751,15 +751,15 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
751
751
  z.ZodTypeDef,
752
752
  unknown
753
753
  > = z.object({
754
- _id: z.string().default("01JR8NAK02N5Q72XD7FA9ZJZ99"),
754
+ _id: z.string().default("01JRBK3G4RXV43W3CQE1WV8YWJ"),
755
755
  display_name: z.string(),
756
756
  description: z.string().optional(),
757
757
  status: CreateDatasourceStatus$inboundSchema,
758
758
  file_id: z.nullable(z.string()).optional(),
759
759
  created: z.string(),
760
760
  updated: z.string(),
761
- created_by_id: z.string().optional(),
762
- update_by_id: z.string().optional(),
761
+ created_by_id: z.nullable(z.string()).optional(),
762
+ update_by_id: z.nullable(z.string()).optional(),
763
763
  knowledge_id: z.string(),
764
764
  chunks_count: z.number(),
765
765
  }).transform((v) => {
@@ -783,8 +783,8 @@ export type CreateDatasourceResponseBody$Outbound = {
783
783
  file_id?: string | null | undefined;
784
784
  created: string;
785
785
  updated: string;
786
- created_by_id?: string | undefined;
787
- update_by_id?: string | undefined;
786
+ created_by_id?: string | null | undefined;
787
+ update_by_id?: string | null | undefined;
788
788
  knowledge_id: string;
789
789
  chunks_count: number;
790
790
  };
@@ -795,15 +795,15 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
795
795
  z.ZodTypeDef,
796
796
  CreateDatasourceResponseBody
797
797
  > = z.object({
798
- id: z.string().default("01JR8NAK02N5Q72XD7FA9ZJZ99"),
798
+ id: z.string().default("01JRBK3G4RXV43W3CQE1WV8YWJ"),
799
799
  displayName: z.string(),
800
800
  description: z.string().optional(),
801
801
  status: CreateDatasourceStatus$outboundSchema,
802
802
  fileId: z.nullable(z.string()).optional(),
803
803
  created: z.string(),
804
804
  updated: z.string(),
805
- createdById: z.string().optional(),
806
- updateById: z.string().optional(),
805
+ createdById: z.nullable(z.string()).optional(),
806
+ updateById: z.nullable(z.string()).optional(),
807
807
  knowledgeId: z.string(),
808
808
  chunksCount: z.number(),
809
809
  }).transform((v) => {
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
146
146
  file_name: z.string(),
147
147
  workspace_id: z.string(),
148
148
  created: z.string().datetime({ offset: true }).default(
149
- "2025-04-07T17:38:40.485Z",
149
+ "2025-04-08T20:57:34.432Z",
150
150
  ).transform(v => new Date(v)),
151
151
  }).transform((v) => {
152
152
  return remap$(v, {
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
180
180
  bytes: z.number(),
181
181
  fileName: z.string(),
182
182
  workspaceId: z.string(),
183
- created: z.date().default(() => new Date("2025-04-07T17:38:40.485Z"))
183
+ created: z.date().default(() => new Date("2025-04-08T20:57:34.432Z"))
184
184
  .transform(v => v.toISOString()),
185
185
  }).transform((v) => {
186
186
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
196
196
  file_name: z.string(),
197
197
  workspace_id: z.string(),
198
198
  created: z.string().datetime({ offset: true }).default(
199
- "2025-04-07T17:38:40.485Z",
199
+ "2025-04-08T20:57:34.432Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
230
230
  bytes: z.number(),
231
231
  fileName: z.string(),
232
232
  workspaceId: z.string(),
233
- created: z.date().default(() => new Date("2025-04-07T17:38:40.485Z"))
233
+ created: z.date().default(() => new Date("2025-04-08T20:57:34.432Z"))
234
234
  .transform(v => v.toISOString()),
235
235
  }).transform((v) => {
236
236
  return remap$(v, {
@@ -247,7 +247,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
247
247
  file_name: z.string(),
248
248
  workspace_id: z.string(),
249
249
  created: z.string().datetime({ offset: true }).default(
250
- "2025-04-07T17:38:40.485Z",
250
+ "2025-04-08T20:57:34.432Z",
251
251
  ).transform(v => new Date(v)),
252
252
  }).transform((v) => {
253
253
  return remap$(v, {
@@ -281,7 +281,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
281
281
  bytes: z.number(),
282
282
  fileName: z.string(),
283
283
  workspaceId: z.string(),
284
- created: z.date().default(() => new Date("2025-04-07T17:38:40.485Z"))
284
+ created: z.date().default(() => new Date("2025-04-08T20:57:34.432Z"))
285
285
  .transform(v => v.toISOString()),
286
286
  }).transform((v) => {
287
287
  return remap$(v, {
@@ -912,7 +912,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
912
912
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
913
913
  .optional(),
914
914
  updated: z.string().datetime({ offset: true }).default(
915
- "2025-04-07T17:38:38.902Z",
915
+ "2025-04-08T20:57:32.878Z",
916
916
  ).transform(v => new Date(v)),
917
917
  }).transform((v) => {
918
918
  return remap$(v, {
@@ -955,7 +955,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
955
955
  createdById: z.string().optional(),
956
956
  updatedById: z.string().optional(),
957
957
  created: z.date().transform(v => v.toISOString()).optional(),
958
- updated: z.date().default(() => new Date("2025-04-07T17:38:38.902Z"))
958
+ updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
959
959
  .transform(v => v.toISOString()),
960
960
  }).transform((v) => {
961
961
  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-04-07T17:38:38.902Z",
256
+ "2025-04-08T20:57:32.878Z",
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-04-07T17:38:38.902Z"))
296
+ updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
297
297
  .transform(v => v.toISOString()),
298
298
  }).transform((v) => {
299
299
  return remap$(v, {
@@ -84,11 +84,11 @@ export type ListDatasourcesData = {
84
84
  /**
85
85
  * The id of the resource
86
86
  */
87
- createdById?: string | undefined;
87
+ createdById?: string | null | undefined;
88
88
  /**
89
89
  * The id of the resource
90
90
  */
91
- updateById?: string | undefined;
91
+ updateById?: string | null | undefined;
92
92
  /**
93
93
  * The unique identifier of the knowledge base
94
94
  */
@@ -278,15 +278,15 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
278
278
  z.ZodTypeDef,
279
279
  unknown
280
280
  > = z.object({
281
- _id: z.string().default("01JR8NAK00HTP4F3HJ3D84F1YF"),
281
+ _id: z.string().default("01JRBK3G4QR8D5S0BQ1PX4YF4X"),
282
282
  display_name: z.string(),
283
283
  description: z.string().optional(),
284
284
  status: ListDatasourcesStatus$inboundSchema,
285
285
  file_id: z.nullable(z.string()).optional(),
286
286
  created: z.string(),
287
287
  updated: z.string(),
288
- created_by_id: z.string().optional(),
289
- update_by_id: z.string().optional(),
288
+ created_by_id: z.nullable(z.string()).optional(),
289
+ update_by_id: z.nullable(z.string()).optional(),
290
290
  knowledge_id: z.string(),
291
291
  chunks_count: z.number(),
292
292
  }).transform((v) => {
@@ -310,8 +310,8 @@ export type ListDatasourcesData$Outbound = {
310
310
  file_id?: string | null | undefined;
311
311
  created: string;
312
312
  updated: string;
313
- created_by_id?: string | undefined;
314
- update_by_id?: string | undefined;
313
+ created_by_id?: string | null | undefined;
314
+ update_by_id?: string | null | undefined;
315
315
  knowledge_id: string;
316
316
  chunks_count: number;
317
317
  };
@@ -322,15 +322,15 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
322
322
  z.ZodTypeDef,
323
323
  ListDatasourcesData
324
324
  > = z.object({
325
- id: z.string().default("01JR8NAK00HTP4F3HJ3D84F1YF"),
325
+ id: z.string().default("01JRBK3G4QR8D5S0BQ1PX4YF4X"),
326
326
  displayName: z.string(),
327
327
  description: z.string().optional(),
328
328
  status: ListDatasourcesStatus$outboundSchema,
329
329
  fileId: z.nullable(z.string()).optional(),
330
330
  created: z.string(),
331
331
  updated: z.string(),
332
- createdById: z.string().optional(),
333
- updateById: z.string().optional(),
332
+ createdById: z.nullable(z.string()).optional(),
333
+ updateById: z.nullable(z.string()).optional(),
334
334
  knowledgeId: z.string(),
335
335
  chunksCount: z.number(),
336
336
  }).transform((v) => {
@@ -834,7 +834,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
834
834
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
835
835
  .optional(),
836
836
  updated: z.string().datetime({ offset: true }).default(
837
- "2025-04-07T17:38:38.902Z",
837
+ "2025-04-08T20:57:32.878Z",
838
838
  ).transform(v => new Date(v)),
839
839
  }).transform((v) => {
840
840
  return remap$(v, {
@@ -877,7 +877,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
877
877
  createdById: z.string().optional(),
878
878
  updatedById: z.string().optional(),
879
879
  created: z.date().transform(v => v.toISOString()).optional(),
880
- updated: z.date().default(() => new Date("2025-04-07T17:38:38.902Z"))
880
+ updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
881
881
  .transform(v => v.toISOString()),
882
882
  }).transform((v) => {
883
883
  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-04-07T17:38:38.902Z",
204
+ "2025-04-08T20:57:32.878Z",
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-04-07T17:38:38.902Z"))
244
+ updated: z.date().default(() => new Date("2025-04-08T20:57:32.878Z"))
245
245
  .transform(v => v.toISOString()),
246
246
  }).transform((v) => {
247
247
  return remap$(v, {
@@ -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("01JR8NAK011EES2X4YRXPGR58H"),
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("01JR8NAK011EES2X4YRXPGR58H"),
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-07T17:38:38.902Z",
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-07T17:38:38.902Z"))
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-07T17:38:38.902Z",
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-07T17:38:38.902Z"))
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("01JR8NAK038A58Y99AZYVG1P9X"),
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("01JR8NAK038A58Y99AZYVG1P9X"),
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) => {