@firestitch/2fa 12.9.0 → 12.9.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/firestitch-2fa.umd.js +4 -4
- package/bundles/firestitch-2fa.umd.js.map +1 -1
- package/esm2015/app/modules/verification-methods/components/verification-methods/verification-methods.component.js +5 -5
- package/fesm2015/firestitch-2fa.js +4 -4
- package/fesm2015/firestitch-2fa.js.map +1 -1
- package/package.json +1 -1
|
@@ -903,22 +903,22 @@
|
|
|
903
903
|
VerificationMethodsComponent.prototype.ngOnInit = function () {
|
|
904
904
|
var _this = this;
|
|
905
905
|
var _a, _b, _c, _d;
|
|
906
|
-
if (!this.verificationMethodDefault && ((_a = this.twoFactorManageService) === null || _a === void 0 ? void 0 : _a.verificationMethodDefault$)) {
|
|
906
|
+
if (!this.verificationMethodDefault && ((_a = this.twoFactorManageService) === null || _a === void 0 ? void 0 : _a.verificationMethodDefault$(null))) {
|
|
907
907
|
this.verificationMethodDefault = function (verificationMethod) {
|
|
908
908
|
return _this.twoFactorManageService.verificationMethodDefault$(verificationMethod);
|
|
909
909
|
};
|
|
910
910
|
}
|
|
911
|
-
if (!this.verificationMethodDelete && ((_b = this.twoFactorManageService) === null || _b === void 0 ? void 0 : _b.verificationMethodDelete$)) {
|
|
911
|
+
if (!this.verificationMethodDelete && ((_b = this.twoFactorManageService) === null || _b === void 0 ? void 0 : _b.verificationMethodDelete$(null))) {
|
|
912
912
|
this.verificationMethodDelete = function (verificationMethod) {
|
|
913
913
|
return _this.twoFactorManageService.verificationMethodDelete$(verificationMethod);
|
|
914
914
|
};
|
|
915
915
|
}
|
|
916
|
-
if (!this.verificationMethodsFetch && ((_c = this.twoFactorManageService) === null || _c === void 0 ? void 0 : _c.verificationMethodsFetch$)) {
|
|
916
|
+
if (!this.verificationMethodsFetch && ((_c = this.twoFactorManageService) === null || _c === void 0 ? void 0 : _c.verificationMethodsFetch$(null))) {
|
|
917
917
|
this.verificationMethodsFetch = function (query) {
|
|
918
918
|
return _this.twoFactorManageService.verificationMethodsFetch$(query);
|
|
919
919
|
};
|
|
920
920
|
}
|
|
921
|
-
if (!this.accountVerify && ((_d = this.twoFactorManageService) === null || _d === void 0 ? void 0 : _d.accountVerify$)) {
|
|
921
|
+
if (!this.accountVerify && ((_d = this.twoFactorManageService) === null || _d === void 0 ? void 0 : _d.accountVerify$())) {
|
|
922
922
|
this.accountVerify = function () {
|
|
923
923
|
var _a;
|
|
924
924
|
return (_a = _this.twoFactorManageService) === null || _a === void 0 ? void 0 : _a.accountVerify$();
|