@wildix/wim-knowledge-base-client 0.0.41 → 0.0.42

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.
@@ -47,7 +47,7 @@ declare const SearchHistoryCommand_base: {
47
47
  * searchUser: "STRING_VALUE",
48
48
  * mode: "search" || "ai_answer",
49
49
  * },
50
- * search: "STRING_VALUE", // required
50
+ * search: "STRING_VALUE",
51
51
  * };
52
52
  * const command = new SearchHistoryCommand(input);
53
53
  * const response = await client.send(command);
@@ -1567,7 +1567,7 @@ export interface SearchHistoryInput {
1567
1567
  * The search query string for filtering the history results.
1568
1568
  * @public
1569
1569
  */
1570
- search: string;
1570
+ search?: string | undefined;
1571
1571
  }
1572
1572
  /**
1573
1573
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-knowledge-base-client",
3
3
  "description": "@wildix/wim-knowledge-base-client client",
4
- "version": "0.0.41",
4
+ "version": "0.0.42",
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",