@firebase/storage 0.11.2-canary.ce79f7fe2 → 0.11.2-canary.e0551fa13
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/dist/index.browser.cjs.js +1 -1
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +1 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +1 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +1 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +1 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/implementation/string.d.ts +1 -1
- package/dist/node-esm/src/implementation/taskenums.d.ts +1 -1
- package/dist/src/implementation/string.d.ts +1 -1
- package/dist/src/implementation/taskenums.d.ts +1 -1
- package/dist/storage-public.d.ts +1 -1
- package/dist/storage.d.ts +2 -2
- package/package.json +6 -6
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* An enumeration of the possible string formats for upload.
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
export declare type StringFormat = typeof StringFormat[keyof typeof StringFormat];
|
|
21
|
+
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
|
|
22
22
|
/**
|
|
23
23
|
* An enumeration of the possible string formats for upload.
|
|
24
24
|
* @public
|
|
@@ -57,7 +57,7 @@ export declare const enum InternalTaskState {
|
|
|
57
57
|
* Represents the current state of a running upload.
|
|
58
58
|
* @internal
|
|
59
59
|
*/
|
|
60
|
-
export declare type TaskState = typeof TaskState[keyof typeof TaskState];
|
|
60
|
+
export declare type TaskState = (typeof TaskState)[keyof typeof TaskState];
|
|
61
61
|
/**
|
|
62
62
|
* Represents the current state of a running upload.
|
|
63
63
|
* @internal
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* An enumeration of the possible string formats for upload.
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
export declare type StringFormat = typeof StringFormat[keyof typeof StringFormat];
|
|
21
|
+
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
|
|
22
22
|
/**
|
|
23
23
|
* An enumeration of the possible string formats for upload.
|
|
24
24
|
* @public
|
|
@@ -57,7 +57,7 @@ export declare const enum InternalTaskState {
|
|
|
57
57
|
* Represents the current state of a running upload.
|
|
58
58
|
* @internal
|
|
59
59
|
*/
|
|
60
|
-
export declare type TaskState = typeof TaskState[keyof typeof TaskState];
|
|
60
|
+
export declare type TaskState = (typeof TaskState)[keyof typeof TaskState];
|
|
61
61
|
/**
|
|
62
62
|
* Represents the current state of a running upload.
|
|
63
63
|
* @internal
|
package/dist/storage-public.d.ts
CHANGED
|
@@ -429,7 +429,7 @@ export declare interface StorageReference {
|
|
|
429
429
|
* An enumeration of the possible string formats for upload.
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
export declare type StringFormat = typeof StringFormat[keyof typeof StringFormat];
|
|
432
|
+
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
|
|
433
433
|
/**
|
|
434
434
|
* An enumeration of the possible string formats for upload.
|
|
435
435
|
* @public
|
package/dist/storage.d.ts
CHANGED
|
@@ -878,7 +878,7 @@ declare class StringData {
|
|
|
878
878
|
* An enumeration of the possible string formats for upload.
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
export declare type StringFormat = typeof StringFormat[keyof typeof StringFormat];
|
|
881
|
+
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
|
|
882
882
|
|
|
883
883
|
/**
|
|
884
884
|
* An enumeration of the possible string formats for upload.
|
|
@@ -985,7 +985,7 @@ export declare type TaskState = 'running' | 'paused' | 'success' | 'canceled' |
|
|
|
985
985
|
* Represents the current state of a running upload.
|
|
986
986
|
* @internal
|
|
987
987
|
*/
|
|
988
|
-
export declare type _TaskState = typeof _TaskState[keyof typeof _TaskState];
|
|
988
|
+
export declare type _TaskState = (typeof _TaskState)[keyof typeof _TaskState];
|
|
989
989
|
|
|
990
990
|
/**
|
|
991
991
|
* Represents the current state of a running upload.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/storage",
|
|
3
|
-
"version": "0.11.2-canary.
|
|
3
|
+
"version": "0.11.2-canary.e0551fa13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
|
6
6
|
"main": "dist/index.node.cjs.js",
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
},
|
|
47
47
|
"license": "Apache-2.0",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@firebase/util": "1.9.3-canary.
|
|
50
|
-
"@firebase/component": "0.6.4-canary.
|
|
49
|
+
"@firebase/util": "1.9.3-canary.e0551fa13",
|
|
50
|
+
"@firebase/component": "0.6.4-canary.e0551fa13",
|
|
51
51
|
"node-fetch": "2.6.7",
|
|
52
52
|
"tslib": "^2.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@firebase/app": "0.9.
|
|
55
|
+
"@firebase/app": "0.9.9-canary.e0551fa13"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@firebase/app": "0.9.
|
|
59
|
-
"@firebase/auth": "0.
|
|
58
|
+
"@firebase/app": "0.9.9-canary.e0551fa13",
|
|
59
|
+
"@firebase/auth": "0.23.1-canary.e0551fa13",
|
|
60
60
|
"rollup": "2.79.1",
|
|
61
61
|
"@rollup/plugin-alias": "3.1.9",
|
|
62
62
|
"@rollup/plugin-json": "4.1.0",
|