@open-tender/cloud 0.0.93 → 0.0.94

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.
@@ -16,5 +16,5 @@ export declare const fetchCustomerHouseAccounts: import("@reduxjs/toolkit").Asyn
16
16
  rejectValue: RequestError;
17
17
  }>;
18
18
  export declare const resetCustomerHouseAccounts: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, resetCustomerHouseAccountsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, setCustomerHouseAccounts: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
19
- export declare const selectCustomerHouseAccounts: (state: AppState) => import("./orders").CustomerOrdersState;
19
+ export declare const selectCustomerHouseAccounts: (state: AppState) => CustomerHouseAccountsState;
20
20
  export declare const customerHouseAccountsReducer: import("redux").Reducer<CustomerHouseAccountsState, import("redux").AnyAction>;
@@ -62,6 +62,6 @@ const customerHouseAccountsSlice = (0, toolkit_1.createSlice)({
62
62
  }
63
63
  });
64
64
  _a = customerHouseAccountsSlice.actions, exports.resetCustomerHouseAccounts = _a.resetCustomerHouseAccounts, exports.resetCustomerHouseAccountsError = _a.resetCustomerHouseAccountsError, exports.setCustomerHouseAccounts = _a.setCustomerHouseAccounts;
65
- const selectCustomerHouseAccounts = (state) => state.customer.orders;
65
+ const selectCustomerHouseAccounts = (state) => state.customer.houseAccounts;
66
66
  exports.selectCustomerHouseAccounts = selectCustomerHouseAccounts;
67
67
  exports.customerHouseAccountsReducer = customerHouseAccountsSlice.reducer;
@@ -16,5 +16,5 @@ export declare const fetchCustomerHouseAccounts: import("@reduxjs/toolkit").Asyn
16
16
  rejectValue: RequestError;
17
17
  }>;
18
18
  export declare const resetCustomerHouseAccounts: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, resetCustomerHouseAccountsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, setCustomerHouseAccounts: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
19
- export declare const selectCustomerHouseAccounts: (state: AppState) => import("./orders").CustomerOrdersState;
19
+ export declare const selectCustomerHouseAccounts: (state: AppState) => CustomerHouseAccountsState;
20
20
  export declare const customerHouseAccountsReducer: import("redux").Reducer<CustomerHouseAccountsState, import("redux").AnyAction>;
@@ -58,5 +58,5 @@ const customerHouseAccountsSlice = createSlice({
58
58
  }
59
59
  });
60
60
  export const { resetCustomerHouseAccounts, resetCustomerHouseAccountsError, setCustomerHouseAccounts } = customerHouseAccountsSlice.actions;
61
- export const selectCustomerHouseAccounts = (state) => state.customer.orders;
61
+ export const selectCustomerHouseAccounts = (state) => state.customer.houseAccounts;
62
62
  export const customerHouseAccountsReducer = customerHouseAccountsSlice.reducer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/cloud",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
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",