@seekora-ai/search-sdk 0.2.19 → 0.2.21

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.
@@ -139,7 +139,7 @@ export interface DataTypesComponentCheck {
139
139
  }
140
140
  export interface DataTypesComponentStatusDetail {
141
141
  /**
142
- * Typesense collection exists
142
+ * Search collection exists
143
143
  */
144
144
  'collection'?: DataTypesComponentCheck;
145
145
  /**
@@ -246,7 +246,7 @@ export interface DataTypesDropdownRecommendationsConfig {
246
246
  */
247
247
  'dynamic_tabs_max_count'?: number;
248
248
  /**
249
- * Method: \"groupBy\" (uses Typesense groupBy), \"facets\" (uses facet discovery), \"manual\" (uses FilteredTabs config only) (default: \"groupBy\")
249
+ * Method: \"groupBy\" (group results by field), \"facets\" (uses facet discovery), \"manual\" (uses FilteredTabs config only) (default: \"groupBy\")
250
250
  */
251
251
  'dynamic_tabs_method'?: string;
252
252
  /**
@@ -917,13 +917,13 @@ export interface DataTypesQuerySuggestionsConfig {
917
917
  */
918
918
  'min_popularity'?: number;
919
919
  /**
920
- * Whether to sync enabled suggestions to Typesense
920
+ * Whether the search collection is enabled for suggestions
921
921
  */
922
- 'sync_to_typesense'?: boolean;
922
+ 'search_index_enabled'?: boolean;
923
923
  /**
924
- * Whether to sync to Typesense
924
+ * Whether to sync enabled suggestions to the search engine
925
925
  */
926
- 'typesense_collection_enabled'?: boolean;
926
+ 'sync_to_index'?: boolean;
927
927
  /**
928
928
  * Include auto-generated suggestions
929
929
  */
@@ -1976,9 +1976,9 @@ export interface QuerySuggestionsServiceUpdateSuggestionConfigRequest {
1976
1976
  */
1977
1977
  'stemming_locale'?: string;
1978
1978
  /**
1979
- * Enable/disable syncing suggestions to Typesense
1979
+ * Enable/disable syncing suggestions to the search engine
1980
1980
  */
1981
- 'sync_to_typesense'?: boolean;
1981
+ 'sync_to_index'?: boolean;
1982
1982
  /**
1983
1983
  * Typo tolerance
1984
1984
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/search-sdk",
3
- "version": "0.2.19",
3
+ "version": "0.2.21",
4
4
  "description": "Seekora Search SDK for JavaScript/TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@
41
41
  "winston": "^3.11.0"
42
42
  },
43
43
  "devDependencies": {
44
+ "@changesets/cli": "^2.31.0",
44
45
  "@types/node": "^20.0.0",
45
46
  "esbuild": "^0.19.12",
46
47
  "typescript": "^5.0.0"