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 +1 -0
- package/package.json +1 -1
- package/src/api/index.ts +1 -0
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
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
|
|