@use-stall/types 0.3.0 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@use-stall/types",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Type declarations for Stall SDKs",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
@@ -123,7 +123,7 @@ type ExtensionLookupGroup = LocalListUIComponent | RemoteListUIComponent;
123
123
 
124
124
  interface UIProps {
125
125
  item: any;
126
- search_query: string;
126
+ search_query: Record<string, string>;
127
127
  base_currency: string;
128
128
  active_cart: UnifiedOrderType | null;
129
129
  BackButton: ComponentType<any>;