@agentforge/tools 0.16.34 → 0.16.35

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.
package/dist/index.d.cts CHANGED
@@ -23,7 +23,7 @@ declare const httpRequestSchema: z.ZodObject<{
23
23
  url: z.ZodString;
24
24
  method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
25
25
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
26
- body: z.ZodOptional<z.ZodAny>;
26
+ body: z.ZodOptional<z.ZodUnknown>;
27
27
  timeout: z.ZodDefault<z.ZodNumber>;
28
28
  params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
29
29
  }, "strip", z.ZodTypeAny, {
@@ -32,13 +32,13 @@ declare const httpRequestSchema: z.ZodObject<{
32
32
  timeout: number;
33
33
  params?: Record<string, string> | undefined;
34
34
  headers?: Record<string, string> | undefined;
35
- body?: any;
35
+ body?: unknown;
36
36
  }, {
37
37
  url: string;
38
38
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
39
39
  params?: Record<string, string> | undefined;
40
40
  headers?: Record<string, string> | undefined;
41
- body?: any;
41
+ body?: unknown;
42
42
  timeout?: number | undefined;
43
43
  }>;
44
44
  /**
@@ -48,7 +48,7 @@ interface HttpResponse {
48
48
  status: number;
49
49
  statusText: string;
50
50
  headers: Record<string, string>;
51
- data: any;
51
+ data: unknown;
52
52
  url: string;
53
53
  method: string;
54
54
  }
@@ -73,16 +73,16 @@ declare const httpGetSchema: z.ZodObject<{
73
73
  */
74
74
  declare const httpPostSchema: z.ZodObject<{
75
75
  url: z.ZodString;
76
- body: z.ZodAny;
76
+ body: z.ZodUnknown;
77
77
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  url: string;
80
80
  headers?: Record<string, string> | undefined;
81
- body?: any;
81
+ body?: unknown;
82
82
  }, {
83
83
  url: string;
84
84
  headers?: Record<string, string> | undefined;
85
- body?: any;
85
+ body?: unknown;
86
86
  }>;
87
87
  /**
88
88
  * HTTP tools configuration
@@ -97,7 +97,7 @@ declare const httpClient: _agentforge_core.Tool<{
97
97
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
98
98
  params?: Record<string, string> | undefined;
99
99
  headers?: Record<string, string> | undefined;
100
- body?: any;
100
+ body?: unknown;
101
101
  timeout?: number | undefined;
102
102
  }, HttpResponse>;
103
103
  declare const httpGet: _agentforge_core.Tool<{
@@ -108,14 +108,14 @@ declare const httpGet: _agentforge_core.Tool<{
108
108
  declare const httpPost: _agentforge_core.Tool<{
109
109
  url: string;
110
110
  headers?: Record<string, string> | undefined;
111
- body?: any;
111
+ body?: unknown;
112
112
  }, any>;
113
113
  declare const httpTools: (_agentforge_core.Tool<{
114
114
  url: string;
115
115
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
116
116
  params?: Record<string, string> | undefined;
117
117
  headers?: Record<string, string> | undefined;
118
- body?: any;
118
+ body?: unknown;
119
119
  timeout?: number | undefined;
120
120
  }, HttpResponse> | _agentforge_core.Tool<{
121
121
  url: string;
@@ -124,7 +124,7 @@ declare const httpTools: (_agentforge_core.Tool<{
124
124
  }, any> | _agentforge_core.Tool<{
125
125
  url: string;
126
126
  headers?: Record<string, string> | undefined;
127
- body?: any;
127
+ body?: unknown;
128
128
  }, any>)[];
129
129
  /**
130
130
  * Create HTTP tools with custom configuration
@@ -145,7 +145,7 @@ declare function createHttpTools(config?: HttpToolsConfig): (_agentforge_core.To
145
145
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
146
146
  params?: Record<string, string> | undefined;
147
147
  headers?: Record<string, string> | undefined;
148
- body?: any;
148
+ body?: unknown;
149
149
  timeout?: number | undefined;
150
150
  }, HttpResponse> | _agentforge_core.Tool<{
151
151
  url: string;
@@ -154,7 +154,7 @@ declare function createHttpTools(config?: HttpToolsConfig): (_agentforge_core.To
154
154
  }, any> | _agentforge_core.Tool<{
155
155
  url: string;
156
156
  headers?: Record<string, string> | undefined;
157
- body?: any;
157
+ body?: unknown;
158
158
  }, any>)[];
159
159
 
160
160
  /**
@@ -1897,15 +1897,15 @@ declare const jsonParserSchema: z.ZodObject<{
1897
1897
  * JSON stringify schema
1898
1898
  */
1899
1899
  declare const jsonStringifySchema: z.ZodObject<{
1900
- data: z.ZodAny;
1900
+ data: z.ZodUnknown;
1901
1901
  pretty: z.ZodDefault<z.ZodBoolean>;
1902
1902
  indent: z.ZodDefault<z.ZodNumber>;
1903
1903
  }, "strip", z.ZodTypeAny, {
1904
1904
  pretty: boolean;
1905
1905
  indent: number;
1906
- data?: any;
1906
+ data?: unknown;
1907
1907
  }, {
1908
- data?: any;
1908
+ data?: unknown;
1909
1909
  pretty?: boolean | undefined;
1910
1910
  indent?: number | undefined;
1911
1911
  }>;
@@ -1913,14 +1913,14 @@ declare const jsonStringifySchema: z.ZodObject<{
1913
1913
  * JSON query schema
1914
1914
  */
1915
1915
  declare const jsonQuerySchema: z.ZodObject<{
1916
- data: z.ZodAny;
1916
+ data: z.ZodUnknown;
1917
1917
  path: z.ZodString;
1918
1918
  }, "strip", z.ZodTypeAny, {
1919
1919
  path: string;
1920
- data?: any;
1920
+ data?: unknown;
1921
1921
  }, {
1922
1922
  path: string;
1923
- data?: any;
1923
+ data?: unknown;
1924
1924
  }>;
1925
1925
  /**
1926
1926
  * JSON validator schema
@@ -1936,13 +1936,13 @@ declare const jsonValidatorSchema: z.ZodObject<{
1936
1936
  * JSON merge schema
1937
1937
  */
1938
1938
  declare const jsonMergeSchema: z.ZodObject<{
1939
- objects: z.ZodArray<z.ZodAny, "many">;
1939
+ objects: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
1940
1940
  deep: z.ZodDefault<z.ZodBoolean>;
1941
1941
  }, "strip", z.ZodTypeAny, {
1942
- objects: any[];
1942
+ objects: Record<string, unknown>[];
1943
1943
  deep: boolean;
1944
1944
  }, {
1945
- objects: any[];
1945
+ objects: Record<string, unknown>[];
1946
1946
  deep?: boolean | undefined;
1947
1947
  }>;
1948
1948
  /**
@@ -1978,7 +1978,7 @@ declare function createJsonParserTool(): _agentforge_core.Tool<{
1978
1978
  * Create JSON stringify tool
1979
1979
  */
1980
1980
  declare function createJsonStringifyTool(defaultIndent?: number, defaultPretty?: boolean): _agentforge_core.Tool<{
1981
- data?: any;
1981
+ data?: unknown;
1982
1982
  pretty?: boolean | undefined;
1983
1983
  indent?: number | undefined;
1984
1984
  }, {
@@ -1998,11 +1998,11 @@ declare function createJsonStringifyTool(defaultIndent?: number, defaultPretty?:
1998
1998
  */
1999
1999
  declare function createJsonQueryTool(): _agentforge_core.Tool<{
2000
2000
  path: string;
2001
- data?: any;
2001
+ data?: unknown;
2002
2002
  }, {
2003
2003
  success: boolean;
2004
2004
  data?: {
2005
- value: any;
2005
+ value: unknown;
2006
2006
  type: string;
2007
2007
  } | undefined;
2008
2008
  error?: string;
@@ -2028,13 +2028,14 @@ declare function createJsonValidatorTool(): _agentforge_core.Tool<{
2028
2028
  /**
2029
2029
  * JSON Merge Tool
2030
2030
  */
2031
+ type MergeObject = Record<string, unknown>;
2031
2032
  /**
2032
2033
  * Create JSON merge tool
2033
2034
  */
2034
2035
  declare function createJsonMergeTool(): _agentforge_core.Tool<{
2035
- objects: any[];
2036
+ objects: Record<string, unknown>[];
2036
2037
  deep?: boolean | undefined;
2037
- }, any>;
2038
+ }, MergeObject>;
2038
2039
 
2039
2040
  /**
2040
2041
  * Default JSON parser tool instance
@@ -2054,7 +2055,7 @@ declare const jsonParser: _agentforge_core.Tool<{
2054
2055
  * Default JSON stringify tool instance
2055
2056
  */
2056
2057
  declare const jsonStringify: _agentforge_core.Tool<{
2057
- data?: any;
2058
+ data?: unknown;
2058
2059
  pretty?: boolean | undefined;
2059
2060
  indent?: number | undefined;
2060
2061
  }, {
@@ -2070,11 +2071,11 @@ declare const jsonStringify: _agentforge_core.Tool<{
2070
2071
  */
2071
2072
  declare const jsonQuery: _agentforge_core.Tool<{
2072
2073
  path: string;
2073
- data?: any;
2074
+ data?: unknown;
2074
2075
  }, {
2075
2076
  success: boolean;
2076
2077
  data?: {
2077
- value: any;
2078
+ value: unknown;
2078
2079
  type: string;
2079
2080
  } | undefined;
2080
2081
  error?: string;
@@ -2096,9 +2097,11 @@ declare const jsonValidator: _agentforge_core.Tool<{
2096
2097
  * Default JSON merge tool instance
2097
2098
  */
2098
2099
  declare const jsonMerge: _agentforge_core.Tool<{
2099
- objects: any[];
2100
+ objects: Record<string, unknown>[];
2100
2101
  deep?: boolean | undefined;
2101
- }, any>;
2102
+ }, {
2103
+ [x: string]: unknown;
2104
+ }>;
2102
2105
  /**
2103
2106
  * All JSON tools
2104
2107
  */
@@ -2113,7 +2116,7 @@ declare const jsonTools: (_agentforge_core.Tool<{
2113
2116
  } | undefined;
2114
2117
  error?: string;
2115
2118
  }> | _agentforge_core.Tool<{
2116
- data?: any;
2119
+ data?: unknown;
2117
2120
  pretty?: boolean | undefined;
2118
2121
  indent?: number | undefined;
2119
2122
  }, {
@@ -2125,11 +2128,11 @@ declare const jsonTools: (_agentforge_core.Tool<{
2125
2128
  error?: string;
2126
2129
  }> | _agentforge_core.Tool<{
2127
2130
  path: string;
2128
- data?: any;
2131
+ data?: unknown;
2129
2132
  }, {
2130
2133
  success: boolean;
2131
2134
  data?: {
2132
- value: any;
2135
+ value: unknown;
2133
2136
  type: string;
2134
2137
  } | undefined;
2135
2138
  error?: string;
@@ -2143,9 +2146,11 @@ declare const jsonTools: (_agentforge_core.Tool<{
2143
2146
  } | undefined;
2144
2147
  error?: string;
2145
2148
  }> | _agentforge_core.Tool<{
2146
- objects: any[];
2149
+ objects: Record<string, unknown>[];
2147
2150
  deep?: boolean | undefined;
2148
- }, any>)[];
2151
+ }, {
2152
+ [x: string]: unknown;
2153
+ }>)[];
2149
2154
  /**
2150
2155
  * Create JSON tools with custom configuration
2151
2156
  */
@@ -2160,7 +2165,7 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2160
2165
  } | undefined;
2161
2166
  error?: string;
2162
2167
  }> | _agentforge_core.Tool<{
2163
- data?: any;
2168
+ data?: unknown;
2164
2169
  pretty?: boolean | undefined;
2165
2170
  indent?: number | undefined;
2166
2171
  }, {
@@ -2172,11 +2177,11 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2172
2177
  error?: string;
2173
2178
  }> | _agentforge_core.Tool<{
2174
2179
  path: string;
2175
- data?: any;
2180
+ data?: unknown;
2176
2181
  }, {
2177
2182
  success: boolean;
2178
2183
  data?: {
2179
- value: any;
2184
+ value: unknown;
2180
2185
  type: string;
2181
2186
  } | undefined;
2182
2187
  error?: string;
@@ -2190,9 +2195,11 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2190
2195
  } | undefined;
2191
2196
  error?: string;
2192
2197
  }> | _agentforge_core.Tool<{
2193
- objects: any[];
2198
+ objects: Record<string, unknown>[];
2194
2199
  deep?: boolean | undefined;
2195
- }, any>)[];
2200
+ }, {
2201
+ [x: string]: unknown;
2202
+ }>)[];
2196
2203
 
2197
2204
  /**
2198
2205
  * XML Tools Types
package/dist/index.d.ts CHANGED
@@ -23,7 +23,7 @@ declare const httpRequestSchema: z.ZodObject<{
23
23
  url: z.ZodString;
24
24
  method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"]>>;
25
25
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
26
- body: z.ZodOptional<z.ZodAny>;
26
+ body: z.ZodOptional<z.ZodUnknown>;
27
27
  timeout: z.ZodDefault<z.ZodNumber>;
28
28
  params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
29
29
  }, "strip", z.ZodTypeAny, {
@@ -32,13 +32,13 @@ declare const httpRequestSchema: z.ZodObject<{
32
32
  timeout: number;
33
33
  params?: Record<string, string> | undefined;
34
34
  headers?: Record<string, string> | undefined;
35
- body?: any;
35
+ body?: unknown;
36
36
  }, {
37
37
  url: string;
38
38
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
39
39
  params?: Record<string, string> | undefined;
40
40
  headers?: Record<string, string> | undefined;
41
- body?: any;
41
+ body?: unknown;
42
42
  timeout?: number | undefined;
43
43
  }>;
44
44
  /**
@@ -48,7 +48,7 @@ interface HttpResponse {
48
48
  status: number;
49
49
  statusText: string;
50
50
  headers: Record<string, string>;
51
- data: any;
51
+ data: unknown;
52
52
  url: string;
53
53
  method: string;
54
54
  }
@@ -73,16 +73,16 @@ declare const httpGetSchema: z.ZodObject<{
73
73
  */
74
74
  declare const httpPostSchema: z.ZodObject<{
75
75
  url: z.ZodString;
76
- body: z.ZodAny;
76
+ body: z.ZodUnknown;
77
77
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  url: string;
80
80
  headers?: Record<string, string> | undefined;
81
- body?: any;
81
+ body?: unknown;
82
82
  }, {
83
83
  url: string;
84
84
  headers?: Record<string, string> | undefined;
85
- body?: any;
85
+ body?: unknown;
86
86
  }>;
87
87
  /**
88
88
  * HTTP tools configuration
@@ -97,7 +97,7 @@ declare const httpClient: _agentforge_core.Tool<{
97
97
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
98
98
  params?: Record<string, string> | undefined;
99
99
  headers?: Record<string, string> | undefined;
100
- body?: any;
100
+ body?: unknown;
101
101
  timeout?: number | undefined;
102
102
  }, HttpResponse>;
103
103
  declare const httpGet: _agentforge_core.Tool<{
@@ -108,14 +108,14 @@ declare const httpGet: _agentforge_core.Tool<{
108
108
  declare const httpPost: _agentforge_core.Tool<{
109
109
  url: string;
110
110
  headers?: Record<string, string> | undefined;
111
- body?: any;
111
+ body?: unknown;
112
112
  }, any>;
113
113
  declare const httpTools: (_agentforge_core.Tool<{
114
114
  url: string;
115
115
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
116
116
  params?: Record<string, string> | undefined;
117
117
  headers?: Record<string, string> | undefined;
118
- body?: any;
118
+ body?: unknown;
119
119
  timeout?: number | undefined;
120
120
  }, HttpResponse> | _agentforge_core.Tool<{
121
121
  url: string;
@@ -124,7 +124,7 @@ declare const httpTools: (_agentforge_core.Tool<{
124
124
  }, any> | _agentforge_core.Tool<{
125
125
  url: string;
126
126
  headers?: Record<string, string> | undefined;
127
- body?: any;
127
+ body?: unknown;
128
128
  }, any>)[];
129
129
  /**
130
130
  * Create HTTP tools with custom configuration
@@ -145,7 +145,7 @@ declare function createHttpTools(config?: HttpToolsConfig): (_agentforge_core.To
145
145
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
146
146
  params?: Record<string, string> | undefined;
147
147
  headers?: Record<string, string> | undefined;
148
- body?: any;
148
+ body?: unknown;
149
149
  timeout?: number | undefined;
150
150
  }, HttpResponse> | _agentforge_core.Tool<{
151
151
  url: string;
@@ -154,7 +154,7 @@ declare function createHttpTools(config?: HttpToolsConfig): (_agentforge_core.To
154
154
  }, any> | _agentforge_core.Tool<{
155
155
  url: string;
156
156
  headers?: Record<string, string> | undefined;
157
- body?: any;
157
+ body?: unknown;
158
158
  }, any>)[];
159
159
 
160
160
  /**
@@ -1897,15 +1897,15 @@ declare const jsonParserSchema: z.ZodObject<{
1897
1897
  * JSON stringify schema
1898
1898
  */
1899
1899
  declare const jsonStringifySchema: z.ZodObject<{
1900
- data: z.ZodAny;
1900
+ data: z.ZodUnknown;
1901
1901
  pretty: z.ZodDefault<z.ZodBoolean>;
1902
1902
  indent: z.ZodDefault<z.ZodNumber>;
1903
1903
  }, "strip", z.ZodTypeAny, {
1904
1904
  pretty: boolean;
1905
1905
  indent: number;
1906
- data?: any;
1906
+ data?: unknown;
1907
1907
  }, {
1908
- data?: any;
1908
+ data?: unknown;
1909
1909
  pretty?: boolean | undefined;
1910
1910
  indent?: number | undefined;
1911
1911
  }>;
@@ -1913,14 +1913,14 @@ declare const jsonStringifySchema: z.ZodObject<{
1913
1913
  * JSON query schema
1914
1914
  */
1915
1915
  declare const jsonQuerySchema: z.ZodObject<{
1916
- data: z.ZodAny;
1916
+ data: z.ZodUnknown;
1917
1917
  path: z.ZodString;
1918
1918
  }, "strip", z.ZodTypeAny, {
1919
1919
  path: string;
1920
- data?: any;
1920
+ data?: unknown;
1921
1921
  }, {
1922
1922
  path: string;
1923
- data?: any;
1923
+ data?: unknown;
1924
1924
  }>;
1925
1925
  /**
1926
1926
  * JSON validator schema
@@ -1936,13 +1936,13 @@ declare const jsonValidatorSchema: z.ZodObject<{
1936
1936
  * JSON merge schema
1937
1937
  */
1938
1938
  declare const jsonMergeSchema: z.ZodObject<{
1939
- objects: z.ZodArray<z.ZodAny, "many">;
1939
+ objects: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
1940
1940
  deep: z.ZodDefault<z.ZodBoolean>;
1941
1941
  }, "strip", z.ZodTypeAny, {
1942
- objects: any[];
1942
+ objects: Record<string, unknown>[];
1943
1943
  deep: boolean;
1944
1944
  }, {
1945
- objects: any[];
1945
+ objects: Record<string, unknown>[];
1946
1946
  deep?: boolean | undefined;
1947
1947
  }>;
1948
1948
  /**
@@ -1978,7 +1978,7 @@ declare function createJsonParserTool(): _agentforge_core.Tool<{
1978
1978
  * Create JSON stringify tool
1979
1979
  */
1980
1980
  declare function createJsonStringifyTool(defaultIndent?: number, defaultPretty?: boolean): _agentforge_core.Tool<{
1981
- data?: any;
1981
+ data?: unknown;
1982
1982
  pretty?: boolean | undefined;
1983
1983
  indent?: number | undefined;
1984
1984
  }, {
@@ -1998,11 +1998,11 @@ declare function createJsonStringifyTool(defaultIndent?: number, defaultPretty?:
1998
1998
  */
1999
1999
  declare function createJsonQueryTool(): _agentforge_core.Tool<{
2000
2000
  path: string;
2001
- data?: any;
2001
+ data?: unknown;
2002
2002
  }, {
2003
2003
  success: boolean;
2004
2004
  data?: {
2005
- value: any;
2005
+ value: unknown;
2006
2006
  type: string;
2007
2007
  } | undefined;
2008
2008
  error?: string;
@@ -2028,13 +2028,14 @@ declare function createJsonValidatorTool(): _agentforge_core.Tool<{
2028
2028
  /**
2029
2029
  * JSON Merge Tool
2030
2030
  */
2031
+ type MergeObject = Record<string, unknown>;
2031
2032
  /**
2032
2033
  * Create JSON merge tool
2033
2034
  */
2034
2035
  declare function createJsonMergeTool(): _agentforge_core.Tool<{
2035
- objects: any[];
2036
+ objects: Record<string, unknown>[];
2036
2037
  deep?: boolean | undefined;
2037
- }, any>;
2038
+ }, MergeObject>;
2038
2039
 
2039
2040
  /**
2040
2041
  * Default JSON parser tool instance
@@ -2054,7 +2055,7 @@ declare const jsonParser: _agentforge_core.Tool<{
2054
2055
  * Default JSON stringify tool instance
2055
2056
  */
2056
2057
  declare const jsonStringify: _agentforge_core.Tool<{
2057
- data?: any;
2058
+ data?: unknown;
2058
2059
  pretty?: boolean | undefined;
2059
2060
  indent?: number | undefined;
2060
2061
  }, {
@@ -2070,11 +2071,11 @@ declare const jsonStringify: _agentforge_core.Tool<{
2070
2071
  */
2071
2072
  declare const jsonQuery: _agentforge_core.Tool<{
2072
2073
  path: string;
2073
- data?: any;
2074
+ data?: unknown;
2074
2075
  }, {
2075
2076
  success: boolean;
2076
2077
  data?: {
2077
- value: any;
2078
+ value: unknown;
2078
2079
  type: string;
2079
2080
  } | undefined;
2080
2081
  error?: string;
@@ -2096,9 +2097,11 @@ declare const jsonValidator: _agentforge_core.Tool<{
2096
2097
  * Default JSON merge tool instance
2097
2098
  */
2098
2099
  declare const jsonMerge: _agentforge_core.Tool<{
2099
- objects: any[];
2100
+ objects: Record<string, unknown>[];
2100
2101
  deep?: boolean | undefined;
2101
- }, any>;
2102
+ }, {
2103
+ [x: string]: unknown;
2104
+ }>;
2102
2105
  /**
2103
2106
  * All JSON tools
2104
2107
  */
@@ -2113,7 +2116,7 @@ declare const jsonTools: (_agentforge_core.Tool<{
2113
2116
  } | undefined;
2114
2117
  error?: string;
2115
2118
  }> | _agentforge_core.Tool<{
2116
- data?: any;
2119
+ data?: unknown;
2117
2120
  pretty?: boolean | undefined;
2118
2121
  indent?: number | undefined;
2119
2122
  }, {
@@ -2125,11 +2128,11 @@ declare const jsonTools: (_agentforge_core.Tool<{
2125
2128
  error?: string;
2126
2129
  }> | _agentforge_core.Tool<{
2127
2130
  path: string;
2128
- data?: any;
2131
+ data?: unknown;
2129
2132
  }, {
2130
2133
  success: boolean;
2131
2134
  data?: {
2132
- value: any;
2135
+ value: unknown;
2133
2136
  type: string;
2134
2137
  } | undefined;
2135
2138
  error?: string;
@@ -2143,9 +2146,11 @@ declare const jsonTools: (_agentforge_core.Tool<{
2143
2146
  } | undefined;
2144
2147
  error?: string;
2145
2148
  }> | _agentforge_core.Tool<{
2146
- objects: any[];
2149
+ objects: Record<string, unknown>[];
2147
2150
  deep?: boolean | undefined;
2148
- }, any>)[];
2151
+ }, {
2152
+ [x: string]: unknown;
2153
+ }>)[];
2149
2154
  /**
2150
2155
  * Create JSON tools with custom configuration
2151
2156
  */
@@ -2160,7 +2165,7 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2160
2165
  } | undefined;
2161
2166
  error?: string;
2162
2167
  }> | _agentforge_core.Tool<{
2163
- data?: any;
2168
+ data?: unknown;
2164
2169
  pretty?: boolean | undefined;
2165
2170
  indent?: number | undefined;
2166
2171
  }, {
@@ -2172,11 +2177,11 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2172
2177
  error?: string;
2173
2178
  }> | _agentforge_core.Tool<{
2174
2179
  path: string;
2175
- data?: any;
2180
+ data?: unknown;
2176
2181
  }, {
2177
2182
  success: boolean;
2178
2183
  data?: {
2179
- value: any;
2184
+ value: unknown;
2180
2185
  type: string;
2181
2186
  } | undefined;
2182
2187
  error?: string;
@@ -2190,9 +2195,11 @@ declare function createJsonTools(config?: JsonToolsConfig): (_agentforge_core.To
2190
2195
  } | undefined;
2191
2196
  error?: string;
2192
2197
  }> | _agentforge_core.Tool<{
2193
- objects: any[];
2198
+ objects: Record<string, unknown>[];
2194
2199
  deep?: boolean | undefined;
2195
- }, any>)[];
2200
+ }, {
2201
+ [x: string]: unknown;
2202
+ }>)[];
2196
2203
 
2197
2204
  /**
2198
2205
  * XML Tools Types