@aws-amplify/pubsub 4.1.6 → 4.1.8

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.1.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@4.1.7...@aws-amplify/pubsub@4.1.8) (2021-09-17)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/pubsub
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@4.1.6...@aws-amplify/pubsub@4.1.7) (2021-09-09)
15
+
16
+ **Note:** Version bump only for package @aws-amplify/pubsub
17
+
18
+
19
+
20
+
21
+
6
22
  ## [4.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@4.1.5...@aws-amplify/pubsub@4.1.6) (2021-09-07)
7
23
 
8
24
  **Note:** Version bump only for package @aws-amplify/pubsub
@@ -10355,6 +10355,17 @@ var PubSubClass = function () {
10355
10355
  });
10356
10356
  });
10357
10357
  };
10358
+ /**
10359
+ * remove plugin from PubSub category
10360
+ * @param providerName - the name of the plugin
10361
+ */
10362
+
10363
+
10364
+ PubSubClass.prototype.removePluggable = function (providerName) {
10365
+ this._pluggables = this._pluggables.filter(function (pluggable) {
10366
+ return pluggable.getProviderName() !== providerName;
10367
+ });
10368
+ };
10358
10369
 
10359
10370
  PubSubClass.prototype.getProviderByName = function (providerName) {
10360
10371
  if (providerName === _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["INTERNAL_AWS_APPSYNC_PUBSUB_PROVIDER"]) {