pmcf 6.3.4 → 6.3.6
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
package/src/base.mjs
CHANGED
|
@@ -12,7 +12,7 @@ export class SkeletonNetworkInterface extends ServiceOwner {
|
|
|
12
12
|
static get typeName() {
|
|
13
13
|
return "network_interface";
|
|
14
14
|
}
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
static commonNamePattern = new RegExp(`^${this.name}\d+$`);
|
|
17
17
|
|
|
18
18
|
static isCommonName(name) {
|
|
@@ -25,6 +25,11 @@ export class SkeletonNetworkInterface extends ServiceOwner {
|
|
|
25
25
|
|
|
26
26
|
_network;
|
|
27
27
|
|
|
28
|
+
get typeName() {
|
|
29
|
+
const type = this.constructor;
|
|
30
|
+
return type.specializationOf?.name || type.name;
|
|
31
|
+
}
|
|
32
|
+
|
|
28
33
|
get kind() {
|
|
29
34
|
return this.constructor.name;
|
|
30
35
|
}
|
package/src/services/bind.mjs
CHANGED
|
@@ -529,9 +529,9 @@ export class bind extends ExtraSourceService {
|
|
|
529
529
|
|
|
530
530
|
let hasContent = false;
|
|
531
531
|
|
|
532
|
-
console.log("
|
|
532
|
+
console.log("BIND GROUPS", [...this.groups.keys()]);
|
|
533
533
|
|
|
534
|
-
for (const group of
|
|
534
|
+
for (const group of this.groups.values()) {
|
|
535
535
|
hasContent ||= await group.packageContent(outputControl);
|
|
536
536
|
}
|
|
537
537
|
|