@entropic-bond/firebase 1.13.6 → 1.13.8
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/lib/auth/firebase-auth.d.ts +2 -3
- package/lib/cloud-functions/firebase-cloud-functions.d.ts +1 -2
- package/lib/cloud-functions/firebase-cloud-functions.spec.d.ts +0 -1
- package/lib/cloud-storage/firebase-cloud-storage.d.ts +1 -2
- package/lib/entropic-bond-firebase.js +8145 -8232
- package/lib/entropic-bond-firebase.js.map +1 -1
- package/lib/entropic-bond-firebase.umd.cjs +382 -272
- package/lib/entropic-bond-firebase.umd.cjs.map +1 -1
- package/lib/firebase-helper.d.ts +0 -1
- package/lib/mocks/test-user.d.ts +0 -1
- package/lib/store/firebase-datasource.d.ts +4 -3
- package/package.json +10 -9
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { EmulatorConfig } from '../firebase-helper';
|
|
2
|
-
import { User, UserCredential } from 'firebase/auth';
|
|
3
1
|
import { AuthProvider, SignData, UserCredentials, AuthService } from 'entropic-bond';
|
|
4
|
-
|
|
2
|
+
import { User, UserCredential } from 'firebase/auth';
|
|
3
|
+
import { EmulatorConfig } from '../firebase-helper';
|
|
5
4
|
export declare class FirebaseAuth extends AuthService {
|
|
6
5
|
constructor(emulator?: EmulatorConfig);
|
|
7
6
|
signUp<T extends {}>(signData: SignData): Promise<UserCredentials<T>>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EmulatorConfig } from '../firebase-helper';
|
|
2
1
|
import { CloudFunction, CloudFunctionsService } from 'entropic-bond';
|
|
3
|
-
|
|
2
|
+
import { EmulatorConfig } from '../firebase-helper';
|
|
4
3
|
export declare class FirebaseCloudFunctions implements CloudFunctionsService {
|
|
5
4
|
constructor(region?: string, emulator?: Partial<EmulatorConfig>);
|
|
6
5
|
retrieveFunction<P, R>(cloudFunction: string): CloudFunction<P, R>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EmulatorConfig } from '../firebase-helper';
|
|
2
1
|
import { CloudStorage, UploadControl, UploadProgress } from 'entropic-bond';
|
|
3
|
-
|
|
2
|
+
import { EmulatorConfig } from '../firebase-helper';
|
|
4
3
|
export declare class FirebaseCloudStorage extends CloudStorage {
|
|
5
4
|
constructor(emulator?: EmulatorConfig);
|
|
6
5
|
save(id: string, data: Blob | Uint8Array | ArrayBuffer, progress?: UploadProgress): Promise<string>;
|