@infrab4a/connect-angular 4.17.0-beta.5 → 4.17.0-beta.7
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.
|
@@ -2698,9 +2698,20 @@ AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
2698
2698
|
});
|
|
2699
2699
|
}
|
|
2700
2700
|
catch (error) {
|
|
2701
|
-
|
|
2701
|
+
if (error instanceof Error)
|
|
2702
|
+
console.error(error.message);
|
|
2703
|
+
try {
|
|
2704
|
+
return initializeAppCheck(app, {
|
|
2705
|
+
provider: undefined,
|
|
2706
|
+
isTokenAutoRefreshEnabled: true,
|
|
2707
|
+
});
|
|
2708
|
+
}
|
|
2709
|
+
catch (error2) {
|
|
2710
|
+
console.warn('ReCAPTCHA site key not provided or invalid, App Check not initialized');
|
|
2711
|
+
if (error2 instanceof Error)
|
|
2712
|
+
console.error(error2.message);
|
|
2713
|
+
}
|
|
2702
2714
|
}
|
|
2703
|
-
return;
|
|
2704
2715
|
}),
|
|
2705
2716
|
provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
|
|
2706
2717
|
AngularElasticSeachModule,
|
|
@@ -2735,9 +2746,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
2735
2746
|
});
|
|
2736
2747
|
}
|
|
2737
2748
|
catch (error) {
|
|
2738
|
-
|
|
2749
|
+
if (error instanceof Error)
|
|
2750
|
+
console.error(error.message);
|
|
2751
|
+
try {
|
|
2752
|
+
return initializeAppCheck(app, {
|
|
2753
|
+
provider: undefined,
|
|
2754
|
+
isTokenAutoRefreshEnabled: true,
|
|
2755
|
+
});
|
|
2756
|
+
}
|
|
2757
|
+
catch (error2) {
|
|
2758
|
+
console.warn('ReCAPTCHA site key not provided or invalid, App Check not initialized');
|
|
2759
|
+
if (error2 instanceof Error)
|
|
2760
|
+
console.error(error2.message);
|
|
2761
|
+
}
|
|
2739
2762
|
}
|
|
2740
|
-
return;
|
|
2741
2763
|
}),
|
|
2742
2764
|
provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
|
|
2743
2765
|
AngularElasticSeachModule,
|