@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.
@@ -68,7 +68,7 @@ const DEFAULT_MIN_SLEEP_TIME_MILLIS = 1000;
68
68
  */
69
69
  class StorageError extends FirebaseError {
70
70
  /**
71
- * @param code - A StorageErrorCode string to be prefixed with 'storage/' and
71
+ * @param code - A `StorageErrorCode` string to be prefixed with 'storage/' and
72
72
  * added to the end of the message.
73
73
  * @param message - Error message.
74
74
  * @param status_ - Corresponding HTTP Status Code
@@ -77,7 +77,7 @@ class StorageError extends FirebaseError {
77
77
  super(prependCode(code), `Firebase Storage: ${message} (${prependCode(code)})`);
78
78
  this.status_ = status_;
79
79
  /**
80
- * Stores custom error data unque to StorageError.
80
+ * Stores custom error data unique to the `StorageError`.
81
81
  */
82
82
  this.customData = { serverResponse: null };
83
83
  this._baseMessage = this.message;
@@ -92,7 +92,7 @@ class StorageError extends FirebaseError {
92
92
  this.status_ = status;
93
93
  }
94
94
  /**
95
- * Compares a StorageErrorCode against this error's code, filtering out the prefix.
95
+ * Compares a `StorageErrorCode` against this error's code, filtering out the prefix.
96
96
  */
97
97
  _codeEquals(code) {
98
98
  return prependCode(code) === this.code;
@@ -115,7 +115,7 @@ class StorageError extends FirebaseError {
115
115
  }
116
116
  /**
117
117
  * @public
118
- * Error codes that can be attached to `StorageError`s.
118
+ * Error codes that can be attached to `StorageError` objects.
119
119
  */
120
120
  var StorageErrorCode;
121
121
  (function (StorageErrorCode) {
@@ -3348,7 +3348,7 @@ class FirebaseStorageImpl {
3348
3348
  }
3349
3349
 
3350
3350
  const name = "@firebase/storage";
3351
- const version = "0.11.1";
3351
+ const version = "0.11.2-20230301191949";
3352
3352
 
3353
3353
  /**
3354
3354
  * @license