pmcf 3.19.3 → 3.19.4

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": "3.19.3",
3
+ "version": "3.19.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -17,7 +17,8 @@ const SystemdJournalRemoteServiceTypeDefinition = {
17
17
  ...boolean_attribute_writable
18
18
  },
19
19
  SplitMode: {
20
- ...string_attribute_writable
20
+ ...string_attribute_writable,
21
+ values: [false, "host"]
21
22
  },
22
23
  ServerKeyFile: {
23
24
  ...string_attribute_writable
@@ -738,6 +738,7 @@ export class SystemdJournalRemoteService extends Service {
738
738
  additionalValues?: object;
739
739
  };
740
740
  SplitMode: {
741
+ values: (string | boolean)[];
741
742
  type: object;
742
743
  isKey: boolean;
743
744
  writable: boolean;
@@ -752,7 +753,6 @@ export class SystemdJournalRemoteService extends Service {
752
753
  set?: Function;
753
754
  get?: Function;
754
755
  prepareValue?: Function;
755
- values?: Set<any>;
756
756
  externalName?: string;
757
757
  env?: string[] | string;
758
758
  additionalValues?: object;