bt-core-app 2.0.212 → 2.0.215

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
@@ -203,6 +203,7 @@ export declare interface BTActions {
203
203
  apiRequest: (doOptions: ApiRequestActionOptions) => Promise<Response | undefined>;
204
204
  apiUpload: <TReturn>(doOptions: ApiActionOptions) => Promise<TReturn | undefined>;
205
205
  clearErrors: () => void;
206
+ clearStore: (nav: string) => void;
206
207
  deleteItem: <T>(doOptions: DeleteOptions<T>) => Promise<string | undefined>;
207
208
  doAction: (action: any, options?: DoActionOptions) => Promise<any>;
208
209
  getAllItems: <T, TReturn>(doOptions: GetAllOptions<T, TReturn>) => Promise<StoreGetAllReturn<T | TReturn> | undefined>;