@firebase/storage-types 0.8.0-20230201003102 → 0.8.0-canary.36558bd2e

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,16 +1,11 @@
1
1
  # @firebase/storage-types
2
2
 
3
- ## 0.8.0-20230201003102
3
+ ## 0.8.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [`825e648b8`](https://github.com/firebase/firebase-js-sdk/commit/825e648b81ca63c7bc64f8700f7a46eb320b2106) [#6974](https://github.com/firebase/firebase-js-sdk/pull/6974) (fixes [#6944](https://github.com/firebase/firebase-js-sdk/issues/6944)) - Fixed issue where users were unable to check if an Error was an instance of `StorageError`.
8
8
 
9
- ### Patch Changes
10
-
11
- - Updated dependencies [[`0bab0b7a7`](https://github.com/firebase/firebase-js-sdk/commit/0bab0b7a786d1563bf665904c7097d1fe06efce5)]:
12
- - @firebase/util@1.9.1-20230201003102
13
-
14
9
  ## 0.7.0
15
10
 
16
11
  ### Minor Changes
package/index.d.ts CHANGED
@@ -127,7 +127,7 @@ export enum StorageErrorCode {
127
127
 
128
128
  export interface FirebaseStorageError extends FirebaseError {
129
129
  /**
130
- * Stores custom error data unque to StorageError.
130
+ * Stores custom error data unique to the `StorageError`.
131
131
  */
132
132
  customData: {
133
133
  serverResponse: string | null;
@@ -136,7 +136,7 @@ export interface FirebaseStorageError extends FirebaseError {
136
136
  get status(): number;
137
137
  set status(status: number);
138
138
  /**
139
- * Compares a StorageErrorCode against this error's code, filtering out the prefix.
139
+ * Compares a `StorageErrorCode` against this error's code, filtering out the prefix.
140
140
  */
141
141
  _codeEquals(code: StorageErrorCode): boolean;
142
142
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firebase/storage-types",
3
- "version": "0.8.0-20230201003102",
3
+ "version": "0.8.0-canary.36558bd2e",
4
4
  "description": "@firebase/storage Types",
5
5
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
6
6
  "license": "Apache-2.0",
@@ -12,8 +12,8 @@
12
12
  "index.d.ts"
13
13
  ],
14
14
  "peerDependencies": {
15
- "@firebase/app-types": "0.x",
16
- "@firebase/util": "1.9.1-20230201003102"
15
+ "@firebase/app-types": "0.9.0-canary.36558bd2e",
16
+ "@firebase/util": "1.9.2-canary.36558bd2e"
17
17
  },
18
18
  "repository": {
19
19
  "directory": "packages/storage-types",