pmcf 1.79.2 → 1.79.3

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.79.2",
3
+ "version": "1.79.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/location.mjs CHANGED
@@ -11,7 +11,6 @@ const LocationTypeDefinition = {
11
11
  priority: 1.0,
12
12
  extends: Owner.typeDefinition,
13
13
  properties: {
14
- country: { type: "string", writeable: true },
15
14
  locales: { type: "string", collection: true, writeable: true }
16
15
  }
17
16
  };
@@ -401,10 +401,6 @@ export class Location extends Owner {
401
401
  };
402
402
  };
403
403
  properties: {
404
- country: {
405
- type: string;
406
- writeable: boolean;
407
- };
408
404
  locales: {
409
405
  type: string;
410
406
  collection: boolean;
package/types/root.d.mts CHANGED
@@ -405,10 +405,6 @@ export class Root extends Location {
405
405
  };
406
406
  };
407
407
  properties: {
408
- country: {
409
- type: string;
410
- writeable: boolean;
411
- };
412
408
  locales: {
413
409
  type: string;
414
410
  collection: boolean;