@lifeready/core 1.1.12 → 1.1.14
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/lifeready-core.umd.js +81 -59
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/api/types/lr-graphql.types.js +1 -1
- package/esm2015/lib/time/time.service.js +23 -2
- package/esm2015/lifeready-core.js +14 -16
- package/esm2015/public-api.js +3 -1
- package/fesm2015/lifeready-core.js +22 -1
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +1 -1
- package/lib/time/time.service.d.ts +11 -0
- package/lifeready-core.d.ts +13 -15
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -673,6 +673,27 @@
|
|
|
673
673
|
});
|
|
674
674
|
});
|
|
675
675
|
};
|
|
676
|
+
/**
|
|
677
|
+
* This is the sync version to get now. Call serverNow() first, otherwise this will print error
|
|
678
|
+
* because the server time offset is not known. But it will return the current time as a fallback
|
|
679
|
+
* so as to not introduce any crashes.
|
|
680
|
+
*
|
|
681
|
+
*/
|
|
682
|
+
TimeService.prototype.now = function () {
|
|
683
|
+
if (this.offsetMs === null) {
|
|
684
|
+
console.error('Server time offset not known. You must await serverNow() first. Returning local clock instead.');
|
|
685
|
+
return Date.now();
|
|
686
|
+
}
|
|
687
|
+
else {
|
|
688
|
+
return Date.now() + this.offsetMs;
|
|
689
|
+
}
|
|
690
|
+
};
|
|
691
|
+
/**
|
|
692
|
+
* Calls this.now() and converts to a Date object.
|
|
693
|
+
*/
|
|
694
|
+
TimeService.prototype.date = function () {
|
|
695
|
+
return new Date(this.now());
|
|
696
|
+
};
|
|
676
697
|
return TimeService;
|
|
677
698
|
}());
|
|
678
699
|
TimeService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TimeService_Factory() { return new TimeService(i0.ɵɵinject(i4.AuthClass), i0.ɵɵinject(i1.Apollo)); }, token: TimeService, providedIn: "root" });
|
|
@@ -2604,7 +2625,7 @@
|
|
|
2604
2625
|
})
|
|
2605
2626
|
], exports.CommonProcessorsService);
|
|
2606
2627
|
|
|
2607
|
-
exports.ɵ
|
|
2628
|
+
exports.ɵg = /** @class */ (function () {
|
|
2608
2629
|
function TpPasswordResetProcessorService(ngZone, keyGraph) {
|
|
2609
2630
|
this.ngZone = ngZone;
|
|
2610
2631
|
this.keyGraph = keyGraph;
|
|
@@ -2745,21 +2766,21 @@
|
|
|
2745
2766
|
};
|
|
2746
2767
|
return TpPasswordResetProcessorService;
|
|
2747
2768
|
}());
|
|
2748
|
-
exports.ɵ
|
|
2749
|
-
exports.ɵ
|
|
2769
|
+
exports.ɵg.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetProcessorService_Factory() { return new exports.ɵg(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeyGraphService)); }, token: exports.ɵg, providedIn: "root" });
|
|
2770
|
+
exports.ɵg.decorators = [
|
|
2750
2771
|
{ type: i0.Injectable, args: [{
|
|
2751
2772
|
providedIn: 'root',
|
|
2752
2773
|
},] }
|
|
2753
2774
|
];
|
|
2754
|
-
exports.ɵ
|
|
2775
|
+
exports.ɵg.ctorParameters = function () { return [
|
|
2755
2776
|
{ type: i0.NgZone },
|
|
2756
2777
|
{ type: KeyGraphService }
|
|
2757
2778
|
]; };
|
|
2758
|
-
exports.ɵ
|
|
2779
|
+
exports.ɵg = __decorate([
|
|
2759
2780
|
RunOutsideAngular({
|
|
2760
2781
|
ngZoneName: 'ngZone',
|
|
2761
2782
|
})
|
|
2762
|
-
], exports.ɵ
|
|
2783
|
+
], exports.ɵg);
|
|
2763
2784
|
|
|
2764
2785
|
function extendPath(context, key) {
|
|
2765
2786
|
return Object.assign(Object.assign({}, context), { path: __spread(context.path, [key]) });
|
|
@@ -3048,7 +3069,7 @@
|
|
|
3048
3069
|
};
|
|
3049
3070
|
return QueryProcessorService;
|
|
3050
3071
|
}());
|
|
3051
|
-
exports.QueryProcessorService.ɵprov = i0.ɵɵdefineInjectable({ factory: function QueryProcessorService_Factory() { return new exports.QueryProcessorService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeyService), i0.ɵɵinject(exports.CommonProcessorsService), i0.ɵɵinject(exports.ɵ
|
|
3072
|
+
exports.QueryProcessorService.ɵprov = i0.ɵɵdefineInjectable({ factory: function QueryProcessorService_Factory() { return new exports.QueryProcessorService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeyService), i0.ɵɵinject(exports.CommonProcessorsService), i0.ɵɵinject(exports.ɵg)); }, token: exports.QueryProcessorService, providedIn: "root" });
|
|
3052
3073
|
exports.QueryProcessorService.decorators = [
|
|
3053
3074
|
{ type: i0.Injectable, args: [{
|
|
3054
3075
|
providedIn: 'root',
|
|
@@ -3058,7 +3079,7 @@
|
|
|
3058
3079
|
{ type: i0.NgZone },
|
|
3059
3080
|
{ type: KeyService },
|
|
3060
3081
|
{ type: exports.CommonProcessorsService },
|
|
3061
|
-
{ type: exports.ɵ
|
|
3082
|
+
{ type: exports.ɵg }
|
|
3062
3083
|
]; };
|
|
3063
3084
|
exports.QueryProcessorService = __decorate([
|
|
3064
3085
|
RunOutsideAngular({
|
|
@@ -3463,7 +3484,7 @@
|
|
|
3463
3484
|
// --------------------------------------------------------------------------
|
|
3464
3485
|
var keyGraphFieldAstSelection = getQuery(gql__default['default'](templateObject_1$3 || (templateObject_1$3 = __makeTemplateObject(["\nquery {\n ", "\n}\n"], ["\nquery {\n ", "\n}\n"])), KeyGraphField)).selectionSet.selections[0];
|
|
3465
3486
|
var fetchKeyGraphFieldAstSelection = getQuery(gql__default['default'](templateObject_2$1 || (templateObject_2$1 = __makeTemplateObject(["\nquery {\n ", "\n}\n"], ["\nquery {\n ", "\n}\n"])), FetchKeyGraphField)).selectionSet.selections[0];
|
|
3466
|
-
exports.ɵ
|
|
3487
|
+
exports.ɵf = /** @class */ (function () {
|
|
3467
3488
|
function LrGraphQLService(ngZone, apollo, keyGraph, queryProcessor) {
|
|
3468
3489
|
this.ngZone = ngZone;
|
|
3469
3490
|
this.apollo = apollo;
|
|
@@ -3615,28 +3636,28 @@
|
|
|
3615
3636
|
};
|
|
3616
3637
|
return LrGraphQLService;
|
|
3617
3638
|
}());
|
|
3618
|
-
exports.ɵ
|
|
3619
|
-
exports.ɵ
|
|
3639
|
+
exports.ɵf.ɵprov = i0.ɵɵdefineInjectable({ factory: function LrGraphQLService_Factory() { return new exports.ɵf(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i1.Apollo), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(exports.QueryProcessorService)); }, token: exports.ɵf, providedIn: "root" });
|
|
3640
|
+
exports.ɵf.decorators = [
|
|
3620
3641
|
{ type: i0.Injectable, args: [{
|
|
3621
3642
|
providedIn: 'root',
|
|
3622
3643
|
},] }
|
|
3623
3644
|
];
|
|
3624
|
-
exports.ɵ
|
|
3645
|
+
exports.ɵf.ctorParameters = function () { return [
|
|
3625
3646
|
{ type: i0.NgZone },
|
|
3626
3647
|
{ type: i1.Apollo },
|
|
3627
3648
|
{ type: KeyGraphService },
|
|
3628
3649
|
{ type: exports.QueryProcessorService }
|
|
3629
3650
|
]; };
|
|
3630
|
-
exports.ɵ
|
|
3651
|
+
exports.ɵf = __decorate([
|
|
3631
3652
|
RunOutsideAngular({
|
|
3632
3653
|
ngZoneName: 'ngZone',
|
|
3633
3654
|
})
|
|
3634
|
-
], exports.ɵ
|
|
3655
|
+
], exports.ɵf);
|
|
3635
3656
|
var templateObject_1$3, templateObject_2$1;
|
|
3636
3657
|
|
|
3637
3658
|
var LrService = /** @class */ (function () {
|
|
3638
3659
|
function LrService(injector) {
|
|
3639
|
-
this.lrGraphQL = injector.get(exports.ɵ
|
|
3660
|
+
this.lrGraphQL = injector.get(exports.ɵf);
|
|
3640
3661
|
}
|
|
3641
3662
|
LrService.prototype.mutate = function (lrMutation, options) {
|
|
3642
3663
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -5640,7 +5661,7 @@
|
|
|
5640
5661
|
this.encryptionService = injector.get(EncryptionService);
|
|
5641
5662
|
this.keyGraph = injector.get(KeyGraphService);
|
|
5642
5663
|
this.slip39Service = injector.get(Slip39Service);
|
|
5643
|
-
this.lrGraphQl = injector.get(exports.ɵ
|
|
5664
|
+
this.lrGraphQl = injector.get(exports.ɵf);
|
|
5644
5665
|
}
|
|
5645
5666
|
TpAssemblyController.prototype.recoverAssemblyKey = function (partials) {
|
|
5646
5667
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -6131,7 +6152,7 @@
|
|
|
6131
6152
|
return TpAssemblyController;
|
|
6132
6153
|
}());
|
|
6133
6154
|
|
|
6134
|
-
exports.ɵ
|
|
6155
|
+
exports.ɵj = /** @class */ (function (_super) {
|
|
6135
6156
|
__extends(TpPasswordResetAssemblyController, _super);
|
|
6136
6157
|
function TpPasswordResetAssemblyController(ngZone, injector) {
|
|
6137
6158
|
var _this = _super.call(this, injector) || this;
|
|
@@ -6145,21 +6166,21 @@
|
|
|
6145
6166
|
};
|
|
6146
6167
|
return TpPasswordResetAssemblyController;
|
|
6147
6168
|
}(TpAssemblyController));
|
|
6148
|
-
exports.ɵ
|
|
6149
|
-
exports.ɵ
|
|
6169
|
+
exports.ɵj.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetAssemblyController_Factory() { return new exports.ɵj(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR)); }, token: exports.ɵj, providedIn: "root" });
|
|
6170
|
+
exports.ɵj.decorators = [
|
|
6150
6171
|
{ type: i0.Injectable, args: [{
|
|
6151
6172
|
providedIn: 'root',
|
|
6152
6173
|
},] }
|
|
6153
6174
|
];
|
|
6154
|
-
exports.ɵ
|
|
6175
|
+
exports.ɵj.ctorParameters = function () { return [
|
|
6155
6176
|
{ type: i0.NgZone },
|
|
6156
6177
|
{ type: i0.Injector }
|
|
6157
6178
|
]; };
|
|
6158
|
-
exports.ɵ
|
|
6179
|
+
exports.ɵj = __decorate([
|
|
6159
6180
|
RunOutsideAngular({
|
|
6160
6181
|
ngZoneName: 'ngZone',
|
|
6161
6182
|
})
|
|
6162
|
-
], exports.ɵ
|
|
6183
|
+
], exports.ɵj);
|
|
6163
6184
|
|
|
6164
6185
|
var CancelTpPasswordResetRequestMutation = gqlTyped(templateObject_1$a || (templateObject_1$a = __makeTemplateObject(["\nmutation CancelTpPasswordResetRequestMutation {\n cancelTpPasswordResetRequest(input: {}) {\n id\n }\n}"], ["\nmutation CancelTpPasswordResetRequestMutation {\n cancelTpPasswordResetRequest(input: {}) {\n id\n }\n}"])));
|
|
6165
6186
|
var CreateTpAssemblyKeyChallengeMutation = gqlTyped(templateObject_2$7 || (templateObject_2$7 = __makeTemplateObject(["\nmutation CreateTpAssemblyKeyChallengeMutation(\n $input: CreateTpAssemblyKeyChallengeInput!\n) {\n createTpAssemblyKeyChallenge(input: $input) {\n challenge\n }\n}"], ["\nmutation CreateTpAssemblyKeyChallengeMutation(\n $input: CreateTpAssemblyKeyChallengeInput!\n) {\n createTpAssemblyKeyChallenge(input: $input) {\n challenge\n }\n}"])));
|
|
@@ -6837,7 +6858,7 @@
|
|
|
6837
6858
|
};
|
|
6838
6859
|
return LifeReadyAuthService;
|
|
6839
6860
|
}());
|
|
6840
|
-
LifeReadyAuthService.ɵprov = i0.ɵɵdefineInjectable({ factory: function LifeReadyAuthService_Factory() { return new LifeReadyAuthService(i0.ɵɵinject(LR_CONFIG), i0.ɵɵinject(i4.AuthClass), i0.ɵɵinject(KeyFactoryService), i0.ɵɵinject(KeyService), i0.ɵɵinject(ProfileService), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(PasswordService), i0.ɵɵinject(IdleService), i0.ɵɵinject(exports.ɵ
|
|
6861
|
+
LifeReadyAuthService.ɵprov = i0.ɵɵdefineInjectable({ factory: function LifeReadyAuthService_Factory() { return new LifeReadyAuthService(i0.ɵɵinject(LR_CONFIG), i0.ɵɵinject(i4.AuthClass), i0.ɵɵinject(KeyFactoryService), i0.ɵɵinject(KeyService), i0.ɵɵinject(ProfileService), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(PasswordService), i0.ɵɵinject(IdleService), i0.ɵɵinject(exports.ɵf), i0.ɵɵinject(exports.ɵg), i0.ɵɵinject(PersistService), i0.ɵɵinject(EncryptionService), i0.ɵɵinject(Slip39Service), i0.ɵɵinject(exports.ɵj)); }, token: LifeReadyAuthService, providedIn: "root" });
|
|
6841
6862
|
LifeReadyAuthService.decorators = [
|
|
6842
6863
|
{ type: i0.Injectable, args: [{
|
|
6843
6864
|
providedIn: 'root',
|
|
@@ -6852,12 +6873,12 @@
|
|
|
6852
6873
|
{ type: KeyGraphService },
|
|
6853
6874
|
{ type: PasswordService },
|
|
6854
6875
|
{ type: IdleService },
|
|
6855
|
-
{ type: exports.ɵ
|
|
6856
|
-
{ type: exports.ɵ
|
|
6876
|
+
{ type: exports.ɵf },
|
|
6877
|
+
{ type: exports.ɵg },
|
|
6857
6878
|
{ type: PersistService },
|
|
6858
6879
|
{ type: EncryptionService },
|
|
6859
6880
|
{ type: Slip39Service },
|
|
6860
|
-
{ type: exports.ɵ
|
|
6881
|
+
{ type: exports.ɵj }
|
|
6861
6882
|
]; };
|
|
6862
6883
|
|
|
6863
6884
|
(function (FileType) {
|
|
@@ -12845,7 +12866,7 @@
|
|
|
12845
12866
|
|
|
12846
12867
|
var SCENARIO_SLIP39_PASSPHRASE = 'lifeready';
|
|
12847
12868
|
|
|
12848
|
-
exports.ɵ
|
|
12869
|
+
exports.ɵo = /** @class */ (function (_super) {
|
|
12849
12870
|
__extends(ScenarioAssemblyController, _super);
|
|
12850
12871
|
function ScenarioAssemblyController(ngZone, injector) {
|
|
12851
12872
|
var _this = _super.call(this, injector) || this;
|
|
@@ -12859,21 +12880,21 @@
|
|
|
12859
12880
|
};
|
|
12860
12881
|
return ScenarioAssemblyController;
|
|
12861
12882
|
}(TpAssemblyController));
|
|
12862
|
-
exports.ɵ
|
|
12863
|
-
exports.ɵ
|
|
12883
|
+
exports.ɵo.ɵprov = i0.ɵɵdefineInjectable({ factory: function ScenarioAssemblyController_Factory() { return new exports.ɵo(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR)); }, token: exports.ɵo, providedIn: "root" });
|
|
12884
|
+
exports.ɵo.decorators = [
|
|
12864
12885
|
{ type: i0.Injectable, args: [{
|
|
12865
12886
|
providedIn: 'root',
|
|
12866
12887
|
},] }
|
|
12867
12888
|
];
|
|
12868
|
-
exports.ɵ
|
|
12889
|
+
exports.ɵo.ctorParameters = function () { return [
|
|
12869
12890
|
{ type: i0.NgZone },
|
|
12870
12891
|
{ type: i0.Injector }
|
|
12871
12892
|
]; };
|
|
12872
|
-
exports.ɵ
|
|
12893
|
+
exports.ɵo = __decorate([
|
|
12873
12894
|
RunOutsideAngular({
|
|
12874
12895
|
ngZoneName: 'ngZone',
|
|
12875
12896
|
})
|
|
12876
|
-
], exports.ɵ
|
|
12897
|
+
], exports.ɵo);
|
|
12877
12898
|
|
|
12878
12899
|
var CreateScenarioMutation = gqlTyped(templateObject_1$q || (templateObject_1$q = __makeTemplateObject(["\nmutation CreateScenarioMutation($input: CreateScenarioInput!) {\n createScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"], ["\nmutation CreateScenarioMutation($input: CreateScenarioInput!) {\n createScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"])));
|
|
12879
12900
|
var UpdateScenarioMutation = gqlTyped(templateObject_2$m || (templateObject_2$m = __makeTemplateObject(["\nmutation UpdateScenarioMutation($input: UpdateScenarioInput!) {\n updateScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"], ["\nmutation UpdateScenarioMutation($input: UpdateScenarioInput!) {\n updateScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"])));
|
|
@@ -13715,7 +13736,7 @@
|
|
|
13715
13736
|
return ScenarioService;
|
|
13716
13737
|
}(LrService));
|
|
13717
13738
|
exports.ScenarioService.SLIP39_PASSPHRASE = 'lifeready';
|
|
13718
|
-
exports.ScenarioService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ScenarioService_Factory() { return new exports.ScenarioService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(exports.Item2Service), i0.ɵɵinject(exports.ɵ
|
|
13739
|
+
exports.ScenarioService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ScenarioService_Factory() { return new exports.ScenarioService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(exports.Item2Service), i0.ɵɵinject(exports.ɵo), i0.ɵɵinject(EncryptionService)); }, token: exports.ScenarioService, providedIn: "root" });
|
|
13719
13740
|
exports.ScenarioService.decorators = [
|
|
13720
13741
|
{ type: i0.Injectable, args: [{
|
|
13721
13742
|
providedIn: 'root',
|
|
@@ -13726,7 +13747,7 @@
|
|
|
13726
13747
|
{ type: i0.Injector },
|
|
13727
13748
|
{ type: KeyGraphService },
|
|
13728
13749
|
{ type: exports.Item2Service },
|
|
13729
|
-
{ type: exports.ɵ
|
|
13750
|
+
{ type: exports.ɵo },
|
|
13730
13751
|
{ type: EncryptionService }
|
|
13731
13752
|
]; };
|
|
13732
13753
|
exports.ScenarioService = __decorate([
|
|
@@ -13926,7 +13947,7 @@
|
|
|
13926
13947
|
};
|
|
13927
13948
|
return SharedContactCard2Service;
|
|
13928
13949
|
}());
|
|
13929
|
-
exports.SharedContactCard2Service.ɵprov = i0.ɵɵdefineInjectable({ factory: function SharedContactCard2Service_Factory() { return new exports.SharedContactCard2Service(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeyService), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(EncryptionService), i0.ɵɵinject(exports.ɵ
|
|
13950
|
+
exports.SharedContactCard2Service.ɵprov = i0.ɵɵdefineInjectable({ factory: function SharedContactCard2Service_Factory() { return new exports.SharedContactCard2Service(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(KeyService), i0.ɵɵinject(KeyGraphService), i0.ɵɵinject(EncryptionService), i0.ɵɵinject(exports.ɵf)); }, token: exports.SharedContactCard2Service, providedIn: "root" });
|
|
13930
13951
|
exports.SharedContactCard2Service.decorators = [
|
|
13931
13952
|
{ type: i0.Injectable, args: [{
|
|
13932
13953
|
providedIn: 'root',
|
|
@@ -13937,7 +13958,7 @@
|
|
|
13937
13958
|
{ type: KeyService },
|
|
13938
13959
|
{ type: KeyGraphService },
|
|
13939
13960
|
{ type: EncryptionService },
|
|
13940
|
-
{ type: exports.ɵ
|
|
13961
|
+
{ type: exports.ɵf }
|
|
13941
13962
|
]; };
|
|
13942
13963
|
exports.SharedContactCard2Service = __decorate([
|
|
13943
13964
|
RunOutsideAngular({
|
|
@@ -13945,7 +13966,7 @@
|
|
|
13945
13966
|
})
|
|
13946
13967
|
], exports.SharedContactCard2Service);
|
|
13947
13968
|
|
|
13948
|
-
exports.ɵ
|
|
13969
|
+
exports.ɵp = /** @class */ (function (_super) {
|
|
13949
13970
|
__extends(TpPasswordResetPrivateService, _super);
|
|
13950
13971
|
function TpPasswordResetPrivateService(ngZone, injector) {
|
|
13951
13972
|
var _this = _super.call(this, injector) || this;
|
|
@@ -13994,21 +14015,21 @@
|
|
|
13994
14015
|
};
|
|
13995
14016
|
return TpPasswordResetPrivateService;
|
|
13996
14017
|
}(LrService));
|
|
13997
|
-
exports.ɵ
|
|
13998
|
-
exports.ɵ
|
|
14018
|
+
exports.ɵp.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetPrivateService_Factory() { return new exports.ɵp(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR)); }, token: exports.ɵp, providedIn: "root" });
|
|
14019
|
+
exports.ɵp.decorators = [
|
|
13999
14020
|
{ type: i0.Injectable, args: [{
|
|
14000
14021
|
providedIn: 'root',
|
|
14001
14022
|
},] }
|
|
14002
14023
|
];
|
|
14003
|
-
exports.ɵ
|
|
14024
|
+
exports.ɵp.ctorParameters = function () { return [
|
|
14004
14025
|
{ type: i0.NgZone },
|
|
14005
14026
|
{ type: i0.Injector }
|
|
14006
14027
|
]; };
|
|
14007
|
-
exports.ɵ
|
|
14028
|
+
exports.ɵp = __decorate([
|
|
14008
14029
|
RunOutsideAngular({
|
|
14009
14030
|
ngZoneName: 'ngZone',
|
|
14010
14031
|
})
|
|
14011
|
-
], exports.ɵ
|
|
14032
|
+
], exports.ɵp);
|
|
14012
14033
|
|
|
14013
14034
|
exports.TpPasswordResetRequestService = /** @class */ (function (_super) {
|
|
14014
14035
|
__extends(TpPasswordResetRequestService, _super);
|
|
@@ -14124,7 +14145,7 @@
|
|
|
14124
14145
|
};
|
|
14125
14146
|
return TpPasswordResetRequestService;
|
|
14126
14147
|
}(LrService));
|
|
14127
|
-
exports.TpPasswordResetRequestService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetRequestService_Factory() { return new exports.TpPasswordResetRequestService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(EncryptionService), i0.ɵɵinject(exports.ɵ
|
|
14148
|
+
exports.TpPasswordResetRequestService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetRequestService_Factory() { return new exports.TpPasswordResetRequestService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(EncryptionService), i0.ɵɵinject(exports.ɵp)); }, token: exports.TpPasswordResetRequestService, providedIn: "root" });
|
|
14128
14149
|
exports.TpPasswordResetRequestService.decorators = [
|
|
14129
14150
|
{ type: i0.Injectable, args: [{
|
|
14130
14151
|
providedIn: 'root',
|
|
@@ -14134,7 +14155,7 @@
|
|
|
14134
14155
|
{ type: i0.NgZone },
|
|
14135
14156
|
{ type: i0.Injector },
|
|
14136
14157
|
{ type: EncryptionService },
|
|
14137
|
-
{ type: exports.ɵ
|
|
14158
|
+
{ type: exports.ɵp }
|
|
14138
14159
|
]; };
|
|
14139
14160
|
exports.TpPasswordResetRequestService = __decorate([
|
|
14140
14161
|
RunOutsideAngular({
|
|
@@ -14369,7 +14390,7 @@
|
|
|
14369
14390
|
};
|
|
14370
14391
|
return TpPasswordResetService;
|
|
14371
14392
|
}(LrService));
|
|
14372
|
-
exports.TpPasswordResetService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetService_Factory() { return new exports.TpPasswordResetService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(exports.ɵ
|
|
14393
|
+
exports.TpPasswordResetService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TpPasswordResetService_Factory() { return new exports.TpPasswordResetService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(exports.ɵp), i0.ɵɵinject(exports.ɵj)); }, token: exports.TpPasswordResetService, providedIn: "root" });
|
|
14373
14394
|
exports.TpPasswordResetService.decorators = [
|
|
14374
14395
|
{ type: i0.Injectable, args: [{
|
|
14375
14396
|
providedIn: 'root',
|
|
@@ -14378,8 +14399,8 @@
|
|
|
14378
14399
|
exports.TpPasswordResetService.ctorParameters = function () { return [
|
|
14379
14400
|
{ type: i0.NgZone },
|
|
14380
14401
|
{ type: i0.Injector },
|
|
14381
|
-
{ type: exports.ɵ
|
|
14382
|
-
{ type: exports.ɵ
|
|
14402
|
+
{ type: exports.ɵp },
|
|
14403
|
+
{ type: exports.ɵj }
|
|
14383
14404
|
]; };
|
|
14384
14405
|
exports.TpPasswordResetService = __decorate([
|
|
14385
14406
|
RunOutsideAngular({
|
|
@@ -14912,7 +14933,7 @@
|
|
|
14912
14933
|
exports.LrException = LrException;
|
|
14913
14934
|
exports.LrExpiredCodeException = LrExpiredCodeException;
|
|
14914
14935
|
exports.LrExpiredException = LrExpiredException;
|
|
14915
|
-
exports.LrGraphQLService = exports.ɵ
|
|
14936
|
+
exports.LrGraphQLService = exports.ɵf;
|
|
14916
14937
|
exports.LrLockedException = LrLockedException;
|
|
14917
14938
|
exports.LrMergedMutation = LrMergedMutation;
|
|
14918
14939
|
exports.LrMutation = LrMutation;
|
|
@@ -14958,10 +14979,12 @@
|
|
|
14958
14979
|
exports.RequestUserDeleteMutation = RequestUserDeleteMutation;
|
|
14959
14980
|
exports.RespondOtkMutation = RespondOtkMutation;
|
|
14960
14981
|
exports.RevertFileQuery = RevertFileQuery;
|
|
14982
|
+
exports.ServerTimeQuery = ServerTimeQuery;
|
|
14961
14983
|
exports.SharedAccess = SharedAccess;
|
|
14962
14984
|
exports.StripeBillingPortalSession = StripeBillingPortalSession;
|
|
14963
14985
|
exports.StripeCheckoutSession = StripeCheckoutSession;
|
|
14964
14986
|
exports.Subscription = Subscription;
|
|
14987
|
+
exports.TimeService = TimeService;
|
|
14965
14988
|
exports.TrustedPartyDetails = TrustedPartyDetails;
|
|
14966
14989
|
exports.TwoFactorService = TwoFactorService;
|
|
14967
14990
|
exports.UnarchiveDirectoryMutation = UnarchiveDirectoryMutation;
|
|
@@ -14981,6 +15004,7 @@
|
|
|
14981
15004
|
exports.VaultFields = VaultFields;
|
|
14982
15005
|
exports.VaultRecord = VaultRecord;
|
|
14983
15006
|
exports.VaultRecordType = VaultRecordType;
|
|
15007
|
+
exports.WebCryptoService = WebCryptoService;
|
|
14984
15008
|
exports.awsFetch = awsFetch;
|
|
14985
15009
|
exports.configureAmplifyAuth = configureAmplifyAuth;
|
|
14986
15010
|
exports.configureApollo = configureApollo;
|
|
@@ -14998,17 +15022,15 @@
|
|
|
14998
15022
|
exports.ɵ0 = ɵ0;
|
|
14999
15023
|
exports.ɵa = KeyGraphService;
|
|
15000
15024
|
exports.ɵb = EncryptionService;
|
|
15001
|
-
exports.ɵc =
|
|
15002
|
-
exports.ɵd =
|
|
15003
|
-
exports.ɵe =
|
|
15004
|
-
exports.ɵ
|
|
15005
|
-
exports.ɵ
|
|
15006
|
-
exports.ɵ
|
|
15007
|
-
exports.ɵ
|
|
15008
|
-
exports.ɵm =
|
|
15009
|
-
exports.ɵn =
|
|
15010
|
-
exports.ɵo = SharedContactCardService;
|
|
15011
|
-
exports.ɵp = TrustedPartyService;
|
|
15025
|
+
exports.ɵc = KeyService;
|
|
15026
|
+
exports.ɵd = KeyFactoryService;
|
|
15027
|
+
exports.ɵe = KeyMetaService;
|
|
15028
|
+
exports.ɵh = RunOutsideAngular;
|
|
15029
|
+
exports.ɵi = Slip39Service;
|
|
15030
|
+
exports.ɵk = TpAssemblyController;
|
|
15031
|
+
exports.ɵl = LrService;
|
|
15032
|
+
exports.ɵm = SharedContactCardService;
|
|
15033
|
+
exports.ɵn = TrustedPartyService;
|
|
15012
15034
|
|
|
15013
15035
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
15014
15036
|
|