@uniformdev/mesh-sdk-react 16.1.0 → 16.1.1-alpha.139

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 CHANGED
@@ -181,6 +181,7 @@ declare type ProductSearchResult = EntrySearchResult & {
181
181
  id: string;
182
182
  name: string;
183
183
  }>;
184
+ /** @deprecated Use `editLink` instead. */
184
185
  url?: string;
185
186
  name: string;
186
187
  };
@@ -207,7 +208,7 @@ interface ProductDynamicSelectorValue {
207
208
  sortOrder?: string;
208
209
  }
209
210
  interface ProductQueryProps<TValue extends ProductDynamicSelectorValue = ProductDynamicSelectorValue> {
210
- value: TValue;
211
+ value: TValue | undefined;
211
212
  setValue: (value: TValue) => Promise<void>;
212
213
  brands: Brand[] | undefined;
213
214
  categories: ProductQueryCategory[] | undefined;