@firebase/storage 0.11.1 → 0.11.2-20230301191949
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 +9 -0
- package/dist/index.browser.cjs.js +5 -5
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +5 -5
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +5 -5
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +5 -5
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +5 -5
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/implementation/error.d.ts +4 -4
- package/dist/src/implementation/error.d.ts +4 -4
- package/dist/storage-public.d.ts +3 -3
- package/dist/storage.d.ts +4 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
#Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.11.2-20230301191949
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`c59f537b1`](https://github.com/firebase/firebase-js-sdk/commit/c59f537b1262b5d7997291b8c1e9324d378effb6)]:
|
|
8
|
+
- @firebase/util@1.9.3-20230301191949
|
|
9
|
+
- @firebase/app@0.9.4-20230301191949
|
|
10
|
+
- @firebase/component@0.6.4-20230301191949
|
|
11
|
+
|
|
3
12
|
## 0.11.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -74,7 +74,7 @@ var DEFAULT_MIN_SLEEP_TIME_MILLIS = 1000;
|
|
|
74
74
|
var StorageError = /** @class */ (function (_super) {
|
|
75
75
|
tslib.__extends(StorageError, _super);
|
|
76
76
|
/**
|
|
77
|
-
* @param code - A StorageErrorCode string to be prefixed with 'storage/' and
|
|
77
|
+
* @param code - A `StorageErrorCode` string to be prefixed with 'storage/' and
|
|
78
78
|
* added to the end of the message.
|
|
79
79
|
* @param message - Error message.
|
|
80
80
|
* @param status_ - Corresponding HTTP Status Code
|
|
@@ -84,7 +84,7 @@ var StorageError = /** @class */ (function (_super) {
|
|
|
84
84
|
var _this = _super.call(this, prependCode(code), "Firebase Storage: ".concat(message, " (").concat(prependCode(code), ")")) || this;
|
|
85
85
|
_this.status_ = status_;
|
|
86
86
|
/**
|
|
87
|
-
* Stores custom error data
|
|
87
|
+
* Stores custom error data unique to the `StorageError`.
|
|
88
88
|
*/
|
|
89
89
|
_this.customData = { serverResponse: null };
|
|
90
90
|
_this._baseMessage = _this.message;
|
|
@@ -104,7 +104,7 @@ var StorageError = /** @class */ (function (_super) {
|
|
|
104
104
|
configurable: true
|
|
105
105
|
});
|
|
106
106
|
/**
|
|
107
|
-
* Compares a StorageErrorCode against this error's code, filtering out the prefix.
|
|
107
|
+
* Compares a `StorageErrorCode` against this error's code, filtering out the prefix.
|
|
108
108
|
*/
|
|
109
109
|
StorageError.prototype._codeEquals = function (code) {
|
|
110
110
|
return prependCode(code) === this.code;
|
|
@@ -132,7 +132,7 @@ var StorageError = /** @class */ (function (_super) {
|
|
|
132
132
|
}(util.FirebaseError));
|
|
133
133
|
/**
|
|
134
134
|
* @public
|
|
135
|
-
* Error codes that can be attached to `StorageError`
|
|
135
|
+
* Error codes that can be attached to `StorageError` objects.
|
|
136
136
|
*/
|
|
137
137
|
exports.StorageErrorCode = void 0;
|
|
138
138
|
(function (StorageErrorCode) {
|
|
@@ -3534,7 +3534,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
|
|
|
3534
3534
|
}());
|
|
3535
3535
|
|
|
3536
3536
|
var name = "@firebase/storage";
|
|
3537
|
-
var version = "0.11.
|
|
3537
|
+
var version = "0.11.2-20230301191949";
|
|
3538
3538
|
|
|
3539
3539
|
/**
|
|
3540
3540
|
* @license
|