@cimulate/copilot-widget 0.25.0 → 0.26.0
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.
|
@@ -214,12 +214,12 @@ declare const setBrowseContext: (context: BrowsePayload["browseParams"]) => void
|
|
|
214
214
|
*/
|
|
215
215
|
declare const setSearchContext: (context: SearchPayload["searchParams"]) => void;
|
|
216
216
|
|
|
217
|
-
export declare const state: {
|
|
218
|
-
search: SearchState_2
|
|
219
|
-
browse: BrowseState_2
|
|
220
|
-
pdp: ProductView
|
|
217
|
+
export declare const state: () => Readonly<{
|
|
218
|
+
search: Readonly<SearchState_2>;
|
|
219
|
+
browse: Readonly<BrowseState_2>;
|
|
220
|
+
pdp: Readonly<ProductView>;
|
|
221
221
|
isConnected: boolean;
|
|
222
|
-
}
|
|
222
|
+
}>;
|
|
223
223
|
|
|
224
224
|
declare type Suggestion = CopilotSearchSuggestion | FacetedNavigationSuggestion | ProductViewSuggestion | CopilotBrowseSuggestion;
|
|
225
225
|
|