@wildix/wim-tools-client 1.0.1 → 1.0.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.
@@ -106,6 +106,9 @@ declare const CreateToolCommand_base: {
106
106
  * includeDomains: [ // ToolSearchIncludeDomainsList
107
107
  * "STRING_VALUE",
108
108
  * ],
109
+ * excludeDomains: [ // ToolSearchExcludeDomainsList
110
+ * "STRING_VALUE",
111
+ * ],
109
112
  * },
110
113
  * chat: { // ToolChatHandler
111
114
  * config: { // ToolChatConfig
@@ -220,6 +223,9 @@ declare const CreateToolCommand_base: {
220
223
  * // includeDomains: [ // ToolSearchIncludeDomainsList
221
224
  * // "STRING_VALUE",
222
225
  * // ],
226
+ * // excludeDomains: [ // ToolSearchExcludeDomainsList
227
+ * // "STRING_VALUE",
228
+ * // ],
223
229
  * // },
224
230
  * // chat: { // ToolChatHandler
225
231
  * // config: { // ToolChatConfig
@@ -114,6 +114,9 @@ declare const GetToolCommand_base: {
114
114
  * // includeDomains: [ // ToolSearchIncludeDomainsList
115
115
  * // "STRING_VALUE",
116
116
  * // ],
117
+ * // excludeDomains: [ // ToolSearchExcludeDomainsList
118
+ * // "STRING_VALUE",
119
+ * // ],
117
120
  * // },
118
121
  * // chat: { // ToolChatHandler
119
122
  * // config: { // ToolChatConfig
@@ -114,6 +114,9 @@ declare const ListToolsCommand_base: {
114
114
  * // includeDomains: [ // ToolSearchIncludeDomainsList
115
115
  * // "STRING_VALUE",
116
116
  * // ],
117
+ * // excludeDomains: [ // ToolSearchExcludeDomainsList
118
+ * // "STRING_VALUE",
119
+ * // ],
117
120
  * // },
118
121
  * // chat: { // ToolChatHandler
119
122
  * // config: { // ToolChatConfig
@@ -107,6 +107,9 @@ declare const UpdateToolCommand_base: {
107
107
  * includeDomains: [ // ToolSearchIncludeDomainsList
108
108
  * "STRING_VALUE",
109
109
  * ],
110
+ * excludeDomains: [ // ToolSearchExcludeDomainsList
111
+ * "STRING_VALUE",
112
+ * ],
110
113
  * },
111
114
  * chat: { // ToolChatHandler
112
115
  * config: { // ToolChatConfig
@@ -221,6 +224,9 @@ declare const UpdateToolCommand_base: {
221
224
  * // includeDomains: [ // ToolSearchIncludeDomainsList
222
225
  * // "STRING_VALUE",
223
226
  * // ],
227
+ * // excludeDomains: [ // ToolSearchExcludeDomainsList
228
+ * // "STRING_VALUE",
229
+ * // ],
224
230
  * // },
225
231
  * // chat: { // ToolChatHandler
226
232
  * // config: { // ToolChatConfig
@@ -355,7 +355,7 @@ export interface ToolMcpToolHandler {
355
355
  mcpToolName: string;
356
356
  }
357
357
  /**
358
- * Search handler configuration. API key comes from AppConfig; query comes from tool input. Optionally restrict results to specific domains.
358
+ * Search handler configuration. API key comes from AppConfig; query comes from tool input. Optionally refine results using Tavily include_domains and/or exclude_domains (see Tavily domain filtering).
359
359
  * @public
360
360
  */
361
361
  export interface ToolSearchConfig {
@@ -364,6 +364,11 @@ export interface ToolSearchConfig {
364
364
  * @public
365
365
  */
366
366
  includeDomains?: (string)[] | undefined;
367
+ /**
368
+ * When non-empty, omit results from these domains or hosts. Same hostname rules as includeDomains. Can be combined with includeDomains per Tavily API.
369
+ * @public
370
+ */
371
+ excludeDomains?: (string)[] | undefined;
367
372
  }
368
373
  /**
369
374
  * @public
@@ -584,7 +589,7 @@ export declare namespace ToolHandler {
584
589
  $unknown?: never;
585
590
  }
586
591
  /**
587
- * Search handler configuration. API key comes from AppConfig; query comes from tool input. Optionally restrict results to specific domains.
592
+ * Search handler configuration. API key comes from AppConfig; query comes from tool input. Optionally refine results using Tavily include_domains and/or exclude_domains (see Tavily domain filtering).
588
593
  * @public
589
594
  */
590
595
  interface SearchMember {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-tools-client",
3
3
  "description": "@wildix/wim-tools-client client",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",