pmcf 1.76.0 → 1.76.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.76.0",
3
+ "version": "1.76.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cluster.mjs CHANGED
@@ -13,7 +13,8 @@ const ClusterTypeDefinition = {
13
13
  properties: {
14
14
  routerId: { type: "number", collection: false, writeable: true },
15
15
  masters: { type: "network_interface", collection: true, writeable: true },
16
- backups: { type: "network_interface", collection: true, writeable: true }
16
+ backups: { type: "network_interface", collection: true, writeable: true },
17
+ members: { type: "network_interface", collection: true, writeable: false }
17
18
  }
18
19
  };
19
20
 
@@ -394,6 +394,11 @@ export class Cluster extends Host {
394
394
  collection: boolean;
395
395
  writeable: boolean;
396
396
  };
397
+ members: {
398
+ type: string;
399
+ collection: boolean;
400
+ writeable: boolean;
401
+ };
397
402
  };
398
403
  };
399
404
  routerId: number;