@riocrypto/common 1.0.1247 → 1.0.1248
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.
|
@@ -63,6 +63,7 @@ export declare class RioAdminClient {
|
|
|
63
63
|
uploadCSF(id: string, formData: FormData): Promise<User>;
|
|
64
64
|
uploadProofOfAddress(id: string, formData: FormData): Promise<User>;
|
|
65
65
|
createVerificationLink(userId: string, firstName: string, lastName: string): Promise<string>;
|
|
66
|
+
sendVerificationEmail(userId: string, country: Country): Promise<void>;
|
|
66
67
|
updateAdmin(update: {
|
|
67
68
|
email?: string;
|
|
68
69
|
password?: string;
|
|
@@ -137,6 +137,14 @@ class RioAdminClient {
|
|
|
137
137
|
return data.link;
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
|
+
sendVerificationEmail(userId, country) {
|
|
141
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
142
|
+
yield this.axios.post("/api/kyc/email", {
|
|
143
|
+
userId,
|
|
144
|
+
country,
|
|
145
|
+
});
|
|
146
|
+
});
|
|
147
|
+
}
|
|
140
148
|
updateAdmin(update) {
|
|
141
149
|
return __awaiter(this, void 0, void 0, function* () {
|
|
142
150
|
const { data } = yield this.axios.patch(`/api/auth/admin`, update);
|
|
@@ -49,6 +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
|
+
sendVerificationEmail(userId: string, country: Country): Promise<void>;
|
|
52
53
|
getOnboardingRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
|
|
53
54
|
textRequirements: ("personalId" | "taxId")[];
|
|
54
55
|
fileRequirements: KYCFileType[];
|
|
@@ -106,6 +106,14 @@ class RioClient {
|
|
|
106
106
|
return data;
|
|
107
107
|
});
|
|
108
108
|
}
|
|
109
|
+
sendVerificationEmail(userId, country) {
|
|
110
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
111
|
+
yield this.axios.post("/api/kyc/email", {
|
|
112
|
+
userId,
|
|
113
|
+
country,
|
|
114
|
+
});
|
|
115
|
+
});
|
|
116
|
+
}
|
|
109
117
|
getOnboardingRequirements(userType, country, countryOfOrigin) {
|
|
110
118
|
return __awaiter(this, void 0, void 0, function* () {
|
|
111
119
|
const { data } = yield this.axios.get(`/api/users/requirements`, {
|