@bodhiapp/ts-client 0.1.13 → 0.1.14

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.
@@ -2097,8 +2097,6 @@ export interface components {
2097
2097
  };
2098
2098
  /** @description Request to execute a toolset */
2099
2099
  ExecuteToolsetRequest: {
2100
- /** @description Tool call ID from LLM */
2101
- tool_call_id: string;
2102
2100
  /** @description Function parameters as JSON */
2103
2101
  params: unknown;
2104
2102
  };
@@ -2812,8 +2810,6 @@ export interface components {
2812
2810
  };
2813
2811
  /** @description Response from toolset tool execution (to send back to LLM) */
2814
2812
  ToolsetExecutionResponse: {
2815
- /** @description Tool call ID this response is for */
2816
- tool_call_id: string;
2817
2813
  /** @description Successful result (JSON), if any */
2818
2814
  result?: unknown;
2819
2815
  /** @description Error message, if execution failed */
@@ -2098,8 +2098,6 @@ export interface components {
2098
2098
  };
2099
2099
  /** @description Request to execute a toolset */
2100
2100
  ExecuteToolsetRequest: {
2101
- /** @description Tool call ID from LLM */
2102
- tool_call_id: string;
2103
2101
  /** @description Function parameters as JSON */
2104
2102
  params: unknown;
2105
2103
  };
@@ -2813,8 +2811,6 @@ export interface components {
2813
2811
  };
2814
2812
  /** @description Response from toolset tool execution (to send back to LLM) */
2815
2813
  ToolsetExecutionResponse: {
2816
- /** @description Tool call ID this response is for */
2817
- tool_call_id: string;
2818
2814
  /** @description Successful result (JSON), if any */
2819
2815
  result?: unknown;
2820
2816
  /** @description Error message, if execution failed */
@@ -1174,10 +1174,6 @@ export type ErrorBody = {
1174
1174
  * Request to execute a toolset
1175
1175
  */
1176
1176
  export type ExecuteToolsetRequest = {
1177
- /**
1178
- * Tool call ID from LLM
1179
- */
1180
- tool_call_id: string;
1181
1177
  /**
1182
1178
  * Function parameters as JSON
1183
1179
  */
@@ -1878,10 +1874,6 @@ export type Toolset = {
1878
1874
  * Response from toolset tool execution (to send back to LLM)
1879
1875
  */
1880
1876
  export type ToolsetExecutionResponse = {
1881
- /**
1882
- * Tool call ID this response is for
1883
- */
1884
- tool_call_id: string;
1885
1877
  /**
1886
1878
  * Successful result (JSON), if any
1887
1879
  */
@@ -1274,10 +1274,6 @@ export type ErrorBody = {
1274
1274
  * Request to execute a toolset
1275
1275
  */
1276
1276
  export type ExecuteToolsetRequest = {
1277
- /**
1278
- * Tool call ID from LLM
1279
- */
1280
- tool_call_id: string;
1281
1277
  /**
1282
1278
  * Function parameters as JSON
1283
1279
  */
@@ -2058,10 +2054,6 @@ export type Toolset = {
2058
2054
  * Response from toolset tool execution (to send back to LLM)
2059
2055
  */
2060
2056
  export type ToolsetExecutionResponse = {
2061
- /**
2062
- * Tool call ID this response is for
2063
- */
2064
- tool_call_id: string;
2065
2057
  /**
2066
2058
  * Successful result (JSON), if any
2067
2059
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodhiapp/ts-client",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "TypeScript types for Bodhi API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",