@riocrypto/common 1.0.1287 → 1.0.1289

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.
@@ -1,4 +1,5 @@
1
1
  import { CountryOfOrigin } from "./country-of-origin";
2
+ import { ImmigrationStatus } from "./immigration-status";
2
3
  import { OnboardingStatus } from "./onboarding-status";
3
4
  export declare type UBOInput = {
4
5
  individualData?: {
@@ -18,7 +19,7 @@ export declare type UBOInput = {
18
19
  status?: OnboardingStatus;
19
20
  personalId?: string;
20
21
  taxId?: string;
21
- isResident?: boolean;
22
+ immigrationStatus?: ImmigrationStatus;
22
23
  individualIdentityVerification?: {
23
24
  status?: "passed" | "failed" | "review";
24
25
  };
@@ -1,4 +1,5 @@
1
1
  import { CountryOfOrigin } from "./country-of-origin";
2
+ import { ImmigrationStatus } from "./immigration-status";
2
3
  import { OnboardingStatus } from "./onboarding-status";
3
4
  export declare type UBOUpdate = {
4
5
  individualData?: {
@@ -18,7 +19,7 @@ export declare type UBOUpdate = {
18
19
  status?: OnboardingStatus;
19
20
  personalId?: string;
20
21
  taxId?: string;
21
- isResident?: boolean;
22
+ immigrationStatus?: ImmigrationStatus;
22
23
  individualIdentityVerification?: {
23
24
  status?: "passed" | "failed" | "review";
24
25
  };
@@ -1,4 +1,5 @@
1
1
  import { CountryOfOrigin } from "./country-of-origin";
2
+ import { ImmigrationStatus } from "./immigration-status";
2
3
  import { OnboardingStatus } from "./onboarding-status";
3
4
  export declare type UBO = {
4
5
  id: string;
@@ -20,7 +21,7 @@ export declare type UBO = {
20
21
  status?: OnboardingStatus;
21
22
  personalId?: string;
22
23
  taxId?: string;
23
- isResident?: boolean;
24
+ immigrationStatus?: ImmigrationStatus;
24
25
  individualIdentityVerification?: {
25
26
  status?: "passed" | "failed" | "review";
26
27
  };
@@ -94,5 +94,6 @@ export declare type UserInput = {
94
94
  fiscalRegimenCode?: number;
95
95
  };
96
96
  };
97
+ quotationTime?: number;
97
98
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
98
99
  export {};
@@ -99,5 +99,6 @@ export declare type UserUpdate = {
99
99
  fiscalRegimenCode?: number;
100
100
  };
101
101
  };
102
+ quotationTime?: number;
102
103
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
103
104
  export {};
@@ -106,5 +106,6 @@ export declare type User = {
106
106
  fiscalRegimenCode?: number;
107
107
  };
108
108
  };
109
+ quotationTime?: number;
109
110
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
110
111
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1287",
3
+ "version": "1.0.1289",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",