pmcf 3.10.14 → 3.10.16

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 (43) hide show
  1. package/package.json +1 -1
  2. package/src/base.mjs +1 -1
  3. package/src/cluster.mjs +2 -3
  4. package/src/filter.mjs +8 -11
  5. package/src/host.mjs +10 -10
  6. package/src/location.mjs +2 -2
  7. package/src/network-support.mjs +6 -6
  8. package/src/owner.mjs +6 -6
  9. package/src/service.mjs +3 -3
  10. package/src/services/bind.mjs +5 -7
  11. package/src/services/openldap.mjs +4 -13
  12. package/src/services/systemd-journal-upload.mjs +1 -1
  13. package/src/subnet.mjs +4 -7
  14. package/src/types.mjs +0 -1
  15. package/types/base.d.mts +1 -14
  16. package/types/cluster.d.mts +27 -378
  17. package/types/extra-source-service.d.mts +8 -112
  18. package/types/host.d.mts +15 -210
  19. package/types/location.d.mts +21 -294
  20. package/types/network-interfaces/ethernet.d.mts +14 -196
  21. package/types/network-interfaces/loopback.d.mts +14 -196
  22. package/types/network-interfaces/network-interface.d.mts +14 -196
  23. package/types/network-interfaces/tun.d.mts +14 -196
  24. package/types/network-interfaces/wireguard.d.mts +14 -196
  25. package/types/network-interfaces/wlan.d.mts +21 -294
  26. package/types/network-support.d.mts +8 -85
  27. package/types/network.d.mts +12 -168
  28. package/types/owner.d.mts +10 -140
  29. package/types/root.d.mts +21 -294
  30. package/types/service.d.mts +20 -252
  31. package/types/services/bind.d.mts +20 -280
  32. package/types/services/chrony.d.mts +16 -224
  33. package/types/services/headscale.d.mts +16 -224
  34. package/types/services/influxdb.d.mts +16 -224
  35. package/types/services/kea.d.mts +16 -224
  36. package/types/services/mosquitto.d.mts +16 -224
  37. package/types/services/openldap.d.mts +19 -266
  38. package/types/services/systemd-journal-remote.d.mts +16 -224
  39. package/types/services/systemd-journal-upload.d.mts +17 -238
  40. package/types/services/systemd-journal.d.mts +16 -224
  41. package/types/services/systemd-resolved.d.mts +16 -224
  42. package/types/services/systemd-timesyncd.d.mts +16 -224
  43. package/types/subnet.d.mts +3 -42
@@ -31,20 +31,7 @@ export class SystemdResolvedService extends ExtraSourceService {
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 SystemdResolvedService extends ExtraSourceService {
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 SystemdResolvedService extends ExtraSourceService {
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 SystemdResolvedService extends ExtraSourceService {
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 SystemdResolvedService extends ExtraSourceService {
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[];
@@ -233,20 +129,7 @@ export class SystemdResolvedService extends ExtraSourceService {
233
129
  env?: string[] | string;
234
130
  };
235
131
  priority: import("pacc").AttributeDefinition;
236
- directory: {
237
- writable: boolean;
238
- type: string;
239
- isKey: boolean;
240
- mandatory: boolean;
241
- collection: boolean;
242
- private?: boolean;
243
- depends?: string;
244
- description?: string;
245
- default?: any;
246
- set?: Function;
247
- get?: Function;
248
- env?: string[] | string;
249
- };
132
+ directory: import("pacc").AttributeDefinition;
250
133
  packaging: import("pacc").AttributeDefinition;
251
134
  disabled: import("pacc").AttributeDefinition;
252
135
  tags: import("pacc").AttributeDefinition;
@@ -255,20 +138,7 @@ export class SystemdResolvedService extends ExtraSourceService {
255
138
  specializations: {};
256
139
  factoryFor(owner: any, value: any): any;
257
140
  attributes: {
258
- alias: {
259
- type: string;
260
- isKey: boolean;
261
- writable: boolean;
262
- mandatory: boolean;
263
- collection: boolean;
264
- private?: boolean;
265
- depends?: string;
266
- description?: string;
267
- default?: any;
268
- set?: Function;
269
- get?: Function;
270
- env?: string[] | string;
271
- };
141
+ alias: import("pacc").AttributeDefinition;
272
142
  weight: {
273
143
  type: string;
274
144
  isKey: boolean;
@@ -284,20 +154,7 @@ export class SystemdResolvedService extends ExtraSourceService {
284
154
  env?: string[] | string;
285
155
  };
286
156
  systemd: import("pacc").AttributeDefinition;
287
- port: {
288
- type: string;
289
- isKey: boolean;
290
- writable: boolean;
291
- mandatory: boolean;
292
- collection: boolean;
293
- private?: boolean;
294
- depends?: string;
295
- description?: string;
296
- default?: any;
297
- set?: Function;
298
- get?: Function;
299
- env?: string[] | string;
300
- };
157
+ port: import("pacc").AttributeDefinition;
301
158
  protocol: {
302
159
  values: string[];
303
160
  type: string;
@@ -313,20 +170,7 @@ export class SystemdResolvedService extends ExtraSourceService {
313
170
  get?: Function;
314
171
  env?: string[] | string;
315
172
  };
316
- type: {
317
- type: string;
318
- isKey: boolean;
319
- writable: boolean;
320
- mandatory: boolean;
321
- collection: boolean;
322
- private?: boolean;
323
- depends?: string;
324
- description?: string;
325
- default?: any;
326
- set?: Function;
327
- get?: Function;
328
- env?: string[] | string;
329
- };
173
+ type: import("pacc").AttributeDefinition;
330
174
  types: typeof import("pacc").string_collection_attribute;
331
175
  tls: import("pacc").AttributeDefinition;
332
176
  hostName: {
@@ -343,62 +187,10 @@ export class SystemdResolvedService extends ExtraSourceService {
343
187
  get?: Function;
344
188
  env?: string[] | string;
345
189
  };
346
- cidrAddresses: {
347
- type: string;
348
- isKey: boolean;
349
- writable: boolean;
350
- mandatory: boolean;
351
- collection: boolean;
352
- private?: boolean;
353
- depends?: string;
354
- description?: string;
355
- default?: any;
356
- set?: Function;
357
- get?: Function;
358
- env?: string[] | string;
359
- };
360
- cidrAddress: {
361
- type: string;
362
- isKey: boolean;
363
- writable: boolean;
364
- mandatory: boolean;
365
- collection: boolean;
366
- private?: boolean;
367
- depends?: string;
368
- description?: string;
369
- default?: any;
370
- set?: Function;
371
- get?: Function;
372
- env?: string[] | string;
373
- };
374
- addresses: {
375
- type: string;
376
- isKey: boolean;
377
- writable: boolean;
378
- mandatory: boolean;
379
- collection: boolean;
380
- private?: boolean;
381
- depends?: string;
382
- description?: string;
383
- default?: any;
384
- set?: Function;
385
- get?: Function;
386
- env?: string[] | string;
387
- };
388
- address: {
389
- type: string;
390
- isKey: boolean;
391
- writable: boolean;
392
- mandatory: boolean;
393
- collection: boolean;
394
- private?: boolean;
395
- depends?: string;
396
- description?: string;
397
- default?: any;
398
- set?: Function;
399
- get?: Function;
400
- env?: string[] | string;
401
- };
190
+ cidrAddresses: import("pacc").AttributeDefinition;
191
+ cidrAddress: import("pacc").AttributeDefinition;
192
+ addresses: import("pacc").AttributeDefinition;
193
+ address: import("pacc").AttributeDefinition;
402
194
  };
403
195
  };
404
196
  priority: number;
@@ -31,20 +31,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
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 SystemdTimesyncdService extends ExtraSourceService {
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 SystemdTimesyncdService extends ExtraSourceService {
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 SystemdTimesyncdService extends ExtraSourceService {
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 SystemdTimesyncdService extends ExtraSourceService {
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[];
@@ -233,20 +129,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
233
129
  env?: string[] | string;
234
130
  };
235
131
  priority: import("pacc").AttributeDefinition;
236
- directory: {
237
- writable: boolean;
238
- type: string;
239
- isKey: boolean;
240
- mandatory: boolean;
241
- collection: boolean;
242
- private?: boolean;
243
- depends?: string;
244
- description?: string;
245
- default?: any;
246
- set?: Function;
247
- get?: Function;
248
- env?: string[] | string;
249
- };
132
+ directory: import("pacc").AttributeDefinition;
250
133
  packaging: import("pacc").AttributeDefinition;
251
134
  disabled: import("pacc").AttributeDefinition;
252
135
  tags: import("pacc").AttributeDefinition;
@@ -255,20 +138,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
255
138
  specializations: {};
256
139
  factoryFor(owner: any, value: any): any;
257
140
  attributes: {
258
- alias: {
259
- type: string;
260
- isKey: boolean;
261
- writable: boolean;
262
- mandatory: boolean;
263
- collection: boolean;
264
- private?: boolean;
265
- depends?: string;
266
- description?: string;
267
- default?: any;
268
- set?: Function;
269
- get?: Function;
270
- env?: string[] | string;
271
- };
141
+ alias: import("pacc").AttributeDefinition;
272
142
  weight: {
273
143
  type: string;
274
144
  isKey: boolean;
@@ -284,20 +154,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
284
154
  env?: string[] | string;
285
155
  };
286
156
  systemd: import("pacc").AttributeDefinition;
287
- port: {
288
- type: string;
289
- isKey: boolean;
290
- writable: boolean;
291
- mandatory: boolean;
292
- collection: boolean;
293
- private?: boolean;
294
- depends?: string;
295
- description?: string;
296
- default?: any;
297
- set?: Function;
298
- get?: Function;
299
- env?: string[] | string;
300
- };
157
+ port: import("pacc").AttributeDefinition;
301
158
  protocol: {
302
159
  values: string[];
303
160
  type: string;
@@ -313,20 +170,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
313
170
  get?: Function;
314
171
  env?: string[] | string;
315
172
  };
316
- type: {
317
- type: string;
318
- isKey: boolean;
319
- writable: boolean;
320
- mandatory: boolean;
321
- collection: boolean;
322
- private?: boolean;
323
- depends?: string;
324
- description?: string;
325
- default?: any;
326
- set?: Function;
327
- get?: Function;
328
- env?: string[] | string;
329
- };
173
+ type: import("pacc").AttributeDefinition;
330
174
  types: typeof import("pacc").string_collection_attribute;
331
175
  tls: import("pacc").AttributeDefinition;
332
176
  hostName: {
@@ -343,62 +187,10 @@ export class SystemdTimesyncdService extends ExtraSourceService {
343
187
  get?: Function;
344
188
  env?: string[] | string;
345
189
  };
346
- cidrAddresses: {
347
- type: string;
348
- isKey: boolean;
349
- writable: boolean;
350
- mandatory: boolean;
351
- collection: boolean;
352
- private?: boolean;
353
- depends?: string;
354
- description?: string;
355
- default?: any;
356
- set?: Function;
357
- get?: Function;
358
- env?: string[] | string;
359
- };
360
- cidrAddress: {
361
- type: string;
362
- isKey: boolean;
363
- writable: boolean;
364
- mandatory: boolean;
365
- collection: boolean;
366
- private?: boolean;
367
- depends?: string;
368
- description?: string;
369
- default?: any;
370
- set?: Function;
371
- get?: Function;
372
- env?: string[] | string;
373
- };
374
- addresses: {
375
- type: string;
376
- isKey: boolean;
377
- writable: boolean;
378
- mandatory: boolean;
379
- collection: boolean;
380
- private?: boolean;
381
- depends?: string;
382
- description?: string;
383
- default?: any;
384
- set?: Function;
385
- get?: Function;
386
- env?: string[] | string;
387
- };
388
- address: {
389
- type: string;
390
- isKey: boolean;
391
- writable: boolean;
392
- mandatory: boolean;
393
- collection: boolean;
394
- private?: boolean;
395
- depends?: string;
396
- description?: string;
397
- default?: any;
398
- set?: Function;
399
- get?: Function;
400
- env?: string[] | string;
401
- };
190
+ cidrAddresses: import("pacc").AttributeDefinition;
191
+ cidrAddress: import("pacc").AttributeDefinition;
192
+ addresses: import("pacc").AttributeDefinition;
193
+ address: import("pacc").AttributeDefinition;
402
194
  };
403
195
  };
404
196
  priority: number;
@@ -6,53 +6,14 @@ export class Subnet extends Base {
6
6
  priority: number;
7
7
  constructWithIdentifierOnly: boolean;
8
8
  attributes: {
9
- address: {
10
- isKey: boolean;
11
- type: string;
12
- writable: boolean;
13
- mandatory: boolean;
14
- collection: boolean;
15
- private?: boolean;
16
- depends?: string;
17
- description?: string;
18
- default?: any;
19
- set?: Function;
20
- get?: Function;
21
- env?: string[] | string;
22
- };
9
+ address: import("pacc").AttributeDefinition;
23
10
  networks: {
24
11
  type: string;
25
12
  collection: boolean;
26
13
  writable: boolean;
27
14
  };
28
- prefixLength: {
29
- type: string;
30
- isKey: boolean;
31
- writable: boolean;
32
- mandatory: boolean;
33
- collection: boolean;
34
- private?: boolean;
35
- depends?: string;
36
- description?: string;
37
- default?: any;
38
- set?: Function;
39
- get?: Function;
40
- env?: string[] | string;
41
- };
42
- family: {
43
- type: string;
44
- isKey: boolean;
45
- writable: boolean;
46
- mandatory: boolean;
47
- collection: boolean;
48
- private?: boolean;
49
- depends?: string;
50
- description?: string;
51
- default?: any;
52
- set?: Function;
53
- get?: Function;
54
- env?: string[] | string;
55
- };
15
+ prefixLength: import("pacc").AttributeDefinition;
16
+ family: import("pacc").AttributeDefinition;
56
17
  };
57
18
  };
58
19
  networks: Set<any>;