pmcf 1.53.0 → 1.53.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.53.0",
3
+ "version": "1.53.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/base.mjs CHANGED
@@ -292,7 +292,8 @@ export class Base {
292
292
  return {
293
293
  properties: {
294
294
  name: this.packageName,
295
- description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}`
295
+ description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}`,
296
+ access: "private"
296
297
  }
297
298
  };
298
299
  }
package/types/base.d.mts CHANGED
@@ -64,6 +64,7 @@ export class Base {
64
64
  properties: {
65
65
  name: string;
66
66
  description: string;
67
+ access: string;
67
68
  };
68
69
  }>;
69
70
  expand(object: any): any;