@aws-amplify/predictions 4.0.23-unstable.5 → 4.0.23
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
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.23](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@4.0.22...@aws-amplify/predictions@4.0.23) (2021-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Reverts
|
|
10
|
+
|
|
11
|
+
* uuid dependency upgrade ([#9159](https://github.com/aws-amplify/amplify-js/issues/9159)) ([4ef8aa9](https://github.com/aws-amplify/amplify-js/commit/4ef8aa9c7c25dbe921fd02b6205b8defb93fbaec))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [4.0.22](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@4.0.21...@aws-amplify/predictions@4.0.22) (2021-10-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-amplify/predictions
|
|
@@ -94499,9 +94499,7 @@ function () {
|
|
|
94499
94499
|
};
|
|
94500
94500
|
|
|
94501
94501
|
Storage.prototype.copy = function (src, dest, config) {
|
|
94502
|
-
var
|
|
94503
|
-
|
|
94504
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
94502
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
94505
94503
|
|
|
94506
94504
|
var prov = this._pluggables.find(function (pluggable) {
|
|
94507
94505
|
return pluggable.getProviderName() === provider;
|
|
@@ -94526,9 +94524,7 @@ function () {
|
|
|
94526
94524
|
};
|
|
94527
94525
|
|
|
94528
94526
|
Storage.prototype.get = function (key, config) {
|
|
94529
|
-
var
|
|
94530
|
-
|
|
94531
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
94527
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
94532
94528
|
|
|
94533
94529
|
var prov = this._pluggables.find(function (pluggable) {
|
|
94534
94530
|
return pluggable.getProviderName() === provider;
|
|
@@ -94552,9 +94548,7 @@ function () {
|
|
|
94552
94548
|
};
|
|
94553
94549
|
|
|
94554
94550
|
Storage.prototype.put = function (key, object, config) {
|
|
94555
|
-
var
|
|
94556
|
-
|
|
94557
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
94551
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
94558
94552
|
|
|
94559
94553
|
var prov = this._pluggables.find(function (pluggable) {
|
|
94560
94554
|
return pluggable.getProviderName() === provider;
|
|
@@ -94578,9 +94572,7 @@ function () {
|
|
|
94578
94572
|
};
|
|
94579
94573
|
|
|
94580
94574
|
Storage.prototype.remove = function (key, config) {
|
|
94581
|
-
var
|
|
94582
|
-
|
|
94583
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
94575
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
94584
94576
|
|
|
94585
94577
|
var prov = this._pluggables.find(function (pluggable) {
|
|
94586
94578
|
return pluggable.getProviderName() === provider;
|
|
@@ -94595,9 +94587,7 @@ function () {
|
|
|
94595
94587
|
};
|
|
94596
94588
|
|
|
94597
94589
|
Storage.prototype.list = function (path, config) {
|
|
94598
|
-
var
|
|
94599
|
-
|
|
94600
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
94590
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
94601
94591
|
|
|
94602
94592
|
var prov = this._pluggables.find(function (pluggable) {
|
|
94603
94593
|
return pluggable.getProviderName() === provider;
|