@veloceapps/api 11.0.0-83 → 11.0.0-85
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/esm2020/v2/services/catalog-admin-api.service.mjs +1 -1
- package/esm2020/v2/services/sales-transactions-api.service.mjs +4 -3
- package/fesm2015/veloceapps-api-v2.mjs +2 -2
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +3 -2
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
- package/v2/services/catalog-admin-api.service.d.ts +2 -2
- package/v2/services/sales-transactions-api.service.d.ts +1 -1
@@ -1291,12 +1291,13 @@ class SalesTransactionApiService {
|
|
1291
1291
|
...options,
|
1292
1292
|
});
|
1293
1293
|
}
|
1294
|
-
|
1294
|
+
save(request, options) {
|
1295
1295
|
return this.httpService.api({
|
1296
1296
|
method: 'post',
|
1297
|
-
url: `${this.SERVICE_URL}`,
|
1297
|
+
url: `${this.SERVICE_URL}/save/${request.transactionContext.salesTransaction.id}`,
|
1298
1298
|
body: request,
|
1299
1299
|
...options,
|
1300
|
+
responseType: 'text',
|
1300
1301
|
});
|
1301
1302
|
}
|
1302
1303
|
}
|