@riocrypto/common 1.0.2093 → 1.0.2098

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
@@ -247,14 +247,12 @@ export * from "./types/crypto-address-query";
247
247
  export * from "./types/bank-account-query";
248
248
  export * from "./types/mexico-fiscal-regimen";
249
249
  export * from "./types/mexico-fiscal-regimen-code";
250
- export * from "./types/bridge-customer";
251
250
  export * from "./types/bridge-transfer";
252
251
  export * from "./types/bridge-external-account";
253
252
  export * from "./types/bridge-liquidation-address";
254
253
  export * from "./types/admin-task-type";
255
254
  export * from "./types/admin-task-status";
256
255
  export * from "./types/admin-task";
257
- export * from "./types/partner";
258
256
  export * from "./types/import-order-input";
259
257
  export * from "./types/master-order-record";
260
258
  export * from "./types/invoice";
@@ -376,7 +374,6 @@ export * from "./classes/SecurityQuestionClass";
376
374
  export * from "./classes/AdminTaskTypeClass";
377
375
  export * from "./classes/ProcessorClass";
378
376
  export * from "./classes/LiquidityProviderClass";
379
- export * from "./classes/PartnerClass";
380
377
  export * from "./classes/ImmigrationStatusClass";
381
378
  export * from "./helpers/validate-address";
382
379
  export * from "./helpers/humanize-order-status";
package/build/index.js CHANGED
@@ -263,14 +263,12 @@ __exportStar(require("./types/crypto-address-query"), exports);
263
263
  __exportStar(require("./types/bank-account-query"), exports);
264
264
  __exportStar(require("./types/mexico-fiscal-regimen"), exports);
265
265
  __exportStar(require("./types/mexico-fiscal-regimen-code"), exports);
266
- __exportStar(require("./types/bridge-customer"), exports);
267
266
  __exportStar(require("./types/bridge-transfer"), exports);
268
267
  __exportStar(require("./types/bridge-external-account"), exports);
269
268
  __exportStar(require("./types/bridge-liquidation-address"), exports);
270
269
  __exportStar(require("./types/admin-task-type"), exports);
271
270
  __exportStar(require("./types/admin-task-status"), exports);
272
271
  __exportStar(require("./types/admin-task"), exports);
273
- __exportStar(require("./types/partner"), exports);
274
272
  __exportStar(require("./types/import-order-input"), exports);
275
273
  __exportStar(require("./types/master-order-record"), exports);
276
274
  __exportStar(require("./types/invoice"), exports);
@@ -392,7 +390,6 @@ __exportStar(require("./classes/SecurityQuestionClass"), exports);
392
390
  __exportStar(require("./classes/AdminTaskTypeClass"), exports);
393
391
  __exportStar(require("./classes/ProcessorClass"), exports);
394
392
  __exportStar(require("./classes/LiquidityProviderClass"), exports);
395
- __exportStar(require("./classes/PartnerClass"), exports);
396
393
  __exportStar(require("./classes/ImmigrationStatusClass"), exports);
397
394
  __exportStar(require("./helpers/validate-address"), exports);
398
395
  __exportStar(require("./helpers/humanize-order-status"), exports);
@@ -6,7 +6,6 @@ import { PayoutMethod } from "./payout-method";
6
6
  import { Processor } from "./processor";
7
7
  import { Side } from "./side";
8
8
  import { Crypto } from "./crypto";
9
- import { Partner } from "./partner";
10
9
  export interface ImportOrderInput {
11
10
  quoteId?: string;
12
11
  userId: string;
@@ -36,7 +35,6 @@ export interface ImportOrderInput {
36
35
  transferFeeFiat?: number;
37
36
  platformFeeFiat?: number;
38
37
  platformFeeFiatTax?: number;
39
- partner?: Partner;
40
38
  noRecords?: Boolean;
41
39
  createdAt?: Date;
42
40
  }
@@ -8,7 +8,6 @@ import { Processor } from "./processor";
8
8
  import { Side } from "./side";
9
9
  import { Fees } from "./fees";
10
10
  import { PayoutMethod } from "./payout-method";
11
- import { Partner } from "./partner";
12
11
  import { OrderSubstatus } from "./order-substatus";
13
12
  import { OrderAttribute } from "./order-attribute";
14
13
  import { SettlementTime } from "./settlement-time";
@@ -50,7 +49,6 @@ export interface Order {
50
49
  wireMessage?: string;
51
50
  expiredQuotes?: string[];
52
51
  externalAccountId?: string;
53
- partner?: Partner;
54
52
  imported?: boolean;
55
53
  managedWallet?: boolean;
56
54
  USBankTransferMethod?: "wire" | "ach_push";
@@ -1,7 +1,6 @@
1
1
  import { Country } from "./country";
2
2
  import { CountryOfOrigin } from "./country-of-origin";
3
3
  import { Fiat } from "./fiat";
4
- import { ImmigrationStatus } from "./immigration-status";
5
4
  import { OnboardingStatus } from "./onboarding-status";
6
5
  import { PlatformFeeRange } from "./platform-fee-range";
7
6
  import { UserAttribute } from "./user-attribute";
@@ -13,16 +12,11 @@ declare type IndividualUser = {
13
12
  lastName?: string;
14
13
  secondLastName?: string;
15
14
  birthday?: Date;
16
- countryOfOrigin?: CountryOfOrigin;
17
15
  };
18
16
  };
19
17
  declare type BusinessUser = {
20
18
  businessData?: {
21
19
  businessName?: string;
22
- UBO?: {
23
- id?: string;
24
- email?: string;
25
- };
26
20
  };
27
21
  };
28
22
  export declare type UserInput = {
@@ -57,42 +51,24 @@ export declare type UserInput = {
57
51
  };
58
52
  };
59
53
  onboarding?: {
60
- [country in CountryOfOrigin]?: {
61
- status?: OnboardingStatus;
62
- personalId?: string;
63
- taxId?: string;
64
- immigrationStatus?: ImmigrationStatus;
65
- individualIdentityVerification?: {
66
- status?: "passed" | "failed" | "review";
67
- };
68
- legalRepresentative?: {
69
- firstName?: string;
70
- middleName?: string;
71
- lastName?: string;
72
- secondLastName?: string;
73
- verificationStatus?: "passed" | "failed" | "review";
74
- email?: string;
75
- };
76
- files?: {
77
- certificateOfIncorporation?: string;
78
- KYCReport?: string;
79
- taxTranscript?: string;
80
- proofOfAddress?: string;
81
- businessRegistration?: string;
82
- taxIdentificationCertificate?: string;
83
- legalRepresentativeIdPowerOfAttorney?: string;
84
- personalIdentificationCertificate?: string;
85
- extraFiles?: string[];
86
- };
87
- address?: {
88
- street1?: string;
89
- street2?: string;
90
- city?: string;
91
- state?: string;
92
- postalCode?: string;
93
- country?: CountryOfOrigin;
94
- };
95
- };
54
+ country?: Country;
55
+ aipriseBusinessProfileId?: string;
56
+ aipriseUserProfileId?: string;
57
+ aipriseBusinessVerificationSessionUrl?: string;
58
+ aipriseUserVerificationSessionUrl?: string;
59
+ aipriseUserVerificationSessionId?: string;
60
+ bridgeCustomerId?: string;
61
+ bridgeKYCLinkId?: string;
62
+ status?: OnboardingStatus;
63
+ hasAcceptedTerms?: boolean;
64
+ };
65
+ address?: {
66
+ street1?: string;
67
+ street2?: string;
68
+ city?: string;
69
+ state?: string;
70
+ postalCode?: string;
71
+ country?: CountryOfOrigin;
96
72
  };
97
73
  invoicing?: {
98
74
  MX?: {
@@ -43,6 +43,14 @@ export declare type UserUpdate = {
43
43
  buy?: PlatformFeeRange[];
44
44
  sell?: PlatformFeeRange[];
45
45
  };
46
+ BR?: {
47
+ buy?: PlatformFeeRange[];
48
+ sell?: PlatformFeeRange[];
49
+ };
50
+ US?: {
51
+ buy?: PlatformFeeRange[];
52
+ sell?: PlatformFeeRange[];
53
+ };
46
54
  };
47
55
  onboarding?: {
48
56
  country?: Country;
@@ -45,6 +45,14 @@ export declare type User = {
45
45
  buy?: PlatformFeeRange[];
46
46
  sell?: PlatformFeeRange[];
47
47
  };
48
+ BR?: {
49
+ buy?: PlatformFeeRange[];
50
+ sell?: PlatformFeeRange[];
51
+ };
52
+ US?: {
53
+ buy?: PlatformFeeRange[];
54
+ sell?: PlatformFeeRange[];
55
+ };
48
56
  };
49
57
  onboarding: {
50
58
  country: Country;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2093",
3
+ "version": "1.0.2098",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,6 +0,0 @@
1
- import { Partner } from "../types/partner";
2
- export declare class PartnerClass {
3
- private key;
4
- constructor(key: Partner);
5
- getName(): "ERR" | "KillB";
6
- }
@@ -1,17 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PartnerClass = void 0;
4
- const partner_1 = require("../types/partner");
5
- class PartnerClass {
6
- constructor(key) {
7
- this.key = key;
8
- }
9
- getName() {
10
- if (this.key === partner_1.Partner.KillB) {
11
- return "KillB";
12
- }
13
- else
14
- return "ERR";
15
- }
16
- }
17
- exports.PartnerClass = PartnerClass;
@@ -1,7 +0,0 @@
1
- export interface BridgeCustomer {
2
- userId: string;
3
- bridgeId: string;
4
- tosLink: string;
5
- kycLink: string;
6
- bridgeCustomerId?: string;
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +0,0 @@
1
- export declare enum Partner {
2
- KillB = "killb"
3
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Partner = void 0;
4
- var Partner;
5
- (function (Partner) {
6
- Partner["KillB"] = "killb";
7
- })(Partner = exports.Partner || (exports.Partner = {}));