@riocrypto/common 1.0.1217 → 1.0.1218

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
@@ -198,6 +198,7 @@ export * from "./types/circle-chain";
198
198
  export * from "./types/circle-payout";
199
199
  export * from "./types/risk-tier";
200
200
  export * from "./types/market-data";
201
+ export * from "./types/KYCFileType";
201
202
  export * from "./classes/Asset";
202
203
  export * from "./classes/CountryAsset";
203
204
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -214,6 +214,7 @@ __exportStar(require("./types/circle-chain"), exports);
214
214
  __exportStar(require("./types/circle-payout"), exports);
215
215
  __exportStar(require("./types/risk-tier"), exports);
216
216
  __exportStar(require("./types/market-data"), exports);
217
+ __exportStar(require("./types/KYCFileType"), exports);
217
218
  __exportStar(require("./classes/Asset"), exports);
218
219
  __exportStar(require("./classes/CountryAsset"), exports);
219
220
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,11 @@
1
+ export declare enum KYCFileType {
2
+ CertificateOfIncorporation = "certificateOfIncorporation",
3
+ KYCReport = "KYCReport",
4
+ TaxTranscript = "taxTranscript",
5
+ ProofOfAddress = "proofOfAddress",
6
+ BusinessRegistration = "businessRegistration",
7
+ TaxIdentificationCertificate = "taxIdentificationCertificate",
8
+ LegalRepresentativeIdPowerOfAttorney = "legalRepresentativeIdPowerOfAttorney",
9
+ PersonalIdentificationCertificate = "personalIdentificationCertificate",
10
+ ExtraFile = "extraFile"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KYCFileType = void 0;
4
+ var KYCFileType;
5
+ (function (KYCFileType) {
6
+ KYCFileType["CertificateOfIncorporation"] = "certificateOfIncorporation";
7
+ KYCFileType["KYCReport"] = "KYCReport";
8
+ KYCFileType["TaxTranscript"] = "taxTranscript";
9
+ KYCFileType["ProofOfAddress"] = "proofOfAddress";
10
+ KYCFileType["BusinessRegistration"] = "businessRegistration";
11
+ KYCFileType["TaxIdentificationCertificate"] = "taxIdentificationCertificate";
12
+ KYCFileType["LegalRepresentativeIdPowerOfAttorney"] = "legalRepresentativeIdPowerOfAttorney";
13
+ KYCFileType["PersonalIdentificationCertificate"] = "personalIdentificationCertificate";
14
+ KYCFileType["ExtraFile"] = "extraFile";
15
+ })(KYCFileType = exports.KYCFileType || (exports.KYCFileType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1217",
3
+ "version": "1.0.1218",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",