bt-core-app 2.0.211 → 2.0.214

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>;
@@ -1508,7 +1509,7 @@ export declare interface PathOptions {
1508
1509
  useLocalCache?: boolean;
1509
1510
  }
1510
1511
 
1511
- declare type PermissionGroup = string[];
1512
+ export declare type PermissionGroup = string[];
1512
1513
 
1513
1514
  export declare interface PointerOrTouchEvent extends PointerEvent, TouchEvent {
1514
1515
  }