@recats/cdeebee 2.3.1 → 2.3.3

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.
@@ -0,0 +1,24 @@
1
+ import { Dispatch } from 'redux';
2
+ import { cdeebeeTypes, cdeebeeValueList, EntityID } from './definition';
3
+ export declare function unsafe_updateStore(entityList: string, entityID: EntityID, value: unknown): (dispatch: Dispatch) => void;
4
+ export declare function setKeyValue(entityList: string, entityID: EntityID, valueList: cdeebeeValueList[]): (dispatch: Dispatch) => void;
5
+ export declare function commitEntity(entityList: string, entityID: EntityID, entity: object): (dispatch: Dispatch) => void;
6
+ export declare function resetEntity(entityList: string, entityID: string | number): (dispatch: Dispatch) => void;
7
+ export declare function dropCdeebeePath(path: (string | number)[]): (dispatch: Dispatch) => {
8
+ type: cdeebeeTypes;
9
+ payload: {
10
+ path: (string | number)[];
11
+ };
12
+ };
13
+ export declare function dropRequestByApiUrl(api: string): (dispatch: Dispatch) => {
14
+ type: cdeebeeTypes;
15
+ payload: {
16
+ api: string;
17
+ };
18
+ };
19
+ export declare function dropErrorsByApiUrl(api: string): (dispatch: Dispatch) => {
20
+ type: cdeebeeTypes;
21
+ payload: {
22
+ api: string;
23
+ };
24
+ };