pmcf 3.19.2 → 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/README.md CHANGED
@@ -55,23 +55,31 @@ generates config packages for:
55
55
  * [SkeletonNetworkInterface](#skeletonnetworkinterface)
56
56
  * [networkAddresses](#networkaddresses)
57
57
  * [Parameters](#parameters-4)
58
+ * [SystemdJournalRemoteService](#systemdjournalremoteservice)
59
+ * [Properties](#properties)
60
+ * [systemdConfigs](#systemdconfigs)
61
+ * [Parameters](#parameters-5)
62
+ * [SystemdJournalUploadService](#systemdjournaluploadservice)
63
+ * [Properties](#properties-1)
64
+ * [systemdConfigs](#systemdconfigs-1)
65
+ * [Parameters](#parameters-6)
58
66
  * [NetworkAddress](#networkaddress)
59
- * [Parameters](#parameters-5)
67
+ * [Parameters](#parameters-7)
60
68
  * [subnet](#subnet)
61
69
  * [networkInterface](#networkinterface)
62
70
  * [address](#address)
63
71
  * [addresses](#addresses)
64
- * [Parameters](#parameters-6)
72
+ * [Parameters](#parameters-8)
65
73
  * [cidrAddresses](#cidraddresses)
66
- * [Parameters](#parameters-7)
74
+ * [Parameters](#parameters-9)
67
75
  * [serviceEndpoints](#serviceendpoints)
68
- * [Parameters](#parameters-8)
76
+ * [Parameters](#parameters-10)
69
77
  * [sectionLines](#sectionlines)
70
- * [Parameters](#parameters-9)
78
+ * [Parameters](#parameters-11)
71
79
  * [asArray](#asarray)
72
- * [Parameters](#parameters-10)
80
+ * [Parameters](#parameters-12)
73
81
  * [asIterator](#asiterator)
74
- * [Parameters](#parameters-11)
82
+ * [Parameters](#parameters-13)
75
83
 
76
84
  ## Base
77
85
 
@@ -139,6 +147,41 @@ Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
139
147
 
140
148
  Returns **Iterable<[NetworkAddress](#networkaddress)>**&#x20;
141
149
 
150
+ ## SystemdJournalRemoteService
151
+
152
+ **Extends Service**
153
+
154
+ ### Properties
155
+
156
+ * `ServerCertificateFile` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
157
+ * `ServerKeyFile` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
158
+
159
+ ### systemdConfigs
160
+
161
+ #### Parameters
162
+
163
+ * `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
164
+
165
+ Returns **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)**&#x20;
166
+
167
+ ## SystemdJournalUploadService
168
+
169
+ **Extends Service**
170
+
171
+ ### Properties
172
+
173
+ * `URL` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
174
+ * `ServerCertificateFile` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
175
+ * `ServerKeyFile` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
176
+
177
+ ### systemdConfigs
178
+
179
+ #### Parameters
180
+
181
+ * `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**&#x20;
182
+
183
+ Returns **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)**&#x20;
184
+
142
185
  ## NetworkAddress
143
186
 
144
187
  ### Parameters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.19.2",
3
+ "version": "3.19.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -55,7 +55,7 @@
55
55
  "dependencies": {
56
56
  "ip-utilties": "^2.0.2",
57
57
  "npm-pkgbuild": "^19.1.2",
58
- "pacc": "^6.7.0",
58
+ "pacc": "^6.8.0",
59
59
  "package-directory": "^8.1.0"
60
60
  },
61
61
  "devDependencies": {
@@ -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;