pmcf 1.56.3 → 1.56.4

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": "pmcf",
3
- "version": "1.56.3",
3
+ "version": "1.56.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/base.mjs CHANGED
@@ -289,7 +289,7 @@ export class Base {
289
289
  }
290
290
 
291
291
  get outputs() {
292
- return new Set();
292
+ return this.owner ? this.owner.outputs : new Set();
293
293
  }
294
294
 
295
295
  async preparePackage(stagingDir) {
package/src/dns.mjs CHANGED
@@ -103,6 +103,10 @@ export class DNSService extends Base {
103
103
  };
104
104
  }
105
105
 
106
+ get packageName() {
107
+ return `named-${this.owner.name}`;
108
+ }
109
+
106
110
  async preparePackage(stagingDir) {
107
111
  const result = await super.preparePackage(stagingDir);
108
112
 
package/types/base.d.mts CHANGED
@@ -60,9 +60,9 @@ export class Base {
60
60
  get directory(): any;
61
61
  get fullName(): any;
62
62
  get packageName(): string;
63
- get outputs(): Set<any>;
63
+ get outputs(): any;
64
64
  preparePackage(stagingDir: any): Promise<{
65
- outputs: Set<any>;
65
+ outputs: any;
66
66
  properties: {
67
67
  name: string;
68
68
  description: string;
package/types/owner.d.mts CHANGED
@@ -195,6 +195,7 @@ export class Owner extends Base {
195
195
  clusters(): any;
196
196
  addBridge(network: any, destinationNetworks: any): any;
197
197
  _resolveBridges(): void;
198
+ get outputs(): Set<any>;
198
199
  networkAddresses(): Generator<any, void, any>;
199
200
  set country(value: any);
200
201
  get country(): any;