@firebase/storage 0.9.0-canary.f318c7009 → 0.9.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/CHANGELOG.md +10 -0
- package/dist/index.browser.cjs.js +17 -1
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.esm2017.js +17 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +17 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +17 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +17 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/implementation/error.d.ts +16 -0
- package/dist/src/implementation/error.d.ts +16 -0
- package/dist/storage-public.d.ts +2 -7
- package/package.json +6 -6
package/dist/index.node.cjs.js
CHANGED
|
@@ -52,6 +52,22 @@ const DEFAULT_MAX_OPERATION_RETRY_TIME = 2 * 60 * 1000;
|
|
|
52
52
|
*/
|
|
53
53
|
const DEFAULT_MAX_UPLOAD_RETRY_TIME = 10 * 60 * 1000;
|
|
54
54
|
|
|
55
|
+
/**
|
|
56
|
+
* @license
|
|
57
|
+
* Copyright 2017 Google LLC
|
|
58
|
+
*
|
|
59
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
60
|
+
* you may not use this file except in compliance with the License.
|
|
61
|
+
* You may obtain a copy of the License at
|
|
62
|
+
*
|
|
63
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
64
|
+
*
|
|
65
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
66
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
67
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
68
|
+
* See the License for the specific language governing permissions and
|
|
69
|
+
* limitations under the License.
|
|
70
|
+
*/
|
|
55
71
|
/**
|
|
56
72
|
* An error returned by the Firebase Storage SDK.
|
|
57
73
|
* @public
|
|
@@ -3259,7 +3275,7 @@ class FirebaseStorageImpl {
|
|
|
3259
3275
|
}
|
|
3260
3276
|
|
|
3261
3277
|
const name = "@firebase/storage";
|
|
3262
|
-
const version = "0.9.
|
|
3278
|
+
const version = "0.9.1";
|
|
3263
3279
|
|
|
3264
3280
|
/**
|
|
3265
3281
|
* @license
|