taxtank-core 0.20.0 → 0.20.1
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/bundles/taxtank-core.umd.js +4 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/endpoint/endpoints.const.js +2 -1
- package/esm2015/lib/services/http/user/user.service.js +4 -1
- package/fesm2015/taxtank-core.js +4 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/http/user/user.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1055,6 +1055,7 @@
|
|
|
1055
1055
|
TRANSACTIONS_ALLOCATIONS_POST: new Endpoint('POST', '\\/transactions-allocations'),
|
|
1056
1056
|
TRANSACTIONS_ALLOCATIONS_DELETE: new Endpoint('DELETE', '\\/transactions-allocations\\/\\d+'),
|
|
1057
1057
|
USER_CONFIRMATION_POST: new Endpoint('POST', '\\/users\\/confirmation'),
|
|
1058
|
+
USER_CONFIRMATION_RESEND_POST: new Endpoint('POST', '\\/users\\/confirmation\\/resend'),
|
|
1058
1059
|
USER_CURRENT_GET: new Endpoint('GET', '\\/users\\/current'),
|
|
1059
1060
|
USER_CURRENT_PASSWORD_PUT: new Endpoint('PUT', '\\/users\\/current\\/password\.\*'),
|
|
1060
1061
|
USER_EVENT_SETTINGS_GET: new Endpoint('GET', '\\/user-event-settings'),
|
|
@@ -14197,6 +14198,9 @@
|
|
|
14197
14198
|
UserService.prototype.resetPassword = function (newPassword, resetToken) {
|
|
14198
14199
|
return this.http.put(this.environment.apiV2 + "/users/password/reset", { newPassword: newPassword, resetToken: resetToken });
|
|
14199
14200
|
};
|
|
14201
|
+
UserService.prototype.resendConfirmationEmail = function (email) {
|
|
14202
|
+
return this.http.post(this.environment.apiV2 + "/users/confirmation/resend", { email: email });
|
|
14203
|
+
};
|
|
14200
14204
|
/**
|
|
14201
14205
|
* Confirm registered user
|
|
14202
14206
|
*/
|