@a-cube-io/ereceipts-js-sdk 2.2.4 → 2.2.5
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/index.cjs.js +3 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +3 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.native.js +3 -2
- package/dist/index.native.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -4696,8 +4696,9 @@ class CashierRepositoryImpl {
|
|
|
4696
4696
|
});
|
|
4697
4697
|
return CashierMapper.pageFromApi(response.data);
|
|
4698
4698
|
}
|
|
4699
|
-
async
|
|
4700
|
-
await this.http.
|
|
4699
|
+
async disable(uuid) {
|
|
4700
|
+
const response = await this.http.put(`/mf1/cashiers/${uuid}/disable`);
|
|
4701
|
+
return CashierMapper.fromApiOutput(response.data);
|
|
4701
4702
|
}
|
|
4702
4703
|
}
|
|
4703
4704
|
|