pmcf 3.10.15 → 3.10.17

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.
Files changed (41) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +1 -1
  3. package/src/cluster.mjs +2 -3
  4. package/src/host.mjs +10 -10
  5. package/src/location.mjs +2 -2
  6. package/src/network-support.mjs +6 -6
  7. package/src/owner.mjs +6 -6
  8. package/src/service.mjs +3 -3
  9. package/src/services/bind.mjs +5 -7
  10. package/src/services/openldap.mjs +4 -13
  11. package/src/services/systemd-journal-upload.mjs +1 -1
  12. package/src/subnet.mjs +4 -7
  13. package/types/base.d.mts +1 -14
  14. package/types/cluster.d.mts +27 -378
  15. package/types/extra-source-service.d.mts +8 -112
  16. package/types/host.d.mts +15 -210
  17. package/types/location.d.mts +21 -294
  18. package/types/network-interfaces/ethernet.d.mts +14 -196
  19. package/types/network-interfaces/loopback.d.mts +14 -196
  20. package/types/network-interfaces/network-interface.d.mts +14 -196
  21. package/types/network-interfaces/tun.d.mts +14 -196
  22. package/types/network-interfaces/wireguard.d.mts +14 -196
  23. package/types/network-interfaces/wlan.d.mts +21 -294
  24. package/types/network-support.d.mts +8 -85
  25. package/types/network.d.mts +12 -168
  26. package/types/owner.d.mts +10 -140
  27. package/types/root.d.mts +21 -294
  28. package/types/service.d.mts +20 -252
  29. package/types/services/bind.d.mts +20 -280
  30. package/types/services/chrony.d.mts +16 -224
  31. package/types/services/headscale.d.mts +16 -224
  32. package/types/services/influxdb.d.mts +16 -224
  33. package/types/services/kea.d.mts +16 -224
  34. package/types/services/mosquitto.d.mts +16 -224
  35. package/types/services/openldap.d.mts +19 -266
  36. package/types/services/systemd-journal-remote.d.mts +16 -224
  37. package/types/services/systemd-journal-upload.d.mts +17 -238
  38. package/types/services/systemd-journal.d.mts +16 -224
  39. package/types/services/systemd-resolved.d.mts +16 -224
  40. package/types/services/systemd-timesyncd.d.mts +16 -224
  41. package/types/subnet.d.mts +3 -42
@@ -31,20 +31,7 @@ export class SystemdJournalUploadService extends Service {
31
31
  env?: string[] | string;
32
32
  };
33
33
  priority: import("pacc").AttributeDefinition;
34
- directory: {
35
- writable: boolean;
36
- type: string;
37
- isKey: boolean;
38
- mandatory: boolean;
39
- collection: boolean;
40
- private?: boolean;
41
- depends?: string;
42
- description?: string;
43
- default?: any;
44
- set?: Function;
45
- get?: Function;
46
- env?: string[] | string;
47
- };
34
+ directory: import("pacc").AttributeDefinition;
48
35
  packaging: import("pacc").AttributeDefinition;
49
36
  disabled: import("pacc").AttributeDefinition;
50
37
  tags: import("pacc").AttributeDefinition;
@@ -53,20 +40,7 @@ export class SystemdJournalUploadService extends Service {
53
40
  specializations: {};
54
41
  factoryFor(owner: any, value: any): any;
55
42
  attributes: {
56
- alias: {
57
- type: string;
58
- isKey: boolean;
59
- writable: boolean;
60
- mandatory: boolean;
61
- collection: boolean;
62
- private?: boolean;
63
- depends?: string;
64
- description?: string;
65
- default?: any;
66
- set?: Function;
67
- get?: Function;
68
- env?: string[] | string;
69
- };
43
+ alias: import("pacc").AttributeDefinition;
70
44
  weight: {
71
45
  type: string;
72
46
  isKey: boolean;
@@ -82,20 +56,7 @@ export class SystemdJournalUploadService extends Service {
82
56
  env?: string[] | string;
83
57
  };
84
58
  systemd: import("pacc").AttributeDefinition;
85
- port: {
86
- type: string;
87
- isKey: boolean;
88
- writable: boolean;
89
- mandatory: boolean;
90
- collection: boolean;
91
- private?: boolean;
92
- depends?: string;
93
- description?: string;
94
- default?: any;
95
- set?: Function;
96
- get?: Function;
97
- env?: string[] | string;
98
- };
59
+ port: import("pacc").AttributeDefinition;
99
60
  protocol: {
100
61
  values: string[];
101
62
  type: string;
@@ -111,20 +72,7 @@ export class SystemdJournalUploadService extends Service {
111
72
  get?: Function;
112
73
  env?: string[] | string;
113
74
  };
114
- type: {
115
- type: string;
116
- isKey: boolean;
117
- writable: boolean;
118
- mandatory: boolean;
119
- collection: boolean;
120
- private?: boolean;
121
- depends?: string;
122
- description?: string;
123
- default?: any;
124
- set?: Function;
125
- get?: Function;
126
- env?: string[] | string;
127
- };
75
+ type: import("pacc").AttributeDefinition;
128
76
  types: typeof import("pacc").string_collection_attribute;
129
77
  tls: import("pacc").AttributeDefinition;
130
78
  hostName: {
@@ -141,62 +89,10 @@ export class SystemdJournalUploadService extends Service {
141
89
  get?: Function;
142
90
  env?: string[] | string;
143
91
  };
144
- cidrAddresses: {
145
- type: string;
146
- isKey: boolean;
147
- writable: boolean;
148
- mandatory: boolean;
149
- collection: boolean;
150
- private?: boolean;
151
- depends?: string;
152
- description?: string;
153
- default?: any;
154
- set?: Function;
155
- get?: Function;
156
- env?: string[] | string;
157
- };
158
- cidrAddress: {
159
- type: string;
160
- isKey: boolean;
161
- writable: boolean;
162
- mandatory: boolean;
163
- collection: boolean;
164
- private?: boolean;
165
- depends?: string;
166
- description?: string;
167
- default?: any;
168
- set?: Function;
169
- get?: Function;
170
- env?: string[] | string;
171
- };
172
- addresses: {
173
- type: string;
174
- isKey: boolean;
175
- writable: boolean;
176
- mandatory: boolean;
177
- collection: boolean;
178
- private?: boolean;
179
- depends?: string;
180
- description?: string;
181
- default?: any;
182
- set?: Function;
183
- get?: Function;
184
- env?: string[] | string;
185
- };
186
- address: {
187
- type: string;
188
- isKey: boolean;
189
- writable: boolean;
190
- mandatory: boolean;
191
- collection: boolean;
192
- private?: boolean;
193
- depends?: string;
194
- description?: string;
195
- default?: any;
196
- set?: Function;
197
- get?: Function;
198
- env?: string[] | string;
199
- };
92
+ cidrAddresses: import("pacc").AttributeDefinition;
93
+ cidrAddress: import("pacc").AttributeDefinition;
94
+ addresses: import("pacc").AttributeDefinition;
95
+ address: import("pacc").AttributeDefinition;
200
96
  };
201
97
  };
202
98
  owners: string[];
@@ -230,20 +126,7 @@ export class SystemdJournalUploadService extends Service {
230
126
  env?: string[] | string;
231
127
  };
232
128
  priority: import("pacc").AttributeDefinition;
233
- directory: {
234
- writable: boolean;
235
- type: string;
236
- isKey: boolean;
237
- mandatory: boolean;
238
- collection: boolean;
239
- private?: boolean;
240
- depends?: string;
241
- description?: string;
242
- default?: any;
243
- set?: Function;
244
- get?: Function;
245
- env?: string[] | string;
246
- };
129
+ directory: import("pacc").AttributeDefinition;
247
130
  packaging: import("pacc").AttributeDefinition;
248
131
  disabled: import("pacc").AttributeDefinition;
249
132
  tags: import("pacc").AttributeDefinition;
@@ -252,20 +135,7 @@ export class SystemdJournalUploadService extends Service {
252
135
  specializations: {};
253
136
  factoryFor(owner: any, value: any): any;
254
137
  attributes: {
255
- alias: {
256
- type: string;
257
- isKey: boolean;
258
- writable: boolean;
259
- mandatory: boolean;
260
- collection: boolean;
261
- private?: boolean;
262
- depends?: string;
263
- description?: string;
264
- default?: any;
265
- set?: Function;
266
- get?: Function;
267
- env?: string[] | string;
268
- };
138
+ alias: import("pacc").AttributeDefinition;
269
139
  weight: {
270
140
  type: string;
271
141
  isKey: boolean;
@@ -281,20 +151,7 @@ export class SystemdJournalUploadService extends Service {
281
151
  env?: string[] | string;
282
152
  };
283
153
  systemd: import("pacc").AttributeDefinition;
284
- port: {
285
- type: string;
286
- isKey: boolean;
287
- writable: boolean;
288
- mandatory: boolean;
289
- collection: boolean;
290
- private?: boolean;
291
- depends?: string;
292
- description?: string;
293
- default?: any;
294
- set?: Function;
295
- get?: Function;
296
- env?: string[] | string;
297
- };
154
+ port: import("pacc").AttributeDefinition;
298
155
  protocol: {
299
156
  values: string[];
300
157
  type: string;
@@ -310,20 +167,7 @@ export class SystemdJournalUploadService extends Service {
310
167
  get?: Function;
311
168
  env?: string[] | string;
312
169
  };
313
- type: {
314
- type: string;
315
- isKey: boolean;
316
- writable: boolean;
317
- mandatory: boolean;
318
- collection: boolean;
319
- private?: boolean;
320
- depends?: string;
321
- description?: string;
322
- default?: any;
323
- set?: Function;
324
- get?: Function;
325
- env?: string[] | string;
326
- };
170
+ type: import("pacc").AttributeDefinition;
327
171
  types: typeof import("pacc").string_collection_attribute;
328
172
  tls: import("pacc").AttributeDefinition;
329
173
  hostName: {
@@ -340,80 +184,15 @@ export class SystemdJournalUploadService extends Service {
340
184
  get?: Function;
341
185
  env?: string[] | string;
342
186
  };
343
- cidrAddresses: {
344
- type: string;
345
- isKey: boolean;
346
- writable: boolean;
347
- mandatory: boolean;
348
- collection: boolean;
349
- private?: boolean;
350
- depends?: string;
351
- description?: string;
352
- default?: any;
353
- set?: Function;
354
- get?: Function;
355
- env?: string[] | string;
356
- };
357
- cidrAddress: {
358
- type: string;
359
- isKey: boolean;
360
- writable: boolean;
361
- mandatory: boolean;
362
- collection: boolean;
363
- private?: boolean;
364
- depends?: string;
365
- description?: string;
366
- default?: any;
367
- set?: Function;
368
- get?: Function;
369
- env?: string[] | string;
370
- };
371
- addresses: {
372
- type: string;
373
- isKey: boolean;
374
- writable: boolean;
375
- mandatory: boolean;
376
- collection: boolean;
377
- private?: boolean;
378
- depends?: string;
379
- description?: string;
380
- default?: any;
381
- set?: Function;
382
- get?: Function;
383
- env?: string[] | string;
384
- };
385
- address: {
386
- type: string;
387
- isKey: boolean;
388
- writable: boolean;
389
- mandatory: boolean;
390
- collection: boolean;
391
- private?: boolean;
392
- depends?: string;
393
- description?: string;
394
- default?: any;
395
- set?: Function;
396
- get?: Function;
397
- env?: string[] | string;
398
- };
187
+ cidrAddresses: import("pacc").AttributeDefinition;
188
+ cidrAddress: import("pacc").AttributeDefinition;
189
+ addresses: import("pacc").AttributeDefinition;
190
+ address: import("pacc").AttributeDefinition;
399
191
  };
400
192
  };
401
193
  priority: number;
402
194
  attributes: {
403
- url: {
404
- type: string;
405
- isKey: boolean;
406
- writable: boolean;
407
- mandatory: boolean;
408
- collection: boolean;
409
- private?: boolean;
410
- depends?: string;
411
- description?: string;
412
- default?: any;
413
- set?: Function;
414
- get?: Function;
415
- env?: string[] | string;
416
- };
195
+ url: import("pacc").AttributeDefinition;
417
196
  };
418
197
  service: {};
419
198
  };
@@ -31,20 +31,7 @@ export class SystemdJournalService extends Service {
31
31
  env?: string[] | string;
32
32
  };
33
33
  priority: import("pacc").AttributeDefinition;
34
- directory: {
35
- writable: boolean;
36
- type: string;
37
- isKey: boolean;
38
- mandatory: boolean;
39
- collection: boolean;
40
- private?: boolean;
41
- depends?: string;
42
- description?: string;
43
- default?: any;
44
- set?: Function;
45
- get?: Function;
46
- env?: string[] | string;
47
- };
34
+ directory: import("pacc").AttributeDefinition;
48
35
  packaging: import("pacc").AttributeDefinition;
49
36
  disabled: import("pacc").AttributeDefinition;
50
37
  tags: import("pacc").AttributeDefinition;
@@ -53,20 +40,7 @@ export class SystemdJournalService extends Service {
53
40
  specializations: {};
54
41
  factoryFor(owner: any, value: any): any;
55
42
  attributes: {
56
- alias: {
57
- type: string;
58
- isKey: boolean;
59
- writable: boolean;
60
- mandatory: boolean;
61
- collection: boolean;
62
- private?: boolean;
63
- depends?: string;
64
- description?: string;
65
- default?: any;
66
- set?: Function;
67
- get?: Function;
68
- env?: string[] | string;
69
- };
43
+ alias: import("pacc").AttributeDefinition;
70
44
  weight: {
71
45
  type: string;
72
46
  isKey: boolean;
@@ -82,20 +56,7 @@ export class SystemdJournalService extends Service {
82
56
  env?: string[] | string;
83
57
  };
84
58
  systemd: import("pacc").AttributeDefinition;
85
- port: {
86
- type: string;
87
- isKey: boolean;
88
- writable: boolean;
89
- mandatory: boolean;
90
- collection: boolean;
91
- private?: boolean;
92
- depends?: string;
93
- description?: string;
94
- default?: any;
95
- set?: Function;
96
- get?: Function;
97
- env?: string[] | string;
98
- };
59
+ port: import("pacc").AttributeDefinition;
99
60
  protocol: {
100
61
  values: string[];
101
62
  type: string;
@@ -111,20 +72,7 @@ export class SystemdJournalService extends Service {
111
72
  get?: Function;
112
73
  env?: string[] | string;
113
74
  };
114
- type: {
115
- type: string;
116
- isKey: boolean;
117
- writable: boolean;
118
- mandatory: boolean;
119
- collection: boolean;
120
- private?: boolean;
121
- depends?: string;
122
- description?: string;
123
- default?: any;
124
- set?: Function;
125
- get?: Function;
126
- env?: string[] | string;
127
- };
75
+ type: import("pacc").AttributeDefinition;
128
76
  types: typeof import("pacc").string_collection_attribute;
129
77
  tls: import("pacc").AttributeDefinition;
130
78
  hostName: {
@@ -141,62 +89,10 @@ export class SystemdJournalService extends Service {
141
89
  get?: Function;
142
90
  env?: string[] | string;
143
91
  };
144
- cidrAddresses: {
145
- type: string;
146
- isKey: boolean;
147
- writable: boolean;
148
- mandatory: boolean;
149
- collection: boolean;
150
- private?: boolean;
151
- depends?: string;
152
- description?: string;
153
- default?: any;
154
- set?: Function;
155
- get?: Function;
156
- env?: string[] | string;
157
- };
158
- cidrAddress: {
159
- type: string;
160
- isKey: boolean;
161
- writable: boolean;
162
- mandatory: boolean;
163
- collection: boolean;
164
- private?: boolean;
165
- depends?: string;
166
- description?: string;
167
- default?: any;
168
- set?: Function;
169
- get?: Function;
170
- env?: string[] | string;
171
- };
172
- addresses: {
173
- type: string;
174
- isKey: boolean;
175
- writable: boolean;
176
- mandatory: boolean;
177
- collection: boolean;
178
- private?: boolean;
179
- depends?: string;
180
- description?: string;
181
- default?: any;
182
- set?: Function;
183
- get?: Function;
184
- env?: string[] | string;
185
- };
186
- address: {
187
- type: string;
188
- isKey: boolean;
189
- writable: boolean;
190
- mandatory: boolean;
191
- collection: boolean;
192
- private?: boolean;
193
- depends?: string;
194
- description?: string;
195
- default?: any;
196
- set?: Function;
197
- get?: Function;
198
- env?: string[] | string;
199
- };
92
+ cidrAddresses: import("pacc").AttributeDefinition;
93
+ cidrAddress: import("pacc").AttributeDefinition;
94
+ addresses: import("pacc").AttributeDefinition;
95
+ address: import("pacc").AttributeDefinition;
200
96
  };
201
97
  };
202
98
  owners: string[];
@@ -230,20 +126,7 @@ export class SystemdJournalService extends Service {
230
126
  env?: string[] | string;
231
127
  };
232
128
  priority: import("pacc").AttributeDefinition;
233
- directory: {
234
- writable: boolean;
235
- type: string;
236
- isKey: boolean;
237
- mandatory: boolean;
238
- collection: boolean;
239
- private?: boolean;
240
- depends?: string;
241
- description?: string;
242
- default?: any;
243
- set?: Function;
244
- get?: Function;
245
- env?: string[] | string;
246
- };
129
+ directory: import("pacc").AttributeDefinition;
247
130
  packaging: import("pacc").AttributeDefinition;
248
131
  disabled: import("pacc").AttributeDefinition;
249
132
  tags: import("pacc").AttributeDefinition;
@@ -252,20 +135,7 @@ export class SystemdJournalService extends Service {
252
135
  specializations: {};
253
136
  factoryFor(owner: any, value: any): any;
254
137
  attributes: {
255
- alias: {
256
- type: string;
257
- isKey: boolean;
258
- writable: boolean;
259
- mandatory: boolean;
260
- collection: boolean;
261
- private?: boolean;
262
- depends?: string;
263
- description?: string;
264
- default?: any;
265
- set?: Function;
266
- get?: Function;
267
- env?: string[] | string;
268
- };
138
+ alias: import("pacc").AttributeDefinition;
269
139
  weight: {
270
140
  type: string;
271
141
  isKey: boolean;
@@ -281,20 +151,7 @@ export class SystemdJournalService extends Service {
281
151
  env?: string[] | string;
282
152
  };
283
153
  systemd: import("pacc").AttributeDefinition;
284
- port: {
285
- type: string;
286
- isKey: boolean;
287
- writable: boolean;
288
- mandatory: boolean;
289
- collection: boolean;
290
- private?: boolean;
291
- depends?: string;
292
- description?: string;
293
- default?: any;
294
- set?: Function;
295
- get?: Function;
296
- env?: string[] | string;
297
- };
154
+ port: import("pacc").AttributeDefinition;
298
155
  protocol: {
299
156
  values: string[];
300
157
  type: string;
@@ -310,20 +167,7 @@ export class SystemdJournalService extends Service {
310
167
  get?: Function;
311
168
  env?: string[] | string;
312
169
  };
313
- type: {
314
- type: string;
315
- isKey: boolean;
316
- writable: boolean;
317
- mandatory: boolean;
318
- collection: boolean;
319
- private?: boolean;
320
- depends?: string;
321
- description?: string;
322
- default?: any;
323
- set?: Function;
324
- get?: Function;
325
- env?: string[] | string;
326
- };
170
+ type: import("pacc").AttributeDefinition;
327
171
  types: typeof import("pacc").string_collection_attribute;
328
172
  tls: import("pacc").AttributeDefinition;
329
173
  hostName: {
@@ -340,62 +184,10 @@ export class SystemdJournalService extends Service {
340
184
  get?: Function;
341
185
  env?: string[] | string;
342
186
  };
343
- cidrAddresses: {
344
- type: string;
345
- isKey: boolean;
346
- writable: boolean;
347
- mandatory: boolean;
348
- collection: boolean;
349
- private?: boolean;
350
- depends?: string;
351
- description?: string;
352
- default?: any;
353
- set?: Function;
354
- get?: Function;
355
- env?: string[] | string;
356
- };
357
- cidrAddress: {
358
- type: string;
359
- isKey: boolean;
360
- writable: boolean;
361
- mandatory: boolean;
362
- collection: boolean;
363
- private?: boolean;
364
- depends?: string;
365
- description?: string;
366
- default?: any;
367
- set?: Function;
368
- get?: Function;
369
- env?: string[] | string;
370
- };
371
- addresses: {
372
- type: string;
373
- isKey: boolean;
374
- writable: boolean;
375
- mandatory: boolean;
376
- collection: boolean;
377
- private?: boolean;
378
- depends?: string;
379
- description?: string;
380
- default?: any;
381
- set?: Function;
382
- get?: Function;
383
- env?: string[] | string;
384
- };
385
- address: {
386
- type: string;
387
- isKey: boolean;
388
- writable: boolean;
389
- mandatory: boolean;
390
- collection: boolean;
391
- private?: boolean;
392
- depends?: string;
393
- description?: string;
394
- default?: any;
395
- set?: Function;
396
- get?: Function;
397
- env?: string[] | string;
398
- };
187
+ cidrAddresses: import("pacc").AttributeDefinition;
188
+ cidrAddress: import("pacc").AttributeDefinition;
189
+ addresses: import("pacc").AttributeDefinition;
190
+ address: import("pacc").AttributeDefinition;
399
191
  };
400
192
  };
401
193
  priority: number;