@riocrypto/common 1.0.1521 → 1.0.1523

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/build/index.d.ts CHANGED
@@ -243,6 +243,9 @@ export * from "./types/onboarding";
243
243
  export * from "./types/alert";
244
244
  export * from "./types/alert-type";
245
245
  export * from "./types/alert-trigger-condition";
246
+ export * from "./types/admin-action";
247
+ export * from "./types/admin-action-type";
248
+ export * from "./types/admin-action-status";
246
249
  export * from "./classes/Asset";
247
250
  export * from "./classes/KYCFieldClass";
248
251
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -259,6 +259,9 @@ __exportStar(require("./types/onboarding"), exports);
259
259
  __exportStar(require("./types/alert"), exports);
260
260
  __exportStar(require("./types/alert-type"), exports);
261
261
  __exportStar(require("./types/alert-trigger-condition"), exports);
262
+ __exportStar(require("./types/admin-action"), exports);
263
+ __exportStar(require("./types/admin-action-type"), exports);
264
+ __exportStar(require("./types/admin-action-status"), exports);
262
265
  __exportStar(require("./classes/Asset"), exports);
263
266
  __exportStar(require("./classes/KYCFieldClass"), exports);
264
267
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -0,0 +1,7 @@
1
+ export declare enum AdminActionStatus {
2
+ Created = "created",
3
+ Running = "running",
4
+ Completed = "completed",
5
+ Cancelled = "cancelled",
6
+ Failed = "failed"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdminActionStatus = void 0;
4
+ var AdminActionStatus;
5
+ (function (AdminActionStatus) {
6
+ AdminActionStatus["Created"] = "created";
7
+ AdminActionStatus["Running"] = "running";
8
+ AdminActionStatus["Completed"] = "completed";
9
+ AdminActionStatus["Cancelled"] = "cancelled";
10
+ AdminActionStatus["Failed"] = "failed";
11
+ })(AdminActionStatus = exports.AdminActionStatus || (exports.AdminActionStatus = {}));
@@ -0,0 +1,3 @@
1
+ export declare enum AdminActionType {
2
+ BulkFXRegistration = "bulkFXRegistration"
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdminActionType = void 0;
4
+ var AdminActionType;
5
+ (function (AdminActionType) {
6
+ AdminActionType["BulkFXRegistration"] = "bulkFXRegistration";
7
+ })(AdminActionType = exports.AdminActionType || (exports.AdminActionType = {}));
@@ -0,0 +1,9 @@
1
+ import { AdminActionStatus } from "./admin-action-status";
2
+ import { AdminActionType } from "./admin-action-type";
3
+ export interface AdminAction {
4
+ id: string;
5
+ type: AdminActionType;
6
+ createdAt: Date;
7
+ status: AdminActionStatus;
8
+ adminAuthId: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1521",
3
+ "version": "1.0.1523",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",