@firebase/storage 0.12.6 → 0.13.0
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/dist/index.browser.cjs.js +4 -20
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.cjs.js +4 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm2017.js +4 -20
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +4 -20
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +15 -33
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +15 -33
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/api.browser.d.ts +1 -2
- package/dist/node-esm/src/api.d.ts +1 -1
- package/dist/node-esm/src/api.node.d.ts +1 -2
- package/dist/node-esm/src/implementation/connection.d.ts +2 -3
- package/dist/node-esm/src/platform/browser/connection.d.ts +1 -2
- package/dist/node-esm/src/platform/connection.d.ts +1 -2
- package/dist/node-esm/src/platform/node/connection.d.ts +5 -5
- package/dist/node-esm/src/public-types.d.ts +1 -1
- package/dist/node-esm/src/reference.d.ts +2 -3
- package/dist/src/api.browser.d.ts +1 -2
- package/dist/src/api.d.ts +1 -1
- package/dist/src/api.node.d.ts +1 -2
- package/dist/src/implementation/connection.d.ts +2 -3
- package/dist/src/platform/browser/connection.d.ts +1 -2
- package/dist/src/platform/connection.d.ts +1 -2
- package/dist/src/platform/node/connection.d.ts +5 -5
- package/dist/src/public-types.d.ts +1 -1
- package/dist/src/reference.d.ts +2 -3
- package/dist/storage-public.d.ts +3 -4
- package/dist/storage.d.ts +5 -7
- package/package.json +3 -3
package/dist/index.esm2017.js
CHANGED
|
@@ -586,23 +586,7 @@ function makeQueryString(params) {
|
|
|
586
586
|
}
|
|
587
587
|
|
|
588
588
|
/**
|
|
589
|
-
*
|
|
590
|
-
* Copyright 2017 Google LLC
|
|
591
|
-
*
|
|
592
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
593
|
-
* you may not use this file except in compliance with the License.
|
|
594
|
-
* You may obtain a copy of the License at
|
|
595
|
-
*
|
|
596
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
597
|
-
*
|
|
598
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
599
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
600
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
601
|
-
* See the License for the specific language governing permissions and
|
|
602
|
-
* limitations under the License.
|
|
603
|
-
*/
|
|
604
|
-
/**
|
|
605
|
-
* Error codes for requests made by the the XhrIo wrapper.
|
|
589
|
+
* Error codes for requests made by the XhrIo wrapper.
|
|
606
590
|
*/
|
|
607
591
|
var ErrorCode;
|
|
608
592
|
(function (ErrorCode) {
|
|
@@ -3036,7 +3020,7 @@ function list$1(ref, options) {
|
|
|
3036
3020
|
}
|
|
3037
3021
|
/**
|
|
3038
3022
|
* A `Promise` that resolves with the metadata for this object. If this
|
|
3039
|
-
* object doesn't exist or metadata cannot be
|
|
3023
|
+
* object doesn't exist or metadata cannot be retrieved, the promise is
|
|
3040
3024
|
* rejected.
|
|
3041
3025
|
* @public
|
|
3042
3026
|
* @param ref - StorageReference to get metadata from.
|
|
@@ -3346,7 +3330,7 @@ class FirebaseStorageImpl {
|
|
|
3346
3330
|
}
|
|
3347
3331
|
|
|
3348
3332
|
const name = "@firebase/storage";
|
|
3349
|
-
const version = "0.
|
|
3333
|
+
const version = "0.13.0";
|
|
3350
3334
|
|
|
3351
3335
|
/**
|
|
3352
3336
|
* @license
|
|
@@ -3445,7 +3429,7 @@ function uploadBytesResumable(ref, data, metadata) {
|
|
|
3445
3429
|
}
|
|
3446
3430
|
/**
|
|
3447
3431
|
* A `Promise` that resolves with the metadata for this object. If this
|
|
3448
|
-
* object doesn't exist or metadata cannot be
|
|
3432
|
+
* object doesn't exist or metadata cannot be retrieved, the promise is
|
|
3449
3433
|
* rejected.
|
|
3450
3434
|
* @public
|
|
3451
3435
|
* @param ref - {@link StorageReference} to get metadata from.
|