@aws-amplify/api 4.0.14-unstable.1 → 4.0.16-unstable.1

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,22 @@
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.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@4.0.14...@aws-amplify/api@4.0.15) (2021-09-09)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/api
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.0.14](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@4.0.13...@aws-amplify/api@4.0.14) (2021-09-07)
15
+
16
+ **Note:** Version bump only for package @aws-amplify/api
17
+
18
+
19
+
20
+
21
+
6
22
  ## [4.0.13](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@4.0.12...@aws-amplify/api@4.0.13) (2021-09-04)
7
23
 
8
24
  **Note:** Version bump only for package @aws-amplify/api
@@ -15126,6 +15126,17 @@ var PubSubClass = function () {
15126
15126
  });
15127
15127
  });
15128
15128
  };
15129
+ /**
15130
+ * remove plugin from PubSub category
15131
+ * @param providerName - the name of the plugin
15132
+ */
15133
+
15134
+
15135
+ PubSubClass.prototype.removePluggable = function (providerName) {
15136
+ this._pluggables = this._pluggables.filter(function (pluggable) {
15137
+ return pluggable.getProviderName() !== providerName;
15138
+ });
15139
+ };
15129
15140
 
15130
15141
  PubSubClass.prototype.getProviderByName = function (providerName) {
15131
15142
  if (providerName === _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER"]) {