@angular/fire 7.2.1 → 7.3.0-canary.8d5bc12
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/app/app.module.d.ts +1 -1
- package/auth/auth.module.d.ts +1 -1
- package/bundles/angular-fire-app.umd.js.map +1 -1
- package/bundles/angular-fire-auth.umd.js.map +1 -1
- package/bundles/angular-fire-database.umd.js.map +1 -1
- package/bundles/angular-fire-functions.umd.js.map +1 -1
- package/bundles/angular-fire-messaging.umd.js.map +1 -1
- package/bundles/angular-fire-performance.umd.js.map +1 -1
- package/bundles/angular-fire-remote-config.umd.js.map +1 -1
- package/bundles/angular-fire-storage.umd.js +6 -0
- package/bundles/angular-fire-storage.umd.js.map +1 -1
- package/bundles/angular-fire.umd.js +1 -1
- package/bundles/angular-fire.umd.js.map +1 -1
- package/database/database.module.d.ts +1 -1
- package/docs/auth/getting-started.md +1 -1
- package/esm2015/app/app.module.js +1 -1
- package/esm2015/auth/auth.module.js +1 -1
- package/esm2015/core.js +1 -1
- package/esm2015/database/database.module.js +1 -1
- package/esm2015/functions/functions.module.js +1 -1
- package/esm2015/messaging/messaging.module.js +1 -1
- package/esm2015/performance/performance.module.js +1 -1
- package/esm2015/remote-config/remote-config.module.js +1 -1
- package/esm2015/storage/firebase.js +5 -2
- package/esm2015/storage/storage.module.js +1 -1
- package/fesm2015/angular-fire-app.js.map +1 -1
- package/fesm2015/angular-fire-auth.js.map +1 -1
- package/fesm2015/angular-fire-database.js.map +1 -1
- package/fesm2015/angular-fire-functions.js.map +1 -1
- package/fesm2015/angular-fire-messaging.js.map +1 -1
- package/fesm2015/angular-fire-performance.js.map +1 -1
- package/fesm2015/angular-fire-remote-config.js.map +1 -1
- package/fesm2015/angular-fire-storage.js +5 -2
- package/fesm2015/angular-fire-storage.js.map +1 -1
- package/fesm2015/angular-fire.js +1 -1
- package/fesm2015/angular-fire.js.map +1 -1
- package/firestore-protos.js +4 -16
- package/functions/functions.module.d.ts +1 -1
- package/messaging/messaging.module.d.ts +1 -1
- package/package.json +4 -4
- package/performance/performance.module.d.ts +1 -1
- package/remote-config/remote-config.module.d.ts +1 -1
- package/schematics/deploy/actions.js +6 -1
- package/schematics/deploy/functions-templates.js +11 -1
- package/schematics/deploy/schema.json +4 -0
- package/schematics/utils.js +2 -5
- package/schematics/versions.json +1 -10
- package/storage/firebase.d.ts +4 -1
- package/storage/storage.module.d.ts +1 -1
package/storage/firebase.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export * from 'firebase/storage';
|
|
2
|
-
import { connectStorageEmulator as _connectStorageEmulator, deleteObject as _deleteObject, getDownloadURL as _getDownloadURL, getMetadata as _getMetadata, getStorage as _getStorage, list as _list, listAll as _listAll, ref as _ref, updateMetadata as _updateMetadata, uploadBytes as _uploadBytes, uploadBytesResumable as _uploadBytesResumable, uploadString as _uploadString } from 'firebase/storage';
|
|
2
|
+
import { connectStorageEmulator as _connectStorageEmulator, deleteObject as _deleteObject, getBlob as _getBlob, getBytes as _getBytes, getDownloadURL as _getDownloadURL, getMetadata as _getMetadata, getStorage as _getStorage, getStream as _getStream, list as _list, listAll as _listAll, ref as _ref, updateMetadata as _updateMetadata, uploadBytes as _uploadBytes, uploadBytesResumable as _uploadBytesResumable, uploadString as _uploadString } from 'firebase/storage';
|
|
3
3
|
export declare const connectStorageEmulator: typeof _connectStorageEmulator;
|
|
4
4
|
export declare const deleteObject: typeof _deleteObject;
|
|
5
|
+
export declare const getBlob: typeof _getBlob;
|
|
6
|
+
export declare const getBytes: typeof _getBytes;
|
|
5
7
|
export declare const getDownloadURL: typeof _getDownloadURL;
|
|
6
8
|
export declare const getMetadata: typeof _getMetadata;
|
|
7
9
|
export declare const getStorage: typeof _getStorage;
|
|
10
|
+
export declare const getStream: typeof _getStream;
|
|
8
11
|
export declare const list: typeof _list;
|
|
9
12
|
export declare const listAll: typeof _listAll;
|
|
10
13
|
export declare const ref: typeof _ref;
|
|
@@ -12,4 +12,4 @@ export declare class StorageModule {
|
|
|
12
12
|
static ɵmod: i0.ɵɵNgModuleDeclaration<StorageModule, never, never, never>;
|
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<StorageModule>;
|
|
14
14
|
}
|
|
15
|
-
export declare function provideStorage(fn: () => FirebaseStorage, ...deps: any[]): ModuleWithProviders<StorageModule>;
|
|
15
|
+
export declare function provideStorage(fn: (injector: Injector) => FirebaseStorage, ...deps: any[]): ModuleWithProviders<StorageModule>;
|