pmcf 4.0.1 → 4.0.2
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 +1 -1
- package/src/base.mjs +3 -2
- package/src/service.mjs +4 -0
- package/types/service.d.mts +1 -0
package/package.json
CHANGED
package/src/base.mjs
CHANGED
|
@@ -210,8 +210,9 @@ export class Base {
|
|
|
210
210
|
this.error(
|
|
211
211
|
"Not found",
|
|
212
212
|
name,
|
|
213
|
-
|
|
214
|
-
value
|
|
213
|
+
value, "of", attribute.type.name,
|
|
214
|
+
this.root.named(value)?.type,
|
|
215
|
+
attribute.type?.map && attribute.type.map(t => t.name)
|
|
215
216
|
);
|
|
216
217
|
});
|
|
217
218
|
}
|
package/src/service.mjs
CHANGED
package/types/service.d.mts
CHANGED
|
@@ -614,6 +614,7 @@ export class Service extends Base {
|
|
|
614
614
|
get domainName(): string;
|
|
615
615
|
get networks(): Set<any>;
|
|
616
616
|
get subnets(): Set<any>;
|
|
617
|
+
get services(): this[];
|
|
617
618
|
get serviceTypeEndpoints(): any;
|
|
618
619
|
endpoints(filter: any): (UnixEndpoint | HTTPEndpoint | Endpoint | DomainNameEndpoint)[];
|
|
619
620
|
endpoint(filter: any): UnixEndpoint | HTTPEndpoint | Endpoint | DomainNameEndpoint;
|