@riocrypto/common 1.0.1369 → 1.0.1371

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.
@@ -18,7 +18,7 @@ export interface UserUpdatedEvent {
18
18
  cosignerGroupId?: string;
19
19
  attributes?: UserAttribute[];
20
20
  authorizedPhoneNumbers?: string[];
21
- quotationTime: number;
21
+ quotationTime?: number;
22
22
  platformFeeRanges?: {
23
23
  MX?: {
24
24
  buy?: PlatformFeeRange[];
package/build/index.d.ts CHANGED
@@ -210,6 +210,7 @@ export * from "./types/circle-payout";
210
210
  export * from "./types/risk-tier";
211
211
  export * from "./types/market-data";
212
212
  export * from "./types/kyc-file-type";
213
+ export * from "./types/kyc-file-index";
213
214
  export * from "./types/identity-verification-status";
214
215
  export * from "./types/UBO-onboarding-status";
215
216
  export * from "./types/UBO";
package/build/index.js CHANGED
@@ -226,6 +226,7 @@ __exportStar(require("./types/circle-payout"), exports);
226
226
  __exportStar(require("./types/risk-tier"), exports);
227
227
  __exportStar(require("./types/market-data"), exports);
228
228
  __exportStar(require("./types/kyc-file-type"), exports);
229
+ __exportStar(require("./types/kyc-file-index"), exports);
229
230
  __exportStar(require("./types/identity-verification-status"), exports);
230
231
  __exportStar(require("./types/UBO-onboarding-status"), exports);
231
232
  __exportStar(require("./types/UBO"), exports);
@@ -0,0 +1,11 @@
1
+ export declare enum KYCFileIndex {
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
+ ExtraFiles = "extraFiles"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KYCFileIndex = void 0;
4
+ var KYCFileIndex;
5
+ (function (KYCFileIndex) {
6
+ KYCFileIndex["CertificateOfIncorporation"] = "certificateOfIncorporation";
7
+ KYCFileIndex["KYCReport"] = "KYCReport";
8
+ KYCFileIndex["TaxTranscript"] = "taxTranscript";
9
+ KYCFileIndex["ProofOfAddress"] = "proofOfAddress";
10
+ KYCFileIndex["BusinessRegistration"] = "businessRegistration";
11
+ KYCFileIndex["TaxIdentificationCertificate"] = "taxIdentificationCertificate";
12
+ KYCFileIndex["LegalRepresentativeIdPowerOfAttorney"] = "legalRepresentativeIdPowerOfAttorney";
13
+ KYCFileIndex["PersonalIdentificationCertificate"] = "personalIdentificationCertificate";
14
+ KYCFileIndex["ExtraFiles"] = "extraFiles";
15
+ })(KYCFileIndex = exports.KYCFileIndex || (exports.KYCFileIndex = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1369",
3
+ "version": "1.0.1371",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",