@open-tender/cloud 0.1.65 → 0.1.66
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/cjs/app/hooks.d.ts +1 -1
- package/dist/cjs/app/store.d.ts +3 -3
- package/dist/cjs/slices/allergens.d.ts +1 -1
- package/dist/cjs/slices/config.d.ts +1 -1
- package/dist/cjs/slices/customer/index.d.ts +7 -6
- package/dist/cjs/slices/customer/index.js +7 -6
- package/dist/cjs/slices/order.d.ts +3 -3
- package/dist/cjs/slices/tags.d.ts +1 -1
- package/dist/esm/app/hooks.d.ts +1 -1
- package/dist/esm/app/store.d.ts +3 -3
- package/dist/esm/slices/allergens.d.ts +1 -1
- package/dist/esm/slices/config.d.ts +1 -1
- package/dist/esm/slices/customer/index.d.ts +7 -6
- package/dist/esm/slices/customer/index.js +7 -6
- package/dist/esm/slices/order.d.ts +3 -3
- package/dist/esm/slices/tags.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/app/hooks.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const useAppDispatch: () => import("redux-thunk").ThunkDispatch<i
|
|
|
22
22
|
rewards: import("..").CustomerRewardsState;
|
|
23
23
|
qrcode: import("..").CustomerQRCodeState;
|
|
24
24
|
thanx: import("..").CustomerThanxState;
|
|
25
|
-
tpls: import("
|
|
25
|
+
tpls: import("..").CustomerTplsState;
|
|
26
26
|
}>;
|
|
27
27
|
signUp: import("..").SignUpState;
|
|
28
28
|
revenueCenters: import("..").RevenueCentersState;
|
package/dist/cjs/app/store.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const appReducer: import("redux").Reducer<import("redux").Combine
|
|
|
21
21
|
rewards: import("../slices").CustomerRewardsState;
|
|
22
22
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
23
23
|
thanx: import("../slices").CustomerThanxState;
|
|
24
|
-
tpls: import("../slices
|
|
24
|
+
tpls: import("../slices").CustomerTplsState;
|
|
25
25
|
}>;
|
|
26
26
|
signUp: import("../slices").SignUpState;
|
|
27
27
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -79,7 +79,7 @@ declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore
|
|
|
79
79
|
rewards: import("../slices").CustomerRewardsState;
|
|
80
80
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
81
81
|
thanx: import("../slices").CustomerThanxState;
|
|
82
|
-
tpls: import("../slices
|
|
82
|
+
tpls: import("../slices").CustomerTplsState;
|
|
83
83
|
}>;
|
|
84
84
|
signUp: import("../slices").SignUpState;
|
|
85
85
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -135,7 +135,7 @@ declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore
|
|
|
135
135
|
rewards: import("../slices").CustomerRewardsState;
|
|
136
136
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
137
137
|
thanx: import("../slices").CustomerThanxState;
|
|
138
|
-
tpls: import("../slices
|
|
138
|
+
tpls: import("../slices").CustomerTplsState;
|
|
139
139
|
}>;
|
|
140
140
|
signUp: import("../slices").SignUpState;
|
|
141
141
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -49,7 +49,7 @@ export declare const selectSelectedAllergenNames: ((state: import("redux").Empty
|
|
|
49
49
|
rewards: import("./customer").CustomerRewardsState;
|
|
50
50
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
51
51
|
thanx: import("./customer").CustomerThanxState;
|
|
52
|
-
tpls: import("./customer
|
|
52
|
+
tpls: import("./customer").CustomerTplsState;
|
|
53
53
|
}>;
|
|
54
54
|
signUp: import("./signUp").SignUpState;
|
|
55
55
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -105,7 +105,7 @@ export declare const selectOptIns: ((state: import("redux").EmptyObject & {
|
|
|
105
105
|
rewards: import("./customer").CustomerRewardsState;
|
|
106
106
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
107
107
|
thanx: import("./customer").CustomerThanxState;
|
|
108
|
-
tpls: import("./customer
|
|
108
|
+
tpls: import("./customer").CustomerTplsState;
|
|
109
109
|
}>;
|
|
110
110
|
signUp: import("./signUp").SignUpState;
|
|
111
111
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -18,18 +18,19 @@ export declare const customerReducer: import("redux").Reducer<import("redux").Co
|
|
|
18
18
|
tpls: import("./tpls").CustomerTplsState;
|
|
19
19
|
}>, import("redux").AnyAction>;
|
|
20
20
|
export * from './account';
|
|
21
|
-
export * from './allergens';
|
|
22
21
|
export * from './addresses';
|
|
22
|
+
export * from './allergens';
|
|
23
23
|
export * from './communicationPreferences';
|
|
24
24
|
export * from './creditCards';
|
|
25
25
|
export * from './favorites';
|
|
26
26
|
export * from './fcmToken';
|
|
27
27
|
export * from './giftCards';
|
|
28
|
-
export * from './orders';
|
|
29
|
-
export * from './loyalty';
|
|
30
28
|
export * from './groupOrders';
|
|
31
|
-
export * from './rewards';
|
|
32
|
-
export * from './thanx';
|
|
33
|
-
export * from './order';
|
|
34
29
|
export * from './houseAccounts';
|
|
30
|
+
export * from './loyalty';
|
|
31
|
+
export * from './order';
|
|
32
|
+
export * from './orders';
|
|
35
33
|
export * from './qrCode';
|
|
34
|
+
export * from './rewards';
|
|
35
|
+
export * from './thanx';
|
|
36
|
+
export * from './tpls';
|
|
@@ -41,18 +41,19 @@ exports.customerReducer = (0, redux_1.combineReducers)({
|
|
|
41
41
|
[types_1.ReducerType.Tpls]: tpls_1.customerTplsReducer
|
|
42
42
|
});
|
|
43
43
|
tslib_1.__exportStar(require("./account"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./allergens"), exports);
|
|
45
44
|
tslib_1.__exportStar(require("./addresses"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./allergens"), exports);
|
|
46
46
|
tslib_1.__exportStar(require("./communicationPreferences"), exports);
|
|
47
47
|
tslib_1.__exportStar(require("./creditCards"), exports);
|
|
48
48
|
tslib_1.__exportStar(require("./favorites"), exports);
|
|
49
49
|
tslib_1.__exportStar(require("./fcmToken"), exports);
|
|
50
50
|
tslib_1.__exportStar(require("./giftCards"), exports);
|
|
51
|
-
tslib_1.__exportStar(require("./orders"), exports);
|
|
52
|
-
tslib_1.__exportStar(require("./loyalty"), exports);
|
|
53
51
|
tslib_1.__exportStar(require("./groupOrders"), exports);
|
|
54
|
-
tslib_1.__exportStar(require("./rewards"), exports);
|
|
55
|
-
tslib_1.__exportStar(require("./thanx"), exports);
|
|
56
|
-
tslib_1.__exportStar(require("./order"), exports);
|
|
57
52
|
tslib_1.__exportStar(require("./houseAccounts"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./loyalty"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./order"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./orders"), exports);
|
|
58
56
|
tslib_1.__exportStar(require("./qrCode"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./rewards"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./thanx"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./tpls"), exports);
|
|
@@ -140,7 +140,7 @@ export declare const selectOrderLimits: ((state: import("redux").EmptyObject & {
|
|
|
140
140
|
rewards: import("./customer").CustomerRewardsState;
|
|
141
141
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
142
142
|
thanx: import("./customer").CustomerThanxState;
|
|
143
|
-
tpls: import("./customer
|
|
143
|
+
tpls: import("./customer").CustomerTplsState;
|
|
144
144
|
}>;
|
|
145
145
|
signUp: import("./signUp").SignUpState;
|
|
146
146
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -212,7 +212,7 @@ export declare const selectCartIds: ((state: import("redux").EmptyObject & {
|
|
|
212
212
|
rewards: import("./customer").CustomerRewardsState;
|
|
213
213
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
214
214
|
thanx: import("./customer").CustomerThanxState;
|
|
215
|
-
tpls: import("./customer
|
|
215
|
+
tpls: import("./customer").CustomerTplsState;
|
|
216
216
|
}>;
|
|
217
217
|
signUp: import("./signUp").SignUpState;
|
|
218
218
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -279,7 +279,7 @@ export declare const selectMenuVars: ((state: import("redux").EmptyObject & {
|
|
|
279
279
|
rewards: import("./customer").CustomerRewardsState;
|
|
280
280
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
281
281
|
thanx: import("./customer").CustomerThanxState;
|
|
282
|
-
tpls: import("./customer
|
|
282
|
+
tpls: import("./customer").CustomerTplsState;
|
|
283
283
|
}>;
|
|
284
284
|
signUp: import("./signUp").SignUpState;
|
|
285
285
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -49,7 +49,7 @@ export declare const selectSelectedTagNames: ((state: import("redux").EmptyObjec
|
|
|
49
49
|
rewards: import("./customer").CustomerRewardsState;
|
|
50
50
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
51
51
|
thanx: import("./customer").CustomerThanxState;
|
|
52
|
-
tpls: import("./customer
|
|
52
|
+
tpls: import("./customer").CustomerTplsState;
|
|
53
53
|
}>;
|
|
54
54
|
signUp: import("./signUp").SignUpState;
|
|
55
55
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
package/dist/esm/app/hooks.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const useAppDispatch: () => import("redux-thunk").ThunkDispatch<i
|
|
|
22
22
|
rewards: import("..").CustomerRewardsState;
|
|
23
23
|
qrcode: import("..").CustomerQRCodeState;
|
|
24
24
|
thanx: import("..").CustomerThanxState;
|
|
25
|
-
tpls: import("
|
|
25
|
+
tpls: import("..").CustomerTplsState;
|
|
26
26
|
}>;
|
|
27
27
|
signUp: import("..").SignUpState;
|
|
28
28
|
revenueCenters: import("..").RevenueCentersState;
|
package/dist/esm/app/store.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const appReducer: import("redux").Reducer<import("redux").Combine
|
|
|
21
21
|
rewards: import("../slices").CustomerRewardsState;
|
|
22
22
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
23
23
|
thanx: import("../slices").CustomerThanxState;
|
|
24
|
-
tpls: import("../slices
|
|
24
|
+
tpls: import("../slices").CustomerTplsState;
|
|
25
25
|
}>;
|
|
26
26
|
signUp: import("../slices").SignUpState;
|
|
27
27
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -79,7 +79,7 @@ declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore
|
|
|
79
79
|
rewards: import("../slices").CustomerRewardsState;
|
|
80
80
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
81
81
|
thanx: import("../slices").CustomerThanxState;
|
|
82
|
-
tpls: import("../slices
|
|
82
|
+
tpls: import("../slices").CustomerTplsState;
|
|
83
83
|
}>;
|
|
84
84
|
signUp: import("../slices").SignUpState;
|
|
85
85
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -135,7 +135,7 @@ declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore
|
|
|
135
135
|
rewards: import("../slices").CustomerRewardsState;
|
|
136
136
|
qrcode: import("../slices").CustomerQRCodeState;
|
|
137
137
|
thanx: import("../slices").CustomerThanxState;
|
|
138
|
-
tpls: import("../slices
|
|
138
|
+
tpls: import("../slices").CustomerTplsState;
|
|
139
139
|
}>;
|
|
140
140
|
signUp: import("../slices").SignUpState;
|
|
141
141
|
revenueCenters: import("../slices").RevenueCentersState;
|
|
@@ -49,7 +49,7 @@ export declare const selectSelectedAllergenNames: ((state: import("redux").Empty
|
|
|
49
49
|
rewards: import("./customer").CustomerRewardsState;
|
|
50
50
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
51
51
|
thanx: import("./customer").CustomerThanxState;
|
|
52
|
-
tpls: import("./customer
|
|
52
|
+
tpls: import("./customer").CustomerTplsState;
|
|
53
53
|
}>;
|
|
54
54
|
signUp: import("./signUp").SignUpState;
|
|
55
55
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -105,7 +105,7 @@ export declare const selectOptIns: ((state: import("redux").EmptyObject & {
|
|
|
105
105
|
rewards: import("./customer").CustomerRewardsState;
|
|
106
106
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
107
107
|
thanx: import("./customer").CustomerThanxState;
|
|
108
|
-
tpls: import("./customer
|
|
108
|
+
tpls: import("./customer").CustomerTplsState;
|
|
109
109
|
}>;
|
|
110
110
|
signUp: import("./signUp").SignUpState;
|
|
111
111
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -18,18 +18,19 @@ export declare const customerReducer: import("redux").Reducer<import("redux").Co
|
|
|
18
18
|
tpls: import("./tpls").CustomerTplsState;
|
|
19
19
|
}>, import("redux").AnyAction>;
|
|
20
20
|
export * from './account';
|
|
21
|
-
export * from './allergens';
|
|
22
21
|
export * from './addresses';
|
|
22
|
+
export * from './allergens';
|
|
23
23
|
export * from './communicationPreferences';
|
|
24
24
|
export * from './creditCards';
|
|
25
25
|
export * from './favorites';
|
|
26
26
|
export * from './fcmToken';
|
|
27
27
|
export * from './giftCards';
|
|
28
|
-
export * from './orders';
|
|
29
|
-
export * from './loyalty';
|
|
30
28
|
export * from './groupOrders';
|
|
31
|
-
export * from './rewards';
|
|
32
|
-
export * from './thanx';
|
|
33
|
-
export * from './order';
|
|
34
29
|
export * from './houseAccounts';
|
|
30
|
+
export * from './loyalty';
|
|
31
|
+
export * from './order';
|
|
32
|
+
export * from './orders';
|
|
35
33
|
export * from './qrCode';
|
|
34
|
+
export * from './rewards';
|
|
35
|
+
export * from './thanx';
|
|
36
|
+
export * from './tpls';
|
|
@@ -37,18 +37,19 @@ export const customerReducer = combineReducers({
|
|
|
37
37
|
[ReducerType.Tpls]: customerTplsReducer
|
|
38
38
|
});
|
|
39
39
|
export * from './account';
|
|
40
|
-
export * from './allergens';
|
|
41
40
|
export * from './addresses';
|
|
41
|
+
export * from './allergens';
|
|
42
42
|
export * from './communicationPreferences';
|
|
43
43
|
export * from './creditCards';
|
|
44
44
|
export * from './favorites';
|
|
45
45
|
export * from './fcmToken';
|
|
46
46
|
export * from './giftCards';
|
|
47
|
-
export * from './orders';
|
|
48
|
-
export * from './loyalty';
|
|
49
47
|
export * from './groupOrders';
|
|
50
|
-
export * from './rewards';
|
|
51
|
-
export * from './thanx';
|
|
52
|
-
export * from './order';
|
|
53
48
|
export * from './houseAccounts';
|
|
49
|
+
export * from './loyalty';
|
|
50
|
+
export * from './order';
|
|
51
|
+
export * from './orders';
|
|
54
52
|
export * from './qrCode';
|
|
53
|
+
export * from './rewards';
|
|
54
|
+
export * from './thanx';
|
|
55
|
+
export * from './tpls';
|
|
@@ -140,7 +140,7 @@ export declare const selectOrderLimits: ((state: import("redux").EmptyObject & {
|
|
|
140
140
|
rewards: import("./customer").CustomerRewardsState;
|
|
141
141
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
142
142
|
thanx: import("./customer").CustomerThanxState;
|
|
143
|
-
tpls: import("./customer
|
|
143
|
+
tpls: import("./customer").CustomerTplsState;
|
|
144
144
|
}>;
|
|
145
145
|
signUp: import("./signUp").SignUpState;
|
|
146
146
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -212,7 +212,7 @@ export declare const selectCartIds: ((state: import("redux").EmptyObject & {
|
|
|
212
212
|
rewards: import("./customer").CustomerRewardsState;
|
|
213
213
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
214
214
|
thanx: import("./customer").CustomerThanxState;
|
|
215
|
-
tpls: import("./customer
|
|
215
|
+
tpls: import("./customer").CustomerTplsState;
|
|
216
216
|
}>;
|
|
217
217
|
signUp: import("./signUp").SignUpState;
|
|
218
218
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -279,7 +279,7 @@ export declare const selectMenuVars: ((state: import("redux").EmptyObject & {
|
|
|
279
279
|
rewards: import("./customer").CustomerRewardsState;
|
|
280
280
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
281
281
|
thanx: import("./customer").CustomerThanxState;
|
|
282
|
-
tpls: import("./customer
|
|
282
|
+
tpls: import("./customer").CustomerTplsState;
|
|
283
283
|
}>;
|
|
284
284
|
signUp: import("./signUp").SignUpState;
|
|
285
285
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
|
@@ -49,7 +49,7 @@ export declare const selectSelectedTagNames: ((state: import("redux").EmptyObjec
|
|
|
49
49
|
rewards: import("./customer").CustomerRewardsState;
|
|
50
50
|
qrcode: import("./customer").CustomerQRCodeState;
|
|
51
51
|
thanx: import("./customer").CustomerThanxState;
|
|
52
|
-
tpls: import("./customer
|
|
52
|
+
tpls: import("./customer").CustomerTplsState;
|
|
53
53
|
}>;
|
|
54
54
|
signUp: import("./signUp").SignUpState;
|
|
55
55
|
revenueCenters: import("./revenueCenters").RevenueCentersState;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-tender/cloud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.66",
|
|
4
4
|
"description": "A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our cloud-based Order API.",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|