washday-sdk 0.0.191 → 0.0.192

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.
@@ -42,6 +42,7 @@ export const getList = function (params, options) {
42
42
  'deliveryFromDate',
43
43
  'deliveryToDate',
44
44
  'fetchSection',
45
+ 'cfdiId',
45
46
  ], params);
46
47
  // ], { ...params, q: params.q ? encodeURIComponent(params.q) : undefined });
47
48
  return yield axiosInstance.get(`${GET_SET_ORDER}?${queryParams}`, config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "washday-sdk",
3
- "version": "0.0.191",
3
+ "version": "0.0.192",
4
4
  "description": "Washday utilities functions and API",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -31,6 +31,7 @@ export const getList = async function (this: WashdayClientInstance, params: {
31
31
  deliveryToDate: string | undefined,
32
32
  signal?: GenericAbortSignal,
33
33
  fetchSection?: string,
34
+ cfdiId?: string,
34
35
  }, options?: { signal?: GenericAbortSignal }): Promise<any> {
35
36
  try {
36
37
  const config = {
@@ -59,6 +60,7 @@ export const getList = async function (this: WashdayClientInstance, params: {
59
60
  'deliveryFromDate',
60
61
  'deliveryToDate',
61
62
  'fetchSection',
63
+ 'cfdiId',
62
64
  ], params);
63
65
  // ], { ...params, q: params.q ? encodeURIComponent(params.q) : undefined });
64
66
  return await axiosInstance.get(`${GET_SET_ORDER}?${queryParams}`, config);