washday-sdk 0.0.81 → 0.0.82

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/index.js CHANGED
@@ -156,6 +156,7 @@ const WashdayClient = function WashdayClient(apiToken) {
156
156
  });
157
157
  this.csv = bindMethods(this, {
158
158
  exportCustomersList: csvExportEndpoints.getModule.exportCustomersList,
159
+ exportOrdersList: csvExportEndpoints.getModule.exportOrdersList
159
160
  });
160
161
  };
161
162
  export default WashdayClient;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "washday-sdk",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "description": "Washday utilities functions and API",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
package/src/api/index.ts CHANGED
@@ -162,6 +162,7 @@ const WashdayClient: WashdayClientConstructor = function WashdayClient(this: Was
162
162
  });
163
163
  this.csv = bindMethods(this, {
164
164
  exportCustomersList: csvExportEndpoints.getModule.exportCustomersList,
165
+ exportOrdersList: csvExportEndpoints.getModule.exportOrdersList
165
166
  });
166
167
  } as any;
167
168