@riocrypto/common 1.0.1281 → 1.0.1283
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.
|
@@ -604,6 +604,11 @@ class RioAdminClient {
|
|
|
604
604
|
return response.data;
|
|
605
605
|
});
|
|
606
606
|
}
|
|
607
|
+
returnOrderToNotPaid(id) {
|
|
608
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
609
|
+
const response = yield this.axios.post(`/api/orders/${id}/return-to-not-paid`, {});
|
|
610
|
+
});
|
|
611
|
+
}
|
|
607
612
|
getTotalUsers(months) {
|
|
608
613
|
return __awaiter(this, void 0, void 0, function* () {
|
|
609
614
|
const response = yield this.axios.get(`/api/data/users/total`, {
|
package/build/index.d.ts
CHANGED
|
@@ -210,6 +210,7 @@ export * from "./types/UBO-onboarding-status";
|
|
|
210
210
|
export * from "./types/UBO";
|
|
211
211
|
export * from "./types/UBO-input";
|
|
212
212
|
export * from "./types/UBO-update";
|
|
213
|
+
export * from "./types/immigration-status";
|
|
213
214
|
export * from "./classes/Asset";
|
|
214
215
|
export * from "./classes/KYCFieldClass";
|
|
215
216
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -226,6 +226,7 @@ __exportStar(require("./types/UBO-onboarding-status"), exports);
|
|
|
226
226
|
__exportStar(require("./types/UBO"), exports);
|
|
227
227
|
__exportStar(require("./types/UBO-input"), exports);
|
|
228
228
|
__exportStar(require("./types/UBO-update"), exports);
|
|
229
|
+
__exportStar(require("./types/immigration-status"), exports);
|
|
229
230
|
__exportStar(require("./classes/Asset"), exports);
|
|
230
231
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
231
232
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImmigrationStatus = void 0;
|
|
4
|
+
var ImmigrationStatus;
|
|
5
|
+
(function (ImmigrationStatus) {
|
|
6
|
+
ImmigrationStatus["Citizen"] = "Citizen";
|
|
7
|
+
ImmigrationStatus["PermanentResident"] = "Permanent Resident";
|
|
8
|
+
ImmigrationStatus["Foreigner"] = "Foreigner";
|
|
9
|
+
})(ImmigrationStatus = exports.ImmigrationStatus || (exports.ImmigrationStatus = {}));
|