@orq-ai/node 3.5.11 → 3.5.13

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 (82) hide show
  1. package/bin/mcp-server.js +40 -40
  2. package/bin/mcp-server.js.map +21 -21
  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/server.js +1 -1
  8. package/models/operations/bulkcreatedatapoints.js +2 -2
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/fileget.js +2 -2
  14. package/models/operations/filelist.js +2 -2
  15. package/models/operations/fileupload.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +2 -2
  17. package/models/operations/listdatasets.js +2 -2
  18. package/models/operations/listdatasources.js +2 -2
  19. package/models/operations/retrievedatapoint.js +2 -2
  20. package/models/operations/retrievedataset.js +2 -2
  21. package/models/operations/retrievedatasource.js +2 -2
  22. package/models/operations/updatedatapoint.js +2 -2
  23. package/models/operations/updatedataset.js +2 -2
  24. package/models/operations/updatedatasource.js +2 -2
  25. package/package.json +1 -1
  26. package/packages/orq-rc/README.md +2 -0
  27. package/packages/orq-rc/docs/sdks/knowledge/README.md +77 -0
  28. package/packages/orq-rc/jsr.json +1 -1
  29. package/packages/orq-rc/package-lock.json +2 -2
  30. package/packages/orq-rc/package.json +1 -1
  31. package/packages/orq-rc/src/funcs/knowledgeSearch.ts +161 -0
  32. package/packages/orq-rc/src/lib/config.ts +3 -3
  33. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  34. package/packages/orq-rc/src/mcp-server/server.ts +3 -1
  35. package/packages/orq-rc/src/mcp-server/tools/knowledgeSearch.ts +37 -0
  36. package/packages/orq-rc/src/models/components/deployments.ts +3229 -134
  37. package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +2 -2
  38. package/packages/orq-rc/src/models/operations/createchunk.ts +65 -35
  39. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  40. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  41. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  42. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +3208 -91
  44. package/packages/orq-rc/src/models/operations/deploymentstream.ts +3518 -95
  45. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  46. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  47. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  48. package/packages/orq-rc/src/models/operations/getonechunk.ts +55 -5
  49. package/packages/orq-rc/src/models/operations/index.ts +1 -0
  50. package/packages/orq-rc/src/models/operations/listchunks.ts +55 -5
  51. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  52. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  53. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  56. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  57. package/packages/orq-rc/src/models/operations/searchknowledge.ts +3783 -0
  58. package/packages/orq-rc/src/models/operations/updatechunk.ts +65 -35
  59. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  60. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  61. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  62. package/packages/orq-rc/src/sdk/knowledge.ts +18 -0
  63. package/src/lib/config.ts +3 -3
  64. package/src/mcp-server/mcp-server.ts +1 -1
  65. package/src/mcp-server/server.ts +1 -1
  66. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  67. package/src/models/operations/createcontact.ts +2 -2
  68. package/src/models/operations/createdataset.ts +2 -2
  69. package/src/models/operations/createdatasetitem.ts +2 -2
  70. package/src/models/operations/createdatasource.ts +2 -2
  71. package/src/models/operations/fileget.ts +2 -2
  72. package/src/models/operations/filelist.ts +2 -2
  73. package/src/models/operations/fileupload.ts +2 -2
  74. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  75. package/src/models/operations/listdatasets.ts +2 -2
  76. package/src/models/operations/listdatasources.ts +2 -2
  77. package/src/models/operations/retrievedatapoint.ts +2 -2
  78. package/src/models/operations/retrievedataset.ts +2 -2
  79. package/src/models/operations/retrievedatasource.ts +2 -2
  80. package/src/models/operations/updatedatapoint.ts +2 -2
  81. package/src/models/operations/updatedataset.ts +2 -2
  82. package/src/models/operations/updatedatasource.ts +2 -2
@@ -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-05-16T10:06:25.458Z",
149
+ "2025-05-18T21:00:23.968Z",
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-05-16T10:06:25.458Z"))
183
+ created: z.date().default(() => new Date("2025-05-18T21:00:23.968Z"))
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-05-16T10:06:25.458Z",
199
+ "2025-05-18T21:00:23.968Z",
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-05-16T10:06:25.458Z"))
233
+ created: z.date().default(() => new Date("2025-05-18T21:00:23.968Z"))
234
234
  .transform(v => v.toISOString()),
235
235
  }).transform((v) => {
236
236
  return remap$(v, {
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
250
250
  file_name: z.string(),
251
251
  workspace_id: z.string(),
252
252
  created: z.string().datetime({ offset: true }).default(
253
- "2025-05-16T10:06:25.458Z",
253
+ "2025-05-18T21:00:23.968Z",
254
254
  ).transform(v => new Date(v)),
255
255
  }).transform((v) => {
256
256
  return remap$(v, {
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
284
284
  bytes: z.number(),
285
285
  fileName: z.string(),
286
286
  workspaceId: z.string(),
287
- created: z.date().default(() => new Date("2025-05-16T10:06:25.458Z"))
287
+ created: z.date().default(() => new Date("2025-05-18T21:00:23.968Z"))
288
288
  .transform(v => v.toISOString()),
289
289
  }).transform((v) => {
290
290
  return remap$(v, {
@@ -24,6 +24,8 @@ export type GetOneChunkRequest = {
24
24
  knowledgeId: string;
25
25
  };
26
26
 
27
+ export type GetOneChunkMetadata = string | number | boolean;
28
+
27
29
  /**
28
30
  * The status of the chunk
29
31
  */
@@ -52,9 +54,9 @@ export type GetOneChunkResponseBody = {
52
54
  */
53
55
  text: string;
54
56
  /**
55
- * Metadata of the chunk. Can include `page_number` or any other key-value pairs. Only values of type string are supported.
57
+ * Metadata of the chunk. Can include `page_number` or any other key-value pairs
56
58
  */
57
- metadata?: { [k: string]: string } | undefined;
59
+ metadata?: { [k: string]: string | number | boolean } | undefined;
58
60
  /**
59
61
  * Whether the chunk is enabled
60
62
  */
@@ -153,6 +155,54 @@ export function getOneChunkRequestFromJSON(
153
155
  );
154
156
  }
155
157
 
158
+ /** @internal */
159
+ export const GetOneChunkMetadata$inboundSchema: z.ZodType<
160
+ GetOneChunkMetadata,
161
+ z.ZodTypeDef,
162
+ unknown
163
+ > = z.union([z.string(), z.number(), z.boolean()]);
164
+
165
+ /** @internal */
166
+ export type GetOneChunkMetadata$Outbound = string | number | boolean;
167
+
168
+ /** @internal */
169
+ export const GetOneChunkMetadata$outboundSchema: z.ZodType<
170
+ GetOneChunkMetadata$Outbound,
171
+ z.ZodTypeDef,
172
+ GetOneChunkMetadata
173
+ > = z.union([z.string(), z.number(), z.boolean()]);
174
+
175
+ /**
176
+ * @internal
177
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
178
+ */
179
+ export namespace GetOneChunkMetadata$ {
180
+ /** @deprecated use `GetOneChunkMetadata$inboundSchema` instead. */
181
+ export const inboundSchema = GetOneChunkMetadata$inboundSchema;
182
+ /** @deprecated use `GetOneChunkMetadata$outboundSchema` instead. */
183
+ export const outboundSchema = GetOneChunkMetadata$outboundSchema;
184
+ /** @deprecated use `GetOneChunkMetadata$Outbound` instead. */
185
+ export type Outbound = GetOneChunkMetadata$Outbound;
186
+ }
187
+
188
+ export function getOneChunkMetadataToJSON(
189
+ getOneChunkMetadata: GetOneChunkMetadata,
190
+ ): string {
191
+ return JSON.stringify(
192
+ GetOneChunkMetadata$outboundSchema.parse(getOneChunkMetadata),
193
+ );
194
+ }
195
+
196
+ export function getOneChunkMetadataFromJSON(
197
+ jsonString: string,
198
+ ): SafeParseResult<GetOneChunkMetadata, SDKValidationError> {
199
+ return safeParse(
200
+ jsonString,
201
+ (x) => GetOneChunkMetadata$inboundSchema.parse(JSON.parse(x)),
202
+ `Failed to parse 'GetOneChunkMetadata' from JSON`,
203
+ );
204
+ }
205
+
156
206
  /** @internal */
157
207
  export const GetOneChunkStatus$inboundSchema: z.ZodNativeEnum<
158
208
  typeof GetOneChunkStatus
@@ -182,7 +232,7 @@ export const GetOneChunkResponseBody$inboundSchema: z.ZodType<
182
232
  > = z.object({
183
233
  _id: z.string(),
184
234
  text: z.string(),
185
- metadata: z.record(z.string()).optional(),
235
+ metadata: z.record(z.union([z.string(), z.number(), z.boolean()])).optional(),
186
236
  enabled: z.boolean(),
187
237
  status: GetOneChunkStatus$inboundSchema,
188
238
  created: z.string(),
@@ -201,7 +251,7 @@ export const GetOneChunkResponseBody$inboundSchema: z.ZodType<
201
251
  export type GetOneChunkResponseBody$Outbound = {
202
252
  _id: string;
203
253
  text: string;
204
- metadata?: { [k: string]: string } | undefined;
254
+ metadata?: { [k: string]: string | number | boolean } | undefined;
205
255
  enabled: boolean;
206
256
  status: string;
207
257
  created: string;
@@ -218,7 +268,7 @@ export const GetOneChunkResponseBody$outboundSchema: z.ZodType<
218
268
  > = z.object({
219
269
  id: z.string(),
220
270
  text: z.string(),
221
- metadata: z.record(z.string()).optional(),
271
+ metadata: z.record(z.union([z.string(), z.number(), z.boolean()])).optional(),
222
272
  enabled: z.boolean(),
223
273
  status: GetOneChunkStatus$outboundSchema,
224
274
  created: z.string(),
@@ -45,6 +45,7 @@ export * from "./remoteconfigsgetconfig.js";
45
45
  export * from "./retrievedatapoint.js";
46
46
  export * from "./retrievedataset.js";
47
47
  export * from "./retrievedatasource.js";
48
+ export * from "./searchknowledge.js";
48
49
  export * from "./updatechunk.js";
49
50
  export * from "./updatedatapoint.js";
50
51
  export * from "./updatedataset.js";
@@ -50,6 +50,8 @@ export const ListChunksObject = {
50
50
  } as const;
51
51
  export type ListChunksObject = ClosedEnum<typeof ListChunksObject>;
52
52
 
53
+ export type ListChunksMetadata = string | number | boolean;
54
+
53
55
  /**
54
56
  * The status of the chunk
55
57
  */
@@ -75,9 +77,9 @@ export type ListChunksData = {
75
77
  */
76
78
  text: string;
77
79
  /**
78
- * Metadata of the chunk. Can include `page_number` or any other key-value pairs. Only values of type string are supported.
80
+ * Metadata of the chunk. Can include `page_number` or any other key-value pairs
79
81
  */
80
- metadata?: { [k: string]: string } | undefined;
82
+ metadata?: { [k: string]: string | number | boolean } | undefined;
81
83
  /**
82
84
  * Whether the chunk is enabled
83
85
  */
@@ -268,6 +270,54 @@ export namespace ListChunksObject$ {
268
270
  export const outboundSchema = ListChunksObject$outboundSchema;
269
271
  }
270
272
 
273
+ /** @internal */
274
+ export const ListChunksMetadata$inboundSchema: z.ZodType<
275
+ ListChunksMetadata,
276
+ z.ZodTypeDef,
277
+ unknown
278
+ > = z.union([z.string(), z.number(), z.boolean()]);
279
+
280
+ /** @internal */
281
+ export type ListChunksMetadata$Outbound = string | number | boolean;
282
+
283
+ /** @internal */
284
+ export const ListChunksMetadata$outboundSchema: z.ZodType<
285
+ ListChunksMetadata$Outbound,
286
+ z.ZodTypeDef,
287
+ ListChunksMetadata
288
+ > = z.union([z.string(), z.number(), z.boolean()]);
289
+
290
+ /**
291
+ * @internal
292
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
293
+ */
294
+ export namespace ListChunksMetadata$ {
295
+ /** @deprecated use `ListChunksMetadata$inboundSchema` instead. */
296
+ export const inboundSchema = ListChunksMetadata$inboundSchema;
297
+ /** @deprecated use `ListChunksMetadata$outboundSchema` instead. */
298
+ export const outboundSchema = ListChunksMetadata$outboundSchema;
299
+ /** @deprecated use `ListChunksMetadata$Outbound` instead. */
300
+ export type Outbound = ListChunksMetadata$Outbound;
301
+ }
302
+
303
+ export function listChunksMetadataToJSON(
304
+ listChunksMetadata: ListChunksMetadata,
305
+ ): string {
306
+ return JSON.stringify(
307
+ ListChunksMetadata$outboundSchema.parse(listChunksMetadata),
308
+ );
309
+ }
310
+
311
+ export function listChunksMetadataFromJSON(
312
+ jsonString: string,
313
+ ): SafeParseResult<ListChunksMetadata, SDKValidationError> {
314
+ return safeParse(
315
+ jsonString,
316
+ (x) => ListChunksMetadata$inboundSchema.parse(JSON.parse(x)),
317
+ `Failed to parse 'ListChunksMetadata' from JSON`,
318
+ );
319
+ }
320
+
271
321
  /** @internal */
272
322
  export const ListChunksStatus$inboundSchema: z.ZodNativeEnum<
273
323
  typeof ListChunksStatus
@@ -297,7 +347,7 @@ export const ListChunksData$inboundSchema: z.ZodType<
297
347
  > = z.object({
298
348
  _id: z.string(),
299
349
  text: z.string(),
300
- metadata: z.record(z.string()).optional(),
350
+ metadata: z.record(z.union([z.string(), z.number(), z.boolean()])).optional(),
301
351
  enabled: z.boolean(),
302
352
  status: ListChunksStatus$inboundSchema,
303
353
  created: z.string(),
@@ -316,7 +366,7 @@ export const ListChunksData$inboundSchema: z.ZodType<
316
366
  export type ListChunksData$Outbound = {
317
367
  _id: string;
318
368
  text: string;
319
- metadata?: { [k: string]: string } | undefined;
369
+ metadata?: { [k: string]: string | number | boolean } | undefined;
320
370
  enabled: boolean;
321
371
  status: string;
322
372
  created: string;
@@ -333,7 +383,7 @@ export const ListChunksData$outboundSchema: z.ZodType<
333
383
  > = z.object({
334
384
  id: z.string(),
335
385
  text: z.string(),
336
- metadata: z.record(z.string()).optional(),
386
+ metadata: z.record(z.union([z.string(), z.number(), z.boolean()])).optional(),
337
387
  enabled: z.boolean(),
338
388
  status: ListChunksStatus$outboundSchema,
339
389
  created: z.string(),
@@ -918,7 +918,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
918
918
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
919
919
  .optional(),
920
920
  updated: z.string().datetime({ offset: true }).default(
921
- "2025-05-16T10:06:22.724Z",
921
+ "2025-05-18T21:00:21.233Z",
922
922
  ).transform(v => new Date(v)),
923
923
  }).transform((v) => {
924
924
  return remap$(v, {
@@ -961,7 +961,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
961
961
  createdById: z.string().optional(),
962
962
  updatedById: z.string().optional(),
963
963
  created: z.date().transform(v => v.toISOString()).optional(),
964
- updated: z.date().default(() => new Date("2025-05-16T10:06:22.724Z"))
964
+ updated: z.date().default(() => new Date("2025-05-18T21:00:21.233Z"))
965
965
  .transform(v => v.toISOString()),
966
966
  }).transform((v) => {
967
967
  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-05-16T10:06:22.724Z",
256
+ "2025-05-18T21:00:21.233Z",
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-05-16T10:06:22.724Z"))
296
+ updated: z.date().default(() => new Date("2025-05-18T21:00:21.233Z"))
297
297
  .transform(v => v.toISOString()),
298
298
  }).transform((v) => {
299
299
  return remap$(v, {
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
278
278
  z.ZodTypeDef,
279
279
  unknown
280
280
  > = z.object({
281
- _id: z.string().default("01JVC8YGP2BJSGFWHXXWKWRQ13"),
281
+ _id: z.string().default("01JVJK5DF58BAYYZHN9ZB6FM7T"),
282
282
  display_name: z.string(),
283
283
  description: z.string().optional(),
284
284
  status: ListDatasourcesStatus$inboundSchema,
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
322
322
  z.ZodTypeDef,
323
323
  ListDatasourcesData
324
324
  > = z.object({
325
- id: z.string().default("01JVC8YGP2BJSGFWHXXWKWRQ13"),
325
+ id: z.string().default("01JVJK5DF58BAYYZHN9ZB6FM7T"),
326
326
  displayName: z.string(),
327
327
  description: z.string().optional(),
328
328
  status: ListDatasourcesStatus$outboundSchema,
@@ -840,7 +840,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
840
840
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
841
841
  .optional(),
842
842
  updated: z.string().datetime({ offset: true }).default(
843
- "2025-05-16T10:06:22.724Z",
843
+ "2025-05-18T21:00:21.233Z",
844
844
  ).transform(v => new Date(v)),
845
845
  }).transform((v) => {
846
846
  return remap$(v, {
@@ -883,7 +883,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
883
883
  createdById: z.string().optional(),
884
884
  updatedById: z.string().optional(),
885
885
  created: z.date().transform(v => v.toISOString()).optional(),
886
- updated: z.date().default(() => new Date("2025-05-16T10:06:22.724Z"))
886
+ updated: z.date().default(() => new Date("2025-05-18T21:00:21.233Z"))
887
887
  .transform(v => v.toISOString()),
888
888
  }).transform((v) => {
889
889
  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-05-16T10:06:22.724Z",
204
+ "2025-05-18T21:00:21.233Z",
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-05-16T10:06:22.724Z"))
244
+ updated: z.date().default(() => new Date("2025-05-18T21:00:21.233Z"))
245
245
  .transform(v => v.toISOString()),
246
246
  }).transform((v) => {
247
247
  return remap$(v, {
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
172
172
  z.ZodTypeDef,
173
173
  unknown
174
174
  > = z.object({
175
- _id: z.string().default("01JVC8YGP3NEQBA7FGKXK37EW5"),
175
+ _id: z.string().default("01JVJK5DFDNWST9YND6N0SA3AR"),
176
176
  display_name: z.string(),
177
177
  description: z.string().optional(),
178
178
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
216
216
  z.ZodTypeDef,
217
217
  RetrieveDatasourceResponseBody
218
218
  > = z.object({
219
- id: z.string().default("01JVC8YGP3NEQBA7FGKXK37EW5"),
219
+ id: z.string().default("01JVJK5DFDNWST9YND6N0SA3AR"),
220
220
  displayName: z.string(),
221
221
  description: z.string().optional(),
222
222
  status: RetrieveDatasourceStatus$outboundSchema,