@adhdev/daemon-core 0.5.23 → 0.5.24
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/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/commands/handler.ts +5 -0
package/dist/index.js
CHANGED
|
@@ -4539,6 +4539,10 @@ var DaemonCommandHandler = class {
|
|
|
4539
4539
|
/** Extract ideType from _targetInstance or explicit ideType */
|
|
4540
4540
|
extractIdeType(args) {
|
|
4541
4541
|
if (args?.ideType) {
|
|
4542
|
+
const mappedKey = this._ctx.instanceIdMap?.get(args.ideType);
|
|
4543
|
+
if (mappedKey) {
|
|
4544
|
+
return mappedKey;
|
|
4545
|
+
}
|
|
4542
4546
|
if (this._ctx.cdpManagers.has(args.ideType)) {
|
|
4543
4547
|
return args.ideType;
|
|
4544
4548
|
}
|