@adhdev/daemon-core 0.6.15 → 0.6.17

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": "@adhdev/daemon-core",
3
- "version": "0.6.15",
3
+ "version": "0.6.17",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -79,7 +79,12 @@ export class ProviderInstanceManager {
79
79
  // pending events propagation
80
80
  for (const event of state.pendingEvents) {
81
81
  for (const listener of this.eventListeners) {
82
- listener({ ...event, providerType: instance.type });
82
+ listener({
83
+ ...event,
84
+ providerType: instance.type,
85
+ instanceId: state.instanceId,
86
+ providerCategory: state.category,
87
+ });
83
88
  }
84
89
  }
85
90
  } catch (e) {