@orq-ai/node 4.10.11 → 4.10.12

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 (111) hide show
  1. package/hooks/types.d.ts +1 -0
  2. package/hooks/types.d.ts.map +1 -1
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/sdks.d.ts.map +1 -1
  7. package/lib/sdks.js +13 -4
  8. package/lib/sdks.js.map +1 -1
  9. package/models/components/reasoningpart.js +1 -1
  10. package/models/operations/createdataset.js +1 -1
  11. package/models/operations/createdatasetitem.js +4 -4
  12. package/models/operations/createdatasource.js +1 -1
  13. package/models/operations/createeval.js +16 -16
  14. package/models/operations/createtool.js +6 -6
  15. package/models/operations/getalltools.js +6 -6
  16. package/models/operations/getevals.js +16 -16
  17. package/models/operations/getv2humanevalsets.js +2 -2
  18. package/models/operations/getv2humanevalsetsid.js +2 -2
  19. package/models/operations/listdatasetdatapoints.js +4 -4
  20. package/models/operations/listdatasets.js +1 -1
  21. package/models/operations/listdatasources.js +1 -1
  22. package/models/operations/modelcreateawsbedrock.d.ts +4 -0
  23. package/models/operations/modelcreateawsbedrock.d.ts.map +1 -1
  24. package/models/operations/modelcreateawsbedrock.js +4 -0
  25. package/models/operations/modelcreateawsbedrock.js.map +1 -1
  26. package/models/operations/modelupdateawsbedrock.d.ts +4 -0
  27. package/models/operations/modelupdateawsbedrock.d.ts.map +1 -1
  28. package/models/operations/modelupdateawsbedrock.js +4 -0
  29. package/models/operations/modelupdateawsbedrock.js.map +1 -1
  30. package/models/operations/patchv2humanevalsetsid.js +2 -2
  31. package/models/operations/postv2feedbackevaluation.js +3 -3
  32. package/models/operations/postv2humanevalsets.js +2 -2
  33. package/models/operations/retrievedatapoint.js +4 -4
  34. package/models/operations/retrievedataset.js +1 -1
  35. package/models/operations/retrievedatasource.js +1 -1
  36. package/models/operations/retrievetool.js +6 -6
  37. package/models/operations/runagent.js +1 -1
  38. package/models/operations/streamrunagent.js +1 -1
  39. package/models/operations/updatedatapoint.js +4 -4
  40. package/models/operations/updatedataset.js +1 -1
  41. package/models/operations/updatedatasource.js +1 -1
  42. package/models/operations/updateeval.js +16 -16
  43. package/models/operations/updatetool.js +7 -7
  44. package/package.json +6 -6
  45. package/packages/orq-rc/src/lib/config.ts +2 -2
  46. package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
  47. package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
  48. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
  49. package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
  50. package/packages/orq-rc/src/models/operations/createeval.ts +55 -48
  51. package/packages/orq-rc/src/models/operations/createtool.ts +26 -26
  52. package/packages/orq-rc/src/models/operations/getalltools.ts +26 -26
  53. package/packages/orq-rc/src/models/operations/getevals.ts +33 -30
  54. package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
  56. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
  57. package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
  58. package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
  59. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +3 -6
  60. package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  61. package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
  62. package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
  63. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
  64. package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
  65. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
  66. package/packages/orq-rc/src/models/operations/retrievetool.ts +26 -26
  67. package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
  68. package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
  69. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
  70. package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
  71. package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
  72. package/packages/orq-rc/src/models/operations/updateeval.ts +33 -30
  73. package/packages/orq-rc/src/models/operations/updatetool.ts +27 -27
  74. package/packages/orq-rc/src/sdk/feedback.ts +2 -2
  75. package/sdk/feedback.d.ts +1 -4
  76. package/sdk/feedback.d.ts.map +1 -1
  77. package/sdk/feedback.js +1 -4
  78. package/sdk/feedback.js.map +1 -1
  79. package/src/hooks/types.ts +1 -0
  80. package/src/lib/config.ts +3 -3
  81. package/src/lib/sdks.ts +13 -4
  82. package/src/models/components/reasoningpart.ts +1 -1
  83. package/src/models/operations/createdataset.ts +1 -1
  84. package/src/models/operations/createdatasetitem.ts +4 -4
  85. package/src/models/operations/createdatasource.ts +1 -1
  86. package/src/models/operations/createeval.ts +16 -16
  87. package/src/models/operations/createtool.ts +6 -6
  88. package/src/models/operations/getalltools.ts +6 -6
  89. package/src/models/operations/getevals.ts +16 -16
  90. package/src/models/operations/getv2humanevalsets.ts +2 -2
  91. package/src/models/operations/getv2humanevalsetsid.ts +2 -2
  92. package/src/models/operations/listdatasetdatapoints.ts +4 -4
  93. package/src/models/operations/listdatasets.ts +1 -1
  94. package/src/models/operations/listdatasources.ts +1 -1
  95. package/src/models/operations/modelcreateawsbedrock.ts +8 -0
  96. package/src/models/operations/modelupdateawsbedrock.ts +8 -0
  97. package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
  98. package/src/models/operations/postv2feedbackevaluation.ts +3 -3
  99. package/src/models/operations/postv2humanevalsets.ts +2 -2
  100. package/src/models/operations/retrievedatapoint.ts +4 -4
  101. package/src/models/operations/retrievedataset.ts +1 -1
  102. package/src/models/operations/retrievedatasource.ts +1 -1
  103. package/src/models/operations/retrievetool.ts +6 -6
  104. package/src/models/operations/runagent.ts +1 -1
  105. package/src/models/operations/streamrunagent.ts +1 -1
  106. package/src/models/operations/updatedatapoint.ts +4 -4
  107. package/src/models/operations/updatedataset.ts +1 -1
  108. package/src/models/operations/updatedatasource.ts +1 -1
  109. package/src/models/operations/updateeval.ts +16 -16
  110. package/src/models/operations/updatetool.ts +7 -7
  111. package/src/sdk/feedback.ts +1 -4
@@ -867,10 +867,13 @@ export type UpdateEvalLlm2 = {
867
867
  | null
868
868
  | undefined;
869
869
  type: UpdateEvalLLMEvalsType;
870
- repetitions?: number | undefined;
870
+ repetitions?: number | null | undefined;
871
871
  prompt: string;
872
- categories?: Array<string> | undefined;
873
- categoricalLabels?: Array<UpdateEvalLLMEvalsCategoricalLabels> | undefined;
872
+ categories?: Array<string> | null | undefined;
873
+ categoricalLabels?:
874
+ | Array<UpdateEvalLLMEvalsCategoricalLabels>
875
+ | null
876
+ | undefined;
874
877
  datasetId?: string | undefined;
875
878
  key: string;
876
879
  mode: "jury";
@@ -945,10 +948,10 @@ export type UpdateEvalLlm1 = {
945
948
  | null
946
949
  | undefined;
947
950
  type: UpdateEvalLLMType;
948
- repetitions?: number | undefined;
951
+ repetitions?: number | null | undefined;
949
952
  prompt: string;
950
- categories?: Array<string> | undefined;
951
- categoricalLabels?: Array<UpdateEvalLLMCategoricalLabels> | undefined;
953
+ categories?: Array<string> | null | undefined;
954
+ categoricalLabels?: Array<UpdateEvalLLMCategoricalLabels> | null | undefined;
952
955
  datasetId?: string | undefined;
953
956
  key: string;
954
957
  mode: "single";
@@ -1550,8 +1553,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
1550
1553
  > = z.object({
1551
1554
  _id: z.string(),
1552
1555
  description: z.string(),
1553
- created: z.string().default("2026-06-08T05:34:20.335Z"),
1554
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
1556
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
1557
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
1555
1558
  updated_by_id: z.nullable(z.string()).optional(),
1556
1559
  guardrail_config: z.nullable(
1557
1560
  z.union([
@@ -1746,8 +1749,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
1746
1749
  > = z.object({
1747
1750
  _id: z.string(),
1748
1751
  description: z.string(),
1749
- created: z.string().default("2026-06-08T05:34:20.335Z"),
1750
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
1752
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
1753
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
1751
1754
  updated_by_id: z.nullable(z.string()).optional(),
1752
1755
  guardrail_config: z.nullable(
1753
1756
  z.union([
@@ -2605,8 +2608,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
2605
2608
  > = z.object({
2606
2609
  _id: z.string(),
2607
2610
  description: z.string(),
2608
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2609
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2611
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
2612
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
2610
2613
  updated_by_id: z.nullable(z.string()).optional(),
2611
2614
  guardrail_config: z.nullable(
2612
2615
  z.union([
@@ -2824,8 +2827,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
2824
2827
  > = z.object({
2825
2828
  _id: z.string(),
2826
2829
  description: z.string(),
2827
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2828
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2830
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
2831
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
2829
2832
  updated_by_id: z.nullable(z.string()).optional(),
2830
2833
  guardrail_config: z.nullable(
2831
2834
  z.union([
@@ -2993,8 +2996,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
2993
2996
  > = z.object({
2994
2997
  _id: z.string(),
2995
2998
  description: z.string(),
2996
- created: z.string().default("2026-06-08T05:34:20.335Z"),
2997
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
2999
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
3000
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
2998
3001
  updated_by_id: z.nullable(z.string()).optional(),
2999
3002
  guardrail_config: z.nullable(
3000
3003
  z.union([
@@ -3147,8 +3150,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
3147
3150
  > = z.object({
3148
3151
  _id: z.string(),
3149
3152
  description: z.string(),
3150
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3151
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3153
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
3154
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
3152
3155
  updated_by_id: z.nullable(z.string()).optional(),
3153
3156
  guardrail_config: z.nullable(
3154
3157
  z.union([
@@ -3510,8 +3513,8 @@ export const UpdateEvalLlm2$inboundSchema: z.ZodType<
3510
3513
  > = z.object({
3511
3514
  _id: z.string(),
3512
3515
  description: z.string(),
3513
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3514
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3516
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
3517
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
3515
3518
  updated_by_id: z.nullable(z.string()).optional(),
3516
3519
  guardrail_config: z.nullable(
3517
3520
  z.union([
@@ -3527,11 +3530,11 @@ export const UpdateEvalLlm2$inboundSchema: z.ZodType<
3527
3530
  ]),
3528
3531
  ).optional(),
3529
3532
  type: UpdateEvalLLMEvalsType$inboundSchema,
3530
- repetitions: z.number().int().optional(),
3533
+ repetitions: z.nullable(z.number().int()).optional(),
3531
3534
  prompt: z.string(),
3532
- categories: z.array(z.string()).optional(),
3533
- categorical_labels: z.array(
3534
- z.lazy(() => UpdateEvalLLMEvalsCategoricalLabels$inboundSchema),
3535
+ categories: z.nullable(z.array(z.string())).optional(),
3536
+ categorical_labels: z.nullable(
3537
+ z.array(z.lazy(() => UpdateEvalLLMEvalsCategoricalLabels$inboundSchema)),
3535
3538
  ).optional(),
3536
3539
  dataset_id: z.string().optional(),
3537
3540
  key: z.string(),
@@ -3723,8 +3726,8 @@ export const UpdateEvalLlm1$inboundSchema: z.ZodType<
3723
3726
  > = z.object({
3724
3727
  _id: z.string(),
3725
3728
  description: z.string(),
3726
- created: z.string().default("2026-06-08T05:34:20.335Z"),
3727
- updated: z.string().default("2026-06-08T05:34:20.335Z"),
3729
+ created: z.string().default("2026-06-08T13:07:18.574Z"),
3730
+ updated: z.string().default("2026-06-08T13:07:18.574Z"),
3728
3731
  updated_by_id: z.nullable(z.string()).optional(),
3729
3732
  guardrail_config: z.nullable(
3730
3733
  z.union([
@@ -3740,11 +3743,11 @@ export const UpdateEvalLlm1$inboundSchema: z.ZodType<
3740
3743
  ]),
3741
3744
  ).optional(),
3742
3745
  type: UpdateEvalLLMType$inboundSchema,
3743
- repetitions: z.number().int().optional(),
3746
+ repetitions: z.nullable(z.number().int()).optional(),
3744
3747
  prompt: z.string(),
3745
- categories: z.array(z.string()).optional(),
3746
- categorical_labels: z.array(
3747
- z.lazy(() => UpdateEvalLLMCategoricalLabels$inboundSchema),
3748
+ categories: z.nullable(z.array(z.string())).optional(),
3749
+ categorical_labels: z.nullable(
3750
+ z.array(z.lazy(() => UpdateEvalLLMCategoricalLabels$inboundSchema)),
3748
3751
  ).optional(),
3749
3752
  dataset_id: z.string().optional(),
3750
3753
  key: z.string(),
@@ -736,11 +736,11 @@ export type UpdateToolResponseBodyCodeExecutionTool = {
736
736
  /**
737
737
  * The id of the user that created the tool
738
738
  */
739
- createdById?: string | undefined;
739
+ createdById?: string | null | undefined;
740
740
  /**
741
741
  * The id of the user that last updated the tool
742
742
  */
743
- updatedById?: string | undefined;
743
+ updatedById?: string | null | undefined;
744
744
  projectId: string;
745
745
  workspaceId: string;
746
746
  created: string;
@@ -860,11 +860,11 @@ export type UpdateToolResponseBodyMCPTool = {
860
860
  /**
861
861
  * The id of the user that created the tool
862
862
  */
863
- createdById?: string | undefined;
863
+ createdById?: string | null | undefined;
864
864
  /**
865
865
  * The id of the user that last updated the tool
866
866
  */
867
- updatedById?: string | undefined;
867
+ updatedById?: string | null | undefined;
868
868
  projectId: string;
869
869
  workspaceId: string;
870
870
  created: string;
@@ -1019,11 +1019,11 @@ export type UpdateToolResponseBodyHTTPTool = {
1019
1019
  /**
1020
1020
  * The id of the user that created the tool
1021
1021
  */
1022
- createdById?: string | undefined;
1022
+ createdById?: string | null | undefined;
1023
1023
  /**
1024
1024
  * The id of the user that last updated the tool
1025
1025
  */
1026
- updatedById?: string | undefined;
1026
+ updatedById?: string | null | undefined;
1027
1027
  projectId: string;
1028
1028
  workspaceId: string;
1029
1029
  created: string;
@@ -1120,11 +1120,11 @@ export type UpdateToolResponseBodyJSONSchemaTool = {
1120
1120
  /**
1121
1121
  * The id of the user that created the tool
1122
1122
  */
1123
- createdById?: string | undefined;
1123
+ createdById?: string | null | undefined;
1124
1124
  /**
1125
1125
  * The id of the user that last updated the tool
1126
1126
  */
1127
- updatedById?: string | undefined;
1127
+ updatedById?: string | null | undefined;
1128
1128
  projectId: string;
1129
1129
  workspaceId: string;
1130
1130
  created: string;
@@ -1233,11 +1233,11 @@ export type UpdateToolResponseBodyFunctionTool = {
1233
1233
  /**
1234
1234
  * The id of the user that created the tool
1235
1235
  */
1236
- createdById?: string | undefined;
1236
+ createdById?: string | null | undefined;
1237
1237
  /**
1238
1238
  * The id of the user that last updated the tool
1239
1239
  */
1240
- updatedById?: string | undefined;
1240
+ updatedById?: string | null | undefined;
1241
1241
  projectId: string;
1242
1242
  workspaceId: string;
1243
1243
  created: string;
@@ -1472,7 +1472,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
1472
1472
  z.ZodTypeDef,
1473
1473
  RequestBodyTools
1474
1474
  > = z.object({
1475
- id: z.string().default("01KTJVKQNKGA9HYZKGXCFK2M1S"),
1475
+ id: z.string().default("01KTKNH3KFKX7AK3WV20RRP38T"),
1476
1476
  name: z.string(),
1477
1477
  description: z.string().optional(),
1478
1478
  schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
@@ -2193,13 +2193,13 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
2193
2193
  z.ZodTypeDef,
2194
2194
  unknown
2195
2195
  > = z.object({
2196
- _id: z.string().default("tool_01KTJVKQNCCVN62XTWPDMH7JBX"),
2196
+ _id: z.string().default("tool_01KTKNH3K8JFHFTR5BCNDZ0VGJ"),
2197
2197
  path: z.string(),
2198
2198
  key: z.string(),
2199
2199
  display_name: z.string().optional(),
2200
2200
  description: z.string(),
2201
- created_by_id: z.string().optional(),
2202
- updated_by_id: z.string().optional(),
2201
+ created_by_id: z.nullable(z.string()).optional(),
2202
+ updated_by_id: z.nullable(z.string()).optional(),
2203
2203
  project_id: z.string(),
2204
2204
  workspace_id: z.string(),
2205
2205
  created: z.string(),
@@ -2296,7 +2296,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
2296
2296
  z.ZodTypeDef,
2297
2297
  unknown
2298
2298
  > = z.object({
2299
- id: z.string().default("01KTJVKQNB19P9RGJE38GNKSAD"),
2299
+ id: z.string().default("01KTKNH3K7NCSFM9850QJ3ANWP"),
2300
2300
  name: z.string(),
2301
2301
  description: z.string().optional(),
2302
2302
  schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
@@ -2354,13 +2354,13 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
2354
2354
  z.ZodTypeDef,
2355
2355
  unknown
2356
2356
  > = z.object({
2357
- _id: z.string().default("tool_01KTJVKQNAH61D9VWP412YST5T"),
2357
+ _id: z.string().default("tool_01KTKNH3K61609S0WBV1PP0Q30"),
2358
2358
  path: z.string(),
2359
2359
  key: z.string(),
2360
2360
  display_name: z.string().optional(),
2361
2361
  description: z.string(),
2362
- created_by_id: z.string().optional(),
2363
- updated_by_id: z.string().optional(),
2362
+ created_by_id: z.nullable(z.string()).optional(),
2363
+ updated_by_id: z.nullable(z.string()).optional(),
2364
2364
  project_id: z.string(),
2365
2365
  workspace_id: z.string(),
2366
2366
  created: z.string(),
@@ -2543,13 +2543,13 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
2543
2543
  z.ZodTypeDef,
2544
2544
  unknown
2545
2545
  > = z.object({
2546
- _id: z.string().default("tool_01KTJVKQN7TX0644EGWA6JR12K"),
2546
+ _id: z.string().default("tool_01KTKNH3K3ZMVWEFC2FAA2678F"),
2547
2547
  path: z.string(),
2548
2548
  key: z.string(),
2549
2549
  display_name: z.string().optional(),
2550
2550
  description: z.string(),
2551
- created_by_id: z.string().optional(),
2552
- updated_by_id: z.string().optional(),
2551
+ created_by_id: z.nullable(z.string()).optional(),
2552
+ updated_by_id: z.nullable(z.string()).optional(),
2553
2553
  project_id: z.string(),
2554
2554
  workspace_id: z.string(),
2555
2555
  created: z.string(),
@@ -2638,13 +2638,13 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2638
2638
  z.ZodTypeDef,
2639
2639
  unknown
2640
2640
  > = z.object({
2641
- _id: z.string().default("tool_01KTJVKQN5VG6YCDBT6G9XJGAS"),
2641
+ _id: z.string().default("tool_01KTKNH3K1R2G6CZCRRPSWGNBD"),
2642
2642
  path: z.string(),
2643
2643
  key: z.string(),
2644
2644
  display_name: z.string().optional(),
2645
2645
  description: z.string(),
2646
- created_by_id: z.string().optional(),
2647
- updated_by_id: z.string().optional(),
2646
+ created_by_id: z.nullable(z.string()).optional(),
2647
+ updated_by_id: z.nullable(z.string()).optional(),
2648
2648
  project_id: z.string(),
2649
2649
  workspace_id: z.string(),
2650
2650
  created: z.string(),
@@ -2741,13 +2741,13 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
2741
2741
  z.ZodTypeDef,
2742
2742
  unknown
2743
2743
  > = z.object({
2744
- _id: z.string().default("tool_01KTJVKQN4P45W4K3S226TZM0S"),
2744
+ _id: z.string().default("tool_01KTKNH3K0R0TY6AW2FBX8KMAD"),
2745
2745
  path: z.string(),
2746
2746
  key: z.string(),
2747
2747
  display_name: z.string().optional(),
2748
2748
  description: z.string(),
2749
- created_by_id: z.string().optional(),
2750
- updated_by_id: z.string().optional(),
2749
+ created_by_id: z.nullable(z.string()).optional(),
2750
+ updated_by_id: z.nullable(z.string()).optional(),
2751
2751
  project_id: z.string(),
2752
2752
  workspace_id: z.string(),
2753
2753
  created: z.string(),
@@ -45,10 +45,10 @@ export class Feedback extends ClientSDK {
45
45
  }
46
46
 
47
47
  /**
48
- * Create image edit
48
+ * Create a new project
49
49
  *
50
50
  * @remarks
51
- * Edit an Image
51
+ * Creates a project in the current workspace. Projects are workspace-level containers for resources such as skills, deployments, datasets, rules, and related team access.
52
52
  */
53
53
  async create(
54
54
  request?: operations.PostV2FeedbackRequestBody | undefined,
package/sdk/feedback.d.ts CHANGED
@@ -5,10 +5,7 @@ export declare class Feedback extends ClientSDK {
5
5
  createEvaluation(request?: operations.PostV2FeedbackEvaluationRequestBody | undefined, options?: RequestOptions): Promise<void>;
6
6
  remove(request?: operations.PostV2FeedbackRemoveRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackRemoveResponseBody>;
7
7
  /**
8
- * Create response
9
- *
10
- * @remarks
11
- * Initiates an agent conversation and returns a complete response. This endpoint manages the full lifecycle of an agent interaction, from receiving the initial message through all processing steps until completion. Supports synchronous execution (waits for completion) and asynchronous execution (returns immediately with task ID). The response includes all messages exchanged, tool calls made, and token usage statistics. Ideal for request-response patterns where you need the complete interaction result.
8
+ * Create moderation
12
9
  */
13
10
  create(request?: operations.PostV2FeedbackRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackResponseBody>;
14
11
  }
@@ -1 +1 @@
1
- {"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,yCAAyC,GAAG,SAAS,EAC1E,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,mCAAmC,GAAG,SAAS,EACpE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,+BAA+B,GAAG,SAAS,EAChE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAQvD;;;;;OAKG;IACG,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,yBAAyB,GAAG,SAAS,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,0BAA0B,CAAC;CAOlD"}
1
+ {"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,yCAAyC,GAAG,SAAS,EAC1E,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,mCAAmC,GAAG,SAAS,EACpE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,+BAA+B,GAAG,SAAS,EAChE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAQvD;;OAEG;IACG,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,yBAAyB,GAAG,SAAS,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,0BAA0B,CAAC;CAOlD"}
package/sdk/feedback.js CHANGED
@@ -21,10 +21,7 @@ class Feedback extends sdks_js_1.ClientSDK {
21
21
  return (0, fp_js_1.unwrapAsync)((0, feedbackRemove_js_1.feedbackRemove)(this, request, options));
22
22
  }
23
23
  /**
24
- * Create response
25
- *
26
- * @remarks
27
- * Initiates an agent conversation and returns a complete response. This endpoint manages the full lifecycle of an agent interaction, from receiving the initial message through all processing steps until completion. Supports synchronous execution (waits for completion) and asynchronous execution (returns immediately with task ID). The response includes all messages exchanged, tool calls made, and token usage statistics. Ideal for request-response patterns where you need the complete interaction result.
24
+ * Create moderation
28
25
  */
29
26
  async create(request, options) {
30
27
  return (0, fp_js_1.unwrapAsync)((0, feedbackCreate_js_1.feedbackCreate)(this, request, options));
@@ -1 +1 @@
1
- {"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAlDD,4BAkDC"}
1
+ {"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AA/CD,4BA+CC"}
@@ -15,6 +15,7 @@ export type HookContext = {
15
15
  retryConfig: RetryConfig;
16
16
  resolvedSecurity: SecurityState | null;
17
17
  options: SDKOptions;
18
+ timeoutMs?: number;
18
19
  };
19
20
 
20
21
  export type Awaitable<T> = T | Promise<T>;
package/src/lib/config.ts CHANGED
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
58
58
  export const SDK_METADATA = {
59
59
  language: "typescript",
60
60
  openapiDocVersion: "2.0",
61
- sdkVersion: "4.10.11",
62
- genVersion: "2.893.0",
63
- userAgent: "speakeasy-sdk/typescript 4.10.11 2.893.0 2.0 @orq-ai/node",
61
+ sdkVersion: "4.10.12",
62
+ genVersion: "2.897.1",
63
+ userAgent: "speakeasy-sdk/typescript 4.10.12 2.897.1 2.0 @orq-ai/node",
64
64
  } as const;
package/src/lib/sdks.ts CHANGED
@@ -24,6 +24,7 @@ import {
24
24
  matchContentType,
25
25
  } from "./http.js";
26
26
  import { Logger } from "./logger.js";
27
+ import { combineSignals } from "./primitives.js";
27
28
  import { retry, RetryConfig } from "./retries.js";
28
29
  import { SecurityState } from "./security.js";
29
30
 
@@ -198,9 +199,8 @@ export class ClientSDK {
198
199
  ...options?.fetchOptions,
199
200
  ...options,
200
201
  };
201
- if (!fetchOptions?.signal && conf.timeoutMs && conf.timeoutMs > 0) {
202
- const timeoutSignal = AbortSignal.timeout(conf.timeoutMs);
203
- fetchOptions.signal = timeoutSignal;
202
+ if (!fetchOptions?.signal && conf.timeoutMs != null && conf.timeoutMs > 0) {
203
+ context.timeoutMs = conf.timeoutMs;
204
204
  }
205
205
 
206
206
  if (conf.body instanceof ReadableStream) {
@@ -247,10 +247,19 @@ export class ClientSDK {
247
247
  >
248
248
  > {
249
249
  const { context, isErrorStatusCode } = options;
250
+ const timeoutMs = context.timeoutMs;
250
251
 
251
252
  return retry(
252
253
  async () => {
253
- const req = await this.#hooks.beforeRequest(context, request.clone());
254
+ const cloned = request.clone();
255
+ let attempt = cloned;
256
+ if (timeoutMs != null && timeoutMs > 0) {
257
+ const timeoutSignal = AbortSignal.timeout(timeoutMs);
258
+ const combined = combineSignals(cloned.signal, timeoutSignal)
259
+ ?? timeoutSignal;
260
+ attempt = new Request(cloned, { signal: combined });
261
+ }
262
+ const req = await this.#hooks.beforeRequest(context, attempt);
254
263
  await logRequest(this.#logger, req).catch((e) =>
255
264
  this.#logger?.log("Failed to log request:", e)
256
265
  );
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
40
40
  z.ZodTypeDef,
41
41
  unknown
42
42
  > = z.object({
43
- _id: z.string().default("reasoning_01ktkjpkw74jtkjr8rq9s4gvyk"),
43
+ _id: z.string().default("reasoning_01ktn2211gr7fev6mj8yswz837"),
44
44
  metadata: z.record(z.any()).optional(),
45
45
  kind: z.literal("reasoning"),
46
46
  reasoning: z.string(),
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
138
138
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
139
139
  .optional(),
140
140
  updated: z.string().datetime({ offset: true }).default(
141
- "2026-06-08T12:17:43.754Z",
141
+ "2026-06-09T02:05:27.696Z",
142
142
  ).transform(v => new Date(v)),
143
143
  }).transform((v) => {
144
144
  return remap$(v, {
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
2355
2355
  ),
2356
2356
  reviewed_by_id: z.string(),
2357
2357
  reviewed_at: z.string().datetime({ offset: true }).default(
2358
- "2026-06-08T12:18:14.675Z",
2358
+ "2026-06-09T02:05:51.868Z",
2359
2359
  ).transform(v => new Date(v)),
2360
2360
  type: z.literal("string_array"),
2361
2361
  values: z.array(z.string()),
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
2400
2400
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
2401
2401
  reviewed_by_id: z.string(),
2402
2402
  reviewed_at: z.string().datetime({ offset: true }).default(
2403
- "2026-06-08T12:18:14.674Z",
2403
+ "2026-06-09T02:05:51.867Z",
2404
2404
  ).transform(v => new Date(v)),
2405
2405
  type: z.literal("number"),
2406
2406
  value: z.number(),
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
2446
2446
  source: EvaluationsSource$inboundSchema.default("orq"),
2447
2447
  reviewed_by_id: z.string(),
2448
2448
  reviewed_at: z.string().datetime({ offset: true }).default(
2449
- "2026-06-08T12:18:14.674Z",
2449
+ "2026-06-09T02:05:51.866Z",
2450
2450
  ).transform(v => new Date(v)),
2451
2451
  type: z.literal("string"),
2452
2452
  value: z.string(),
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
2529
2529
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2530
2530
  .optional(),
2531
2531
  updated: z.string().datetime({ offset: true }).default(
2532
- "2026-06-08T12:17:43.754Z",
2532
+ "2026-06-09T02:05:27.696Z",
2533
2533
  ).transform(v => new Date(v)),
2534
2534
  }).transform((v) => {
2535
2535
  return remap$(v, {
@@ -409,7 +409,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
409
409
  z.ZodTypeDef,
410
410
  unknown
411
411
  > = z.object({
412
- _id: z.string().default("01KTKJPMDTKD4A4GXEV543R14Y"),
412
+ _id: z.string().default("01KTN221REYXPS8268FM4PD069"),
413
413
  display_name: z.string(),
414
414
  description: z.nullable(z.string()).optional(),
415
415
  status: CreateDatasourceStatus$inboundSchema,
@@ -2193,8 +2193,8 @@ export const Typescript$inboundSchema: z.ZodType<
2193
2193
  > = z.object({
2194
2194
  _id: z.string(),
2195
2195
  description: z.string(),
2196
- created: z.string().default("2026-06-08T12:17:45.633Z"),
2197
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
2196
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
2197
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
2198
2198
  updated_by_id: z.nullable(z.string()).optional(),
2199
2199
  guardrail_config: z.nullable(
2200
2200
  z.union([
@@ -2384,8 +2384,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
2384
2384
  .object({
2385
2385
  _id: z.string(),
2386
2386
  description: z.string(),
2387
- created: z.string().default("2026-06-08T12:17:45.633Z"),
2388
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
2387
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
2388
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
2389
2389
  updated_by_id: z.nullable(z.string()).optional(),
2390
2390
  guardrail_config: z.nullable(
2391
2391
  z.union([
@@ -3210,8 +3210,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
3210
3210
  > = z.object({
3211
3211
  _id: z.string(),
3212
3212
  description: z.string(),
3213
- created: z.string().default("2026-06-08T12:17:45.633Z"),
3214
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
3213
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
3214
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
3215
3215
  updated_by_id: z.nullable(z.string()).optional(),
3216
3216
  guardrail_config: z.nullable(
3217
3217
  z.union([
@@ -3430,8 +3430,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
3430
3430
  > = z.object({
3431
3431
  _id: z.string(),
3432
3432
  description: z.string(),
3433
- created: z.string().default("2026-06-08T12:17:45.633Z"),
3434
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
3433
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
3434
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
3435
3435
  updated_by_id: z.nullable(z.string()).optional(),
3436
3436
  guardrail_config: z.nullable(
3437
3437
  z.union([
@@ -3612,8 +3612,8 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
3612
3612
  > = z.object({
3613
3613
  _id: z.string(),
3614
3614
  description: z.string(),
3615
- created: z.string().default("2026-06-08T12:17:45.633Z"),
3616
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
3615
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
3616
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
3617
3617
  updated_by_id: z.nullable(z.string()).optional(),
3618
3618
  guardrail_config: z.nullable(
3619
3619
  z.union([
@@ -3772,8 +3772,8 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
3772
3772
  .object({
3773
3773
  _id: z.string(),
3774
3774
  description: z.string(),
3775
- created: z.string().default("2026-06-08T12:17:45.633Z"),
3776
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
3775
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
3776
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
3777
3777
  updated_by_id: z.nullable(z.string()).optional(),
3778
3778
  guardrail_config: z.nullable(
3779
3779
  z.union([
@@ -4143,8 +4143,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
4143
4143
  > = z.object({
4144
4144
  _id: z.string(),
4145
4145
  description: z.string(),
4146
- created: z.string().default("2026-06-08T12:17:45.633Z"),
4147
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
4146
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
4147
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
4148
4148
  updated_by_id: z.nullable(z.string()).optional(),
4149
4149
  guardrail_config: z.nullable(
4150
4150
  z.union([
@@ -4363,8 +4363,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
4363
4363
  > = z.object({
4364
4364
  _id: z.string(),
4365
4365
  description: z.string(),
4366
- created: z.string().default("2026-06-08T12:17:45.633Z"),
4367
- updated: z.string().default("2026-06-08T12:17:45.633Z"),
4366
+ created: z.string().default("2026-06-09T02:05:29.088Z"),
4367
+ updated: z.string().default("2026-06-09T02:05:29.088Z"),
4368
4368
  updated_by_id: z.nullable(z.string()).optional(),
4369
4369
  guardrail_config: z.nullable(
4370
4370
  z.union([
@@ -1898,7 +1898,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
1898
1898
  z.ZodTypeDef,
1899
1899
  unknown
1900
1900
  > = z.object({
1901
- _id: z.string().default("tool_01KTKJPM7ZBF5HF5P1E12KAXMM"),
1901
+ _id: z.string().default("tool_01KTN221GVJDCXW3YQV2ZBGF73"),
1902
1902
  path: z.string(),
1903
1903
  key: z.string(),
1904
1904
  display_name: z.string().optional(),
@@ -1995,7 +1995,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
1995
1995
  z.ZodTypeDef,
1996
1996
  unknown
1997
1997
  > = z.object({
1998
- id: z.string().default("01KTKJPM7YCZ101JEDHARW1E7B"),
1998
+ id: z.string().default("01KTN221GT49WN6D05YN8Y0K34"),
1999
1999
  name: z.string(),
2000
2000
  description: z.string().optional(),
2001
2001
  schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
@@ -2051,7 +2051,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
2051
2051
  z.ZodTypeDef,
2052
2052
  unknown
2053
2053
  > = z.object({
2054
- _id: z.string().default("tool_01KTKJPM7WG9B9C3CJ566120GV"),
2054
+ _id: z.string().default("tool_01KTN221GQ3PR9BZNJF8AJW9P4"),
2055
2055
  path: z.string(),
2056
2056
  key: z.string(),
2057
2057
  display_name: z.string().optional(),
@@ -2237,7 +2237,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
2237
2237
  z.ZodTypeDef,
2238
2238
  unknown
2239
2239
  > = z.object({
2240
- _id: z.string().default("tool_01KTKJPM7SGGWFAX8QBYD0JHQ5"),
2240
+ _id: z.string().default("tool_01KTN221GM053T5P0PPZXB4PMT"),
2241
2241
  path: z.string(),
2242
2242
  key: z.string(),
2243
2243
  display_name: z.string().optional(),
@@ -2330,7 +2330,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
2330
2330
  z.ZodTypeDef,
2331
2331
  unknown
2332
2332
  > = z.object({
2333
- _id: z.string().default("tool_01KTKJPM7QJNB7B8T63SRQQRZY"),
2333
+ _id: z.string().default("tool_01KTN221GHKY3D80JKTKZ86G5Z"),
2334
2334
  path: z.string(),
2335
2335
  key: z.string(),
2336
2336
  display_name: z.string().optional(),
@@ -2431,7 +2431,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
2431
2431
  z.ZodTypeDef,
2432
2432
  unknown
2433
2433
  > = z.object({
2434
- _id: z.string().default("tool_01KTKJPM7MXY8MRJPYJZRJS870"),
2434
+ _id: z.string().default("tool_01KTN221GFME7TRDXZ75DMQP7H"),
2435
2435
  path: z.string(),
2436
2436
  key: z.string(),
2437
2437
  display_name: z.string().optional(),