@onlineapps/service-wrapper 3.0.12 → 3.0.14

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/service-wrapper",
3
- "version": "3.0.12",
3
+ "version": "3.0.14",
4
4
  "description": "Thin orchestration layer for microservices - delegates all infrastructure concerns to specialized connectors",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -32,7 +32,7 @@
32
32
  "@onlineapps/conn-orch-cookbook": "2.1.2",
33
33
  "@onlineapps/conn-orch-orchestrator": "2.0.2",
34
34
  "@onlineapps/conn-orch-registry": "1.2.1",
35
- "@onlineapps/conn-orch-validator": "3.0.1",
35
+ "@onlineapps/conn-orch-validator": "3.1.1",
36
36
  "@onlineapps/monitoring-core": "1.0.23",
37
37
  "@onlineapps/runtime-config": "1.0.2",
38
38
  "@onlineapps/service-common": "1.1.2",
@@ -2116,7 +2116,7 @@ class ServiceWrapper {
2116
2116
  `[ServiceWrapper] Registered handlers without declaration: ${orphaned.join(', ')}`
2117
2117
  );
2118
2118
  }
2119
- this.logger?.info({ count: declaredOps.size }, 'operations-handler alignment verified');
2119
+ this.logger?.info('operations-handler alignment verified', { count: declaredOps.size });
2120
2120
  }
2121
2121
 
2122
2122
  /**
@@ -2168,7 +2168,7 @@ class ServiceWrapper {
2168
2168
  try {
2169
2169
  await release();
2170
2170
  } catch (e) {
2171
- this.logger?.error({ err: e, operation }, 'context release failed');
2171
+ this.logger?.error('context release failed', { err: e, operation });
2172
2172
  }
2173
2173
  }
2174
2174
  }