@riocrypto/common 1.0.1246 → 1.0.1247

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.
@@ -54,7 +54,7 @@ export declare class RioAdminClient {
54
54
  signinAdmin(email: string, password: string, authenticatorCode: string): Promise<any>;
55
55
  updateUser(update: UserUpdate, userId?: string): Promise<User>;
56
56
  uploadCOI(id: string, formData: FormData): Promise<User>;
57
- getKYCRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
57
+ getOnboardingRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
58
58
  textRequirements: ("personalId" | "taxId")[];
59
59
  fileRequirements: KYCFileType[];
60
60
  }>;
@@ -91,9 +91,9 @@ class RioAdminClient {
91
91
  return data;
92
92
  });
93
93
  }
94
- getKYCRequirements(userType, country, countryOfOrigin) {
94
+ getOnboardingRequirements(userType, country, countryOfOrigin) {
95
95
  return __awaiter(this, void 0, void 0, function* () {
96
- const { data } = yield this.axios.get(`/api/kyc/requirements`, {
96
+ const { data } = yield this.axios.get(`/api/users/requirements`, {
97
97
  params: {
98
98
  type: userType,
99
99
  country,
@@ -49,7 +49,7 @@ export declare class RioClient {
49
49
  uploadKYCReport(id: string, formData: FormData): Promise<User>;
50
50
  uploadCSF(id: string, formData: FormData): Promise<User>;
51
51
  getRioSettings(): Promise<RioSettings>;
52
- getKYCRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
52
+ getOnboardingRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
53
53
  textRequirements: ("personalId" | "taxId")[];
54
54
  fileRequirements: KYCFileType[];
55
55
  }>;
@@ -106,9 +106,9 @@ class RioClient {
106
106
  return data;
107
107
  });
108
108
  }
109
- getKYCRequirements(userType, country, countryOfOrigin) {
109
+ getOnboardingRequirements(userType, country, countryOfOrigin) {
110
110
  return __awaiter(this, void 0, void 0, function* () {
111
- const { data } = yield this.axios.get(`/api/kyc/requirements`, {
111
+ const { data } = yield this.axios.get(`/api/users/requirements`, {
112
112
  params: {
113
113
  type: userType,
114
114
  country,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1246",
3
+ "version": "1.0.1247",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",