@seekora-ai/docsearch-react 0.2.0 → 0.2.1

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 (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -85,6 +85,10 @@ interface SearchSource {
85
85
  endpoint: string;
86
86
  /** Optional API key for this source */
87
87
  apiKey?: string;
88
+ /** Store ID for store-based authentication */
89
+ storeId?: string;
90
+ /** Store secret for store-based authentication */
91
+ storeSecret?: string;
88
92
  /** Maximum results from this source */
89
93
  maxResults?: number;
90
94
  /** Minimum query length to trigger search for this source */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/docsearch-react",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Seekora DocSearch React Component - Documentation search modal with keyboard navigation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",