@open-tender/cloud 0.4.14 → 0.4.15
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.
|
@@ -34,5 +34,5 @@ export declare const exchangePointsShopRewardV2: import("@reduxjs/toolkit").Asyn
|
|
|
34
34
|
rejectedMeta?: unknown;
|
|
35
35
|
}>;
|
|
36
36
|
export declare const resetPointsShopV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"pointsShop/resetPointsShop">;
|
|
37
|
-
export declare const selectPointsShopV2: (state: AppState) =>
|
|
37
|
+
export declare const selectPointsShopV2: (state: AppState) => PointsShopV2State;
|
|
38
38
|
export declare const pointsShopV2Reducer: import("redux").Reducer<PointsShopV2State, import("redux").AnyAction>;
|
|
@@ -83,6 +83,6 @@ const pointsShopV2Slice = (0, toolkit_1.createSlice)({
|
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
85
|
exports.resetPointsShopV2 = pointsShopV2Slice.actions.resetPointsShop;
|
|
86
|
-
const selectPointsShopV2 = (state) => state.customer.
|
|
86
|
+
const selectPointsShopV2 = (state) => state.customer.pointsShopV2;
|
|
87
87
|
exports.selectPointsShopV2 = selectPointsShopV2;
|
|
88
88
|
exports.pointsShopV2Reducer = pointsShopV2Slice.reducer;
|
|
@@ -34,5 +34,5 @@ export declare const exchangePointsShopRewardV2: import("@reduxjs/toolkit").Asyn
|
|
|
34
34
|
rejectedMeta?: unknown;
|
|
35
35
|
}>;
|
|
36
36
|
export declare const resetPointsShopV2: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"pointsShop/resetPointsShop">;
|
|
37
|
-
export declare const selectPointsShopV2: (state: AppState) =>
|
|
37
|
+
export declare const selectPointsShopV2: (state: AppState) => PointsShopV2State;
|
|
38
38
|
export declare const pointsShopV2Reducer: import("redux").Reducer<PointsShopV2State, import("redux").AnyAction>;
|
|
@@ -80,5 +80,5 @@ const pointsShopV2Slice = createSlice({
|
|
|
80
80
|
}
|
|
81
81
|
});
|
|
82
82
|
export const { resetPointsShop: resetPointsShopV2 } = pointsShopV2Slice.actions;
|
|
83
|
-
export const selectPointsShopV2 = (state) => state.customer.
|
|
83
|
+
export const selectPointsShopV2 = (state) => state.customer.pointsShopV2;
|
|
84
84
|
export const pointsShopV2Reducer = pointsShopV2Slice.reducer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-tender/cloud",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.15",
|
|
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",
|