@riocrypto/common 1.0.1248 → 1.0.1249

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.
@@ -64,6 +64,7 @@ export declare class RioAdminClient {
64
64
  uploadProofOfAddress(id: string, formData: FormData): Promise<User>;
65
65
  createVerificationLink(userId: string, firstName: string, lastName: string): Promise<string>;
66
66
  sendVerificationEmail(userId: string, country: Country): Promise<void>;
67
+ sendBridgeOnboardingEmail(userId: string): Promise<void>;
67
68
  updateAdmin(update: {
68
69
  email?: string;
69
70
  password?: string;
@@ -145,6 +145,11 @@ class RioAdminClient {
145
145
  });
146
146
  });
147
147
  }
148
+ sendBridgeOnboardingEmail(userId) {
149
+ return __awaiter(this, void 0, void 0, function* () {
150
+ yield this.axios.post(`/api/users/${userId}/us/onboarding-email`);
151
+ });
152
+ }
148
153
  updateAdmin(update) {
149
154
  return __awaiter(this, void 0, void 0, function* () {
150
155
  const { data } = yield this.axios.patch(`/api/auth/admin`, update);
@@ -50,6 +50,7 @@ export declare class RioClient {
50
50
  uploadCSF(id: string, formData: FormData): Promise<User>;
51
51
  getRioSettings(): Promise<RioSettings>;
52
52
  sendVerificationEmail(userId: string, country: Country): Promise<void>;
53
+ sendBridgeOnboardingEmail(userId: string): Promise<void>;
53
54
  getOnboardingRequirements(userType: UserType, country: Country, countryOfOrigin: CountryOfOrigin): Promise<{
54
55
  textRequirements: ("personalId" | "taxId")[];
55
56
  fileRequirements: KYCFileType[];
@@ -114,6 +114,11 @@ class RioClient {
114
114
  });
115
115
  });
116
116
  }
117
+ sendBridgeOnboardingEmail(userId) {
118
+ return __awaiter(this, void 0, void 0, function* () {
119
+ yield this.axios.post(`/api/users/${userId}/us/onboarding-email`);
120
+ });
121
+ }
117
122
  getOnboardingRequirements(userType, country, countryOfOrigin) {
118
123
  return __awaiter(this, void 0, void 0, function* () {
119
124
  const { data } = yield this.axios.get(`/api/users/requirements`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1248",
3
+ "version": "1.0.1249",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",