@onlineapps/mq-client-core 1.0.35 → 1.0.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/mq-client-core",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Core MQ client library for RabbitMQ - shared by infrastructure services and connectors",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -564,6 +564,16 @@ class RabbitMQClient extends EventEmitter {
564
564
  }
565
565
  }
566
566
 
567
+ /**
568
+ * Perform health check - verify channels, queues, and consumers
569
+ * Can be called manually (e.g., before workflow steps in debug mode)
570
+ * @public (exposed for manual calls)
571
+ * @returns {Promise<Object>} Health check results
572
+ */
573
+ async performHealthCheck() {
574
+ return this._performHealthCheck();
575
+ }
576
+
567
577
  /**
568
578
  * Perform health check - verify channels, queues, and consumers
569
579
  * @private