pmcf 2.74.0 → 2.74.2

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 (35) hide show
  1. package/package.json +2 -2
  2. package/src/host.mjs +17 -22
  3. package/src/location.mjs +2 -1
  4. package/src/network-interfaces/network-interface.mjs +5 -4
  5. package/src/network-support.mjs +14 -17
  6. package/src/owner.mjs +8 -8
  7. package/src/service.mjs +7 -9
  8. package/src/services/kea.mjs +1 -1
  9. package/src/subnet.mjs +2 -3
  10. package/types/cluster.d.mts +316 -31
  11. package/types/extra-source-service.d.mts +121 -13
  12. package/types/host.d.mts +220 -22
  13. package/types/location.d.mts +204 -19
  14. package/types/network-interfaces/ethernet.d.mts +340 -36
  15. package/types/network-interfaces/loopback.d.mts +340 -36
  16. package/types/network-interfaces/network-interface.d.mts +340 -36
  17. package/types/network-interfaces/wireguard.d.mts +340 -36
  18. package/types/network-interfaces/wlan.d.mts +510 -54
  19. package/types/network-support.d.mts +186 -104
  20. package/types/network.d.mts +170 -19
  21. package/types/owner.d.mts +96 -9
  22. package/types/root.d.mts +204 -19
  23. package/types/service.d.mts +307 -62
  24. package/types/services/bind.d.mts +242 -26
  25. package/types/services/chrony.d.mts +242 -26
  26. package/types/services/influxdb.d.mts +242 -26
  27. package/types/services/kea.d.mts +242 -26
  28. package/types/services/mosquitto.d.mts +242 -26
  29. package/types/services/openldap.d.mts +242 -26
  30. package/types/services/systemd-journal-remote.d.mts +242 -26
  31. package/types/services/systemd-journal-upload.d.mts +242 -26
  32. package/types/services/systemd-journal.d.mts +242 -26
  33. package/types/services/systemd-resolved.d.mts +242 -26
  34. package/types/services/systemd-timesyncd.d.mts +242 -26
  35. package/types/subnet.d.mts +12 -2
package/types/owner.d.mts CHANGED
@@ -124,10 +124,20 @@ export class Owner extends Base {
124
124
  constructWithIdentifierOnly: boolean;
125
125
  properties: {
126
126
  address: {
127
+ identifier: boolean;
127
128
  type: string;
129
+ isKey: boolean;
130
+ writable: boolean;
131
+ mandatory: boolean;
128
132
  collection: boolean;
129
- writeable: boolean;
130
- identifier: boolean;
133
+ private?: boolean;
134
+ depends?: string;
135
+ additionalAttributes: string[];
136
+ description?: string;
137
+ default?: any;
138
+ set?: Function;
139
+ get?: Function;
140
+ env?: string[] | string;
131
141
  };
132
142
  networks: {
133
143
  type: string;
@@ -145,39 +155,116 @@ export class Owner extends Base {
145
155
  writeable: boolean;
146
156
  };
147
157
  country: {
158
+ writeable: boolean;
148
159
  type: string;
160
+ isKey: boolean;
161
+ writable: boolean;
162
+ mandatory: boolean;
149
163
  collection: boolean;
150
- writeable: boolean;
164
+ private?: boolean;
165
+ depends?: string;
166
+ additionalAttributes: string[];
167
+ description?: string;
168
+ default?: any;
169
+ set?: Function;
170
+ get?: Function;
171
+ env?: string[] | string;
151
172
  };
152
173
  domain: {
174
+ writeable: boolean;
153
175
  type: string;
176
+ isKey: boolean;
177
+ writable: boolean;
178
+ mandatory: boolean;
154
179
  collection: boolean;
155
- writeable: boolean;
180
+ private?: boolean;
181
+ depends?: string;
182
+ additionalAttributes: string[];
183
+ description?: string;
184
+ default?: any;
185
+ set?: Function;
186
+ get?: Function;
187
+ env?: string[] | string;
156
188
  };
157
189
  domains: {
158
- type: string;
159
190
  collection: boolean;
160
191
  writeable: boolean;
192
+ type: string;
193
+ isKey: boolean;
194
+ writable: boolean;
195
+ mandatory: boolean;
196
+ private?: boolean;
197
+ depends?: string;
198
+ additionalAttributes: string[];
199
+ description?: string;
200
+ default?: any;
201
+ set?: Function;
202
+ get?: Function;
203
+ env?: string[] | string;
161
204
  };
162
205
  timezone: {
206
+ writeable: boolean;
163
207
  type: string;
208
+ isKey: boolean;
209
+ writable: boolean;
210
+ mandatory: boolean;
164
211
  collection: boolean;
165
- writeable: boolean;
212
+ private?: boolean;
213
+ depends?: string;
214
+ additionalAttributes: string[];
215
+ description?: string;
216
+ default?: any;
217
+ set?: Function;
218
+ get?: Function;
219
+ env?: string[] | string;
166
220
  };
167
221
  architectures: {
168
- type: string;
169
222
  collection: boolean;
170
223
  writeable: boolean;
224
+ type: string;
225
+ isKey: boolean;
226
+ writable: boolean;
227
+ mandatory: boolean;
228
+ private?: boolean;
229
+ depends?: string;
230
+ additionalAttributes: string[];
231
+ description?: string;
232
+ default?: any;
233
+ set?: Function;
234
+ get?: Function;
235
+ env?: string[] | string;
171
236
  };
172
237
  locales: {
173
- type: string;
174
238
  collection: boolean;
175
239
  writeable: boolean;
240
+ type: string;
241
+ isKey: boolean;
242
+ writable: boolean;
243
+ mandatory: boolean;
244
+ private?: boolean;
245
+ depends?: string;
246
+ additionalAttributes: string[];
247
+ description?: string;
248
+ default?: any;
249
+ set?: Function;
250
+ get?: Function;
251
+ env?: string[] | string;
176
252
  };
177
253
  administratorEmail: {
254
+ writeable: boolean;
178
255
  type: string;
256
+ isKey: boolean;
257
+ writable: boolean;
258
+ mandatory: boolean;
179
259
  collection: boolean;
180
- writeable: boolean;
260
+ private?: boolean;
261
+ depends?: string;
262
+ additionalAttributes: string[];
263
+ description?: string;
264
+ default?: any;
265
+ set?: Function;
266
+ get?: Function;
267
+ env?: string[] | string;
181
268
  };
182
269
  };
183
270
  };
package/types/root.d.mts CHANGED
@@ -130,10 +130,20 @@ export class Root extends Location {
130
130
  constructWithIdentifierOnly: boolean;
131
131
  properties: {
132
132
  address: {
133
+ identifier: boolean;
133
134
  type: string;
135
+ isKey: boolean;
136
+ writable: boolean;
137
+ mandatory: boolean;
134
138
  collection: boolean;
135
- writeable: boolean;
136
- identifier: boolean;
139
+ private?: boolean;
140
+ depends?: string;
141
+ additionalAttributes: string[];
142
+ description?: string;
143
+ default?: any;
144
+ set?: Function;
145
+ get?: Function;
146
+ env?: string[] | string;
137
147
  };
138
148
  networks: {
139
149
  type: string;
@@ -151,39 +161,116 @@ export class Root extends Location {
151
161
  writeable: boolean;
152
162
  };
153
163
  country: {
164
+ writeable: boolean;
154
165
  type: string;
166
+ isKey: boolean;
167
+ writable: boolean;
168
+ mandatory: boolean;
155
169
  collection: boolean;
156
- writeable: boolean;
170
+ private?: boolean;
171
+ depends?: string;
172
+ additionalAttributes: string[];
173
+ description?: string;
174
+ default?: any;
175
+ set?: Function;
176
+ get?: Function;
177
+ env?: string[] | string;
157
178
  };
158
179
  domain: {
180
+ writeable: boolean;
159
181
  type: string;
182
+ isKey: boolean;
183
+ writable: boolean;
184
+ mandatory: boolean;
160
185
  collection: boolean;
161
- writeable: boolean;
186
+ private?: boolean;
187
+ depends?: string;
188
+ additionalAttributes: string[];
189
+ description?: string;
190
+ default?: any;
191
+ set?: Function;
192
+ get?: Function;
193
+ env?: string[] | string;
162
194
  };
163
195
  domains: {
164
- type: string;
165
196
  collection: boolean;
166
197
  writeable: boolean;
198
+ type: string;
199
+ isKey: boolean;
200
+ writable: boolean;
201
+ mandatory: boolean;
202
+ private?: boolean;
203
+ depends?: string;
204
+ additionalAttributes: string[];
205
+ description?: string;
206
+ default?: any;
207
+ set?: Function;
208
+ get?: Function;
209
+ env?: string[] | string;
167
210
  };
168
211
  timezone: {
212
+ writeable: boolean;
169
213
  type: string;
214
+ isKey: boolean;
215
+ writable: boolean;
216
+ mandatory: boolean;
170
217
  collection: boolean;
171
- writeable: boolean;
218
+ private?: boolean;
219
+ depends?: string;
220
+ additionalAttributes: string[];
221
+ description?: string;
222
+ default?: any;
223
+ set?: Function;
224
+ get?: Function;
225
+ env?: string[] | string;
172
226
  };
173
227
  architectures: {
174
- type: string;
175
228
  collection: boolean;
176
229
  writeable: boolean;
230
+ type: string;
231
+ isKey: boolean;
232
+ writable: boolean;
233
+ mandatory: boolean;
234
+ private?: boolean;
235
+ depends?: string;
236
+ additionalAttributes: string[];
237
+ description?: string;
238
+ default?: any;
239
+ set?: Function;
240
+ get?: Function;
241
+ env?: string[] | string;
177
242
  };
178
243
  locales: {
179
- type: string;
180
244
  collection: boolean;
181
245
  writeable: boolean;
246
+ type: string;
247
+ isKey: boolean;
248
+ writable: boolean;
249
+ mandatory: boolean;
250
+ private?: boolean;
251
+ depends?: string;
252
+ additionalAttributes: string[];
253
+ description?: string;
254
+ default?: any;
255
+ set?: Function;
256
+ get?: Function;
257
+ env?: string[] | string;
182
258
  };
183
259
  administratorEmail: {
260
+ writeable: boolean;
184
261
  type: string;
262
+ isKey: boolean;
263
+ writable: boolean;
264
+ mandatory: boolean;
185
265
  collection: boolean;
186
- writeable: boolean;
266
+ private?: boolean;
267
+ depends?: string;
268
+ additionalAttributes: string[];
269
+ description?: string;
270
+ default?: any;
271
+ set?: Function;
272
+ get?: Function;
273
+ env?: string[] | string;
187
274
  };
188
275
  };
189
276
  })[];
@@ -313,10 +400,20 @@ export class Root extends Location {
313
400
  constructWithIdentifierOnly: boolean;
314
401
  properties: {
315
402
  address: {
403
+ identifier: boolean;
316
404
  type: string;
405
+ isKey: boolean;
406
+ writable: boolean;
407
+ mandatory: boolean;
317
408
  collection: boolean;
318
- writeable: boolean;
319
- identifier: boolean;
409
+ private?: boolean;
410
+ depends?: string;
411
+ additionalAttributes: string[];
412
+ description?: string;
413
+ default?: any;
414
+ set?: Function;
415
+ get?: Function;
416
+ env?: string[] | string;
320
417
  };
321
418
  networks: {
322
419
  type: string;
@@ -334,47 +431,135 @@ export class Root extends Location {
334
431
  writeable: boolean;
335
432
  };
336
433
  country: {
434
+ writeable: boolean;
337
435
  type: string;
436
+ isKey: boolean;
437
+ writable: boolean;
438
+ mandatory: boolean;
338
439
  collection: boolean;
339
- writeable: boolean;
440
+ private?: boolean;
441
+ depends?: string;
442
+ additionalAttributes: string[];
443
+ description?: string;
444
+ default?: any;
445
+ set?: Function;
446
+ get?: Function;
447
+ env?: string[] | string;
340
448
  };
341
449
  domain: {
450
+ writeable: boolean;
342
451
  type: string;
452
+ isKey: boolean;
453
+ writable: boolean;
454
+ mandatory: boolean;
343
455
  collection: boolean;
344
- writeable: boolean;
456
+ private?: boolean;
457
+ depends?: string;
458
+ additionalAttributes: string[];
459
+ description?: string;
460
+ default?: any;
461
+ set?: Function;
462
+ get?: Function;
463
+ env?: string[] | string;
345
464
  };
346
465
  domains: {
347
- type: string;
348
466
  collection: boolean;
349
467
  writeable: boolean;
468
+ type: string;
469
+ isKey: boolean;
470
+ writable: boolean;
471
+ mandatory: boolean;
472
+ private?: boolean;
473
+ depends?: string;
474
+ additionalAttributes: string[];
475
+ description?: string;
476
+ default?: any;
477
+ set?: Function;
478
+ get?: Function;
479
+ env?: string[] | string;
350
480
  };
351
481
  timezone: {
482
+ writeable: boolean;
352
483
  type: string;
484
+ isKey: boolean;
485
+ writable: boolean;
486
+ mandatory: boolean;
353
487
  collection: boolean;
354
- writeable: boolean;
488
+ private?: boolean;
489
+ depends?: string;
490
+ additionalAttributes: string[];
491
+ description?: string;
492
+ default?: any;
493
+ set?: Function;
494
+ get?: Function;
495
+ env?: string[] | string;
355
496
  };
356
497
  architectures: {
357
- type: string;
358
498
  collection: boolean;
359
499
  writeable: boolean;
500
+ type: string;
501
+ isKey: boolean;
502
+ writable: boolean;
503
+ mandatory: boolean;
504
+ private?: boolean;
505
+ depends?: string;
506
+ additionalAttributes: string[];
507
+ description?: string;
508
+ default?: any;
509
+ set?: Function;
510
+ get?: Function;
511
+ env?: string[] | string;
360
512
  };
361
513
  locales: {
362
- type: string;
363
514
  collection: boolean;
364
515
  writeable: boolean;
516
+ type: string;
517
+ isKey: boolean;
518
+ writable: boolean;
519
+ mandatory: boolean;
520
+ private?: boolean;
521
+ depends?: string;
522
+ additionalAttributes: string[];
523
+ description?: string;
524
+ default?: any;
525
+ set?: Function;
526
+ get?: Function;
527
+ env?: string[] | string;
365
528
  };
366
529
  administratorEmail: {
530
+ writeable: boolean;
367
531
  type: string;
532
+ isKey: boolean;
533
+ writable: boolean;
534
+ mandatory: boolean;
368
535
  collection: boolean;
369
- writeable: boolean;
536
+ private?: boolean;
537
+ depends?: string;
538
+ additionalAttributes: string[];
539
+ description?: string;
540
+ default?: any;
541
+ set?: Function;
542
+ get?: Function;
543
+ env?: string[] | string;
370
544
  };
371
545
  };
372
546
  };
373
547
  properties: {
374
548
  locales: {
375
- type: string;
376
549
  collection: boolean;
377
550
  writeable: boolean;
551
+ type: string;
552
+ isKey: boolean;
553
+ writable: boolean;
554
+ mandatory: boolean;
555
+ private?: boolean;
556
+ depends?: string;
557
+ additionalAttributes: string[];
558
+ description?: string;
559
+ default?: any;
560
+ set?: Function;
561
+ get?: Function;
562
+ env?: string[] | string;
378
563
  };
379
564
  };
380
565
  };