tnx-shared 5.3.359 → 5.3.360
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/tnx-shared.umd.js +9 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/classes/base/list-component-base.js +2 -1
- package/esm2015/services/user.service.js +9 -1
- package/fesm2015/tnx-shared.js +9 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/user.service.d.ts +2 -0
- package/services/user.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -12470,6 +12470,14 @@
|
|
|
12470
12470
|
var url = this.serviceUri + "/UpdateUserAvatar";
|
|
12471
12471
|
return this.defaultPut(url, data);
|
|
12472
12472
|
};
|
|
12473
|
+
UserService.prototype.confirmEmail = function (userId, token) {
|
|
12474
|
+
var url = this.serviceUri + "/ConfirmEmail?userId=" + userId + "&&token=" + encodeURIComponent(token);
|
|
12475
|
+
return this.defaultPost(url, {});
|
|
12476
|
+
};
|
|
12477
|
+
UserService.prototype.sendEmailConfirm = function (userId) {
|
|
12478
|
+
var url = this.serviceUri + "/SendEmailConfirm/" + userId;
|
|
12479
|
+
return this.defaultPost(url, {});
|
|
12480
|
+
};
|
|
12473
12481
|
return UserService;
|
|
12474
12482
|
}(BaseService));
|
|
12475
12483
|
UserService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function UserService_Factory() { return new UserService(i0__namespace.ɵɵinject(i1__namespace$1.HttpClient), i0__namespace.ɵɵinject(i0__namespace.INJECTOR), i0__namespace.ɵɵinject(ModuleConfigService), i0__namespace.ɵɵinject(AuthenService), i0__namespace.ɵɵinject(i4__namespace.OAuthService), i0__namespace.ɵɵinject(SignalRService), i0__namespace.ɵɵinject(ExceptionHandlerService), i0__namespace.ɵɵinject(ApplicationContextService)); }, token: UserService, providedIn: "root" });
|
|
@@ -26042,6 +26050,7 @@
|
|
|
26042
26050
|
}
|
|
26043
26051
|
this.processWorkflowModel.showEditForm = true;
|
|
26044
26052
|
this.processWorkflowModel.header = workflowAction.name;
|
|
26053
|
+
this.processWorkflowModel.popupSize = new PopupSize({ width: 1000, height: 800 });
|
|
26045
26054
|
return [4 /*yield*/, this._federationService.loadRemoteNewComponent('commonapp', 'ProcessWorkflowFormComponent', this.processWorkflowFormViewContainer)];
|
|
26046
26055
|
case 2:
|
|
26047
26056
|
compRef = _h.sent();
|