pmcf 2.11.5 → 2.12.0

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": "2.11.5",
3
+ "version": "2.12.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -14,7 +14,14 @@ const NTPServiceTypeDefinition = {
14
14
  owners: ServiceTypeDefinition.owners,
15
15
  extends: ExtraSourceServiceTypeDefinition,
16
16
  priority: 0.1,
17
- properties: {}
17
+ properties: {
18
+ isPool: {
19
+ type: "boolean",
20
+ collection: false,
21
+ writeable: true,
22
+ default: false
23
+ }
24
+ }
18
25
  };
19
26
 
20
27
  const NTP_SERVICE_FILTER = { type: NTPServiceTypeDefinition.name };
@@ -263,7 +263,14 @@ export class NTPService extends ExtraSourceService {
263
263
  };
264
264
  };
265
265
  priority: number;
266
- properties: {};
266
+ properties: {
267
+ isPool: {
268
+ type: string;
269
+ collection: boolean;
270
+ writeable: boolean;
271
+ default: boolean;
272
+ };
273
+ };
267
274
  };
268
275
  get systemdConfig(): (string | {
269
276
  NTP: string;