@factorialco/f0-react 1.201.8 → 1.203.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.
package/dist/f0.d.ts CHANGED
@@ -839,6 +839,8 @@ declare type DataCollectionExtendFetchOptions<NavigationFilters extends Navigati
839
839
  navigationFilters: NavigationFiltersState<NavigationFilters>;
840
840
  };
841
841
 
842
+ export declare const dataCollectionLocalStorageHandler: DataCollectionStorageHandler;
843
+
842
844
  /**
843
845
  * Extended base fetch options for data collection
844
846
  */
@@ -905,11 +907,11 @@ declare type DataCollectionStatus = {
905
907
  visualization?: number;
906
908
  };
907
909
 
908
- declare type DataCollectionStorage = {
910
+ export declare type DataCollectionStorage = {
909
911
  settings?: DataCollectionSettings;
910
912
  } & DataCollectionStatus;
911
913
 
912
- declare type DataCollectionStorageHandler = {
914
+ export declare type DataCollectionStorageHandler = {
913
915
  get: (key: string) => Promise<DataCollectionStorage>;
914
916
  set: (key: string, storage: DataCollectionStorage) => Promise<void>;
915
917
  };