@riocrypto/common 1.0.886 → 1.0.887
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.
|
@@ -457,7 +457,7 @@ class RioAdminClient {
|
|
|
457
457
|
}
|
|
458
458
|
getInvoice(orderId) {
|
|
459
459
|
return __awaiter(this, void 0, void 0, function* () {
|
|
460
|
-
const response = yield this.axios.get(`/api/invoices?orderId=${orderId}
|
|
460
|
+
const response = yield this.axios.get(`/api/invoices?orderId=${orderId}`);
|
|
461
461
|
return response.data;
|
|
462
462
|
});
|
|
463
463
|
}
|
|
@@ -369,7 +369,7 @@ class RioClient {
|
|
|
369
369
|
}
|
|
370
370
|
getInvoice(orderId) {
|
|
371
371
|
return __awaiter(this, void 0, void 0, function* () {
|
|
372
|
-
const response = yield this.axios.get(`/api/invoices?orderId=${orderId}
|
|
372
|
+
const response = yield this.axios.get(`/api/invoices?orderId=${orderId}`);
|
|
373
373
|
return response.data;
|
|
374
374
|
});
|
|
375
375
|
}
|