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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 HeadscaleService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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 InfluxdbService 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;