washday-sdk 0.0.89 → 0.0.90
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/api/cfdi/get.js +1 -1
- package/package.json +1 -1
- package/src/api/cfdi/get.ts +1 -1
package/dist/api/cfdi/get.js
CHANGED
|
@@ -11,7 +11,7 @@ import { generateQueryParamsStr } from "../../utils/apiUtils";
|
|
|
11
11
|
import axiosInstance from "../axiosInstance";
|
|
12
12
|
const GET_ORDERS_CFDI_PREVIEW = (orderID) => `api/order/${orderID}/preview/cfdi`;
|
|
13
13
|
const GET_SET_CFDI = 'api/cfdi';
|
|
14
|
-
export const getList = function (
|
|
14
|
+
export const getList = function (params) {
|
|
15
15
|
return __awaiter(this, void 0, void 0, function* () {
|
|
16
16
|
try {
|
|
17
17
|
const config = {
|
package/package.json
CHANGED
package/src/api/cfdi/get.ts
CHANGED
|
@@ -4,7 +4,7 @@ import axiosInstance from "../axiosInstance";
|
|
|
4
4
|
const GET_ORDERS_CFDI_PREVIEW = (orderID: string) => `api/order/${orderID}/preview/cfdi`;
|
|
5
5
|
const GET_SET_CFDI = 'api/cfdi';
|
|
6
6
|
|
|
7
|
-
export const getList = async function (this: WashdayClientInstance,
|
|
7
|
+
export const getList = async function (this: WashdayClientInstance, params: {
|
|
8
8
|
query?: string;
|
|
9
9
|
storeId?: string;
|
|
10
10
|
fromDate?: string;
|