pmcf 1.94.0 → 1.94.1

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.94.0",
3
+ "version": "1.94.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -187,7 +187,7 @@ export class Host extends Base {
187
187
  }
188
188
 
189
189
  get aliases() {
190
- return this.#aliases;
190
+ return this.extends.reduce((a, c) => a.union(c.aliases), this.#aliases);
191
191
  }
192
192
 
193
193
  set extends(value) {
package/types/host.d.mts CHANGED
@@ -185,8 +185,8 @@ export class Host extends Base {
185
185
  get isTemplate(): true | RegExpMatchArray;
186
186
  get isModel(): boolean;
187
187
  get model(): any;
188
- set aliases(value: Set<any>);
189
- get aliases(): Set<any>;
188
+ set aliases(value: any);
189
+ get aliases(): any;
190
190
  set extends(value: any[]);
191
191
  get extends(): any[];
192
192
  set master(value: boolean);