@firebase/storage 0.11.1 → 0.11.2-20230301000120

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  #Unreleased
2
2
 
3
+ ## 0.11.2-20230301000120
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`c59f537b1`](https://github.com/firebase/firebase-js-sdk/commit/c59f537b1262b5d7997291b8c1e9324d378effb6)]:
8
+ - @firebase/util@1.9.3-20230301000120
9
+ - @firebase/app@0.9.4-20230301000120
10
+ - @firebase/component@0.6.4-20230301000120
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 unque to StorageError.
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`s.
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.1";
3537
+ var version = "0.11.2-20230301000120";
3538
3538
 
3539
3539
  /**
3540
3540
  * @license