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.
@@ -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
  */