@riocrypto/common 1.0.1293 → 1.0.1294

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
@@ -211,6 +211,7 @@ export * from "./types/UBO";
211
211
  export * from "./types/UBO-input";
212
212
  export * from "./types/UBO-update";
213
213
  export * from "./types/immigration-status";
214
+ export * from "./types/IdentityVerificationType";
214
215
  export * from "./classes/Asset";
215
216
  export * from "./classes/KYCFieldClass";
216
217
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -227,6 +227,7 @@ __exportStar(require("./types/UBO"), exports);
227
227
  __exportStar(require("./types/UBO-input"), exports);
228
228
  __exportStar(require("./types/UBO-update"), exports);
229
229
  __exportStar(require("./types/immigration-status"), exports);
230
+ __exportStar(require("./types/IdentityVerificationType"), exports);
230
231
  __exportStar(require("./classes/Asset"), exports);
231
232
  __exportStar(require("./classes/KYCFieldClass"), exports);
232
233
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -0,0 +1,5 @@
1
+ export declare enum IdentityVerificationType {
2
+ user = "user",
3
+ legalRepresentative = "legalRepresentative",
4
+ UBO = "UBO"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IdentityVerificationType = void 0;
4
+ var IdentityVerificationType;
5
+ (function (IdentityVerificationType) {
6
+ IdentityVerificationType["user"] = "user";
7
+ IdentityVerificationType["legalRepresentative"] = "legalRepresentative";
8
+ IdentityVerificationType["UBO"] = "UBO";
9
+ })(IdentityVerificationType = exports.IdentityVerificationType || (exports.IdentityVerificationType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1293",
3
+ "version": "1.0.1294",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",