@firebase/storage 0.12.6 → 0.13.0-canary.f7c6dc4fe
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 +6 -6
|
@@ -622,23 +622,7 @@ function makeQueryString(params) {
|
|
|
622
622
|
}
|
|
623
623
|
|
|
624
624
|
/**
|
|
625
|
-
*
|
|
626
|
-
* Copyright 2017 Google LLC
|
|
627
|
-
*
|
|
628
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
629
|
-
* you may not use this file except in compliance with the License.
|
|
630
|
-
* You may obtain a copy of the License at
|
|
631
|
-
*
|
|
632
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
633
|
-
*
|
|
634
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
635
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
636
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
637
|
-
* See the License for the specific language governing permissions and
|
|
638
|
-
* limitations under the License.
|
|
639
|
-
*/
|
|
640
|
-
/**
|
|
641
|
-
* Error codes for requests made by the the XhrIo wrapper.
|
|
625
|
+
* Error codes for requests made by the XhrIo wrapper.
|
|
642
626
|
*/
|
|
643
627
|
var ErrorCode;
|
|
644
628
|
(function (ErrorCode) {
|
|
@@ -3178,7 +3162,7 @@ function list$1(ref, options) {
|
|
|
3178
3162
|
}
|
|
3179
3163
|
/**
|
|
3180
3164
|
* A `Promise` that resolves with the metadata for this object. If this
|
|
3181
|
-
* object doesn't exist or metadata cannot be
|
|
3165
|
+
* object doesn't exist or metadata cannot be retrieved, the promise is
|
|
3182
3166
|
* rejected.
|
|
3183
3167
|
* @public
|
|
3184
3168
|
* @param ref - StorageReference to get metadata from.
|
|
@@ -3532,7 +3516,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
|
|
|
3532
3516
|
}());
|
|
3533
3517
|
|
|
3534
3518
|
var name = "@firebase/storage";
|
|
3535
|
-
var version = "0.
|
|
3519
|
+
var version = "0.13.0-canary.f7c6dc4fe";
|
|
3536
3520
|
|
|
3537
3521
|
/**
|
|
3538
3522
|
* @license
|
|
@@ -3615,7 +3599,7 @@ function uploadBytesResumable(ref, data, metadata) {
|
|
|
3615
3599
|
}
|
|
3616
3600
|
/**
|
|
3617
3601
|
* A `Promise` that resolves with the metadata for this object. If this
|
|
3618
|
-
* object doesn't exist or metadata cannot be
|
|
3602
|
+
* object doesn't exist or metadata cannot be retrieved, the promise is
|
|
3619
3603
|
* rejected.
|
|
3620
3604
|
* @public
|
|
3621
3605
|
* @param ref - {@link StorageReference} to get metadata from.
|