@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.
- package/dist/index.d.ts +4 -0
- 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