@isdk/ai-tool 0.2.0 → 0.2.2

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 (248) hide show
  1. package/dist/chunk-PY6NRGZE.mjs +1 -0
  2. package/dist/funcs.d.mts +1 -1
  3. package/dist/funcs.d.ts +1 -1
  4. package/dist/funcs.js +1 -1
  5. package/dist/funcs.mjs +1 -1
  6. package/dist/{index-nP9lSU6E.d.mts → index-DUEs7T8M.d.mts} +2 -2
  7. package/dist/{index-nP9lSU6E.d.ts → index-DUEs7T8M.d.ts} +2 -2
  8. package/dist/index.d.mts +5 -4
  9. package/dist/index.d.ts +5 -4
  10. package/dist/index.js +1 -1
  11. package/dist/index.mjs +1 -1
  12. package/docs/README.md +5 -3
  13. package/docs/_media/CONTRIBUTING.md +18 -0
  14. package/docs/_media/LICENSE-MIT +22 -0
  15. package/docs/classes/AbortError.md +108 -129
  16. package/docs/classes/AlreadyExistsError.md +105 -126
  17. package/docs/classes/BaseError.md +112 -125
  18. package/docs/classes/CancelableAbility.md +136 -188
  19. package/docs/classes/ClientTools.md +1005 -1107
  20. package/docs/classes/CommonError.md +115 -136
  21. package/docs/classes/ConfigFile.md +150 -163
  22. package/docs/classes/EventClient.md +1128 -1282
  23. package/docs/classes/EventServer.md +1165 -1303
  24. package/docs/classes/EventToolFunc.md +958 -1028
  25. package/docs/classes/FStringPromptTemplate.md +352 -438
  26. package/docs/classes/FewShotPromptTemplate.md +364 -464
  27. package/docs/classes/GolangPromptTemplate.md +352 -438
  28. package/docs/classes/HFEnvironment.md +53 -79
  29. package/docs/classes/HFInterpreter.md +20 -377
  30. package/docs/classes/HFTemplate.md +21 -33
  31. package/docs/classes/HfPromptTemplate.md +352 -438
  32. package/docs/classes/IntSet.md +67 -100
  33. package/docs/classes/NotFoundError.md +105 -126
  34. package/docs/classes/NotImplementationError.md +105 -126
  35. package/docs/classes/PromptExampleSelector.md +58 -70
  36. package/docs/classes/PromptTemplate.md +338 -422
  37. package/docs/classes/ReadableStreamError.md +108 -129
  38. package/docs/classes/ResClientTools.md +916 -1026
  39. package/docs/classes/ResServerTools.md +919 -1026
  40. package/docs/classes/SSEChannel.md +93 -112
  41. package/docs/classes/Semaphore.md +44 -140
  42. package/docs/classes/ServerTools.md +981 -1072
  43. package/docs/classes/TaskAbortController.md +46 -66
  44. package/docs/classes/ToolFunc.md +840 -910
  45. package/docs/enumerations/AsyncFeatureBits.md +37 -0
  46. package/docs/enumerations/AsyncFeatures.md +37 -0
  47. package/docs/enumerations/ErrorCode.md +217 -0
  48. package/docs/enumerations/XXHashAlgorithm.md +27 -0
  49. package/docs/functions/AIArgProcessor.md +27 -0
  50. package/docs/functions/AIStream.md +50 -0
  51. package/docs/functions/ChoiceArgProcessor.md +27 -0
  52. package/docs/functions/RateLimit.md +33 -0
  53. package/docs/functions/TemplateArgProcessor.md +27 -0
  54. package/docs/functions/backendEventable.md +23 -0
  55. package/docs/functions/canonicalize.md +21 -0
  56. package/docs/functions/countRegexMatches.md +33 -0
  57. package/docs/functions/createAbilityInjector.md +87 -0
  58. package/docs/functions/createCallbacksTransformer.md +49 -0
  59. package/docs/functions/createEmptyReadableStream.md +23 -0
  60. package/docs/functions/createEndWithRepetitionDetector.md +29 -0
  61. package/docs/functions/createError.md +35 -0
  62. package/docs/functions/createEventStreamTransformer.md +33 -0
  63. package/docs/functions/createHfValueFunc.md +29 -0
  64. package/docs/functions/createLRUCache.md +23 -0
  65. package/docs/functions/dateToText.md +23 -0
  66. package/docs/functions/expandEnv.md +40 -0
  67. package/docs/functions/expandObjEnv.md +54 -0
  68. package/docs/functions/extNameLevel.md +43 -0
  69. package/docs/functions/fileIsExists.md +34 -0
  70. package/docs/functions/filenameReservedRegex.md +22 -0
  71. package/docs/functions/filterValidFnScope.md +21 -0
  72. package/docs/functions/findPort.md +23 -0
  73. package/docs/functions/formatISO.md +71 -0
  74. package/docs/functions/getAllEnumKeys.md +31 -0
  75. package/docs/functions/getConfigFileNames.md +23 -0
  76. package/docs/functions/getConfigs.md +23 -0
  77. package/docs/functions/getKeysPath.md +38 -0
  78. package/docs/functions/getMultiLevelExtname.md +31 -0
  79. package/docs/functions/getPackageDir.md +39 -0
  80. package/docs/functions/getRealFilepath.md +34 -0
  81. package/docs/functions/getResponseErrorReadableStream.md +21 -0
  82. package/docs/functions/hfParse.md +24 -0
  83. package/docs/functions/hfTokenize.md +25 -0
  84. package/docs/functions/interpolateEnv.md +25 -0
  85. package/docs/functions/interpolateFString.md +27 -0
  86. package/docs/functions/interpolateGolangTemplate.md +31 -0
  87. package/docs/functions/isModelNameMatched.md +45 -0
  88. package/docs/functions/isValidFilename.md +38 -0
  89. package/docs/functions/isValidFilepath.md +27 -0
  90. package/docs/functions/isWebStream.md +21 -0
  91. package/docs/functions/jsonFilterToWhere.md +45 -0
  92. package/docs/functions/jsonToMarkdownStr.md +31 -0
  93. package/docs/functions/loadFileFromPaths.md +54 -0
  94. package/docs/functions/loadTextFromPaths.md +29 -0
  95. package/docs/functions/lrucache.md +29 -0
  96. package/docs/functions/makeToolFuncCancelable.md +23 -0
  97. package/docs/functions/matchUrlProtocol.md +48 -0
  98. package/docs/functions/memoize.md +27 -0
  99. package/docs/functions/messagesToText.md +21 -0
  100. package/docs/functions/paramsSizeToScaleStr.md +32 -0
  101. package/docs/functions/parseCommand.md +33 -0
  102. package/docs/functions/parseDateFormat.md +360 -0
  103. package/docs/functions/parseFString.md +26 -0
  104. package/docs/functions/parseISO.md +72 -0
  105. package/docs/functions/parseJsJson.md +38 -0
  106. package/docs/functions/parseObjectArgInfo.md +27 -0
  107. package/docs/functions/parseObjectArgumentInfos.md +25 -0
  108. package/docs/functions/parseObjectArguments.md +68 -0
  109. package/docs/functions/parseObjectArgumentsAsArgInfos.md +42 -0
  110. package/docs/functions/parseYaml.md +21 -0
  111. package/docs/functions/quoteStr.md +21 -0
  112. package/docs/functions/reControlCharsRegex.md +21 -0
  113. package/docs/functions/readFilenamesRecursiveSync.md +47 -0
  114. package/docs/functions/readableFromAsyncIterable.md +28 -0
  115. package/docs/functions/registerCoreTools.md +17 -0
  116. package/docs/functions/registerYamlTag.md +21 -0
  117. package/docs/functions/sanitizeFilename.md +37 -0
  118. package/docs/functions/sanitizeFilepath.md +31 -0
  119. package/docs/functions/saveConfigFile.md +25 -0
  120. package/docs/functions/scaleStrToParamsSize.md +27 -0
  121. package/docs/functions/simplifyObjectArguments.md +21 -0
  122. package/docs/functions/sortedValues.md +25 -0
  123. package/docs/functions/splitSentence.md +37 -0
  124. package/docs/functions/stringifyYaml.md +49 -0
  125. package/docs/functions/textToDate.md +23 -0
  126. package/docs/functions/throwError.md +37 -0
  127. package/docs/functions/toDate.md +76 -0
  128. package/docs/functions/toDateTime.md +21 -0
  129. package/docs/functions/trimStartOfStreamHelper.md +41 -0
  130. package/docs/functions/truncTo.md +47 -0
  131. package/docs/functions/uuid.md +23 -0
  132. package/docs/functions/uuidParse.md +21 -0
  133. package/docs/functions/uuidStringify.md +23 -0
  134. package/docs/functions/uuidValidate.md +21 -0
  135. package/docs/functions/uuidVersion.md +21 -0
  136. package/docs/functions/uuidv1.md +47 -0
  137. package/docs/functions/uuidv4.md +47 -0
  138. package/docs/functions/uuidv5.md +51 -0
  139. package/docs/functions/wait.md +21 -0
  140. package/docs/functions/xxhash.md +25 -0
  141. package/docs/functions/xxhash32.md +23 -0
  142. package/docs/functions/xxhash64.md +23 -0
  143. package/docs/functions/xxhashAsStr.md +25 -0
  144. package/docs/globals.md +236 -0
  145. package/docs/interfaces/AIChatAssistantMessageParam.md +29 -38
  146. package/docs/interfaces/AIChatContentPartImage.md +11 -16
  147. package/docs/interfaces/AIChatContentPartText.md +9 -12
  148. package/docs/interfaces/AIChatMessageParamBase.md +12 -19
  149. package/docs/interfaces/AIChatMessageToolCall.md +18 -21
  150. package/docs/interfaces/AIChatSystemMessageParam.md +16 -22
  151. package/docs/interfaces/AIChatToolMessageParam.md +19 -26
  152. package/docs/interfaces/AIChatUserMessageParam.md +32 -42
  153. package/docs/interfaces/AIChoiceConfig.md +31 -39
  154. package/docs/interfaces/AIResult.md +29 -32
  155. package/docs/interfaces/AIStreamParser.md +24 -18
  156. package/docs/interfaces/AIStreamParserOptions.md +8 -10
  157. package/docs/interfaces/BaseFunc.md +55 -75
  158. package/docs/interfaces/BaseFuncItem.md +43 -61
  159. package/docs/interfaces/CancelableAbilityOptions.md +43 -54
  160. package/docs/interfaces/ClientFuncItem.md +66 -83
  161. package/docs/interfaces/DotenvExpandOptions.md +15 -19
  162. package/docs/interfaces/DotenvExpandOutput.md +11 -14
  163. package/docs/interfaces/DotenvParseInput.md +6 -2
  164. package/docs/interfaces/DotenvParseOutput.md +6 -2
  165. package/docs/interfaces/DotenvPopulateInput.md +6 -2
  166. package/docs/interfaces/EventClientFuncParams.md +22 -33
  167. package/docs/interfaces/EventServerFuncParams.md +27 -35
  168. package/docs/interfaces/FewShotPromptTemplateOptions.md +58 -74
  169. package/docs/interfaces/FuncItem.md +53 -70
  170. package/docs/interfaces/FuncParam.md +29 -36
  171. package/docs/interfaces/FuncParams.md +6 -2
  172. package/docs/interfaces/Funcs.md +6 -2
  173. package/docs/interfaces/JsonFilter.md +6 -2
  174. package/docs/interfaces/ParseObjectArgumentOptions.md +23 -29
  175. package/docs/interfaces/PromptExampleSelectorOptions.md +13 -16
  176. package/docs/interfaces/PromptTemplateOptions.md +31 -40
  177. package/docs/interfaces/RemoteFuncItem.md +64 -82
  178. package/docs/interfaces/ResClientFuncParams.md +14 -19
  179. package/docs/interfaces/ResServerFuncParams.md +28 -36
  180. package/docs/interfaces/SanitizeFilenameOptions.md +11 -14
  181. package/docs/interfaces/ServerFuncItem.md +70 -88
  182. package/docs/interfaces/ServerFuncParams.md +15 -20
  183. package/docs/interfaces/StreamCallbacksAndOptions.md +36 -65
  184. package/docs/interfaces/TaskAbortControllers.md +6 -2
  185. package/docs/interfaces/TaskPromise.md +48 -61
  186. package/docs/interfaces/ToolFuncPackage.md +18 -32
  187. package/docs/type-aliases/AIChatContentPart.md +13 -0
  188. package/docs/type-aliases/AIChatMessageParam.md +13 -0
  189. package/docs/type-aliases/AIChatRole.md +13 -0
  190. package/docs/type-aliases/AIMessageType.md +13 -0
  191. package/docs/type-aliases/AIModelNameRule.md +13 -0
  192. package/docs/type-aliases/AIModelNameRuleFn.md +21 -0
  193. package/docs/type-aliases/AIModelNameRules.md +13 -0
  194. package/docs/type-aliases/AITextGenerationFinishReason.md +13 -0
  195. package/docs/type-aliases/ActionName.md +13 -0
  196. package/docs/type-aliases/AsyncTaskId.md +13 -0
  197. package/docs/type-aliases/EventErrorListenerFn.md +27 -0
  198. package/docs/type-aliases/EventListenerFn.md +25 -0
  199. package/docs/type-aliases/FStringPromptTemplateNode.md +16 -0
  200. package/docs/type-aliases/FuncParamType.md +13 -0
  201. package/docs/type-aliases/PromptExamples.md +17 -0
  202. package/docs/type-aliases/PromptTemplateType.md +13 -0
  203. package/docs/type-aliases/PromptType.md +13 -0
  204. package/docs/type-aliases/TFunc.md +23 -0
  205. package/docs/variables/AIChatRoles.md +13 -0
  206. package/docs/variables/AIMessageTypes.md +13 -0
  207. package/docs/variables/AITextGenerationFinishReasons.md +13 -0
  208. package/docs/variables/AbortErrorCode.md +13 -0
  209. package/docs/variables/ActionNames.md +13 -0
  210. package/docs/variables/AlreadyExistsErrorCode.md +13 -0
  211. package/docs/variables/ClientToolFuncSchema.md +87 -0
  212. package/docs/variables/DefaultAsyncSemaphoreCapacity.md +13 -0
  213. package/docs/variables/EventBusName.md +13 -0
  214. package/docs/variables/EventName.md +13 -0
  215. package/docs/variables/FilenameReservedRegex.md +16 -0
  216. package/docs/variables/HFBuiltins.md +92 -0
  217. package/docs/variables/InternalErrorCode.md +13 -0
  218. package/docs/variables/NotFoundErrorCode.md +13 -0
  219. package/docs/variables/NotImplementedErrorCode.md +13 -0
  220. package/docs/variables/PASSING_SCORE.md +13 -0
  221. package/docs/variables/PromptTemplateTypes.md +13 -0
  222. package/docs/variables/PromptTypes.md +16 -0
  223. package/docs/variables/RStreamErrCode.md +13 -0
  224. package/docs/variables/RemoteToolFuncSchema.md +87 -0
  225. package/docs/variables/ResponseRStreamErrCode.md +13 -0
  226. package/docs/variables/SSEChannelAlreadyClosedErrCode.md +13 -0
  227. package/docs/variables/ServerToolFuncSchema.md +87 -0
  228. package/docs/variables/ToolAsyncCancelableBit.md +13 -0
  229. package/docs/variables/ToolAsyncMultiTaskBit.md +13 -0
  230. package/docs/variables/ToolAsyncPriorityBit.md +13 -0
  231. package/docs/variables/ToolFuncSchema.md +125 -0
  232. package/docs/variables/WindowsReservedNameRegex.md +15 -0
  233. package/docs/variables/base32768.md +13 -0
  234. package/docs/variables/defaultTemplateFormat.md +13 -0
  235. package/docs/variables/event.md +13 -0
  236. package/docs/variables/eventClient.md +13 -0
  237. package/docs/variables/eventServer.md +13 -0
  238. package/docs/variables/lrucache.md +13 -0
  239. package/docs/variables/mimeType.md +13 -0
  240. package/docs/variables/uuidNIL.md +13 -0
  241. package/package.json +26 -27
  242. package/dist/chunk-W2LO3HZT.mjs +0 -1
  243. package/docs/.nojekyll +0 -1
  244. package/docs/enums/AsyncFeatureBits.md +0 -41
  245. package/docs/enums/AsyncFeatures.md +0 -41
  246. package/docs/enums/ErrorCode.md +0 -239
  247. package/docs/enums/XXHashAlgorithm.md +0 -30
  248. package/docs/modules.md +0 -4062
@@ -1,149 +1,30 @@
1
- [@isdk/ai-tool](../README.md) / [Exports](../modules.md) / ResServerTools
1
+ [**@isdk/ai-tool**](../README.md) **Docs**
2
+
3
+ ***
4
+
5
+ [@isdk/ai-tool](../globals.md) / ResServerTools
2
6
 
3
7
  # Class: ResServerTools
4
8
 
5
- ## Hierarchy
9
+ ## Extends
6
10
 
7
11
  - `RpcMethodsServerTool`
8
12
 
9
- **`ResServerTools`**
10
-
11
- ↳↳ [`EventServer`](EventServer.md)
12
-
13
- ## Table of contents
14
-
15
- ### Constructors
16
-
17
- - [constructor](ResServerTools.md#constructor)
18
-
19
- ### Properties
20
-
21
- - [$attributes](ResServerTools.md#$attributes)
22
- - [action](ResServerTools.md#action)
23
- - [allowExportFunc](ResServerTools.md#allowexportfunc)
24
- - [apiRoot](ResServerTools.md#apiroot)
25
- - [constructor](ResServerTools.md#constructor-1)
26
- - [defaultOptions](ResServerTools.md#defaultoptions)
27
- - [fetchOptions](ResServerTools.md#fetchoptions)
28
- - [isApi](ResServerTools.md#isapi)
29
- - [methods](ResServerTools.md#methods)
30
- - [name](ResServerTools.md#name)
31
- - [nonExported1stChar](ResServerTools.md#nonexported1stchar)
32
- - [params](ResServerTools.md#params)
33
- - [result](ResServerTools.md#result)
34
- - [scope](ResServerTools.md#scope)
35
- - [setup](ResServerTools.md#setup)
36
- - [should](ResServerTools.md#should)
37
- - [stream](ResServerTools.md#stream)
38
- - [tags](ResServerTools.md#tags)
39
- - [SpecialRpcMethodNames](ResServerTools.md#specialrpcmethodnames)
40
- - [dataPath](ResServerTools.md#datapath)
41
- - [items](ResServerTools.md#items)
42
-
43
- ### Accessors
44
-
45
- - [SpecialRpcMethodNames](ResServerTools.md#specialrpcmethodnames-1)
46
- - [apiRoot](ResServerTools.md#apiroot-1)
47
-
48
- ### Methods
49
-
50
- - [arr2ObjParams](ResServerTools.md#arr2objparams)
51
- - [assign](ResServerTools.md#assign)
52
- - [assignProperty](ResServerTools.md#assignproperty)
53
- - [assignPropertyTo](ResServerTools.md#assignpropertyto)
54
- - [assignTo](ResServerTools.md#assignto)
55
- - [cast](ResServerTools.md#cast)
56
- - [castParams](ResServerTools.md#castparams)
57
- - [clone](ResServerTools.md#clone)
58
- - [cloneTo](ResServerTools.md#cloneto)
59
- - [defineProperties](ResServerTools.md#defineproperties)
60
- - [delete](ResServerTools.md#delete)
61
- - [exportTo](ResServerTools.md#exportto)
62
- - [func](ResServerTools.md#func)
63
- - [get](ResServerTools.md#get)
64
- - [getFunc](ResServerTools.md#getfunc)
65
- - [getFuncWithPos](ResServerTools.md#getfuncwithpos)
66
- - [getMethodFromParams](ResServerTools.md#getmethodfromparams)
67
- - [getProperties](ResServerTools.md#getproperties)
68
- - [hasAsyncFeature](ResServerTools.md#hasasyncfeature)
69
- - [hasOwnProperty](ResServerTools.md#hasownproperty)
70
- - [initRpcMethods](ResServerTools.md#initrpcmethods)
71
- - [initialize](ResServerTools.md#initialize)
72
- - [isPrototypeOf](ResServerTools.md#isprototypeof)
73
- - [isSame](ResServerTools.md#issame)
74
- - [isStream](ResServerTools.md#isstream)
75
- - [list](ResServerTools.md#list)
76
- - [mergeTo](ResServerTools.md#mergeto)
77
- - [obj2ArrParams](ResServerTools.md#obj2arrparams)
78
- - [post](ResServerTools.md#post)
79
- - [propertyIsEnumerable](ResServerTools.md#propertyisenumerable)
80
- - [put](ResServerTools.md#put)
81
- - [register](ResServerTools.md#register)
82
- - [run](ResServerTools.md#run)
83
- - [runAs](ResServerTools.md#runas)
84
- - [runAsSync](ResServerTools.md#runassync)
85
- - [runSync](ResServerTools.md#runsync)
86
- - [runWithPos](ResServerTools.md#runwithpos)
87
- - [runWithPosAs](ResServerTools.md#runwithposas)
88
- - [runWithPosAsSync](ResServerTools.md#runwithposassync)
89
- - [runWithPosSync](ResServerTools.md#runwithpossync)
90
- - [toJSON](ResServerTools.md#tojson)
91
- - [toLocaleString](ResServerTools.md#tolocalestring)
92
- - [toObject](ResServerTools.md#toobject)
93
- - [toString](ResServerTools.md#tostring)
94
- - [unregister](ResServerTools.md#unregister)
95
- - [valueOf](ResServerTools.md#valueof)
96
- - [assign](ResServerTools.md#assign-1)
97
- - [create](ResServerTools.md#create)
98
- - [defineProperties](ResServerTools.md#defineproperties-1)
99
- - [defineProperty](ResServerTools.md#defineproperty)
100
- - [entries](ResServerTools.md#entries)
101
- - [freeze](ResServerTools.md#freeze)
102
- - [fromEntries](ResServerTools.md#fromentries)
103
- - [get](ResServerTools.md#get-1)
104
- - [getAllByTag](ResServerTools.md#getallbytag)
105
- - [getByTag](ResServerTools.md#getbytag)
106
- - [getFunc](ResServerTools.md#getfunc-1)
107
- - [getFuncWithPos](ResServerTools.md#getfuncwithpos-1)
108
- - [getOwnPropertyDescriptor](ResServerTools.md#getownpropertydescriptor)
109
- - [getOwnPropertyDescriptors](ResServerTools.md#getownpropertydescriptors)
110
- - [getOwnPropertyNames](ResServerTools.md#getownpropertynames)
111
- - [getOwnPropertySymbols](ResServerTools.md#getownpropertysymbols)
112
- - [getProperties](ResServerTools.md#getproperties-1)
113
- - [getPrototypeOf](ResServerTools.md#getprototypeof)
114
- - [hasAsyncFeature](ResServerTools.md#hasasyncfeature-1)
115
- - [hasOwn](ResServerTools.md#hasown)
116
- - [is](ResServerTools.md#is)
117
- - [isExtensible](ResServerTools.md#isextensible)
118
- - [isFrozen](ResServerTools.md#isfrozen)
119
- - [isSealed](ResServerTools.md#issealed)
120
- - [keys](ResServerTools.md#keys)
121
- - [list](ResServerTools.md#list-1)
122
- - [preventExtensions](ResServerTools.md#preventextensions)
123
- - [register](ResServerTools.md#register-1)
124
- - [run](ResServerTools.md#run-1)
125
- - [runSync](ResServerTools.md#runsync-1)
126
- - [runWithPos](ResServerTools.md#runwithpos-1)
127
- - [runWithPosSync](ResServerTools.md#runwithpossync-1)
128
- - [seal](ResServerTools.md#seal)
129
- - [setApiRoot](ResServerTools.md#setapiroot)
130
- - [setPrototypeOf](ResServerTools.md#setprototypeof)
131
- - [toJSON](ResServerTools.md#tojson-1)
132
- - [unregister](ResServerTools.md#unregister-1)
133
- - [values](ResServerTools.md#values)
13
+ ## Extended by
14
+
15
+ - [`EventServer`](EventServer.md)
134
16
 
135
17
  ## Constructors
136
18
 
137
- ### constructor
19
+ ### new ResServerTools()
138
20
 
139
- **new ResServerTools**(`name`, `options?`): [`ResServerTools`](ResServerTools.md)
21
+ > **new ResServerTools**(`name`, `options`): [`ResServerTools`](ResServerTools.md)
140
22
 
141
23
  #### Parameters
142
24
 
143
- | Name | Type |
144
- | :------ | :------ |
145
- | `name` | `string` \| `Function` \| [`FuncItem`](../interfaces/FuncItem.md) |
146
- | `options` | `any` |
25
+ **name**: `string` \| `Function` \| [`FuncItem`](../interfaces/FuncItem.md)
26
+
27
+ **options**: `any` = `{}`
147
28
 
148
29
  #### Returns
149
30
 
@@ -151,251 +32,247 @@
151
32
 
152
33
  #### Defined in
153
34
 
154
- [packages/ai-tool/src/res-server-tools.ts:27](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L27)
35
+ [packages/ai-tool/src/res-server-tools.ts:27](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L27)
155
36
 
156
37
  ## Properties
157
38
 
158
39
  ### $attributes
159
40
 
160
- **$attributes**: `Properties`
41
+ > **$attributes**: `Properties`
161
42
 
162
43
  #### Defined in
163
44
 
164
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/advance.d.ts:5
45
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:5
165
46
 
166
- ___
47
+ ***
167
48
 
168
49
  ### action
169
50
 
170
- **action**: ``"get"`` \| ``"post"`` \| ``"put"`` \| ``"delete"`` \| ``"patch"`` \| ``"list"`` \| ``"res"`` = `'res'`
51
+ > **action**: `"get"` \| `"post"` \| `"put"` \| `"delete"` \| `"patch"` \| `"list"` \| `"res"` = `'res'`
171
52
 
172
53
  #### Defined in
173
54
 
174
- [packages/ai-tool/src/res-server-tools.ts:21](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L21)
55
+ [packages/ai-tool/src/res-server-tools.ts:21](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L21)
175
56
 
176
- ___
57
+ ***
177
58
 
178
- ### allowExportFunc
59
+ ### allowExportFunc?
179
60
 
180
- `Optional` **allowExportFunc**: `boolean`
61
+ > `optional` **allowExportFunc**: `boolean`
181
62
 
182
63
  #### Defined in
183
64
 
184
- [packages/ai-tool/src/server-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/server-tools.ts#L14)
65
+ [packages/ai-tool/src/server-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/server-tools.ts#L14)
185
66
 
186
- ___
67
+ ***
187
68
 
188
- ### apiRoot
69
+ ### apiRoot?
189
70
 
190
- `Optional` **apiRoot**: `string`
71
+ > `optional` **apiRoot**: `string`
191
72
 
192
73
  #### Defined in
193
74
 
194
- [packages/ai-tool/src/utils/consts.ts:34](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/utils/consts.ts#L34)
75
+ [packages/ai-tool/src/utils/consts.ts:34](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/utils/consts.ts#L34)
195
76
 
196
- ___
77
+ ***
197
78
 
198
79
  ### constructor
199
80
 
200
- **constructor**: `Function`
81
+ > **constructor**: `Function`
201
82
 
202
83
  The initial value of Object.prototype.constructor is the standard built-in Object constructor.
203
84
 
204
85
  #### Defined in
205
86
 
206
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:125
87
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:125
207
88
 
208
- ___
89
+ ***
209
90
 
210
91
  ### defaultOptions
211
92
 
212
- **defaultOptions**: `Object`
93
+ > **defaultOptions**: `object`
213
94
 
214
95
  The default options for export and assign
215
96
 
216
- #### Type declaration
97
+ #### assign?
98
+
99
+ > `optional` **assign**: `IMergeOptions`
217
100
 
218
- | Name | Type |
219
- | :------ | :------ |
220
- | `assign?` | `IMergeOptions` |
221
- | `export?` | `IMergeOptions` |
101
+ #### export?
102
+
103
+ > `optional` **export**: `IMergeOptions`
222
104
 
223
105
  #### Defined in
224
106
 
225
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:74
107
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:74
226
108
 
227
- ___
109
+ ***
228
110
 
229
- ### fetchOptions
111
+ ### fetchOptions?
230
112
 
231
- `Optional` **fetchOptions**: `any`
113
+ > `optional` **fetchOptions**: `any`
232
114
 
233
115
  #### Defined in
234
116
 
235
- [packages/ai-tool/src/utils/consts.ts:36](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/utils/consts.ts#L36)
117
+ [packages/ai-tool/src/utils/consts.ts:36](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/utils/consts.ts#L36)
236
118
 
237
- ___
119
+ ***
238
120
 
239
- ### isApi
121
+ ### isApi?
240
122
 
241
- `Optional` **isApi**: `boolean`
123
+ > `optional` **isApi**: `boolean`
242
124
 
243
125
  #### Defined in
244
126
 
245
- [packages/ai-tool/src/tool-func.ts:47](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L47)
127
+ [packages/ai-tool/src/tool-func.ts:47](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L47)
246
128
 
247
- ___
129
+ ***
248
130
 
249
131
  ### methods
250
132
 
251
- **methods**: `string`[]
133
+ > **methods**: `string`[]
252
134
 
253
135
  #### Defined in
254
136
 
255
- [packages/ai-tool/src/rpc-methods-server-tool.ts:11](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/rpc-methods-server-tool.ts#L11)
137
+ [packages/ai-tool/src/rpc-methods-server-tool.ts:11](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/rpc-methods-server-tool.ts#L11)
256
138
 
257
- ___
139
+ ***
258
140
 
259
- ### name
141
+ ### name?
260
142
 
261
- `Optional` **name**: `string`
143
+ > `optional` **name**: `string`
262
144
 
263
145
  #### Defined in
264
146
 
265
- [packages/ai-tool/src/tool-func.ts:41](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L41)
147
+ [packages/ai-tool/src/tool-func.ts:41](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L41)
266
148
 
267
- ___
149
+ ***
268
150
 
269
151
  ### nonExported1stChar
270
152
 
271
- **nonExported1stChar**: `string`
153
+ > **nonExported1stChar**: `string`
272
154
 
273
155
  the property with the default prefix '$' will not be exported.
274
156
 
275
157
  #### Defined in
276
158
 
277
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:78
159
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:78
278
160
 
279
- ___
161
+ ***
280
162
 
281
163
  ### params
282
164
 
283
- **params**: [`FuncParams`](../interfaces/FuncParams.md)
165
+ > **params**: [`FuncParams`](../interfaces/FuncParams.md)
284
166
 
285
167
  #### Defined in
286
168
 
287
- [packages/ai-tool/src/res-server-tools.ts:22](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L22)
169
+ [packages/ai-tool/src/res-server-tools.ts:22](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L22)
288
170
 
289
- ___
171
+ ***
290
172
 
291
- ### result
173
+ ### result?
292
174
 
293
- `Optional` **result**: `string`
175
+ > `optional` **result**: `string`
294
176
 
295
177
  #### Defined in
296
178
 
297
- [packages/ai-tool/src/tool-func.ts:43](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L43)
179
+ [packages/ai-tool/src/tool-func.ts:43](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L43)
298
180
 
299
- ___
181
+ ***
300
182
 
301
- ### scope
183
+ ### scope?
302
184
 
303
- `Optional` **scope**: `any`
185
+ > `optional` **scope**: `any`
304
186
 
305
187
  #### Defined in
306
188
 
307
- [packages/ai-tool/src/tool-func.ts:44](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L44)
308
-
309
- ___
189
+ [packages/ai-tool/src/tool-func.ts:44](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L44)
310
190
 
311
- ### setup
191
+ ***
312
192
 
313
- `Optional` **setup**: (`this`: [`ToolFunc`](ToolFunc.md), `options?`: [`FuncItem`](../interfaces/FuncItem.md)) => `void`
193
+ ### setup()?
314
194
 
315
- #### Type declaration
195
+ > `optional` **setup**: (`this`, `options`?) => `void`
316
196
 
317
- (`this`, `options?`): `void`
197
+ #### Parameters
318
198
 
319
- ##### Parameters
199
+ **this**: [`ToolFunc`](ToolFunc.md)
320
200
 
321
- | Name | Type |
322
- | :------ | :------ |
323
- | `this` | [`ToolFunc`](ToolFunc.md) |
324
- | `options?` | [`FuncItem`](../interfaces/FuncItem.md) |
201
+ **options?**: [`FuncItem`](../interfaces/FuncItem.md)
325
202
 
326
- ##### Returns
203
+ #### Returns
327
204
 
328
205
  `void`
329
206
 
330
207
  #### Defined in
331
208
 
332
- [packages/ai-tool/src/tool-func.ts:46](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L46)
209
+ [packages/ai-tool/src/tool-func.ts:46](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L46)
333
210
 
334
- ___
211
+ ***
335
212
 
336
213
  ### should
337
214
 
338
- **should**: `Assertion`
215
+ > **should**: `Assertion`
339
216
 
340
217
  #### Defined in
341
218
 
342
- node_modules/.pnpm/@types+chai@4.3.16/node_modules/@types/chai/index.d.ts:2100
219
+ node\_modules/.pnpm/@types+chai@4.3.16/node\_modules/@types/chai/index.d.ts:2100
343
220
 
344
- ___
221
+ ***
345
222
 
346
- ### stream
223
+ ### stream?
347
224
 
348
- `Optional` **stream**: `boolean`
225
+ > `optional` **stream**: `boolean`
349
226
 
350
227
  #### Defined in
351
228
 
352
- [packages/ai-tool/src/tool-func.ts:48](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L48)
229
+ [packages/ai-tool/src/tool-func.ts:48](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L48)
353
230
 
354
- ___
231
+ ***
355
232
 
356
- ### tags
233
+ ### tags?
357
234
 
358
- `Optional` **tags**: `string` \| `string`[]
235
+ > `optional` **tags**: `string` \| `string`[]
359
236
 
360
237
  #### Defined in
361
238
 
362
- [packages/ai-tool/src/tool-func.ts:45](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L45)
239
+ [packages/ai-tool/src/tool-func.ts:45](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L45)
363
240
 
364
- ___
241
+ ***
365
242
 
366
- ### SpecialRpcMethodNames
243
+ ### dataPath
367
244
 
368
- `Static` **SpecialRpcMethodNames**: `any`
245
+ > `static` **dataPath**: `string`
369
246
 
370
247
  #### Defined in
371
248
 
372
- [packages/ai-tool/src/res-server-tools.ts:20](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L20)
249
+ [packages/ai-tool/src/tool-func.ts:75](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L75)
373
250
 
374
- ___
251
+ ***
375
252
 
376
- ### dataPath
253
+ ### items
377
254
 
378
- `Static` **dataPath**: `string`
255
+ > `static` **items**: [`Funcs`](../interfaces/Funcs.md) = `{}`
379
256
 
380
257
  #### Defined in
381
258
 
382
- [packages/ai-tool/src/tool-func.ts:75](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L75)
259
+ [packages/ai-tool/src/tool-func.ts:74](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L74)
383
260
 
384
- ___
261
+ ***
385
262
 
386
- ### items
263
+ ### SpecialRpcMethodNames
387
264
 
388
- `Static` **items**: [`Funcs`](../interfaces/Funcs.md) = `{}`
265
+ > `static` **SpecialRpcMethodNames**: `any`
389
266
 
390
267
  #### Defined in
391
268
 
392
- [packages/ai-tool/src/tool-func.ts:74](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L74)
269
+ [packages/ai-tool/src/res-server-tools.ts:20](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L20)
393
270
 
394
271
  ## Accessors
395
272
 
396
273
  ### SpecialRpcMethodNames
397
274
 
398
- `get` **SpecialRpcMethodNames**(): `any`
275
+ > `get` **SpecialRpcMethodNames**(): `any`
399
276
 
400
277
  #### Returns
401
278
 
@@ -403,13 +280,13 @@ ___
403
280
 
404
281
  #### Defined in
405
282
 
406
- [packages/ai-tool/src/rpc-methods-server-tool.ts:22](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/rpc-methods-server-tool.ts#L22)
283
+ [packages/ai-tool/src/rpc-methods-server-tool.ts:22](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/rpc-methods-server-tool.ts#L22)
407
284
 
408
- ___
285
+ ***
409
286
 
410
287
  ### apiRoot
411
288
 
412
- `get` **apiRoot**(): `undefined` \| `string`
289
+ > `get` `static` **apiRoot**(): `undefined` \| `string`
413
290
 
414
291
  #### Returns
415
292
 
@@ -417,19 +294,17 @@ ___
417
294
 
418
295
  #### Defined in
419
296
 
420
- [packages/ai-tool/src/server-tools.ts:26](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/server-tools.ts#L26)
297
+ [packages/ai-tool/src/server-tools.ts:26](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/server-tools.ts#L26)
421
298
 
422
299
  ## Methods
423
300
 
424
- ### arr2ObjParams
301
+ ### arr2ObjParams()
425
302
 
426
- **arr2ObjParams**(`params`): `any`[]
303
+ > **arr2ObjParams**(`params`): `any`[]
427
304
 
428
305
  #### Parameters
429
306
 
430
- | Name | Type |
431
- | :------ | :------ |
432
- | `params` | `any`[] |
307
+ **params**: `any`[]
433
308
 
434
309
  #### Returns
435
310
 
@@ -437,22 +312,23 @@ ___
437
312
 
438
313
  #### Defined in
439
314
 
440
- [packages/ai-tool/src/tool-func.ts:254](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L254)
315
+ [packages/ai-tool/src/tool-func.ts:254](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L254)
441
316
 
442
- ___
317
+ ***
443
318
 
444
- ### assign
319
+ ### assign()
445
320
 
446
- **assign**(`src`, `options?`): `this`
321
+ > **assign**(`src`, `options`?): `this`
447
322
 
448
323
  Assign the values from the src object.
449
324
 
450
325
  #### Parameters
451
326
 
452
- | Name | Type | Description |
453
- | :------ | :------ | :------ |
454
- | `src` | `any` | the source object |
455
- | `options?` | `IMergeOptions` | - |
327
+ **src**: `any`
328
+
329
+ the source object
330
+
331
+ • **options?**: `IMergeOptions`
456
332
 
457
333
  #### Returns
458
334
 
@@ -462,25 +338,35 @@ this object
462
338
 
463
339
  #### Defined in
464
340
 
465
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:106
341
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:106
466
342
 
467
- ___
343
+ ***
468
344
 
469
- ### assignProperty
345
+ ### assignProperty()
470
346
 
471
- **assignProperty**(`src`, `name`, `value`, `attrs?`, `options?`): `void`
347
+ > **assignProperty**(`src`, `name`, `value`, `attrs`?, `options`?): `void`
472
348
 
473
349
  Assign a property of src to this object.
474
350
 
475
351
  #### Parameters
476
352
 
477
- | Name | Type | Description |
478
- | :------ | :------ | :------ |
479
- | `src` | `any` | the src object |
480
- | `name` | `string` | the property name to assign |
481
- | `value` | `any` | the property value to assign |
482
- | `attrs?` | `any` | the attributes object |
483
- | `options?` | `IMergeOptions` | |
353
+ **src**: `any`
354
+
355
+ the src object
356
+
357
+ **name**: `string`
358
+
359
+ the property name to assign
360
+
361
+ • **value**: `any`
362
+
363
+ the property value to assign
364
+
365
+ • **attrs?**: `any`
366
+
367
+ the attributes object
368
+
369
+ • **options?**: `IMergeOptions`
484
370
 
485
371
  #### Returns
486
372
 
@@ -488,51 +374,63 @@ Assign a property of src to this object.
488
374
 
489
375
  #### Defined in
490
376
 
491
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:117
377
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:117
492
378
 
493
- ___
379
+ ***
494
380
 
495
- ### assignPropertyTo
381
+ ### assignPropertyTo()
496
382
 
497
- **assignPropertyTo**(`dest`, `src`, `name`, `value`, `attrs?`, `options?`): `void`
383
+ > `abstract` **assignPropertyTo**(`dest`, `src`, `name`, `value`, `attrs`?, `options`?): `void`
498
384
 
499
385
  Assign the property value from the src to destination object.
500
386
 
501
387
  #### Parameters
502
388
 
503
- | Name | Type | Description |
504
- | :------ | :------ | :------ |
505
- | `dest` | `any` | The destination object |
506
- | `src` | `any` | The src object |
507
- | `name` | `string` | The property name |
508
- | `value` | `any` | The property value |
509
- | `attrs?` | `any` | The attributes object of the property |
510
- | `options?` | `IMergeOptions` | |
389
+ **dest**: `any`
390
+
391
+ The destination object
392
+
393
+ **src**: `any`
394
+
395
+ The src object
396
+
397
+ • **name**: `string`
398
+
399
+ The property name
400
+
401
+ • **value**: `any`
402
+
403
+ The property value
404
+
405
+ • **attrs?**: `any`
406
+
407
+ The attributes object of the property
408
+
409
+ • **options?**: `IMergeOptions`
511
410
 
512
411
  #### Returns
513
412
 
514
413
  `void`
515
414
 
516
- **`Abstract`**
517
-
518
415
  #### Defined in
519
416
 
520
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:131
417
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:131
521
418
 
522
- ___
419
+ ***
523
420
 
524
- ### assignTo
421
+ ### assignTo()
525
422
 
526
- **assignTo**(`dest?`, `options?`): `any`
423
+ > **assignTo**(`dest`?, `options`?): `any`
527
424
 
528
425
  Assign this attributes to the dest object
529
426
 
530
427
  #### Parameters
531
428
 
532
- | Name | Type | Description |
533
- | :------ | :------ | :------ |
534
- | `dest?` | `any` | the destination object |
535
- | `options?` | `IMergeOptions` | - |
429
+ **dest?**: `any`
430
+
431
+ the destination object
432
+
433
+ • **options?**: `IMergeOptions`
536
434
 
537
435
  #### Returns
538
436
 
@@ -542,20 +440,19 @@ the dest object
542
440
 
543
441
  #### Defined in
544
442
 
545
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:191
443
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:191
546
444
 
547
- ___
445
+ ***
548
446
 
549
- ### cast
447
+ ### cast()
550
448
 
551
- **cast**(`key`, `value`): `any`
449
+ > **cast**(`key`, `value`): `any`
552
450
 
553
451
  #### Parameters
554
452
 
555
- | Name | Type |
556
- | :------ | :------ |
557
- | `key` | `string` |
558
- | `value` | `any` |
453
+ **key**: `string`
454
+
455
+ **value**: `any`
559
456
 
560
457
  #### Returns
561
458
 
@@ -563,19 +460,17 @@ ___
563
460
 
564
461
  #### Defined in
565
462
 
566
- [packages/ai-tool/src/rpc-methods-server-tool.ts:48](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/rpc-methods-server-tool.ts#L48)
463
+ [packages/ai-tool/src/rpc-methods-server-tool.ts:48](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/rpc-methods-server-tool.ts#L48)
567
464
 
568
- ___
465
+ ***
569
466
 
570
- ### castParams
467
+ ### castParams()
571
468
 
572
- **castParams**(`params`): `RpcMethodsServerFuncParams`
469
+ > **castParams**(`params`): `RpcMethodsServerFuncParams`
573
470
 
574
471
  #### Parameters
575
472
 
576
- | Name | Type |
577
- | :------ | :------ |
578
- | `params` | `RpcMethodsServerFuncParams` |
473
+ **params**: `RpcMethodsServerFuncParams`
579
474
 
580
475
  #### Returns
581
476
 
@@ -583,21 +478,19 @@ ___
583
478
 
584
479
  #### Defined in
585
480
 
586
- [packages/ai-tool/src/res-server-tools.ts:40](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L40)
481
+ [packages/ai-tool/src/res-server-tools.ts:40](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L40)
587
482
 
588
- ___
483
+ ***
589
484
 
590
- ### clone
485
+ ### clone()
591
486
 
592
- **clone**(`options?`): `any`
487
+ > **clone**(`options`?): `any`
593
488
 
594
489
  Create a new object with the same values of attributes.
595
490
 
596
491
  #### Parameters
597
492
 
598
- | Name | Type |
599
- | :------ | :------ |
600
- | `options?` | `IMergeOptions` |
493
+ **options?**: `IMergeOptions`
601
494
 
602
495
  #### Returns
603
496
 
@@ -607,22 +500,23 @@ the new object
607
500
 
608
501
  #### Defined in
609
502
 
610
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:155
503
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:155
611
504
 
612
- ___
505
+ ***
613
506
 
614
- ### cloneTo
507
+ ### cloneTo()
615
508
 
616
- **cloneTo**(`dest`, `options?`): `any`
509
+ > **cloneTo**(`dest`, `options`?): `any`
617
510
 
618
511
  Create and assign the values to the destination object.
619
512
 
620
513
  #### Parameters
621
514
 
622
- | Name | Type | Description |
623
- | :------ | :------ | :------ |
624
- | `dest` | `any` | the destination object |
625
- | `options?` | `IMergeOptions` | |
515
+ **dest**: `any`
516
+
517
+ the destination object
518
+
519
+ • **options?**: `IMergeOptions`
626
520
 
627
521
  #### Returns
628
522
 
@@ -632,43 +526,39 @@ the new dest object
632
526
 
633
527
  #### Defined in
634
528
 
635
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:148
529
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:148
636
530
 
637
- ___
531
+ ***
638
532
 
639
- ### defineProperties
533
+ ### defineProperties()
640
534
 
641
- **defineProperties**(`aProperties`): `any`
535
+ > `abstract` **defineProperties**(`aProperties`): `any`
642
536
 
643
537
  Define the attributes of this object.
644
538
 
645
539
  #### Parameters
646
540
 
647
- | Name | Type | Description |
648
- | :------ | :------ | :------ |
649
- | `aProperties` | `SimplePropDescriptors` | the defined attributes of the object |
541
+ **aProperties**: `SimplePropDescriptors`
542
+
543
+ the defined attributes of the object
650
544
 
651
545
  #### Returns
652
546
 
653
547
  `any`
654
548
 
655
- **`Abstract`**
656
-
657
549
  #### Defined in
658
550
 
659
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:89
551
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:89
660
552
 
661
- ___
553
+ ***
662
554
 
663
- ### delete
555
+ ### delete()?
664
556
 
665
- **delete**(`«destructured»`): `any`
557
+ > `optional` **delete**(`__namedParameters`): `any`
666
558
 
667
559
  #### Parameters
668
560
 
669
- | Name | Type |
670
- | :------ | :------ |
671
- | `«destructured»` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
561
+ **\_\_namedParameters**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
672
562
 
673
563
  #### Returns
674
564
 
@@ -676,22 +566,23 @@ ___
676
566
 
677
567
  #### Defined in
678
568
 
679
- [packages/ai-tool/src/res-server-tools.ts:15](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L15)
569
+ [packages/ai-tool/src/res-server-tools.ts:15](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L15)
680
570
 
681
- ___
571
+ ***
682
572
 
683
- ### exportTo
573
+ ### exportTo()
684
574
 
685
- **exportTo**(`dest`, `options?`): `any`
575
+ > **exportTo**(`dest`, `options`?): `any`
686
576
 
687
577
  Export attributes to the dest json object.
688
578
 
689
579
  #### Parameters
690
580
 
691
- | Name | Type | Description |
692
- | :------ | :------ | :------ |
693
- | `dest` | `any` | the destination object |
694
- | `options?` | `IExportOptions` | - |
581
+ **dest**: `any`
582
+
583
+ the destination object
584
+
585
+ • **options?**: `IExportOptions`
695
586
 
696
587
  #### Returns
697
588
 
@@ -701,19 +592,17 @@ the dest object.
701
592
 
702
593
  #### Defined in
703
594
 
704
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:173
595
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:173
705
596
 
706
- ___
597
+ ***
707
598
 
708
- ### func
599
+ ### func()
709
600
 
710
- **func**(`params`): `any`
601
+ > **func**(`params`): `any`
711
602
 
712
603
  #### Parameters
713
604
 
714
- | Name | Type |
715
- | :------ | :------ |
716
- | `params` | `RpcMethodsServerFuncParams` |
605
+ **params**: `RpcMethodsServerFuncParams`
717
606
 
718
607
  #### Returns
719
608
 
@@ -721,19 +610,17 @@ ___
721
610
 
722
611
  #### Defined in
723
612
 
724
- [packages/ai-tool/src/rpc-methods-server-tool.ts:68](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/rpc-methods-server-tool.ts#L68)
613
+ [packages/ai-tool/src/rpc-methods-server-tool.ts:68](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/rpc-methods-server-tool.ts#L68)
725
614
 
726
- ___
615
+ ***
727
616
 
728
- ### get
617
+ ### get()?
729
618
 
730
- **get**(`«destructured»`): `any`
619
+ > `optional` **get**(`__namedParameters`): `any`
731
620
 
732
621
  #### Parameters
733
622
 
734
- | Name | Type |
735
- | :------ | :------ |
736
- | `«destructured»` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
623
+ **\_\_namedParameters**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
737
624
 
738
625
  #### Returns
739
626
 
@@ -741,19 +628,17 @@ ___
741
628
 
742
629
  #### Defined in
743
630
 
744
- [packages/ai-tool/src/res-server-tools.ts:12](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L12)
631
+ [packages/ai-tool/src/res-server-tools.ts:12](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L12)
745
632
 
746
- ___
633
+ ***
747
634
 
748
- ### getFunc
635
+ ### getFunc()
749
636
 
750
- **getFunc**(`name?`): `any`
637
+ > **getFunc**(`name`?): `any`
751
638
 
752
639
  #### Parameters
753
640
 
754
- | Name | Type |
755
- | :------ | :------ |
756
- | `name?` | `string` |
641
+ **name?**: `string`
757
642
 
758
643
  #### Returns
759
644
 
@@ -761,19 +646,17 @@ ___
761
646
 
762
647
  #### Defined in
763
648
 
764
- [packages/ai-tool/src/tool-func.ts:307](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L307)
649
+ [packages/ai-tool/src/tool-func.ts:307](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L307)
765
650
 
766
- ___
651
+ ***
767
652
 
768
- ### getFuncWithPos
653
+ ### getFuncWithPos()
769
654
 
770
- **getFuncWithPos**(`name?`): `any`
655
+ > **getFuncWithPos**(`name`?): `any`
771
656
 
772
657
  #### Parameters
773
658
 
774
- | Name | Type |
775
- | :------ | :------ |
776
- | `name?` | `string` |
659
+ **name?**: `string`
777
660
 
778
661
  #### Returns
779
662
 
@@ -781,19 +664,17 @@ ___
781
664
 
782
665
  #### Defined in
783
666
 
784
- [packages/ai-tool/src/tool-func.ts:331](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L331)
667
+ [packages/ai-tool/src/tool-func.ts:331](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L331)
785
668
 
786
- ___
669
+ ***
787
670
 
788
- ### getMethodFromParams
671
+ ### getMethodFromParams()
789
672
 
790
- **getMethodFromParams**(`params`): `undefined` \| `string`
673
+ > **getMethodFromParams**(`params`): `undefined` \| `string`
791
674
 
792
675
  #### Parameters
793
676
 
794
- | Name | Type |
795
- | :------ | :------ |
796
- | `params` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
677
+ **params**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
797
678
 
798
679
  #### Returns
799
680
 
@@ -801,13 +682,13 @@ ___
801
682
 
802
683
  #### Defined in
803
684
 
804
- [packages/ai-tool/src/res-server-tools.ts:31](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L31)
685
+ [packages/ai-tool/src/res-server-tools.ts:31](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L31)
805
686
 
806
- ___
687
+ ***
807
688
 
808
- ### getProperties
689
+ ### getProperties()
809
690
 
810
- **getProperties**(): `PropDescriptors`
691
+ > `abstract` **getProperties**(): `PropDescriptors`
811
692
 
812
693
  Get the defined attributes.
813
694
 
@@ -817,23 +698,19 @@ Get the defined attributes.
817
698
 
818
699
  the descriptors of properties object
819
700
 
820
- **`Abstract`**
821
-
822
701
  #### Defined in
823
702
 
824
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:98
703
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:98
825
704
 
826
- ___
705
+ ***
827
706
 
828
- ### hasAsyncFeature
707
+ ### hasAsyncFeature()
829
708
 
830
- **hasAsyncFeature**(`feature`): `boolean`
709
+ > **hasAsyncFeature**(`feature`): `boolean`
831
710
 
832
711
  #### Parameters
833
712
 
834
- | Name | Type |
835
- | :------ | :------ |
836
- | `feature` | [`AsyncFeatureBits`](../enums/AsyncFeatureBits.md) |
713
+ **feature**: [`AsyncFeatureBits`](../enumerations/AsyncFeatureBits.md)
837
714
 
838
715
  #### Returns
839
716
 
@@ -841,21 +718,21 @@ ___
841
718
 
842
719
  #### Defined in
843
720
 
844
- [packages/ai-tool/src/tool-func.ts:336](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L336)
721
+ [packages/ai-tool/src/tool-func.ts:336](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L336)
845
722
 
846
- ___
723
+ ***
847
724
 
848
- ### hasOwnProperty
725
+ ### hasOwnProperty()
849
726
 
850
- **hasOwnProperty**(`v`): `boolean`
727
+ > **hasOwnProperty**(`v`): `boolean`
851
728
 
852
729
  Determines whether an object has a property with the specified name.
853
730
 
854
731
  #### Parameters
855
732
 
856
- | Name | Type | Description |
857
- | :------ | :------ | :------ |
858
- | `v` | `PropertyKey` | A property name. |
733
+ **v**: `PropertyKey`
734
+
735
+ A property name.
859
736
 
860
737
  #### Returns
861
738
 
@@ -863,65 +740,61 @@ Determines whether an object has a property with the specified name.
863
740
 
864
741
  #### Defined in
865
742
 
866
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:140
743
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:140
867
744
 
868
- ___
745
+ ***
869
746
 
870
- ### initRpcMethods
747
+ ### initialize()
871
748
 
872
- **initRpcMethods**(`methods?`): `void`
749
+ > **initialize**(`src`?): `this`
750
+
751
+ Initialize object and assign attribute values from src if src exists.
873
752
 
874
753
  #### Parameters
875
754
 
876
- | Name | Type |
877
- | :------ | :------ |
878
- | `methods` | `string`[] |
755
+ **src?**: `any`
879
756
 
880
757
  #### Returns
881
758
 
882
- `void`
759
+ `this`
883
760
 
884
- #### Defined in
761
+ this object.
885
762
 
886
- [packages/ai-tool/src/rpc-methods-server-tool.ts:27](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/rpc-methods-server-tool.ts#L27)
763
+ #### Defined in
887
764
 
888
- ___
765
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:139
889
766
 
890
- ### initialize
767
+ ***
891
768
 
892
- **initialize**(`src?`): `this`
769
+ ### initRpcMethods()
893
770
 
894
- Initialize object and assign attribute values from src if src exists.
771
+ > **initRpcMethods**(`methods`): `void`
895
772
 
896
773
  #### Parameters
897
774
 
898
- | Name | Type |
899
- | :------ | :------ |
900
- | `src?` | `any` |
775
+ **methods**: `string`[] = `...`
901
776
 
902
777
  #### Returns
903
778
 
904
- `this`
905
-
906
- this object.
779
+ `void`
907
780
 
908
781
  #### Defined in
909
782
 
910
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:139
783
+ [packages/ai-tool/src/rpc-methods-server-tool.ts:27](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/rpc-methods-server-tool.ts#L27)
911
784
 
912
- ___
785
+ ***
913
786
 
914
- ### isPrototypeOf
787
+ ### isPrototypeOf()
915
788
 
916
- **isPrototypeOf**(`v`): `boolean`
789
+ > **isPrototypeOf**(`v`): `boolean`
917
790
 
918
791
  Determines whether an object exists in another object's prototype chain.
919
792
 
920
793
  #### Parameters
921
794
 
922
- | Name | Type | Description |
923
- | :------ | :------ | :------ |
924
- | `v` | `Object` | Another object whose prototype chain is to be checked. |
795
+ **v**: `Object`
796
+
797
+ Another object whose prototype chain is to be checked.
925
798
 
926
799
  #### Returns
927
800
 
@@ -929,22 +802,23 @@ Determines whether an object exists in another object's prototype chain.
929
802
 
930
803
  #### Defined in
931
804
 
932
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:146
805
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:146
933
806
 
934
- ___
807
+ ***
935
808
 
936
- ### isSame
809
+ ### isSame()
937
810
 
938
- **isSame**(`src`, `options?`): `boolean`
811
+ > **isSame**(`src`, `options`?): `boolean`
939
812
 
940
813
  Check the src object whether “equals” this object.
941
814
 
942
815
  #### Parameters
943
816
 
944
- | Name | Type | Description |
945
- | :------ | :------ | :------ |
946
- | `src` | `any` | The source object |
947
- | `options?` | `IMergeOptions` | - |
817
+ **src**: `any`
818
+
819
+ The source object
820
+
821
+ • **options?**: `IMergeOptions`
948
822
 
949
823
  #### Returns
950
824
 
@@ -952,19 +826,17 @@ Check the src object whether “equals” this object.
952
826
 
953
827
  #### Defined in
954
828
 
955
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:200
829
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:200
956
830
 
957
- ___
831
+ ***
958
832
 
959
- ### isStream
833
+ ### isStream()
960
834
 
961
- **isStream**(`params`): `undefined` \| `boolean`
835
+ > **isStream**(`params`): `undefined` \| `boolean`
962
836
 
963
837
  #### Parameters
964
838
 
965
- | Name | Type |
966
- | :------ | :------ |
967
- | `params` | `any` |
839
+ **params**: `any`
968
840
 
969
841
  #### Returns
970
842
 
@@ -972,19 +844,17 @@ ___
972
844
 
973
845
  #### Defined in
974
846
 
975
- [packages/ai-tool/src/tool-func.ts:342](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L342)
847
+ [packages/ai-tool/src/tool-func.ts:342](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L342)
976
848
 
977
- ___
849
+ ***
978
850
 
979
- ### list
851
+ ### list()?
980
852
 
981
- **list**(`options?`): `any`
853
+ > `optional` **list**(`options`?): `any`
982
854
 
983
855
  #### Parameters
984
856
 
985
- | Name | Type |
986
- | :------ | :------ |
987
- | `options?` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
857
+ **options?**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
988
858
 
989
859
  #### Returns
990
860
 
@@ -992,22 +862,23 @@ ___
992
862
 
993
863
  #### Defined in
994
864
 
995
- [packages/ai-tool/src/res-server-tools.ts:16](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L16)
865
+ [packages/ai-tool/src/res-server-tools.ts:16](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L16)
996
866
 
997
- ___
867
+ ***
998
868
 
999
- ### mergeTo
869
+ ### mergeTo()
1000
870
 
1001
- **mergeTo**(`dest`, `options?`): `any`
871
+ > **mergeTo**(`dest`, `options`?): `any`
1002
872
 
1003
873
  Merge this attributes to dest object.
1004
874
 
1005
875
  #### Parameters
1006
876
 
1007
- | Name | Type | Description |
1008
- | :------ | :------ | :------ |
1009
- | `dest` | `any` | The destination object |
1010
- | `options?` | `IMergeOptions` | - |
877
+ **dest**: `any`
878
+
879
+ The destination object
880
+
881
+ • **options?**: `IMergeOptions`
1011
882
 
1012
883
  #### Returns
1013
884
 
@@ -1017,19 +888,17 @@ the dest object.
1017
888
 
1018
889
  #### Defined in
1019
890
 
1020
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:164
891
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:164
1021
892
 
1022
- ___
893
+ ***
1023
894
 
1024
- ### obj2ArrParams
895
+ ### obj2ArrParams()
1025
896
 
1026
- **obj2ArrParams**(`params?`): `any`[]
897
+ > **obj2ArrParams**(`params`?): `any`[]
1027
898
 
1028
899
  #### Parameters
1029
900
 
1030
- | Name | Type |
1031
- | :------ | :------ |
1032
- | `params?` | `any` |
901
+ **params?**: `any`
1033
902
 
1034
903
  #### Returns
1035
904
 
@@ -1037,19 +906,17 @@ ___
1037
906
 
1038
907
  #### Defined in
1039
908
 
1040
- [packages/ai-tool/src/tool-func.ts:267](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L267)
909
+ [packages/ai-tool/src/tool-func.ts:267](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L267)
1041
910
 
1042
- ___
911
+ ***
1043
912
 
1044
- ### post
913
+ ### post()?
1045
914
 
1046
- **post**(`options`): `any`
915
+ > `optional` **post**(`options`): `any`
1047
916
 
1048
917
  #### Parameters
1049
918
 
1050
- | Name | Type |
1051
- | :------ | :------ |
1052
- | `options` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
919
+ **options**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
1053
920
 
1054
921
  #### Returns
1055
922
 
@@ -1057,21 +924,21 @@ ___
1057
924
 
1058
925
  #### Defined in
1059
926
 
1060
- [packages/ai-tool/src/res-server-tools.ts:13](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L13)
927
+ [packages/ai-tool/src/res-server-tools.ts:13](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L13)
1061
928
 
1062
- ___
929
+ ***
1063
930
 
1064
- ### propertyIsEnumerable
931
+ ### propertyIsEnumerable()
1065
932
 
1066
- **propertyIsEnumerable**(`v`): `boolean`
933
+ > **propertyIsEnumerable**(`v`): `boolean`
1067
934
 
1068
935
  Determines whether a specified property is enumerable.
1069
936
 
1070
937
  #### Parameters
1071
938
 
1072
- | Name | Type | Description |
1073
- | :------ | :------ | :------ |
1074
- | `v` | `PropertyKey` | A property name. |
939
+ **v**: `PropertyKey`
940
+
941
+ A property name.
1075
942
 
1076
943
  #### Returns
1077
944
 
@@ -1079,19 +946,17 @@ Determines whether a specified property is enumerable.
1079
946
 
1080
947
  #### Defined in
1081
948
 
1082
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:152
949
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:152
1083
950
 
1084
- ___
951
+ ***
1085
952
 
1086
- ### put
953
+ ### put()?
1087
954
 
1088
- **put**(`«destructured»`): `any`
955
+ > `optional` **put**(`__namedParameters`): `any`
1089
956
 
1090
957
  #### Parameters
1091
958
 
1092
- | Name | Type |
1093
- | :------ | :------ |
1094
- | `«destructured»` | [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md) |
959
+ **\_\_namedParameters**: [`ResServerFuncParams`](../interfaces/ResServerFuncParams.md)
1095
960
 
1096
961
  #### Returns
1097
962
 
@@ -1099,13 +964,13 @@ ___
1099
964
 
1100
965
  #### Defined in
1101
966
 
1102
- [packages/ai-tool/src/res-server-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/res-server-tools.ts#L14)
967
+ [packages/ai-tool/src/res-server-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/res-server-tools.ts#L14)
1103
968
 
1104
- ___
969
+ ***
1105
970
 
1106
- ### register
971
+ ### register()
1107
972
 
1108
- **register**(): `boolean` \| [`ToolFunc`](ToolFunc.md)
973
+ > **register**(): `boolean` \| [`ToolFunc`](ToolFunc.md)
1109
974
 
1110
975
  #### Returns
1111
976
 
@@ -1113,19 +978,17 @@ ___
1113
978
 
1114
979
  #### Defined in
1115
980
 
1116
- [packages/ai-tool/src/tool-func.ts:237](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L237)
981
+ [packages/ai-tool/src/tool-func.ts:237](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L237)
1117
982
 
1118
- ___
983
+ ***
1119
984
 
1120
- ### run
985
+ ### run()
1121
986
 
1122
- **run**(`params?`): `Promise`\<`any`\>
987
+ > **run**(`params`?): `Promise`\<`any`\>
1123
988
 
1124
989
  #### Parameters
1125
990
 
1126
- | Name | Type |
1127
- | :------ | :------ |
1128
- | `params?` | `any` |
991
+ **params?**: `any`
1129
992
 
1130
993
  #### Returns
1131
994
 
@@ -1133,20 +996,19 @@ ___
1133
996
 
1134
997
  #### Defined in
1135
998
 
1136
- [packages/ai-tool/src/tool-func.ts:294](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L294)
999
+ [packages/ai-tool/src/tool-func.ts:294](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L294)
1137
1000
 
1138
- ___
1001
+ ***
1139
1002
 
1140
- ### runAs
1003
+ ### runAs()
1141
1004
 
1142
- **runAs**(`name`, `params?`): `Promise`\<`any`\>
1005
+ > **runAs**(`name`, `params`?): `Promise`\<`any`\>
1143
1006
 
1144
1007
  #### Parameters
1145
1008
 
1146
- | Name | Type |
1147
- | :------ | :------ |
1148
- | `name` | `string` |
1149
- | `params?` | `any` |
1009
+ **name**: `string`
1010
+
1011
+ **params?**: `any`
1150
1012
 
1151
1013
  #### Returns
1152
1014
 
@@ -1154,20 +1016,19 @@ ___
1154
1016
 
1155
1017
  #### Defined in
1156
1018
 
1157
- [packages/ai-tool/src/tool-func.ts:298](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L298)
1019
+ [packages/ai-tool/src/tool-func.ts:298](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L298)
1158
1020
 
1159
- ___
1021
+ ***
1160
1022
 
1161
- ### runAsSync
1023
+ ### runAsSync()
1162
1024
 
1163
- **runAsSync**(`name`, `params?`): `any`
1025
+ > **runAsSync**(`name`, `params`?): `any`
1164
1026
 
1165
1027
  #### Parameters
1166
1028
 
1167
- | Name | Type |
1168
- | :------ | :------ |
1169
- | `name` | `string` |
1170
- | `params?` | `any` |
1029
+ **name**: `string`
1030
+
1031
+ **params?**: `any`
1171
1032
 
1172
1033
  #### Returns
1173
1034
 
@@ -1175,19 +1036,17 @@ ___
1175
1036
 
1176
1037
  #### Defined in
1177
1038
 
1178
- [packages/ai-tool/src/tool-func.ts:302](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L302)
1039
+ [packages/ai-tool/src/tool-func.ts:302](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L302)
1179
1040
 
1180
- ___
1041
+ ***
1181
1042
 
1182
- ### runSync
1043
+ ### runSync()
1183
1044
 
1184
- **runSync**(`params?`): `any`
1045
+ > **runSync**(`params`?): `any`
1185
1046
 
1186
1047
  #### Parameters
1187
1048
 
1188
- | Name | Type |
1189
- | :------ | :------ |
1190
- | `params?` | `any` |
1049
+ **params?**: `any`
1191
1050
 
1192
1051
  #### Returns
1193
1052
 
@@ -1195,19 +1054,17 @@ ___
1195
1054
 
1196
1055
  #### Defined in
1197
1056
 
1198
- [packages/ai-tool/src/tool-func.ts:280](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L280)
1057
+ [packages/ai-tool/src/tool-func.ts:280](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L280)
1199
1058
 
1200
- ___
1059
+ ***
1201
1060
 
1202
- ### runWithPos
1061
+ ### runWithPos()
1203
1062
 
1204
- **runWithPos**(`...params`): `Promise`\<`any`\>
1063
+ > **runWithPos**(...`params`): `Promise`\<`any`\>
1205
1064
 
1206
1065
  #### Parameters
1207
1066
 
1208
- | Name | Type |
1209
- | :------ | :------ |
1210
- | `...params` | `any`[] |
1067
+ ...**params**: `any`[]
1211
1068
 
1212
1069
  #### Returns
1213
1070
 
@@ -1215,20 +1072,19 @@ ___
1215
1072
 
1216
1073
  #### Defined in
1217
1074
 
1218
- [packages/ai-tool/src/tool-func.ts:323](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L323)
1075
+ [packages/ai-tool/src/tool-func.ts:323](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L323)
1219
1076
 
1220
- ___
1077
+ ***
1221
1078
 
1222
- ### runWithPosAs
1079
+ ### runWithPosAs()
1223
1080
 
1224
- **runWithPosAs**(`name`, `...params`): `Promise`\<`any`\>
1081
+ > **runWithPosAs**(`name`, ...`params`): `Promise`\<`any`\>
1225
1082
 
1226
1083
  #### Parameters
1227
1084
 
1228
- | Name | Type |
1229
- | :------ | :------ |
1230
- | `name` | `string` |
1231
- | `...params` | `any`[] |
1085
+ **name**: `string`
1086
+
1087
+ ...**params**: `any`[]
1232
1088
 
1233
1089
  #### Returns
1234
1090
 
@@ -1236,20 +1092,19 @@ ___
1236
1092
 
1237
1093
  #### Defined in
1238
1094
 
1239
- [packages/ai-tool/src/tool-func.ts:327](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L327)
1095
+ [packages/ai-tool/src/tool-func.ts:327](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L327)
1240
1096
 
1241
- ___
1097
+ ***
1242
1098
 
1243
- ### runWithPosAsSync
1099
+ ### runWithPosAsSync()
1244
1100
 
1245
- **runWithPosAsSync**(`name`, `...params`): `any`
1101
+ > **runWithPosAsSync**(`name`, ...`params`): `any`
1246
1102
 
1247
1103
  #### Parameters
1248
1104
 
1249
- | Name | Type |
1250
- | :------ | :------ |
1251
- | `name` | `string` |
1252
- | `...params` | `any`[] |
1105
+ **name**: `string`
1106
+
1107
+ ...**params**: `any`[]
1253
1108
 
1254
1109
  #### Returns
1255
1110
 
@@ -1257,19 +1112,17 @@ ___
1257
1112
 
1258
1113
  #### Defined in
1259
1114
 
1260
- [packages/ai-tool/src/tool-func.ts:319](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L319)
1115
+ [packages/ai-tool/src/tool-func.ts:319](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L319)
1261
1116
 
1262
- ___
1117
+ ***
1263
1118
 
1264
- ### runWithPosSync
1119
+ ### runWithPosSync()
1265
1120
 
1266
- **runWithPosSync**(`...params`): `any`
1121
+ > **runWithPosSync**(...`params`): `any`
1267
1122
 
1268
1123
  #### Parameters
1269
1124
 
1270
- | Name | Type |
1271
- | :------ | :------ |
1272
- | `...params` | `any`[] |
1125
+ ...**params**: `any`[]
1273
1126
 
1274
1127
  #### Returns
1275
1128
 
@@ -1277,13 +1130,13 @@ ___
1277
1130
 
1278
1131
  #### Defined in
1279
1132
 
1280
- [packages/ai-tool/src/tool-func.ts:312](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L312)
1133
+ [packages/ai-tool/src/tool-func.ts:312](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L312)
1281
1134
 
1282
- ___
1135
+ ***
1283
1136
 
1284
- ### toJSON
1137
+ ### toJSON()
1285
1138
 
1286
- **toJSON**(): `any`
1139
+ > **toJSON**(): `any`
1287
1140
 
1288
1141
  #### Returns
1289
1142
 
@@ -1291,13 +1144,13 @@ ___
1291
1144
 
1292
1145
  #### Defined in
1293
1146
 
1294
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:182
1147
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:182
1295
1148
 
1296
- ___
1149
+ ***
1297
1150
 
1298
- ### toLocaleString
1151
+ ### toLocaleString()
1299
1152
 
1300
- **toLocaleString**(): `string`
1153
+ > **toLocaleString**(): `string`
1301
1154
 
1302
1155
  Returns a date converted to a string using the current locale.
1303
1156
 
@@ -1307,21 +1160,19 @@ Returns a date converted to a string using the current locale.
1307
1160
 
1308
1161
  #### Defined in
1309
1162
 
1310
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:131
1163
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:131
1311
1164
 
1312
- ___
1165
+ ***
1313
1166
 
1314
- ### toObject
1167
+ ### toObject()
1315
1168
 
1316
- **toObject**(`options?`): `any`
1169
+ > **toObject**(`options`?): `any`
1317
1170
 
1318
1171
  Convert the attributes to the json object
1319
1172
 
1320
1173
  #### Parameters
1321
1174
 
1322
- | Name | Type |
1323
- | :------ | :------ |
1324
- | `options?` | `any` |
1175
+ **options?**: `any`
1325
1176
 
1326
1177
  #### Returns
1327
1178
 
@@ -1331,13 +1182,13 @@ the json object.
1331
1182
 
1332
1183
  #### Defined in
1333
1184
 
1334
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/abstract.d.ts:181
1185
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:181
1335
1186
 
1336
- ___
1187
+ ***
1337
1188
 
1338
- ### toString
1189
+ ### toString()
1339
1190
 
1340
- **toString**(): `string`
1191
+ > **toString**(): `string`
1341
1192
 
1342
1193
  Returns a string representation of an object.
1343
1194
 
@@ -1347,13 +1198,13 @@ Returns a string representation of an object.
1347
1198
 
1348
1199
  #### Defined in
1349
1200
 
1350
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:128
1201
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:128
1351
1202
 
1352
- ___
1203
+ ***
1353
1204
 
1354
- ### unregister
1205
+ ### unregister()
1355
1206
 
1356
- **unregister**(): `any`
1207
+ > **unregister**(): `any`
1357
1208
 
1358
1209
  #### Returns
1359
1210
 
@@ -1361,13 +1212,13 @@ ___
1361
1212
 
1362
1213
  #### Defined in
1363
1214
 
1364
- [packages/ai-tool/src/tool-func.ts:250](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L250)
1215
+ [packages/ai-tool/src/tool-func.ts:250](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L250)
1365
1216
 
1366
- ___
1217
+ ***
1367
1218
 
1368
- ### valueOf
1219
+ ### valueOf()
1369
1220
 
1370
- **valueOf**(): `Object`
1221
+ > **valueOf**(): `Object`
1371
1222
 
1372
1223
  Returns the primitive value of the specified object.
1373
1224
 
@@ -1377,173 +1228,211 @@ Returns the primitive value of the specified object.
1377
1228
 
1378
1229
  #### Defined in
1379
1230
 
1380
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:134
1231
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:134
1381
1232
 
1382
- ___
1233
+ ***
1383
1234
 
1384
- ### assign
1235
+ ### assign()
1385
1236
 
1386
- **assign**\<`T`, `U`\>(`target`, `source`): `T` & `U`
1237
+ #### assign(target, source)
1238
+
1239
+ > `static` **assign**\<`T`, `U`\>(`target`, `source`): `T` & `U`
1387
1240
 
1388
1241
  Copy the values of all of the enumerable own properties from one or more source objects to a
1389
1242
  target object. Returns the target object.
1390
1243
 
1391
- #### Type parameters
1244
+ ##### Type Parameters
1392
1245
 
1393
- | Name | Type |
1394
- | :------ | :------ |
1395
- | `T` | extends `Object` |
1396
- | `U` | `U` |
1246
+ **T** *extends* `object`
1397
1247
 
1398
- #### Parameters
1248
+ **U**
1399
1249
 
1400
- | Name | Type | Description |
1401
- | :------ | :------ | :------ |
1402
- | `target` | `T` | The target object to copy to. |
1403
- | `source` | `U` | The source object from which to copy properties. |
1250
+ ##### Parameters
1404
1251
 
1405
- #### Returns
1252
+ **target**: `T`
1253
+
1254
+ The target object to copy to.
1255
+
1256
+ • **source**: `U`
1257
+
1258
+ The source object from which to copy properties.
1259
+
1260
+ ##### Returns
1406
1261
 
1407
1262
  `T` & `U`
1408
1263
 
1409
- #### Defined in
1264
+ ##### Defined in
1410
1265
 
1411
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:284
1266
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:286
1412
1267
 
1413
- **assign**\<`T`, `U`, `V`\>(`target`, `source1`, `source2`): `T` & `U` & `V`
1268
+ #### assign(target, source1, source2)
1269
+
1270
+ > `static` **assign**\<`T`, `U`, `V`\>(`target`, `source1`, `source2`): `T` & `U` & `V`
1414
1271
 
1415
1272
  Copy the values of all of the enumerable own properties from one or more source objects to a
1416
1273
  target object. Returns the target object.
1417
1274
 
1418
- #### Type parameters
1275
+ ##### Type Parameters
1419
1276
 
1420
- | Name | Type |
1421
- | :------ | :------ |
1422
- | `T` | extends `Object` |
1423
- | `U` | `U` |
1424
- | `V` | `V` |
1277
+ **T** *extends* `object`
1425
1278
 
1426
- #### Parameters
1279
+ **U**
1427
1280
 
1428
- | Name | Type | Description |
1429
- | :------ | :------ | :------ |
1430
- | `target` | `T` | The target object to copy to. |
1431
- | `source1` | `U` | The first source object from which to copy properties. |
1432
- | `source2` | `V` | The second source object from which to copy properties. |
1281
+ **V**
1433
1282
 
1434
- #### Returns
1283
+ ##### Parameters
1284
+
1285
+ • **target**: `T`
1286
+
1287
+ The target object to copy to.
1288
+
1289
+ • **source1**: `U`
1290
+
1291
+ The first source object from which to copy properties.
1292
+
1293
+ • **source2**: `V`
1294
+
1295
+ The second source object from which to copy properties.
1296
+
1297
+ ##### Returns
1435
1298
 
1436
1299
  `T` & `U` & `V`
1437
1300
 
1438
- #### Defined in
1301
+ ##### Defined in
1439
1302
 
1440
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:293
1303
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:295
1441
1304
 
1442
- **assign**\<`T`, `U`, `V`, `W`\>(`target`, `source1`, `source2`, `source3`): `T` & `U` & `V` & `W`
1305
+ #### assign(target, source1, source2, source3)
1306
+
1307
+ > `static` **assign**\<`T`, `U`, `V`, `W`\>(`target`, `source1`, `source2`, `source3`): `T` & `U` & `V` & `W`
1443
1308
 
1444
1309
  Copy the values of all of the enumerable own properties from one or more source objects to a
1445
1310
  target object. Returns the target object.
1446
1311
 
1447
- #### Type parameters
1312
+ ##### Type Parameters
1448
1313
 
1449
- | Name | Type |
1450
- | :------ | :------ |
1451
- | `T` | extends `Object` |
1452
- | `U` | `U` |
1453
- | `V` | `V` |
1454
- | `W` | `W` |
1314
+ **T** *extends* `object`
1455
1315
 
1456
- #### Parameters
1316
+ **U**
1457
1317
 
1458
- | Name | Type | Description |
1459
- | :------ | :------ | :------ |
1460
- | `target` | `T` | The target object to copy to. |
1461
- | `source1` | `U` | The first source object from which to copy properties. |
1462
- | `source2` | `V` | The second source object from which to copy properties. |
1463
- | `source3` | `W` | The third source object from which to copy properties. |
1318
+ **V**
1464
1319
 
1465
- #### Returns
1320
+ **W**
1321
+
1322
+ ##### Parameters
1323
+
1324
+ • **target**: `T`
1325
+
1326
+ The target object to copy to.
1327
+
1328
+ • **source1**: `U`
1329
+
1330
+ The first source object from which to copy properties.
1331
+
1332
+ • **source2**: `V`
1333
+
1334
+ The second source object from which to copy properties.
1335
+
1336
+ • **source3**: `W`
1337
+
1338
+ The third source object from which to copy properties.
1339
+
1340
+ ##### Returns
1466
1341
 
1467
1342
  `T` & `U` & `V` & `W`
1468
1343
 
1469
- #### Defined in
1344
+ ##### Defined in
1345
+
1346
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:305
1470
1347
 
1471
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:303
1348
+ #### assign(target, sources)
1472
1349
 
1473
- **assign**(`target`, `...sources`): `any`
1350
+ > `static` **assign**(`target`, ...`sources`): `any`
1474
1351
 
1475
1352
  Copy the values of all of the enumerable own properties from one or more source objects to a
1476
1353
  target object. Returns the target object.
1477
1354
 
1478
- #### Parameters
1355
+ ##### Parameters
1479
1356
 
1480
- | Name | Type | Description |
1481
- | :------ | :------ | :------ |
1482
- | `target` | `object` | The target object to copy to. |
1483
- | `...sources` | `any`[] | One or more source objects from which to copy properties |
1357
+ **target**: `object`
1484
1358
 
1485
- #### Returns
1359
+ The target object to copy to.
1360
+
1361
+ • ...**sources**: `any`[]
1362
+
1363
+ One or more source objects from which to copy properties
1364
+
1365
+ ##### Returns
1486
1366
 
1487
1367
  `any`
1488
1368
 
1489
- #### Defined in
1369
+ ##### Defined in
1370
+
1371
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:313
1490
1372
 
1491
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:311
1373
+ ***
1492
1374
 
1493
- ___
1375
+ ### create()
1494
1376
 
1495
- ### create
1377
+ #### create(o)
1496
1378
 
1497
- **create**(`o`): `any`
1379
+ > `static` **create**(`o`): `any`
1498
1380
 
1499
1381
  Creates an object that has the specified prototype or that has null prototype.
1500
1382
 
1501
- #### Parameters
1383
+ ##### Parameters
1502
1384
 
1503
- | Name | Type | Description |
1504
- | :------ | :------ | :------ |
1505
- | `o` | ``null`` \| `object` | Object to use as a prototype. May be null. |
1385
+ **o**: `null` \| `object`
1506
1386
 
1507
- #### Returns
1387
+ Object to use as a prototype. May be null.
1388
+
1389
+ ##### Returns
1508
1390
 
1509
1391
  `any`
1510
1392
 
1511
- #### Defined in
1393
+ ##### Defined in
1512
1394
 
1513
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:188
1395
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:188
1514
1396
 
1515
- **create**(`o`, `properties`): `any`
1397
+ #### create(o, properties)
1398
+
1399
+ > `static` **create**(`o`, `properties`): `any`
1516
1400
 
1517
1401
  Creates an object that has the specified prototype, and that optionally contains specified properties.
1518
1402
 
1519
- #### Parameters
1403
+ ##### Parameters
1520
1404
 
1521
- | Name | Type | Description |
1522
- | :------ | :------ | :------ |
1523
- | `o` | ``null`` \| `object` | Object to use as a prototype. May be null |
1524
- | `properties` | `PropertyDescriptorMap` & `ThisType`\<`any`\> | JavaScript object that contains one or more property descriptors. |
1405
+ **o**: `null` \| `object`
1525
1406
 
1526
- #### Returns
1407
+ Object to use as a prototype. May be null
1408
+
1409
+ • **properties**: `PropertyDescriptorMap` & `ThisType`\<`any`\>
1410
+
1411
+ JavaScript object that contains one or more property descriptors.
1412
+
1413
+ ##### Returns
1527
1414
 
1528
1415
  `any`
1529
1416
 
1530
- #### Defined in
1417
+ ##### Defined in
1418
+
1419
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:195
1531
1420
 
1532
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:195
1421
+ ***
1533
1422
 
1534
- ___
1423
+ ### defineProperties()
1535
1424
 
1536
- ### defineProperties
1425
+ > `static` **defineProperties**(`aTarget`, `aProperties`, `recreate`?): `any`
1537
1426
 
1538
- **defineProperties**(`aTarget`, `aProperties`, `recreate?`): `any`
1427
+ Adds one or more properties to an object, and/or modifies attributes of existing properties.
1539
1428
 
1540
1429
  #### Parameters
1541
1430
 
1542
- | Name | Type |
1543
- | :------ | :------ |
1544
- | `aTarget` | `any` |
1545
- | `aProperties` | `PropDescriptors` |
1546
- | `recreate?` | `boolean` |
1431
+ **aTarget**: `any`
1432
+
1433
+ **aProperties**: `PropDescriptors`
1434
+
1435
+ **recreate?**: `boolean`
1547
1436
 
1548
1437
  #### Returns
1549
1438
 
@@ -1551,29 +1440,33 @@ ___
1551
1440
 
1552
1441
  #### Defined in
1553
1442
 
1554
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/advance.d.ts:11
1443
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:11
1555
1444
 
1556
- ___
1445
+ ***
1557
1446
 
1558
- ### defineProperty
1447
+ ### defineProperty()
1559
1448
 
1560
- **defineProperty**\<`T`\>(`o`, `p`, `attributes`): `T`
1449
+ > `static` **defineProperty**\<`T`\>(`o`, `p`, `attributes`): `T`
1561
1450
 
1562
1451
  Adds a property to an object, or modifies attributes of an existing property.
1563
1452
 
1564
- #### Type parameters
1453
+ #### Type Parameters
1565
1454
 
1566
- | Name |
1567
- | :------ |
1568
- | `T` |
1455
+ **T**
1569
1456
 
1570
1457
  #### Parameters
1571
1458
 
1572
- | Name | Type | Description |
1573
- | :------ | :------ | :------ |
1574
- | `o` | `T` | Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object. |
1575
- | `p` | `PropertyKey` | The property name. |
1576
- | `attributes` | `PropertyDescriptor` & `ThisType`\<`any`\> | Descriptor for the property. It can be for a data property or an accessor property. |
1459
+ **o**: `T`
1460
+
1461
+ Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object.
1462
+
1463
+ **p**: `PropertyKey`
1464
+
1465
+ The property name.
1466
+
1467
+ • **attributes**: `PropertyDescriptor` & `ThisType`\<`any`\>
1468
+
1469
+ Descriptor for the property. It can be for a data property or an accessor property.
1577
1470
 
1578
1471
  #### Returns
1579
1472
 
@@ -1581,188 +1474,191 @@ Adds a property to an object, or modifies attributes of an existing property.
1581
1474
 
1582
1475
  #### Defined in
1583
1476
 
1584
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:203
1477
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:203
1585
1478
 
1586
- ___
1479
+ ***
1587
1480
 
1588
- ### entries
1481
+ ### entries()
1589
1482
 
1590
- **entries**\<`T`\>(`o`): [`string`, `T`][]
1483
+ #### entries(o)
1591
1484
 
1592
- Returns an array of key/values of the enumerable properties of an object
1485
+ > `static` **entries**\<`T`\>(`o`): [`string`, `T`][]
1593
1486
 
1594
- #### Type parameters
1487
+ Returns an array of key/values of the enumerable own properties of an object
1595
1488
 
1596
- | Name |
1597
- | :------ |
1598
- | `T` |
1489
+ ##### Type Parameters
1599
1490
 
1600
- #### Parameters
1491
+ **T**
1492
+
1493
+ ##### Parameters
1601
1494
 
1602
- | Name | Type | Description |
1603
- | :------ | :------ | :------ |
1604
- | `o` | \{ `[s: string]`: `T`; } \| `ArrayLike`\<`T`\> | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
1495
+ **o**: `object` \| `ArrayLike`\<`T`\>
1605
1496
 
1606
- #### Returns
1497
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
1498
+
1499
+ ##### Returns
1607
1500
 
1608
1501
  [`string`, `T`][]
1609
1502
 
1610
- #### Defined in
1503
+ ##### Defined in
1611
1504
 
1612
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts:36
1505
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:36
1613
1506
 
1614
- **entries**(`o`): [`string`, `any`][]
1507
+ #### entries(o)
1615
1508
 
1616
- Returns an array of key/values of the enumerable properties of an object
1509
+ > `static` **entries**(`o`): [`string`, `any`][]
1617
1510
 
1618
- #### Parameters
1511
+ Returns an array of key/values of the enumerable own properties of an object
1619
1512
 
1620
- | Name | Type | Description |
1621
- | :------ | :------ | :------ |
1622
- | `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
1513
+ ##### Parameters
1623
1514
 
1624
- #### Returns
1515
+ **o**
1516
+
1517
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
1518
+
1519
+ ##### Returns
1625
1520
 
1626
1521
  [`string`, `any`][]
1627
1522
 
1628
- #### Defined in
1523
+ ##### Defined in
1524
+
1525
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:42
1629
1526
 
1630
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts:42
1527
+ ***
1631
1528
 
1632
- ___
1529
+ ### freeze()
1633
1530
 
1634
- ### freeze
1531
+ #### freeze(f)
1635
1532
 
1636
- **freeze**\<`T`\>(`f`): `T`
1533
+ > `static` **freeze**\<`T`\>(`f`): `T`
1637
1534
 
1638
1535
  Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
1639
1536
 
1640
- #### Type parameters
1537
+ ##### Type Parameters
1641
1538
 
1642
- | Name | Type |
1643
- | :------ | :------ |
1644
- | `T` | extends `Function` |
1539
+ **T** *extends* `Function`
1645
1540
 
1646
- #### Parameters
1541
+ ##### Parameters
1647
1542
 
1648
- | Name | Type | Description |
1649
- | :------ | :------ | :------ |
1650
- | `f` | `T` | Object on which to lock the attributes. |
1543
+ **f**: `T`
1651
1544
 
1652
- #### Returns
1545
+ Object on which to lock the attributes.
1546
+
1547
+ ##### Returns
1653
1548
 
1654
1549
  `T`
1655
1550
 
1656
- #### Defined in
1551
+ ##### Defined in
1657
1552
 
1658
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:222
1553
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:222
1659
1554
 
1660
- **freeze**\<`T`, `U`\>(`o`): `Readonly`\<`T`\>
1555
+ #### freeze(o)
1556
+
1557
+ > `static` **freeze**\<`T`, `U`\>(`o`): `Readonly`\<`T`\>
1661
1558
 
1662
1559
  Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
1663
1560
 
1664
- #### Type parameters
1561
+ ##### Type Parameters
1665
1562
 
1666
- | Name | Type |
1667
- | :------ | :------ |
1668
- | `T` | extends `Object` |
1669
- | `U` | extends `string` \| `number` \| `bigint` \| `boolean` \| `symbol` |
1563
+ **T** *extends* `object`
1670
1564
 
1671
- #### Parameters
1565
+ **U** *extends* `string` \| `number` \| `bigint` \| `boolean` \| `symbol`
1672
1566
 
1673
- | Name | Type | Description |
1674
- | :------ | :------ | :------ |
1675
- | `o` | `T` | Object on which to lock the attributes. |
1567
+ ##### Parameters
1676
1568
 
1677
- #### Returns
1569
+ **o**: `T`
1570
+
1571
+ Object on which to lock the attributes.
1572
+
1573
+ ##### Returns
1678
1574
 
1679
1575
  `Readonly`\<`T`\>
1680
1576
 
1681
- #### Defined in
1577
+ ##### Defined in
1578
+
1579
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:228
1682
1580
 
1683
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:228
1581
+ #### freeze(o)
1684
1582
 
1685
- **freeze**\<`T`\>(`o`): `Readonly`\<`T`\>
1583
+ > `static` **freeze**\<`T`\>(`o`): `Readonly`\<`T`\>
1686
1584
 
1687
1585
  Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
1688
1586
 
1689
- #### Type parameters
1587
+ ##### Type Parameters
1690
1588
 
1691
- | Name |
1692
- | :------ |
1693
- | `T` |
1589
+ **T**
1694
1590
 
1695
- #### Parameters
1591
+ ##### Parameters
1696
1592
 
1697
- | Name | Type | Description |
1698
- | :------ | :------ | :------ |
1699
- | `o` | `T` | Object on which to lock the attributes. |
1593
+ **o**: `T`
1700
1594
 
1701
- #### Returns
1595
+ Object on which to lock the attributes.
1596
+
1597
+ ##### Returns
1702
1598
 
1703
1599
  `Readonly`\<`T`\>
1704
1600
 
1705
- #### Defined in
1601
+ ##### Defined in
1706
1602
 
1707
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:234
1603
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:234
1708
1604
 
1709
- ___
1605
+ ***
1710
1606
 
1711
- ### fromEntries
1607
+ ### fromEntries()
1712
1608
 
1713
- **fromEntries**\<`T`\>(`entries`): `Object`
1609
+ #### fromEntries(entries)
1610
+
1611
+ > `static` **fromEntries**\<`T`\>(`entries`): `object`
1714
1612
 
1715
1613
  Returns an object created by key-value entries for properties and methods
1716
1614
 
1717
- #### Type parameters
1615
+ ##### Type Parameters
1718
1616
 
1719
- | Name | Type |
1720
- | :------ | :------ |
1721
- | `T` | `any` |
1617
+ **T** = `any`
1722
1618
 
1723
- #### Parameters
1619
+ ##### Parameters
1724
1620
 
1725
- | Name | Type | Description |
1726
- | :------ | :------ | :------ |
1727
- | `entries` | `Iterable`\<readonly [`PropertyKey`, `T`]\> | An iterable object that contains key-value entries for properties and methods. |
1621
+ **entries**: `Iterable`\<readonly [`PropertyKey`, `T`], `any`, `any`\>
1728
1622
 
1729
- #### Returns
1623
+ An iterable object that contains key-value entries for properties and methods.
1730
1624
 
1731
- `Object`
1625
+ ##### Returns
1732
1626
 
1733
- #### Defined in
1627
+ `object`
1628
+
1629
+ ##### Defined in
1630
+
1631
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2019.object.d.ts:26
1734
1632
 
1735
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.object.d.ts:26
1633
+ #### fromEntries(entries)
1736
1634
 
1737
- **fromEntries**(`entries`): `any`
1635
+ > `static` **fromEntries**(`entries`): `any`
1738
1636
 
1739
1637
  Returns an object created by key-value entries for properties and methods
1740
1638
 
1741
- #### Parameters
1639
+ ##### Parameters
1742
1640
 
1743
- | Name | Type | Description |
1744
- | :------ | :------ | :------ |
1745
- | `entries` | `Iterable`\<readonly `any`[]\> | An iterable object that contains key-value entries for properties and methods. |
1641
+ **entries**: `Iterable`\<readonly `any`[], `any`, `any`\>
1746
1642
 
1747
- #### Returns
1643
+ An iterable object that contains key-value entries for properties and methods.
1644
+
1645
+ ##### Returns
1748
1646
 
1749
1647
  `any`
1750
1648
 
1751
- #### Defined in
1649
+ ##### Defined in
1752
1650
 
1753
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.object.d.ts:32
1651
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2019.object.d.ts:32
1754
1652
 
1755
- ___
1653
+ ***
1756
1654
 
1757
- ### get
1655
+ ### get()
1758
1656
 
1759
- **get**(`name`): [`ToolFunc`](ToolFunc.md)
1657
+ > `static` **get**(`name`): [`ToolFunc`](ToolFunc.md)
1760
1658
 
1761
1659
  #### Parameters
1762
1660
 
1763
- | Name | Type |
1764
- | :------ | :------ |
1765
- | `name` | `string` |
1661
+ **name**: `string`
1766
1662
 
1767
1663
  #### Returns
1768
1664
 
@@ -1770,19 +1666,17 @@ ___
1770
1666
 
1771
1667
  #### Defined in
1772
1668
 
1773
- [packages/ai-tool/src/tool-func.ts:77](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L77)
1669
+ [packages/ai-tool/src/tool-func.ts:77](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L77)
1774
1670
 
1775
- ___
1671
+ ***
1776
1672
 
1777
- ### getAllByTag
1673
+ ### getAllByTag()
1778
1674
 
1779
- **getAllByTag**(`tagName`): [`ToolFunc`](ToolFunc.md)[]
1675
+ > `static` **getAllByTag**(`tagName`): [`ToolFunc`](ToolFunc.md)[]
1780
1676
 
1781
1677
  #### Parameters
1782
1678
 
1783
- | Name | Type |
1784
- | :------ | :------ |
1785
- | `tagName` | `string` |
1679
+ **tagName**: `string`
1786
1680
 
1787
1681
  #### Returns
1788
1682
 
@@ -1790,19 +1684,17 @@ ___
1790
1684
 
1791
1685
  #### Defined in
1792
1686
 
1793
- [packages/ai-tool/src/tool-func.ts:105](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L105)
1687
+ [packages/ai-tool/src/tool-func.ts:105](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L105)
1794
1688
 
1795
- ___
1689
+ ***
1796
1690
 
1797
- ### getByTag
1691
+ ### getByTag()
1798
1692
 
1799
- **getByTag**(`tagName`): `undefined` \| [`ToolFunc`](ToolFunc.md)
1693
+ > `static` **getByTag**(`tagName`): `undefined` \| [`ToolFunc`](ToolFunc.md)
1800
1694
 
1801
1695
  #### Parameters
1802
1696
 
1803
- | Name | Type |
1804
- | :------ | :------ |
1805
- | `tagName` | `string` |
1697
+ **tagName**: `string`
1806
1698
 
1807
1699
  #### Returns
1808
1700
 
@@ -1810,19 +1702,17 @@ ___
1810
1702
 
1811
1703
  #### Defined in
1812
1704
 
1813
- [packages/ai-tool/src/tool-func.ts:85](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L85)
1705
+ [packages/ai-tool/src/tool-func.ts:85](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L85)
1814
1706
 
1815
- ___
1707
+ ***
1816
1708
 
1817
- ### getFunc
1709
+ ### getFunc()
1818
1710
 
1819
- **getFunc**(`name`): `any`
1711
+ > `static` **getFunc**(`name`): `any`
1820
1712
 
1821
1713
  #### Parameters
1822
1714
 
1823
- | Name | Type |
1824
- | :------ | :------ |
1825
- | `name` | `string` |
1715
+ **name**: `string`
1826
1716
 
1827
1717
  #### Returns
1828
1718
 
@@ -1830,19 +1720,17 @@ ___
1830
1720
 
1831
1721
  #### Defined in
1832
1722
 
1833
- [packages/ai-tool/src/tool-func.ts:146](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L146)
1723
+ [packages/ai-tool/src/tool-func.ts:146](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L146)
1834
1724
 
1835
- ___
1725
+ ***
1836
1726
 
1837
- ### getFuncWithPos
1727
+ ### getFuncWithPos()
1838
1728
 
1839
- **getFuncWithPos**(`name`): `any`
1729
+ > `static` **getFuncWithPos**(`name`): `any`
1840
1730
 
1841
1731
  #### Parameters
1842
1732
 
1843
- | Name | Type |
1844
- | :------ | :------ |
1845
- | `name` | `string` |
1733
+ **name**: `string`
1846
1734
 
1847
1735
  #### Returns
1848
1736
 
@@ -1850,23 +1738,26 @@ ___
1850
1738
 
1851
1739
  #### Defined in
1852
1740
 
1853
- [packages/ai-tool/src/tool-func.ts:167](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L167)
1741
+ [packages/ai-tool/src/tool-func.ts:167](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L167)
1854
1742
 
1855
- ___
1743
+ ***
1856
1744
 
1857
- ### getOwnPropertyDescriptor
1745
+ ### getOwnPropertyDescriptor()
1858
1746
 
1859
- **getOwnPropertyDescriptor**(`o`, `p`): `undefined` \| `PropertyDescriptor`
1747
+ > `static` **getOwnPropertyDescriptor**(`o`, `p`): `undefined` \| `PropertyDescriptor`
1860
1748
 
1861
1749
  Gets the own property descriptor of the specified object.
1862
1750
  An own property descriptor is one that is defined directly on the object and is not inherited from the object's prototype.
1863
1751
 
1864
1752
  #### Parameters
1865
1753
 
1866
- | Name | Type | Description |
1867
- | :------ | :------ | :------ |
1868
- | `o` | `any` | Object that contains the property. |
1869
- | `p` | `PropertyKey` | Name of the property. |
1754
+ **o**: `any`
1755
+
1756
+ Object that contains the property.
1757
+
1758
+ • **p**: `PropertyKey`
1759
+
1760
+ Name of the property.
1870
1761
 
1871
1762
  #### Returns
1872
1763
 
@@ -1874,50 +1765,48 @@ An own property descriptor is one that is defined directly on the object and is
1874
1765
 
1875
1766
  #### Defined in
1876
1767
 
1877
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:175
1768
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:175
1878
1769
 
1879
- ___
1770
+ ***
1880
1771
 
1881
- ### getOwnPropertyDescriptors
1772
+ ### getOwnPropertyDescriptors()
1882
1773
 
1883
- **getOwnPropertyDescriptors**\<`T`\>(`o`): \{ [P in string \| number \| symbol]: TypedPropertyDescriptor\<T[P]\> } & \{ `[x: string]`: `PropertyDescriptor`; }
1774
+ > `static` **getOwnPropertyDescriptors**\<`T`\>(`o`): \{ \[P in string \| number \| symbol\]: TypedPropertyDescriptor\<T\[P\]\> \} & `object`
1884
1775
 
1885
1776
  Returns an object containing all own property descriptors of an object
1886
1777
 
1887
- #### Type parameters
1778
+ #### Type Parameters
1888
1779
 
1889
- | Name |
1890
- | :------ |
1891
- | `T` |
1780
+ **T**
1892
1781
 
1893
1782
  #### Parameters
1894
1783
 
1895
- | Name | Type | Description |
1896
- | :------ | :------ | :------ |
1897
- | `o` | `T` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
1784
+ **o**: `T`
1785
+
1786
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
1898
1787
 
1899
1788
  #### Returns
1900
1789
 
1901
- \{ [P in string \| number \| symbol]: TypedPropertyDescriptor\<T[P]\> } & \{ `[x: string]`: `PropertyDescriptor`; }
1790
+ \{ \[P in string \| number \| symbol\]: TypedPropertyDescriptor\<T\[P\]\> \} & `object`
1902
1791
 
1903
1792
  #### Defined in
1904
1793
 
1905
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts:48
1794
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:48
1906
1795
 
1907
- ___
1796
+ ***
1908
1797
 
1909
- ### getOwnPropertyNames
1798
+ ### getOwnPropertyNames()
1910
1799
 
1911
- **getOwnPropertyNames**(`o`): `string`[]
1800
+ > `static` **getOwnPropertyNames**(`o`): `string`[]
1912
1801
 
1913
1802
  Returns the names of the own properties of an object. The own properties of an object are those that are defined directly
1914
1803
  on that object, and are not inherited from the object's prototype. The properties of an object include both fields (objects) and functions.
1915
1804
 
1916
1805
  #### Parameters
1917
1806
 
1918
- | Name | Type | Description |
1919
- | :------ | :------ | :------ |
1920
- | `o` | `any` | Object that contains the own properties. |
1807
+ **o**: `any`
1808
+
1809
+ Object that contains the own properties.
1921
1810
 
1922
1811
  #### Returns
1923
1812
 
@@ -1925,21 +1814,21 @@ on that object, and are not inherited from the object's prototype. The propertie
1925
1814
 
1926
1815
  #### Defined in
1927
1816
 
1928
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:182
1817
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:182
1929
1818
 
1930
- ___
1819
+ ***
1931
1820
 
1932
- ### getOwnPropertySymbols
1821
+ ### getOwnPropertySymbols()
1933
1822
 
1934
- **getOwnPropertySymbols**(`o`): `symbol`[]
1823
+ > `static` **getOwnPropertySymbols**(`o`): `symbol`[]
1935
1824
 
1936
1825
  Returns an array of all symbol properties found directly on object o.
1937
1826
 
1938
1827
  #### Parameters
1939
1828
 
1940
- | Name | Type | Description |
1941
- | :------ | :------ | :------ |
1942
- | `o` | `any` | Object to retrieve the symbols from. |
1829
+ **o**: `any`
1830
+
1831
+ Object to retrieve the symbols from.
1943
1832
 
1944
1833
  #### Returns
1945
1834
 
@@ -1947,13 +1836,13 @@ Returns an array of all symbol properties found directly on object o.
1947
1836
 
1948
1837
  #### Defined in
1949
1838
 
1950
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:317
1839
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:319
1951
1840
 
1952
- ___
1841
+ ***
1953
1842
 
1954
- ### getProperties
1843
+ ### getProperties()
1955
1844
 
1956
- **getProperties**(): `PropDescriptors`
1845
+ > `static` **getProperties**(): `PropDescriptors`
1957
1846
 
1958
1847
  get all properties descriptor include inherited.
1959
1848
 
@@ -1963,21 +1852,21 @@ get all properties descriptor include inherited.
1963
1852
 
1964
1853
  #### Defined in
1965
1854
 
1966
- node_modules/.pnpm/property-manager@2.0.0/node_modules/property-manager/lib/advance.d.ts:10
1855
+ node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:10
1967
1856
 
1968
- ___
1857
+ ***
1969
1858
 
1970
- ### getPrototypeOf
1859
+ ### getPrototypeOf()
1971
1860
 
1972
- **getPrototypeOf**(`o`): `any`
1861
+ > `static` **getPrototypeOf**(`o`): `any`
1973
1862
 
1974
1863
  Returns the prototype of an object.
1975
1864
 
1976
1865
  #### Parameters
1977
1866
 
1978
- | Name | Type | Description |
1979
- | :------ | :------ | :------ |
1980
- | `o` | `any` | The object that references the prototype. |
1867
+ **o**: `any`
1868
+
1869
+ The object that references the prototype.
1981
1870
 
1982
1871
  #### Returns
1983
1872
 
@@ -1985,19 +1874,17 @@ Returns the prototype of an object.
1985
1874
 
1986
1875
  #### Defined in
1987
1876
 
1988
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:167
1877
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:167
1989
1878
 
1990
- ___
1879
+ ***
1991
1880
 
1992
- ### hasAsyncFeature
1881
+ ### hasAsyncFeature()
1993
1882
 
1994
- **hasAsyncFeature**(`feature`): `boolean`
1883
+ > `static` **hasAsyncFeature**(`feature`): `boolean`
1995
1884
 
1996
1885
  #### Parameters
1997
1886
 
1998
- | Name | Type |
1999
- | :------ | :------ |
2000
- | `feature` | [`AsyncFeatureBits`](../enums/AsyncFeatureBits.md) |
1887
+ **feature**: [`AsyncFeatureBits`](../enumerations/AsyncFeatureBits.md)
2001
1888
 
2002
1889
  #### Returns
2003
1890
 
@@ -2005,22 +1892,25 @@ ___
2005
1892
 
2006
1893
  #### Defined in
2007
1894
 
2008
- [packages/ai-tool/src/tool-func.ts:123](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L123)
1895
+ [packages/ai-tool/src/tool-func.ts:123](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L123)
2009
1896
 
2010
- ___
1897
+ ***
2011
1898
 
2012
- ### hasOwn
1899
+ ### hasOwn()
2013
1900
 
2014
- **hasOwn**(`o`, `v`): `boolean`
1901
+ > `static` **hasOwn**(`o`, `v`): `boolean`
2015
1902
 
2016
1903
  Determines whether an object has a property with the specified name.
2017
1904
 
2018
1905
  #### Parameters
2019
1906
 
2020
- | Name | Type | Description |
2021
- | :------ | :------ | :------ |
2022
- | `o` | `object` | An object. |
2023
- | `v` | `PropertyKey` | A property name. |
1907
+ **o**: `object`
1908
+
1909
+ An object.
1910
+
1911
+ • **v**: `PropertyKey`
1912
+
1913
+ A property name.
2024
1914
 
2025
1915
  #### Returns
2026
1916
 
@@ -2028,22 +1918,25 @@ Determines whether an object has a property with the specified name.
2028
1918
 
2029
1919
  #### Defined in
2030
1920
 
2031
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2022.object.d.ts:25
1921
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2022.object.d.ts:25
2032
1922
 
2033
- ___
1923
+ ***
2034
1924
 
2035
- ### is
1925
+ ### is()
2036
1926
 
2037
- **is**(`value1`, `value2`): `boolean`
1927
+ > `static` **is**(`value1`, `value2`): `boolean`
2038
1928
 
2039
1929
  Returns true if the values are the same value, false otherwise.
2040
1930
 
2041
1931
  #### Parameters
2042
1932
 
2043
- | Name | Type | Description |
2044
- | :------ | :------ | :------ |
2045
- | `value1` | `any` | The first value. |
2046
- | `value2` | `any` | The second value. |
1933
+ **value1**: `any`
1934
+
1935
+ The first value.
1936
+
1937
+ • **value2**: `any`
1938
+
1939
+ The second value.
2047
1940
 
2048
1941
  #### Returns
2049
1942
 
@@ -2051,21 +1944,21 @@ Returns true if the values are the same value, false otherwise.
2051
1944
 
2052
1945
  #### Defined in
2053
1946
 
2054
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:330
1947
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:332
2055
1948
 
2056
- ___
1949
+ ***
2057
1950
 
2058
- ### isExtensible
1951
+ ### isExtensible()
2059
1952
 
2060
- **isExtensible**(`o`): `boolean`
1953
+ > `static` **isExtensible**(`o`): `boolean`
2061
1954
 
2062
1955
  Returns a value that indicates whether new properties can be added to an object.
2063
1956
 
2064
1957
  #### Parameters
2065
1958
 
2066
- | Name | Type | Description |
2067
- | :------ | :------ | :------ |
2068
- | `o` | `any` | Object to test. |
1959
+ **o**: `any`
1960
+
1961
+ Object to test.
2069
1962
 
2070
1963
  #### Returns
2071
1964
 
@@ -2073,21 +1966,21 @@ Returns a value that indicates whether new properties can be added to an object.
2073
1966
 
2074
1967
  #### Defined in
2075
1968
 
2076
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:258
1969
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:258
2077
1970
 
2078
- ___
1971
+ ***
2079
1972
 
2080
- ### isFrozen
1973
+ ### isFrozen()
2081
1974
 
2082
- **isFrozen**(`o`): `boolean`
1975
+ > `static` **isFrozen**(`o`): `boolean`
2083
1976
 
2084
1977
  Returns true if existing property attributes and values cannot be modified in an object, and new properties cannot be added to the object.
2085
1978
 
2086
1979
  #### Parameters
2087
1980
 
2088
- | Name | Type | Description |
2089
- | :------ | :------ | :------ |
2090
- | `o` | `any` | Object to test. |
1981
+ **o**: `any`
1982
+
1983
+ Object to test.
2091
1984
 
2092
1985
  #### Returns
2093
1986
 
@@ -2095,21 +1988,21 @@ Returns true if existing property attributes and values cannot be modified in an
2095
1988
 
2096
1989
  #### Defined in
2097
1990
 
2098
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:252
1991
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:252
2099
1992
 
2100
- ___
1993
+ ***
2101
1994
 
2102
- ### isSealed
1995
+ ### isSealed()
2103
1996
 
2104
- **isSealed**(`o`): `boolean`
1997
+ > `static` **isSealed**(`o`): `boolean`
2105
1998
 
2106
1999
  Returns true if existing property attributes cannot be modified in an object and new properties cannot be added to the object.
2107
2000
 
2108
2001
  #### Parameters
2109
2002
 
2110
- | Name | Type | Description |
2111
- | :------ | :------ | :------ |
2112
- | `o` | `any` | Object to test. |
2003
+ **o**: `any`
2004
+
2005
+ Object to test.
2113
2006
 
2114
2007
  #### Returns
2115
2008
 
@@ -2117,53 +2010,57 @@ Returns true if existing property attributes cannot be modified in an object and
2117
2010
 
2118
2011
  #### Defined in
2119
2012
 
2120
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:246
2013
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:246
2014
+
2015
+ ***
2121
2016
 
2122
- ___
2017
+ ### keys()
2123
2018
 
2124
- ### keys
2019
+ #### keys(o)
2125
2020
 
2126
- **keys**(`o`): `string`[]
2021
+ > `static` **keys**(`o`): `string`[]
2127
2022
 
2128
2023
  Returns the names of the enumerable string properties and methods of an object.
2129
2024
 
2130
- #### Parameters
2025
+ ##### Parameters
2131
2026
 
2132
- | Name | Type | Description |
2133
- | :------ | :------ | :------ |
2134
- | `o` | `object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
2027
+ **o**: `object`
2135
2028
 
2136
- #### Returns
2029
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
2030
+
2031
+ ##### Returns
2137
2032
 
2138
2033
  `string`[]
2139
2034
 
2140
- #### Defined in
2035
+ ##### Defined in
2141
2036
 
2142
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:264
2037
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:264
2143
2038
 
2144
- **keys**(`o`): `string`[]
2039
+ #### keys(o)
2040
+
2041
+ > `static` **keys**(`o`): `string`[]
2145
2042
 
2146
2043
  Returns the names of the enumerable string properties and methods of an object.
2147
2044
 
2148
- #### Parameters
2045
+ ##### Parameters
2149
2046
 
2150
- | Name | Type | Description |
2151
- | :------ | :------ | :------ |
2152
- | `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
2047
+ **o**
2153
2048
 
2154
- #### Returns
2049
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
2050
+
2051
+ ##### Returns
2155
2052
 
2156
2053
  `string`[]
2157
2054
 
2158
- #### Defined in
2055
+ ##### Defined in
2159
2056
 
2160
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:323
2057
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:325
2161
2058
 
2162
- ___
2059
+ ***
2163
2060
 
2164
- ### list
2061
+ ### list()
2165
2062
 
2166
- **list**(): [`Funcs`](../interfaces/Funcs.md)
2063
+ > `static` **list**(): [`Funcs`](../interfaces/Funcs.md)
2167
2064
 
2168
2065
  #### Returns
2169
2066
 
@@ -2171,27 +2068,25 @@ ___
2171
2068
 
2172
2069
  #### Defined in
2173
2070
 
2174
- [packages/ai-tool/src/tool-func.ts:81](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L81)
2071
+ [packages/ai-tool/src/tool-func.ts:81](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L81)
2175
2072
 
2176
- ___
2073
+ ***
2177
2074
 
2178
- ### preventExtensions
2075
+ ### preventExtensions()
2179
2076
 
2180
- **preventExtensions**\<`T`\>(`o`): `T`
2077
+ > `static` **preventExtensions**\<`T`\>(`o`): `T`
2181
2078
 
2182
2079
  Prevents the addition of new properties to an object.
2183
2080
 
2184
- #### Type parameters
2081
+ #### Type Parameters
2185
2082
 
2186
- | Name |
2187
- | :------ |
2188
- | `T` |
2083
+ **T**
2189
2084
 
2190
2085
  #### Parameters
2191
2086
 
2192
- | Name | Type | Description |
2193
- | :------ | :------ | :------ |
2194
- | `o` | `T` | Object to make non-extensible. |
2087
+ **o**: `T`
2088
+
2089
+ Object to make non-extensible.
2195
2090
 
2196
2091
  #### Returns
2197
2092
 
@@ -2199,75 +2094,77 @@ Prevents the addition of new properties to an object.
2199
2094
 
2200
2095
  #### Defined in
2201
2096
 
2202
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:240
2097
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:240
2203
2098
 
2204
- ___
2099
+ ***
2205
2100
 
2206
- ### register
2101
+ ### register()
2207
2102
 
2208
- **register**(`name`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
2103
+ #### register(name, options)
2209
2104
 
2210
- #### Parameters
2105
+ > `static` **register**(`name`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
2211
2106
 
2212
- | Name | Type |
2213
- | :------ | :------ |
2214
- | `name` | `string` |
2215
- | `options` | [`FuncItem`](../interfaces/FuncItem.md) |
2107
+ ##### Parameters
2216
2108
 
2217
- #### Returns
2109
+ **name**: `string`
2110
+
2111
+ • **options**: [`FuncItem`](../interfaces/FuncItem.md)
2112
+
2113
+ ##### Returns
2218
2114
 
2219
2115
  `boolean` \| [`ToolFunc`](ToolFunc.md)
2220
2116
 
2221
- #### Defined in
2117
+ ##### Defined in
2222
2118
 
2223
- [packages/ai-tool/src/tool-func.ts:172](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L172)
2119
+ [packages/ai-tool/src/tool-func.ts:172](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L172)
2224
2120
 
2225
- **register**(`func`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
2121
+ #### register(func, options)
2226
2122
 
2227
- #### Parameters
2123
+ > `static` **register**(`func`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
2124
+
2125
+ ##### Parameters
2228
2126
 
2229
- | Name | Type |
2230
- | :------ | :------ |
2231
- | `func` | `Function` |
2232
- | `options` | [`FuncItem`](../interfaces/FuncItem.md) |
2127
+ **func**: `Function`
2233
2128
 
2234
- #### Returns
2129
+ **options**: [`FuncItem`](../interfaces/FuncItem.md)
2130
+
2131
+ ##### Returns
2235
2132
 
2236
2133
  `boolean` \| [`ToolFunc`](ToolFunc.md)
2237
2134
 
2238
- #### Defined in
2135
+ ##### Defined in
2239
2136
 
2240
- [packages/ai-tool/src/tool-func.ts:173](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L173)
2137
+ [packages/ai-tool/src/tool-func.ts:173](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L173)
2241
2138
 
2242
- **register**(`name`, `options?`): `boolean` \| [`ToolFunc`](ToolFunc.md)
2139
+ #### register(name, options)
2243
2140
 
2244
- #### Parameters
2141
+ > `static` **register**(`name`, `options`?): `boolean` \| [`ToolFunc`](ToolFunc.md)
2245
2142
 
2246
- | Name | Type |
2247
- | :------ | :------ |
2248
- | `name` | `string` \| `Function` \| [`ToolFunc`](ToolFunc.md) \| [`FuncItem`](../interfaces/FuncItem.md) |
2249
- | `options?` | [`FuncItem`](../interfaces/FuncItem.md) |
2143
+ ##### Parameters
2250
2144
 
2251
- #### Returns
2145
+ **name**: `string` \| `Function` \| [`ToolFunc`](ToolFunc.md) \| [`FuncItem`](../interfaces/FuncItem.md)
2146
+
2147
+ • **options?**: [`FuncItem`](../interfaces/FuncItem.md)
2148
+
2149
+ ##### Returns
2252
2150
 
2253
2151
  `boolean` \| [`ToolFunc`](ToolFunc.md)
2254
2152
 
2255
- #### Defined in
2153
+ ##### Defined in
2256
2154
 
2257
- [packages/ai-tool/src/tool-func.ts:174](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L174)
2155
+ [packages/ai-tool/src/tool-func.ts:174](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L174)
2258
2156
 
2259
- ___
2157
+ ***
2260
2158
 
2261
- ### run
2159
+ ### run()
2262
2160
 
2263
- **run**(`name`, `params?`): `Promise`\<`any`\>
2161
+ > `static` **run**(`name`, `params`?): `Promise`\<`any`\>
2264
2162
 
2265
2163
  #### Parameters
2266
2164
 
2267
- | Name | Type |
2268
- | :------ | :------ |
2269
- | `name` | `string` |
2270
- | `params?` | `any` |
2165
+ **name**: `string`
2166
+
2167
+ **params?**: `any`
2271
2168
 
2272
2169
  #### Returns
2273
2170
 
@@ -2275,20 +2172,19 @@ ___
2275
2172
 
2276
2173
  #### Defined in
2277
2174
 
2278
- [packages/ai-tool/src/tool-func.ts:130](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L130)
2175
+ [packages/ai-tool/src/tool-func.ts:130](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L130)
2279
2176
 
2280
- ___
2177
+ ***
2281
2178
 
2282
- ### runSync
2179
+ ### runSync()
2283
2180
 
2284
- **runSync**(`name`, `params?`): `any`
2181
+ > `static` **runSync**(`name`, `params`?): `any`
2285
2182
 
2286
2183
  #### Parameters
2287
2184
 
2288
- | Name | Type |
2289
- | :------ | :------ |
2290
- | `name` | `string` |
2291
- | `params?` | `any` |
2185
+ **name**: `string`
2186
+
2187
+ **params?**: `any`
2292
2188
 
2293
2189
  #### Returns
2294
2190
 
@@ -2296,20 +2192,19 @@ ___
2296
2192
 
2297
2193
  #### Defined in
2298
2194
 
2299
- [packages/ai-tool/src/tool-func.ts:138](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L138)
2195
+ [packages/ai-tool/src/tool-func.ts:138](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L138)
2300
2196
 
2301
- ___
2197
+ ***
2302
2198
 
2303
- ### runWithPos
2199
+ ### runWithPos()
2304
2200
 
2305
- **runWithPos**(`name`, `...params`): `Promise`\<`any`\>
2201
+ > `static` **runWithPos**(`name`, ...`params`): `Promise`\<`any`\>
2306
2202
 
2307
2203
  #### Parameters
2308
2204
 
2309
- | Name | Type |
2310
- | :------ | :------ |
2311
- | `name` | `string` |
2312
- | `...params` | `any`[] |
2205
+ **name**: `string`
2206
+
2207
+ ...**params**: `any`[]
2313
2208
 
2314
2209
  #### Returns
2315
2210
 
@@ -2317,20 +2212,19 @@ ___
2317
2212
 
2318
2213
  #### Defined in
2319
2214
 
2320
- [packages/ai-tool/src/tool-func.ts:151](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L151)
2215
+ [packages/ai-tool/src/tool-func.ts:151](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L151)
2321
2216
 
2322
- ___
2217
+ ***
2323
2218
 
2324
- ### runWithPosSync
2219
+ ### runWithPosSync()
2325
2220
 
2326
- **runWithPosSync**(`name`, `...params`): `any`
2221
+ > `static` **runWithPosSync**(`name`, ...`params`): `any`
2327
2222
 
2328
2223
  #### Parameters
2329
2224
 
2330
- | Name | Type |
2331
- | :------ | :------ |
2332
- | `name` | `string` |
2333
- | `...params` | `any`[] |
2225
+ **name**: `string`
2226
+
2227
+ ...**params**: `any`[]
2334
2228
 
2335
2229
  #### Returns
2336
2230
 
@@ -2338,27 +2232,25 @@ ___
2338
2232
 
2339
2233
  #### Defined in
2340
2234
 
2341
- [packages/ai-tool/src/tool-func.ts:159](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L159)
2235
+ [packages/ai-tool/src/tool-func.ts:159](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L159)
2342
2236
 
2343
- ___
2237
+ ***
2344
2238
 
2345
- ### seal
2239
+ ### seal()
2346
2240
 
2347
- **seal**\<`T`\>(`o`): `T`
2241
+ > `static` **seal**\<`T`\>(`o`): `T`
2348
2242
 
2349
2243
  Prevents the modification of attributes of existing properties, and prevents the addition of new properties.
2350
2244
 
2351
- #### Type parameters
2245
+ #### Type Parameters
2352
2246
 
2353
- | Name |
2354
- | :------ |
2355
- | `T` |
2247
+ **T**
2356
2248
 
2357
2249
  #### Parameters
2358
2250
 
2359
- | Name | Type | Description |
2360
- | :------ | :------ | :------ |
2361
- | `o` | `T` | Object on which to lock the attributes. |
2251
+ **o**: `T`
2252
+
2253
+ Object on which to lock the attributes.
2362
2254
 
2363
2255
  #### Returns
2364
2256
 
@@ -2366,19 +2258,17 @@ Prevents the modification of attributes of existing properties, and prevents the
2366
2258
 
2367
2259
  #### Defined in
2368
2260
 
2369
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts:216
2261
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:216
2370
2262
 
2371
- ___
2263
+ ***
2372
2264
 
2373
- ### setApiRoot
2265
+ ### setApiRoot()
2374
2266
 
2375
- **setApiRoot**(`v`): `void`
2267
+ > `static` **setApiRoot**(`v`): `void`
2376
2268
 
2377
2269
  #### Parameters
2378
2270
 
2379
- | Name | Type |
2380
- | :------ | :------ |
2381
- | `v` | `string` |
2271
+ **v**: `string`
2382
2272
 
2383
2273
  #### Returns
2384
2274
 
@@ -2386,22 +2276,25 @@ ___
2386
2276
 
2387
2277
  #### Defined in
2388
2278
 
2389
- [packages/ai-tool/src/server-tools.ts:30](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/server-tools.ts#L30)
2279
+ [packages/ai-tool/src/server-tools.ts:30](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/server-tools.ts#L30)
2390
2280
 
2391
- ___
2281
+ ***
2392
2282
 
2393
- ### setPrototypeOf
2283
+ ### setPrototypeOf()
2394
2284
 
2395
- **setPrototypeOf**(`o`, `proto`): `any`
2285
+ > `static` **setPrototypeOf**(`o`, `proto`): `any`
2396
2286
 
2397
2287
  Sets the prototype of a specified object o to object proto or null. Returns the object o.
2398
2288
 
2399
2289
  #### Parameters
2400
2290
 
2401
- | Name | Type | Description |
2402
- | :------ | :------ | :------ |
2403
- | `o` | `any` | The object to change its prototype. |
2404
- | `proto` | ``null`` \| `object` | The value of the new prototype or null. |
2291
+ **o**: `any`
2292
+
2293
+ The object to change its prototype.
2294
+
2295
+ • **proto**: `null` \| `object`
2296
+
2297
+ The value of the new prototype or null.
2405
2298
 
2406
2299
  #### Returns
2407
2300
 
@@ -2409,33 +2302,31 @@ Sets the prototype of a specified object o to object proto or null. Returns the
2409
2302
 
2410
2303
  #### Defined in
2411
2304
 
2412
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts:337
2305
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:339
2413
2306
 
2414
- ___
2307
+ ***
2415
2308
 
2416
- ### toJSON
2309
+ ### toJSON()
2417
2310
 
2418
- **toJSON**(): `Object`
2311
+ > `static` **toJSON**(): `object`
2419
2312
 
2420
2313
  #### Returns
2421
2314
 
2422
- `Object`
2315
+ `object`
2423
2316
 
2424
2317
  #### Defined in
2425
2318
 
2426
- [packages/ai-tool/src/server-tools.ts:44](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/server-tools.ts#L44)
2319
+ [packages/ai-tool/src/server-tools.ts:44](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/server-tools.ts#L44)
2427
2320
 
2428
- ___
2321
+ ***
2429
2322
 
2430
- ### unregister
2323
+ ### unregister()
2431
2324
 
2432
- **unregister**(`name`): `undefined` \| [`ToolFunc`](ToolFunc.md)
2325
+ > `static` **unregister**(`name`): `undefined` \| [`ToolFunc`](ToolFunc.md)
2433
2326
 
2434
2327
  #### Parameters
2435
2328
 
2436
- | Name | Type |
2437
- | :------ | :------ |
2438
- | `name` | `string` |
2329
+ **name**: `string`
2439
2330
 
2440
2331
  #### Returns
2441
2332
 
@@ -2443,50 +2334,52 @@ ___
2443
2334
 
2444
2335
  #### Defined in
2445
2336
 
2446
- [packages/ai-tool/src/tool-func.ts:202](https://github.com/isdk/ai-tool.js/blob/c5e620338f3b80d6ef09148577c5087098896d8b/src/tool-func.ts#L202)
2337
+ [packages/ai-tool/src/tool-func.ts:202](https://github.com/isdk/ai-tool.js/blob/37ada542a786fbbc770f2d61beb564f6e603941d/src/tool-func.ts#L202)
2447
2338
 
2448
- ___
2339
+ ***
2449
2340
 
2450
- ### values
2341
+ ### values()
2451
2342
 
2452
- **values**\<`T`\>(`o`): `T`[]
2343
+ #### values(o)
2453
2344
 
2454
- Returns an array of values of the enumerable properties of an object
2345
+ > `static` **values**\<`T`\>(`o`): `T`[]
2455
2346
 
2456
- #### Type parameters
2347
+ Returns an array of values of the enumerable own properties of an object
2457
2348
 
2458
- | Name |
2459
- | :------ |
2460
- | `T` |
2349
+ ##### Type Parameters
2461
2350
 
2462
- #### Parameters
2351
+ **T**
2352
+
2353
+ ##### Parameters
2463
2354
 
2464
- | Name | Type | Description |
2465
- | :------ | :------ | :------ |
2466
- | `o` | \{ `[s: string]`: `T`; } \| `ArrayLike`\<`T`\> | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
2355
+ **o**: `object` \| `ArrayLike`\<`T`\>
2467
2356
 
2468
- #### Returns
2357
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
2358
+
2359
+ ##### Returns
2469
2360
 
2470
2361
  `T`[]
2471
2362
 
2472
- #### Defined in
2363
+ ##### Defined in
2473
2364
 
2474
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts:24
2365
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:24
2475
2366
 
2476
- **values**(`o`): `any`[]
2367
+ #### values(o)
2477
2368
 
2478
- Returns an array of values of the enumerable properties of an object
2369
+ > `static` **values**(`o`): `any`[]
2479
2370
 
2480
- #### Parameters
2371
+ Returns an array of values of the enumerable own properties of an object
2481
2372
 
2482
- | Name | Type | Description |
2483
- | :------ | :------ | :------ |
2484
- | `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
2373
+ ##### Parameters
2485
2374
 
2486
- #### Returns
2375
+ **o**
2376
+
2377
+ Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
2378
+
2379
+ ##### Returns
2487
2380
 
2488
2381
  `any`[]
2489
2382
 
2490
- #### Defined in
2383
+ ##### Defined in
2491
2384
 
2492
- node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts:30
2385
+ node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:30