@onlineapps/mq-client-core 1.0.82 → 1.0.83

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.82",
3
+ "version": "1.0.83",
4
4
  "description": "Core MQ client library for RabbitMQ - shared by infrastructure services and connectors",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -280,6 +280,19 @@ module.exports = {
280
280
  }
281
281
  },
282
282
 
283
+ /**
284
+ * monitoring.audit - Audit log for Doorman-exposed services (JWT-authenticated requests outside workflow)
285
+ * Meta-reader (and future Doorman-exposed services) publish audit entries via MQ.
286
+ * Monitoring consumer stores them in PostgreSQL audit_log table.
287
+ */
288
+ 'audit': {
289
+ durable: true,
290
+ arguments: {
291
+ 'x-message-ttl': 300000,
292
+ 'x-max-length': 50000
293
+ }
294
+ },
295
+
283
296
  /**
284
297
  * monitoring.workflow.fanout - Fanout exchange for workflow events
285
298
  * Publishers send to this exchange; monitoring.workflow + delivery.workflow.events both receive copies.