oro-sdk-apis 1.3.0 → 1.4.0

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.
@@ -2248,6 +2248,38 @@ var GuardService = /*#__PURE__*/function () {
2248
2248
  }
2249
2249
 
2250
2250
  return identityMFAQRCode;
2251
+ }()
2252
+ /**
2253
+ * Attempt to resend the email confirmation email
2254
+ *
2255
+ * @param req IdentityResendConfirmEmailRequest
2256
+ * @return void
2257
+ */
2258
+ ;
2259
+
2260
+ _proto.identitySendConfirmEmail =
2261
+ /*#__PURE__*/
2262
+ function () {
2263
+ var _identitySendConfirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(req) {
2264
+ return runtime_1.wrap(function _callee10$(_context10) {
2265
+ while (1) {
2266
+ switch (_context10.prev = _context10.next) {
2267
+ case 0:
2268
+ return _context10.abrupt("return", this.api.post(this.baseURL + "/v1/identity/confirm", req));
2269
+
2270
+ case 1:
2271
+ case "end":
2272
+ return _context10.stop();
2273
+ }
2274
+ }
2275
+ }, _callee10, this);
2276
+ }));
2277
+
2278
+ function identitySendConfirmEmail(_x11) {
2279
+ return _identitySendConfirmEmail.apply(this, arguments);
2280
+ }
2281
+
2282
+ return identitySendConfirmEmail;
2251
2283
  }();
2252
2284
 
2253
2285
  return GuardService;