@orq-ai/node 4.0.0-rc.41 → 4.0.0-rc.42

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 (128) hide show
  1. package/bin/mcp-server.js +305 -281
  2. package/bin/mcp-server.js.map +47 -47
  3. package/docs/sdks/agents/README.md +2 -0
  4. package/docs/sdks/knowledge/README.md +0 -2
  5. package/examples/package-lock.json +1 -1
  6. package/jsr.json +1 -1
  7. package/lib/config.d.ts +2 -2
  8. package/lib/config.js +2 -2
  9. package/mcp-server/mcp-server.js +1 -1
  10. package/mcp-server/server.js +1 -1
  11. package/models/operations/createagent.d.ts +15 -8
  12. package/models/operations/createagent.d.ts.map +1 -1
  13. package/models/operations/createagent.js +16 -8
  14. package/models/operations/createagent.js.map +1 -1
  15. package/models/operations/createbudget.js +2 -2
  16. package/models/operations/createcontact.js +2 -2
  17. package/models/operations/createdataset.js +2 -2
  18. package/models/operations/createdatasetitem.js +8 -8
  19. package/models/operations/createdatasource.js +2 -2
  20. package/models/operations/createeval.js +28 -28
  21. package/models/operations/createknowledge.d.ts +1 -3
  22. package/models/operations/createknowledge.d.ts.map +1 -1
  23. package/models/operations/createknowledge.js +0 -4
  24. package/models/operations/createknowledge.js.map +1 -1
  25. package/models/operations/createprompt.d.ts +2 -2
  26. package/models/operations/createprompt.d.ts.map +1 -1
  27. package/models/operations/createprompt.js +2 -2
  28. package/models/operations/createprompt.js.map +1 -1
  29. package/models/operations/createtool.js +12 -12
  30. package/models/operations/duplicateagent.d.ts +6 -4
  31. package/models/operations/duplicateagent.d.ts.map +1 -1
  32. package/models/operations/duplicateagent.js +8 -4
  33. package/models/operations/duplicateagent.js.map +1 -1
  34. package/models/operations/duplicatetool.js +12 -12
  35. package/models/operations/fileget.js +2 -2
  36. package/models/operations/filelist.js +2 -2
  37. package/models/operations/fileupload.js +2 -2
  38. package/models/operations/getagent.d.ts +6 -4
  39. package/models/operations/getagent.d.ts.map +1 -1
  40. package/models/operations/getagent.js +8 -4
  41. package/models/operations/getagent.js.map +1 -1
  42. package/models/operations/getalltools.js +12 -12
  43. package/models/operations/getbudget.js +2 -2
  44. package/models/operations/getevals.js +28 -28
  45. package/models/operations/listagents.d.ts +6 -4
  46. package/models/operations/listagents.d.ts.map +1 -1
  47. package/models/operations/listagents.js +8 -4
  48. package/models/operations/listagents.js.map +1 -1
  49. package/models/operations/listbudgets.js +2 -2
  50. package/models/operations/listcontacts.js +2 -2
  51. package/models/operations/listdatasetdatapoints.js +8 -8
  52. package/models/operations/listdatasets.js +2 -2
  53. package/models/operations/listdatasources.js +2 -2
  54. package/models/operations/retrievecontact.js +2 -2
  55. package/models/operations/retrievedatapoint.js +8 -8
  56. package/models/operations/retrievedataset.js +2 -2
  57. package/models/operations/retrievedatasource.js +2 -2
  58. package/models/operations/retrievetool.js +12 -12
  59. package/models/operations/runagent.d.ts +4 -4
  60. package/models/operations/runagent.d.ts.map +1 -1
  61. package/models/operations/runagent.js +6 -6
  62. package/models/operations/runagent.js.map +1 -1
  63. package/models/operations/streamrunagent.d.ts +4 -4
  64. package/models/operations/streamrunagent.d.ts.map +1 -1
  65. package/models/operations/streamrunagent.js +6 -6
  66. package/models/operations/streamrunagent.js.map +1 -1
  67. package/models/operations/syncmcptool.js +12 -12
  68. package/models/operations/updateagent.d.ts +12 -8
  69. package/models/operations/updateagent.d.ts.map +1 -1
  70. package/models/operations/updateagent.js +16 -8
  71. package/models/operations/updateagent.js.map +1 -1
  72. package/models/operations/updatebudget.js +2 -2
  73. package/models/operations/updatecontact.js +2 -2
  74. package/models/operations/updatedatapoint.js +8 -8
  75. package/models/operations/updatedataset.js +2 -2
  76. package/models/operations/updatedatasource.js +2 -2
  77. package/models/operations/updateeval.js +28 -28
  78. package/models/operations/updateprompt.d.ts +2 -2
  79. package/models/operations/updateprompt.d.ts.map +1 -1
  80. package/models/operations/updateprompt.js +2 -2
  81. package/models/operations/updateprompt.js.map +1 -1
  82. package/models/operations/updatetool.js +14 -14
  83. package/package.json +1 -1
  84. package/src/lib/config.ts +2 -2
  85. package/src/mcp-server/mcp-server.ts +1 -1
  86. package/src/mcp-server/server.ts +1 -1
  87. package/src/models/operations/createagent.ts +31 -16
  88. package/src/models/operations/createbudget.ts +2 -2
  89. package/src/models/operations/createcontact.ts +2 -2
  90. package/src/models/operations/createdataset.ts +2 -2
  91. package/src/models/operations/createdatasetitem.ts +8 -8
  92. package/src/models/operations/createdatasource.ts +2 -2
  93. package/src/models/operations/createeval.ts +28 -28
  94. package/src/models/operations/createknowledge.ts +1 -7
  95. package/src/models/operations/createprompt.ts +4 -4
  96. package/src/models/operations/createtool.ts +12 -12
  97. package/src/models/operations/duplicateagent.ts +14 -8
  98. package/src/models/operations/duplicatetool.ts +12 -12
  99. package/src/models/operations/fileget.ts +2 -2
  100. package/src/models/operations/filelist.ts +2 -2
  101. package/src/models/operations/fileupload.ts +2 -2
  102. package/src/models/operations/getagent.ts +14 -8
  103. package/src/models/operations/getalltools.ts +12 -12
  104. package/src/models/operations/getbudget.ts +2 -2
  105. package/src/models/operations/getevals.ts +28 -28
  106. package/src/models/operations/listagents.ts +14 -8
  107. package/src/models/operations/listbudgets.ts +2 -2
  108. package/src/models/operations/listcontacts.ts +2 -2
  109. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  110. package/src/models/operations/listdatasets.ts +2 -2
  111. package/src/models/operations/listdatasources.ts +2 -2
  112. package/src/models/operations/retrievecontact.ts +2 -2
  113. package/src/models/operations/retrievedatapoint.ts +8 -8
  114. package/src/models/operations/retrievedataset.ts +2 -2
  115. package/src/models/operations/retrievedatasource.ts +2 -2
  116. package/src/models/operations/retrievetool.ts +12 -12
  117. package/src/models/operations/runagent.ts +10 -10
  118. package/src/models/operations/streamrunagent.ts +10 -10
  119. package/src/models/operations/syncmcptool.ts +12 -12
  120. package/src/models/operations/updateagent.ts +28 -16
  121. package/src/models/operations/updatebudget.ts +2 -2
  122. package/src/models/operations/updatecontact.ts +2 -2
  123. package/src/models/operations/updatedatapoint.ts +8 -8
  124. package/src/models/operations/updatedataset.ts +2 -2
  125. package/src/models/operations/updatedatasource.ts +2 -2
  126. package/src/models/operations/updateeval.ts +28 -28
  127. package/src/models/operations/updateprompt.ts +4 -4
  128. package/src/models/operations/updatetool.ts +14 -14
@@ -84,7 +84,7 @@ export type RunAgentResponseFormatAgentsJsonSchema = {
84
84
  /**
85
85
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
86
86
  */
87
- strict?: boolean | undefined;
87
+ strict?: boolean | null | undefined;
88
88
  };
89
89
 
90
90
  /**
@@ -433,7 +433,7 @@ export type RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema = {
433
433
  /**
434
434
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
435
435
  */
436
- strict?: boolean | undefined;
436
+ strict?: boolean | null | undefined;
437
437
  };
438
438
 
439
439
  /**
@@ -2027,14 +2027,14 @@ export const RunAgentResponseFormatAgentsJsonSchema$inboundSchema: z.ZodType<
2027
2027
  description: z.string().optional(),
2028
2028
  name: z.string(),
2029
2029
  schema: z.any().optional(),
2030
- strict: z.boolean().optional(),
2030
+ strict: z.nullable(z.boolean()).optional(),
2031
2031
  });
2032
2032
  /** @internal */
2033
2033
  export type RunAgentResponseFormatAgentsJsonSchema$Outbound = {
2034
2034
  description?: string | undefined;
2035
2035
  name: string;
2036
2036
  schema?: any | undefined;
2037
- strict?: boolean | undefined;
2037
+ strict?: boolean | null | undefined;
2038
2038
  };
2039
2039
 
2040
2040
  /** @internal */
@@ -2046,7 +2046,7 @@ export const RunAgentResponseFormatAgentsJsonSchema$outboundSchema: z.ZodType<
2046
2046
  description: z.string().optional(),
2047
2047
  name: z.string(),
2048
2048
  schema: z.any().optional(),
2049
- strict: z.boolean().optional(),
2049
+ strict: z.nullable(z.boolean()).optional(),
2050
2050
  });
2051
2051
 
2052
2052
  export function runAgentResponseFormatAgentsJsonSchemaToJSON(
@@ -2985,7 +2985,7 @@ export const RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSch
2985
2985
  description: z.string().optional(),
2986
2986
  name: z.string(),
2987
2987
  schema: z.any().optional(),
2988
- strict: z.boolean().optional(),
2988
+ strict: z.nullable(z.boolean()).optional(),
2989
2989
  });
2990
2990
  /** @internal */
2991
2991
  export type RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
@@ -2993,7 +2993,7 @@ export type RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
2993
2993
  description?: string | undefined;
2994
2994
  name: string;
2995
2995
  schema?: any | undefined;
2996
- strict?: boolean | undefined;
2996
+ strict?: boolean | null | undefined;
2997
2997
  };
2998
2998
 
2999
2999
  /** @internal */
@@ -3006,7 +3006,7 @@ export const RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSc
3006
3006
  description: z.string().optional(),
3007
3007
  name: z.string(),
3008
3008
  schema: z.any().optional(),
3009
- strict: z.boolean().optional(),
3009
+ strict: z.nullable(z.boolean()).optional(),
3010
3010
  });
3011
3011
 
3012
3012
  export function runAgentResponseFormatAgentsRequestRequestBodyJsonSchemaToJSON(
@@ -4688,7 +4688,7 @@ export function schemaFromJSON(
4688
4688
  /** @internal */
4689
4689
  export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
4690
4690
  .object({
4691
- id: z.string().default("01KA9E2D5EZYSBA1V2HX02C20E"),
4691
+ id: z.string().default("01KAA6WQT5G82EQ126G76K5R78"),
4692
4692
  name: z.string(),
4693
4693
  description: z.string().optional(),
4694
4694
  schema: z.lazy(() => Schema$inboundSchema),
@@ -4707,7 +4707,7 @@ export const Tools$outboundSchema: z.ZodType<
4707
4707
  z.ZodTypeDef,
4708
4708
  Tools
4709
4709
  > = z.object({
4710
- id: z.string().default("01KA9E2D5EZYSBA1V2HX02C20E"),
4710
+ id: z.string().default("01KAA6WQT5G82EQ126G76K5R78"),
4711
4711
  name: z.string(),
4712
4712
  description: z.string().optional(),
4713
4713
  schema: z.lazy(() => Schema$outboundSchema),
@@ -84,7 +84,7 @@ export type StreamRunAgentResponseFormatAgentsJsonSchema = {
84
84
  /**
85
85
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
86
86
  */
87
- strict?: boolean | undefined;
87
+ strict?: boolean | null | undefined;
88
88
  };
89
89
 
90
90
  /**
@@ -448,7 +448,7 @@ export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema = {
448
448
  /**
449
449
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
450
450
  */
451
- strict?: boolean | undefined;
451
+ strict?: boolean | null | undefined;
452
452
  };
453
453
 
454
454
  /**
@@ -1868,14 +1868,14 @@ export const StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema:
1868
1868
  description: z.string().optional(),
1869
1869
  name: z.string(),
1870
1870
  schema: z.any().optional(),
1871
- strict: z.boolean().optional(),
1871
+ strict: z.nullable(z.boolean()).optional(),
1872
1872
  });
1873
1873
  /** @internal */
1874
1874
  export type StreamRunAgentResponseFormatAgentsJsonSchema$Outbound = {
1875
1875
  description?: string | undefined;
1876
1876
  name: string;
1877
1877
  schema?: any | undefined;
1878
- strict?: boolean | undefined;
1878
+ strict?: boolean | null | undefined;
1879
1879
  };
1880
1880
 
1881
1881
  /** @internal */
@@ -1888,7 +1888,7 @@ export const StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema:
1888
1888
  description: z.string().optional(),
1889
1889
  name: z.string(),
1890
1890
  schema: z.any().optional(),
1891
- strict: z.boolean().optional(),
1891
+ strict: z.nullable(z.boolean()).optional(),
1892
1892
  });
1893
1893
 
1894
1894
  export function streamRunAgentResponseFormatAgentsJsonSchemaToJSON(
@@ -2879,7 +2879,7 @@ export const StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inbo
2879
2879
  description: z.string().optional(),
2880
2880
  name: z.string(),
2881
2881
  schema: z.any().optional(),
2882
- strict: z.boolean().optional(),
2882
+ strict: z.nullable(z.boolean()).optional(),
2883
2883
  });
2884
2884
  /** @internal */
2885
2885
  export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
@@ -2887,7 +2887,7 @@ export type StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbo
2887
2887
  description?: string | undefined;
2888
2888
  name: string;
2889
2889
  schema?: any | undefined;
2890
- strict?: boolean | undefined;
2890
+ strict?: boolean | null | undefined;
2891
2891
  };
2892
2892
 
2893
2893
  /** @internal */
@@ -2900,7 +2900,7 @@ export const StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outb
2900
2900
  description: z.string().optional(),
2901
2901
  name: z.string(),
2902
2902
  schema: z.any().optional(),
2903
- strict: z.boolean().optional(),
2903
+ strict: z.nullable(z.boolean()).optional(),
2904
2904
  });
2905
2905
 
2906
2906
  export function streamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchemaToJSON(
@@ -4710,7 +4710,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
4710
4710
  z.ZodTypeDef,
4711
4711
  unknown
4712
4712
  > = z.object({
4713
- id: z.string().default("01KA9E2D651Y1D2Y9PWDNBJWVT"),
4713
+ id: z.string().default("01KAA6WQXCNX79B4C9W9BFD6VS"),
4714
4714
  name: z.string(),
4715
4715
  description: z.string().optional(),
4716
4716
  schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
@@ -4729,7 +4729,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
4729
4729
  z.ZodTypeDef,
4730
4730
  AgentToolInputRunTools
4731
4731
  > = z.object({
4732
- id: z.string().default("01KA9E2D651Y1D2Y9PWDNBJWVT"),
4732
+ id: z.string().default("01KAA6WQXCNX79B4C9W9BFD6VS"),
4733
4733
  name: z.string(),
4734
4734
  description: z.string().optional(),
4735
4735
  schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
@@ -979,7 +979,7 @@ export const SyncMcpToolResponseBody5$inboundSchema: z.ZodType<
979
979
  z.ZodTypeDef,
980
980
  unknown
981
981
  > = z.object({
982
- _id: z.string().default("tool_01KA9E2DG5YZTX24TTPB4352HJ"),
982
+ _id: z.string().default("tool_01KAA6WRQCYGN4JCQBAQHVZHC8"),
983
983
  path: z.string(),
984
984
  key: z.string(),
985
985
  display_name: z.string().optional(),
@@ -1038,7 +1038,7 @@ export const SyncMcpToolResponseBody5$outboundSchema: z.ZodType<
1038
1038
  z.ZodTypeDef,
1039
1039
  SyncMcpToolResponseBody5
1040
1040
  > = z.object({
1041
- id: z.string().default("tool_01KA9E2DG5YZTX24TTPB4352HJ"),
1041
+ id: z.string().default("tool_01KAA6WRQCYGN4JCQBAQHVZHC8"),
1042
1042
  path: z.string(),
1043
1043
  key: z.string(),
1044
1044
  displayName: z.string().optional(),
@@ -1218,7 +1218,7 @@ export const SyncMcpToolResponseBodyTools$inboundSchema: z.ZodType<
1218
1218
  z.ZodTypeDef,
1219
1219
  unknown
1220
1220
  > = z.object({
1221
- id: z.string().default("01KA9E2DG464KMZJRCD4P32P4F"),
1221
+ id: z.string().default("01KAA6WRQB2PBSS9PY6G84TZ8S"),
1222
1222
  name: z.string(),
1223
1223
  description: z.string().optional(),
1224
1224
  schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema),
@@ -1237,7 +1237,7 @@ export const SyncMcpToolResponseBodyTools$outboundSchema: z.ZodType<
1237
1237
  z.ZodTypeDef,
1238
1238
  SyncMcpToolResponseBodyTools
1239
1239
  > = z.object({
1240
- id: z.string().default("01KA9E2DG464KMZJRCD4P32P4F"),
1240
+ id: z.string().default("01KAA6WRQB2PBSS9PY6G84TZ8S"),
1241
1241
  name: z.string(),
1242
1242
  description: z.string().optional(),
1243
1243
  schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema),
@@ -1392,7 +1392,7 @@ export const SyncMcpToolResponseBody4$inboundSchema: z.ZodType<
1392
1392
  z.ZodTypeDef,
1393
1393
  unknown
1394
1394
  > = z.object({
1395
- _id: z.string().default("tool_01KA9E2DG2ER51JCZMQHCWS3TF"),
1395
+ _id: z.string().default("tool_01KAA6WRQ9MF2W2PN9T3FVBED0"),
1396
1396
  path: z.string(),
1397
1397
  key: z.string(),
1398
1398
  display_name: z.string().optional(),
@@ -1449,7 +1449,7 @@ export const SyncMcpToolResponseBody4$outboundSchema: z.ZodType<
1449
1449
  z.ZodTypeDef,
1450
1450
  SyncMcpToolResponseBody4
1451
1451
  > = z.object({
1452
- id: z.string().default("tool_01KA9E2DG2ER51JCZMQHCWS3TF"),
1452
+ id: z.string().default("tool_01KAA6WRQ9MF2W2PN9T3FVBED0"),
1453
1453
  path: z.string(),
1454
1454
  key: z.string(),
1455
1455
  displayName: z.string().optional(),
@@ -1877,7 +1877,7 @@ export const SyncMcpToolResponseBody3$inboundSchema: z.ZodType<
1877
1877
  z.ZodTypeDef,
1878
1878
  unknown
1879
1879
  > = z.object({
1880
- _id: z.string().default("tool_01KA9E2DFZ9E57JZZ8SFMVY5NZ"),
1880
+ _id: z.string().default("tool_01KAA6WRQ6T1KWRNRT3RQ9JTH3"),
1881
1881
  path: z.string(),
1882
1882
  key: z.string(),
1883
1883
  display_name: z.string().optional(),
@@ -1932,7 +1932,7 @@ export const SyncMcpToolResponseBody3$outboundSchema: z.ZodType<
1932
1932
  z.ZodTypeDef,
1933
1933
  SyncMcpToolResponseBody3
1934
1934
  > = z.object({
1935
- id: z.string().default("tool_01KA9E2DFZ9E57JZZ8SFMVY5NZ"),
1935
+ id: z.string().default("tool_01KAA6WRQ6T1KWRNRT3RQ9JTH3"),
1936
1936
  path: z.string(),
1937
1937
  key: z.string(),
1938
1938
  displayName: z.string().optional(),
@@ -2161,7 +2161,7 @@ export const SyncMcpToolResponseBody2$inboundSchema: z.ZodType<
2161
2161
  z.ZodTypeDef,
2162
2162
  unknown
2163
2163
  > = z.object({
2164
- _id: z.string().default("tool_01KA9E2DFXG722K9H4EW735J72"),
2164
+ _id: z.string().default("tool_01KAA6WRQ3NQSCVQ3E1JE9PZXE"),
2165
2165
  path: z.string(),
2166
2166
  key: z.string(),
2167
2167
  display_name: z.string().optional(),
@@ -2215,7 +2215,7 @@ export const SyncMcpToolResponseBody2$outboundSchema: z.ZodType<
2215
2215
  z.ZodTypeDef,
2216
2216
  SyncMcpToolResponseBody2
2217
2217
  > = z.object({
2218
- id: z.string().default("tool_01KA9E2DFXG722K9H4EW735J72"),
2218
+ id: z.string().default("tool_01KAA6WRQ3NQSCVQ3E1JE9PZXE"),
2219
2219
  path: z.string(),
2220
2220
  key: z.string(),
2221
2221
  displayName: z.string().optional(),
@@ -2454,7 +2454,7 @@ export const SyncMcpToolResponseBody1$inboundSchema: z.ZodType<
2454
2454
  z.ZodTypeDef,
2455
2455
  unknown
2456
2456
  > = z.object({
2457
- _id: z.string().default("tool_01KA9E2DFVX6H24PW6FAQS01WN"),
2457
+ _id: z.string().default("tool_01KAA6WRQ2XYRPN63YB8KH3CBR"),
2458
2458
  path: z.string(),
2459
2459
  key: z.string(),
2460
2460
  display_name: z.string().optional(),
@@ -2507,7 +2507,7 @@ export const SyncMcpToolResponseBody1$outboundSchema: z.ZodType<
2507
2507
  z.ZodTypeDef,
2508
2508
  SyncMcpToolResponseBody1
2509
2509
  > = z.object({
2510
- id: z.string().default("tool_01KA9E2DFVX6H24PW6FAQS01WN"),
2510
+ id: z.string().default("tool_01KAA6WRQ2XYRPN63YB8KH3CBR"),
2511
2511
  path: z.string(),
2512
2512
  key: z.string(),
2513
2513
  displayName: z.string().optional(),
@@ -81,7 +81,7 @@ export type UpdateAgentResponseFormatAgentsJsonSchema = {
81
81
  /**
82
82
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
83
83
  */
84
- strict?: boolean | undefined;
84
+ strict?: boolean | null | undefined;
85
85
  };
86
86
 
87
87
  /**
@@ -434,7 +434,7 @@ export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema = {
434
434
  /**
435
435
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
436
436
  */
437
- strict?: boolean | undefined;
437
+ strict?: boolean | null | undefined;
438
438
  };
439
439
 
440
440
  /**
@@ -1228,6 +1228,7 @@ export type UpdateAgentTeamOfAgents = {
1228
1228
 
1229
1229
  export type UpdateAgentRequestBody = {
1230
1230
  key?: string | undefined;
1231
+ displayName?: string | undefined;
1231
1232
  projectId?: string | undefined;
1232
1233
  role?: string | undefined;
1233
1234
  description?: string | undefined;
@@ -1498,7 +1499,7 @@ export type UpdateAgentResponseFormatAgentsResponseJsonSchema = {
1498
1499
  /**
1499
1500
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
1500
1501
  */
1501
- strict?: boolean | undefined;
1502
+ strict?: boolean | null | undefined;
1502
1503
  };
1503
1504
 
1504
1505
  /**
@@ -1826,7 +1827,7 @@ export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
1826
1827
  /**
1827
1828
  * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
1828
1829
  */
1829
- strict?: boolean | undefined;
1830
+ strict?: boolean | null | undefined;
1830
1831
  };
1831
1832
 
1832
1833
  /**
@@ -2163,6 +2164,7 @@ export type UpdateAgentAgentsKnowledgeBases = {
2163
2164
  export type UpdateAgentResponseBody = {
2164
2165
  id: string;
2165
2166
  key: string;
2167
+ displayName: string;
2166
2168
  workspaceId: string;
2167
2169
  projectId: string;
2168
2170
  createdById?: string | null | undefined;
@@ -2290,14 +2292,14 @@ export const UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema: z.ZodType<
2290
2292
  description: z.string().optional(),
2291
2293
  name: z.string(),
2292
2294
  schema: z.any().optional(),
2293
- strict: z.boolean().optional(),
2295
+ strict: z.nullable(z.boolean()).optional(),
2294
2296
  });
2295
2297
  /** @internal */
2296
2298
  export type UpdateAgentResponseFormatAgentsJsonSchema$Outbound = {
2297
2299
  description?: string | undefined;
2298
2300
  name: string;
2299
2301
  schema?: any | undefined;
2300
- strict?: boolean | undefined;
2302
+ strict?: boolean | null | undefined;
2301
2303
  };
2302
2304
 
2303
2305
  /** @internal */
@@ -2310,7 +2312,7 @@ export const UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema:
2310
2312
  description: z.string().optional(),
2311
2313
  name: z.string(),
2312
2314
  schema: z.any().optional(),
2313
- strict: z.boolean().optional(),
2315
+ strict: z.nullable(z.boolean()).optional(),
2314
2316
  });
2315
2317
 
2316
2318
  export function updateAgentResponseFormatAgentsJsonSchemaToJSON(
@@ -3230,7 +3232,7 @@ export const UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inbound
3230
3232
  description: z.string().optional(),
3231
3233
  name: z.string(),
3232
3234
  schema: z.any().optional(),
3233
- strict: z.boolean().optional(),
3235
+ strict: z.nullable(z.boolean()).optional(),
3234
3236
  });
3235
3237
  /** @internal */
3236
3238
  export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound =
@@ -3238,7 +3240,7 @@ export type UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$Outbound
3238
3240
  description?: string | undefined;
3239
3241
  name: string;
3240
3242
  schema?: any | undefined;
3241
- strict?: boolean | undefined;
3243
+ strict?: boolean | null | undefined;
3242
3244
  };
3243
3245
 
3244
3246
  /** @internal */
@@ -3251,7 +3253,7 @@ export const UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboun
3251
3253
  description: z.string().optional(),
3252
3254
  name: z.string(),
3253
3255
  schema: z.any().optional(),
3254
- strict: z.boolean().optional(),
3256
+ strict: z.nullable(z.boolean()).optional(),
3255
3257
  });
3256
3258
 
3257
3259
  export function updateAgentResponseFormatAgentsRequestRequestBodyJsonSchemaToJSON(
@@ -5639,6 +5641,7 @@ export const UpdateAgentRequestBody$inboundSchema: z.ZodType<
5639
5641
  unknown
5640
5642
  > = z.object({
5641
5643
  key: z.string().optional(),
5644
+ display_name: z.string().optional(),
5642
5645
  project_id: z.string().optional(),
5643
5646
  role: z.string().optional(),
5644
5647
  description: z.string().optional(),
@@ -5665,6 +5668,7 @@ export const UpdateAgentRequestBody$inboundSchema: z.ZodType<
5665
5668
  variables: z.record(z.any()).optional(),
5666
5669
  }).transform((v) => {
5667
5670
  return remap$(v, {
5671
+ "display_name": "displayName",
5668
5672
  "project_id": "projectId",
5669
5673
  "system_prompt": "systemPrompt",
5670
5674
  "fallback_models": "fallbackModels",
@@ -5676,6 +5680,7 @@ export const UpdateAgentRequestBody$inboundSchema: z.ZodType<
5676
5680
  /** @internal */
5677
5681
  export type UpdateAgentRequestBody$Outbound = {
5678
5682
  key?: string | undefined;
5683
+ display_name?: string | undefined;
5679
5684
  project_id?: string | undefined;
5680
5685
  role?: string | undefined;
5681
5686
  description?: string | undefined;
@@ -5700,6 +5705,7 @@ export const UpdateAgentRequestBody$outboundSchema: z.ZodType<
5700
5705
  UpdateAgentRequestBody
5701
5706
  > = z.object({
5702
5707
  key: z.string().optional(),
5708
+ displayName: z.string().optional(),
5703
5709
  projectId: z.string().optional(),
5704
5710
  role: z.string().optional(),
5705
5711
  description: z.string().optional(),
@@ -5726,6 +5732,7 @@ export const UpdateAgentRequestBody$outboundSchema: z.ZodType<
5726
5732
  variables: z.record(z.any()).optional(),
5727
5733
  }).transform((v) => {
5728
5734
  return remap$(v, {
5735
+ displayName: "display_name",
5729
5736
  projectId: "project_id",
5730
5737
  systemPrompt: "system_prompt",
5731
5738
  fallbackModels: "fallback_models",
@@ -6231,14 +6238,14 @@ export const UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema:
6231
6238
  description: z.string().optional(),
6232
6239
  name: z.string(),
6233
6240
  schema: z.any().optional(),
6234
- strict: z.boolean().optional(),
6241
+ strict: z.nullable(z.boolean()).optional(),
6235
6242
  });
6236
6243
  /** @internal */
6237
6244
  export type UpdateAgentResponseFormatAgentsResponseJsonSchema$Outbound = {
6238
6245
  description?: string | undefined;
6239
6246
  name: string;
6240
6247
  schema?: any | undefined;
6241
- strict?: boolean | undefined;
6248
+ strict?: boolean | null | undefined;
6242
6249
  };
6243
6250
 
6244
6251
  /** @internal */
@@ -6251,7 +6258,7 @@ export const UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema:
6251
6258
  description: z.string().optional(),
6252
6259
  name: z.string(),
6253
6260
  schema: z.any().optional(),
6254
- strict: z.boolean().optional(),
6261
+ strict: z.nullable(z.boolean()).optional(),
6255
6262
  });
6256
6263
 
6257
6264
  export function updateAgentResponseFormatAgentsResponseJsonSchemaToJSON(
@@ -7129,7 +7136,7 @@ export const UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
7129
7136
  description: z.string().optional(),
7130
7137
  name: z.string(),
7131
7138
  schema: z.any().optional(),
7132
- strict: z.boolean().optional(),
7139
+ strict: z.nullable(z.boolean()).optional(),
7133
7140
  });
7134
7141
  /** @internal */
7135
7142
  export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$Outbound =
@@ -7137,7 +7144,7 @@ export type UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$
7137
7144
  description?: string | undefined;
7138
7145
  name: string;
7139
7146
  schema?: any | undefined;
7140
- strict?: boolean | undefined;
7147
+ strict?: boolean | null | undefined;
7141
7148
  };
7142
7149
 
7143
7150
  /** @internal */
@@ -7150,7 +7157,7 @@ export const UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema
7150
7157
  description: z.string().optional(),
7151
7158
  name: z.string(),
7152
7159
  schema: z.any().optional(),
7153
- strict: z.boolean().optional(),
7160
+ strict: z.nullable(z.boolean()).optional(),
7154
7161
  });
7155
7162
 
7156
7163
  export function updateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchemaToJSON(
@@ -8342,6 +8349,7 @@ export const UpdateAgentResponseBody$inboundSchema: z.ZodType<
8342
8349
  > = z.object({
8343
8350
  _id: z.string(),
8344
8351
  key: z.string(),
8352
+ display_name: z.string(),
8345
8353
  workspace_id: z.string(),
8346
8354
  project_id: z.string(),
8347
8355
  created_by_id: z.nullable(z.string()).optional(),
@@ -8369,6 +8377,7 @@ export const UpdateAgentResponseBody$inboundSchema: z.ZodType<
8369
8377
  }).transform((v) => {
8370
8378
  return remap$(v, {
8371
8379
  "_id": "id",
8380
+ "display_name": "displayName",
8372
8381
  "workspace_id": "workspaceId",
8373
8382
  "project_id": "projectId",
8374
8383
  "created_by_id": "createdById",
@@ -8384,6 +8393,7 @@ export const UpdateAgentResponseBody$inboundSchema: z.ZodType<
8384
8393
  export type UpdateAgentResponseBody$Outbound = {
8385
8394
  _id: string;
8386
8395
  key: string;
8396
+ display_name: string;
8387
8397
  workspace_id: string;
8388
8398
  project_id: string;
8389
8399
  created_by_id?: string | null | undefined;
@@ -8414,6 +8424,7 @@ export const UpdateAgentResponseBody$outboundSchema: z.ZodType<
8414
8424
  > = z.object({
8415
8425
  id: z.string(),
8416
8426
  key: z.string(),
8427
+ displayName: z.string(),
8417
8428
  workspaceId: z.string(),
8418
8429
  projectId: z.string(),
8419
8430
  createdById: z.nullable(z.string()).optional(),
@@ -8441,6 +8452,7 @@ export const UpdateAgentResponseBody$outboundSchema: z.ZodType<
8441
8452
  }).transform((v) => {
8442
8453
  return remap$(v, {
8443
8454
  id: "_id",
8455
+ displayName: "display_name",
8444
8456
  workspaceId: "workspace_id",
8445
8457
  projectId: "project_id",
8446
8458
  createdById: "created_by_id",
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
436
436
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
437
437
  .optional(),
438
438
  updated: z.string().datetime({ offset: true }).default(
439
- "2025-11-17T17:33:31.486Z",
439
+ "2025-11-18T00:47:21.633Z",
440
440
  ).transform(v => new Date(v)),
441
441
  }).transform((v) => {
442
442
  return remap$(v, {
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
473
473
  isActive: z.boolean(),
474
474
  consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
475
475
  created: z.date().transform(v => v.toISOString()).optional(),
476
- updated: z.date().default(() => new Date("2025-11-17T17:33:31.486Z"))
476
+ updated: z.date().default(() => new Date("2025-11-18T00:47:21.633Z"))
477
477
  .transform(v => v.toISOString()),
478
478
  }).transform((v) => {
479
479
  return remap$(v, {
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
214
214
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
215
215
  .optional(),
216
216
  updated: z.string().datetime({ offset: true }).default(
217
- "2025-11-17T17:33:31.093Z",
217
+ "2025-11-18T00:47:21.290Z",
218
218
  ).transform(v => new Date(v)),
219
219
  }).transform((v) => {
220
220
  return remap$(v, {
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
251
251
  tags: z.array(z.string()).optional(),
252
252
  metadata: z.record(z.any()).optional(),
253
253
  created: z.date().transform(v => v.toISOString()).optional(),
254
- updated: z.date().default(() => new Date("2025-11-17T17:33:31.093Z"))
254
+ updated: z.date().default(() => new Date("2025-11-18T00:47:21.290Z"))
255
255
  .transform(v => v.toISOString()),
256
256
  }).transform((v) => {
257
257
  return remap$(v, {
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
4893
4893
  .default("orq"),
4894
4894
  reviewed_by_id: z.string(),
4895
4895
  reviewed_at: z.string().datetime({ offset: true }).default(
4896
- "2025-11-17T17:33:44.559Z",
4896
+ "2025-11-18T00:47:33.967Z",
4897
4897
  ).transform(v => new Date(v)),
4898
4898
  type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
4899
4899
  values: z.array(z.string()),
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
4930
4930
  source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
4931
4931
  .default("orq"),
4932
4932
  reviewedById: z.string(),
4933
- reviewedAt: z.date().default(() => new Date("2025-11-17T17:33:44.559Z"))
4933
+ reviewedAt: z.date().default(() => new Date("2025-11-18T00:47:33.967Z"))
4934
4934
  .transform(v => v.toISOString()),
4935
4935
  type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
4936
4936
  values: z.array(z.string()),
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
5003
5003
  source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
5004
5004
  reviewed_by_id: z.string(),
5005
5005
  reviewed_at: z.string().datetime({ offset: true }).default(
5006
- "2025-11-17T17:33:44.558Z",
5006
+ "2025-11-18T00:47:33.967Z",
5007
5007
  ).transform(v => new Date(v)),
5008
5008
  type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
5009
5009
  value: z.number(),
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
5041
5041
  "orq",
5042
5042
  ),
5043
5043
  reviewedById: z.string(),
5044
- reviewedAt: z.date().default(() => new Date("2025-11-17T17:33:44.558Z"))
5044
+ reviewedAt: z.date().default(() => new Date("2025-11-18T00:47:33.967Z"))
5045
5045
  .transform(v => v.toISOString()),
5046
5046
  type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
5047
5047
  value: z.number(),
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
5112
5112
  source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
5113
5113
  reviewed_by_id: z.string(),
5114
5114
  reviewed_at: z.string().datetime({ offset: true }).default(
5115
- "2025-11-17T17:33:44.558Z",
5115
+ "2025-11-18T00:47:33.966Z",
5116
5116
  ).transform(v => new Date(v)),
5117
5117
  type: UpdateDatapointEvaluationsType$inboundSchema,
5118
5118
  value: z.string(),
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
5147
5147
  humanReviewId: z.string(),
5148
5148
  source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
5149
5149
  reviewedById: z.string(),
5150
- reviewedAt: z.date().default(() => new Date("2025-11-17T17:33:44.558Z"))
5150
+ reviewedAt: z.date().default(() => new Date("2025-11-18T00:47:33.966Z"))
5151
5151
  .transform(v => v.toISOString()),
5152
5152
  type: UpdateDatapointEvaluationsType$outboundSchema,
5153
5153
  value: z.string(),
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
5262
5262
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
5263
5263
  .optional(),
5264
5264
  updated: z.string().datetime({ offset: true }).default(
5265
- "2025-11-17T17:33:31.093Z",
5265
+ "2025-11-18T00:47:21.290Z",
5266
5266
  ).transform(v => new Date(v)),
5267
5267
  }).transform((v) => {
5268
5268
  return remap$(v, {
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
5340
5340
  createdById: z.string().optional(),
5341
5341
  updatedById: z.string().optional(),
5342
5342
  created: z.date().transform(v => v.toISOString()).optional(),
5343
- updated: z.date().default(() => new Date("2025-11-17T17:33:31.093Z"))
5343
+ updated: z.date().default(() => new Date("2025-11-18T00:47:21.290Z"))
5344
5344
  .transform(v => v.toISOString()),
5345
5345
  }).transform((v) => {
5346
5346
  return remap$(v, {
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
256
256
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
257
257
  .optional(),
258
258
  updated: z.string().datetime({ offset: true }).default(
259
- "2025-11-17T17:33:31.093Z",
259
+ "2025-11-18T00:47:21.290Z",
260
260
  ).transform(v => new Date(v)),
261
261
  }).transform((v) => {
262
262
  return remap$(v, {
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
295
295
  createdById: z.string().optional(),
296
296
  updatedById: z.string().optional(),
297
297
  created: z.date().transform(v => v.toISOString()).optional(),
298
- updated: z.date().default(() => new Date("2025-11-17T17:33:31.093Z"))
298
+ updated: z.date().default(() => new Date("2025-11-18T00:47:21.290Z"))
299
299
  .transform(v => v.toISOString()),
300
300
  }).transform((v) => {
301
301
  return remap$(v, {
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
202
202
  z.ZodTypeDef,
203
203
  unknown
204
204
  > = z.object({
205
- _id: z.string().default("01KA9E2DKD4ENQZE5YW8E0407Y"),
205
+ _id: z.string().default("01KAA6WRTQ8739D363Z45PZ5DS"),
206
206
  display_name: z.string(),
207
207
  description: z.string().optional(),
208
208
  status: UpdateDatasourceStatus$inboundSchema,
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
245
245
  z.ZodTypeDef,
246
246
  UpdateDatasourceResponseBody
247
247
  > = z.object({
248
- id: z.string().default("01KA9E2DKD4ENQZE5YW8E0407Y"),
248
+ id: z.string().default("01KAA6WRTQ8739D363Z45PZ5DS"),
249
249
  displayName: z.string(),
250
250
  description: z.string().optional(),
251
251
  status: UpdateDatasourceStatus$outboundSchema,