@infrab4a/connect-angular 4.1.2-beta.0 → 4.1.2-beta.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/esm2020/angular-firebase-auth.module.mjs +3 -7
- package/esm2020/angular-firestore.module.mjs +3 -7
- package/fesm2015/infrab4a-connect-angular.mjs +4 -12
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +4 -12
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -118,9 +118,7 @@ AngularFirebaseAuthModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0
|
|
|
118
118
|
},
|
|
119
119
|
], imports: [provideFirebaseApp((injector) => {
|
|
120
120
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
121
|
-
return appName
|
|
122
|
-
? initializeApp(injector.get(FIREBASE_OPTIONS), `${appName}-auth`)
|
|
123
|
-
: initializeApp(injector.get(FIREBASE_OPTIONS));
|
|
121
|
+
return initializeApp(injector.get(FIREBASE_OPTIONS), `${appName || 'firebase'}-auth`);
|
|
124
122
|
}),
|
|
125
123
|
provideAuth(() => getAuth())] });
|
|
126
124
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, decorators: [{
|
|
@@ -129,9 +127,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
129
127
|
imports: [
|
|
130
128
|
provideFirebaseApp((injector) => {
|
|
131
129
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
132
|
-
return appName
|
|
133
|
-
? initializeApp(injector.get(FIREBASE_OPTIONS), `${appName}-auth`)
|
|
134
|
-
: initializeApp(injector.get(FIREBASE_OPTIONS));
|
|
130
|
+
return initializeApp(injector.get(FIREBASE_OPTIONS), `${appName || 'firebase'}-auth`);
|
|
135
131
|
}),
|
|
136
132
|
provideAuth(() => getAuth()),
|
|
137
133
|
],
|
|
@@ -404,9 +400,7 @@ AngularFirestoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
404
400
|
], imports: [AngularElasticSeachModule,
|
|
405
401
|
provideFirebaseApp((injector) => {
|
|
406
402
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
407
|
-
return appName
|
|
408
|
-
? initializeApp$1(injector.get(FIREBASE_OPTIONS), `${appName}-firestore`)
|
|
409
|
-
: initializeApp$1(injector.get(FIREBASE_OPTIONS));
|
|
403
|
+
return initializeApp$1(injector.get(FIREBASE_OPTIONS), `${appName || 'firebase'}-firestore`);
|
|
410
404
|
}),
|
|
411
405
|
provideFirestore((injector) => {
|
|
412
406
|
if (!MobileOperationSystemCheckerHelper.isAppleDevice())
|
|
@@ -422,9 +416,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
422
416
|
AngularElasticSeachModule,
|
|
423
417
|
provideFirebaseApp((injector) => {
|
|
424
418
|
const appName = injector.get(FIREBASE_APP_NAME);
|
|
425
|
-
return appName
|
|
426
|
-
? initializeApp$1(injector.get(FIREBASE_OPTIONS), `${appName}-firestore`)
|
|
427
|
-
: initializeApp$1(injector.get(FIREBASE_OPTIONS));
|
|
419
|
+
return initializeApp$1(injector.get(FIREBASE_OPTIONS), `${appName || 'firebase'}-firestore`);
|
|
428
420
|
}),
|
|
429
421
|
provideFirestore((injector) => {
|
|
430
422
|
if (!MobileOperationSystemCheckerHelper.isAppleDevice())
|