pmcf 3.5.1 → 3.6.1

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 (33) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +11 -7
  3. package/src/network-interfaces/loopback.mjs +3 -0
  4. package/src/network-interfaces/network-interface.mjs +1 -1
  5. package/src/network-support.mjs +6 -9
  6. package/src/service.mjs +5 -4
  7. package/types/base.d.mts +3 -29
  8. package/types/cluster.d.mts +4 -56
  9. package/types/extra-source-service.d.mts +6 -45
  10. package/types/host.d.mts +3 -29
  11. package/types/location.d.mts +5 -57
  12. package/types/network-interfaces/ethernet.d.mts +14 -92
  13. package/types/network-interfaces/loopback.d.mts +16 -92
  14. package/types/network-interfaces/network-interface.d.mts +14 -92
  15. package/types/network-interfaces/tun.d.mts +14 -92
  16. package/types/network-interfaces/wireguard.d.mts +14 -92
  17. package/types/network-interfaces/wlan.d.mts +21 -138
  18. package/types/network-support.d.mts +6 -18
  19. package/types/network.d.mts +6 -45
  20. package/types/owner.d.mts +2 -28
  21. package/types/root.d.mts +4 -56
  22. package/types/service.d.mts +13 -91
  23. package/types/services/bind.d.mts +12 -90
  24. package/types/services/chrony.d.mts +13 -91
  25. package/types/services/influxdb.d.mts +13 -91
  26. package/types/services/kea.d.mts +13 -91
  27. package/types/services/mosquitto.d.mts +13 -91
  28. package/types/services/openldap.d.mts +13 -91
  29. package/types/services/systemd-journal-remote.d.mts +12 -90
  30. package/types/services/systemd-journal-upload.d.mts +12 -90
  31. package/types/services/systemd-journal.d.mts +12 -90
  32. package/types/services/systemd-resolved.d.mts +12 -90
  33. package/types/services/systemd-timesyncd.d.mts +12 -90
@@ -18,9 +18,9 @@ export function serviceEndpoints(sources: any, options?: {
18
18
  }): string | any;
19
19
  export namespace endpointProperties {
20
20
  export let port: {
21
- writable: boolean;
22
21
  type: string;
23
22
  isKey: boolean;
23
+ writable: boolean;
24
24
  mandatory: boolean;
25
25
  collection: boolean;
26
26
  private?: boolean;
@@ -115,20 +115,7 @@ export namespace ServiceTypeDefinition {
115
115
  get?: Function;
116
116
  env?: string[] | string;
117
117
  };
118
- priority: {
119
- writable: boolean;
120
- type: string;
121
- isKey: boolean;
122
- mandatory: boolean;
123
- collection: boolean;
124
- private?: boolean;
125
- depends?: string;
126
- description?: string;
127
- default?: any;
128
- set?: Function;
129
- get?: Function;
130
- env?: string[] | string;
131
- };
118
+ priority: import("pacc").AttributeDefinition;
132
119
  directory: {
133
120
  writable: boolean;
134
121
  type: string;
@@ -158,20 +145,7 @@ export namespace ServiceTypeDefinition {
158
145
  env?: string[] | string;
159
146
  };
160
147
  disabled: import("pacc").AttributeDefinition;
161
- tags: {
162
- writable: boolean;
163
- collection: boolean;
164
- type: string;
165
- isKey: boolean;
166
- mandatory: boolean;
167
- private: boolean;
168
- depends: string;
169
- description: string;
170
- default: any;
171
- set: Function;
172
- get: Function;
173
- env: string[] | string;
174
- };
148
+ tags: import("pacc").AttributeDefinition;
175
149
  };
176
150
  };
177
151
  export { _extends as extends };
@@ -194,37 +168,24 @@ export namespace ServiceTypeDefinition {
194
168
  env?: string[] | string;
195
169
  };
196
170
  weight: {
197
- writable: boolean;
198
- default: number;
199
171
  type: string;
200
172
  isKey: boolean;
173
+ writable: boolean;
201
174
  mandatory: boolean;
202
175
  collection: boolean;
203
176
  private?: boolean;
204
177
  depends?: string;
205
178
  description?: string;
179
+ default?: any;
206
180
  set?: Function;
207
181
  get?: Function;
208
182
  env?: string[] | string;
209
183
  };
210
- systemd: {
211
- writable: boolean;
212
- collection: boolean;
213
- type: string;
214
- isKey: boolean;
215
- mandatory: boolean;
216
- private: boolean;
217
- depends: string;
218
- description: string;
219
- default: any;
220
- set: Function;
221
- get: Function;
222
- env: string[] | string;
223
- };
184
+ systemd: import("pacc").AttributeDefinition;
224
185
  port: {
225
- writable: boolean;
226
186
  type: string;
227
187
  isKey: boolean;
188
+ writable: boolean;
228
189
  mandatory: boolean;
229
190
  collection: boolean;
230
191
  private?: boolean;
@@ -381,20 +342,7 @@ export class Service extends Base {
381
342
  get?: Function;
382
343
  env?: string[] | string;
383
344
  };
384
- priority: {
385
- writable: boolean;
386
- type: string;
387
- isKey: boolean;
388
- mandatory: boolean;
389
- collection: boolean;
390
- private?: boolean;
391
- depends?: string;
392
- description?: string;
393
- default?: any;
394
- set?: Function;
395
- get?: Function;
396
- env?: string[] | string;
397
- };
345
+ priority: import("pacc").AttributeDefinition;
398
346
  directory: {
399
347
  writable: boolean;
400
348
  type: string;
@@ -424,20 +372,7 @@ export class Service extends Base {
424
372
  env?: string[] | string;
425
373
  };
426
374
  disabled: import("pacc").AttributeDefinition;
427
- tags: {
428
- writable: boolean;
429
- collection: boolean;
430
- type: string;
431
- isKey: boolean;
432
- mandatory: boolean;
433
- private: boolean;
434
- depends: string;
435
- description: string;
436
- default: any;
437
- set: Function;
438
- get: Function;
439
- env: string[] | string;
440
- };
375
+ tags: import("pacc").AttributeDefinition;
441
376
  };
442
377
  };
443
378
  specializations: {};
@@ -458,37 +393,24 @@ export class Service extends Base {
458
393
  env?: string[] | string;
459
394
  };
460
395
  weight: {
461
- writable: boolean;
462
- default: number;
463
396
  type: string;
464
397
  isKey: boolean;
398
+ writable: boolean;
465
399
  mandatory: boolean;
466
400
  collection: boolean;
467
401
  private?: boolean;
468
402
  depends?: string;
469
403
  description?: string;
404
+ default?: any;
470
405
  set?: Function;
471
406
  get?: Function;
472
407
  env?: string[] | string;
473
408
  };
474
- systemd: {
475
- writable: boolean;
476
- collection: boolean;
477
- type: string;
478
- isKey: boolean;
479
- mandatory: boolean;
480
- private: boolean;
481
- depends: string;
482
- description: string;
483
- default: any;
484
- set: Function;
485
- get: Function;
486
- env: string[] | string;
487
- };
409
+ systemd: import("pacc").AttributeDefinition;
488
410
  port: {
489
- writable: boolean;
490
411
  type: string;
491
412
  isKey: boolean;
413
+ writable: boolean;
492
414
  mandatory: boolean;
493
415
  collection: boolean;
494
416
  private?: boolean;
@@ -43,20 +43,7 @@ export class BindService extends ExtraSourceService {
43
43
  get?: Function;
44
44
  env?: string[] | string;
45
45
  };
46
- priority: {
47
- writable: boolean;
48
- type: string;
49
- isKey: boolean;
50
- mandatory: boolean;
51
- collection: boolean;
52
- private?: boolean;
53
- depends?: string;
54
- description?: string;
55
- default?: any;
56
- set?: Function;
57
- get?: Function;
58
- env?: string[] | string;
59
- };
46
+ priority: import("pacc").AttributeDefinition;
60
47
  directory: {
61
48
  writable: boolean;
62
49
  type: string;
@@ -86,20 +73,7 @@ export class BindService extends ExtraSourceService {
86
73
  env?: string[] | string;
87
74
  };
88
75
  disabled: import("pacc").AttributeDefinition;
89
- tags: {
90
- writable: boolean;
91
- collection: boolean;
92
- type: string;
93
- isKey: boolean;
94
- mandatory: boolean;
95
- private: boolean;
96
- depends: string;
97
- description: string;
98
- default: any;
99
- set: Function;
100
- get: Function;
101
- env: string[] | string;
102
- };
76
+ tags: import("pacc").AttributeDefinition;
103
77
  };
104
78
  };
105
79
  specializations: {};
@@ -120,37 +94,24 @@ export class BindService extends ExtraSourceService {
120
94
  env?: string[] | string;
121
95
  };
122
96
  weight: {
123
- writable: boolean;
124
- default: number;
125
97
  type: string;
126
98
  isKey: boolean;
99
+ writable: boolean;
127
100
  mandatory: boolean;
128
101
  collection: boolean;
129
102
  private?: boolean;
130
103
  depends?: string;
131
104
  description?: string;
105
+ default?: any;
132
106
  set?: Function;
133
107
  get?: Function;
134
108
  env?: string[] | string;
135
109
  };
136
- systemd: {
137
- writable: boolean;
138
- collection: boolean;
139
- type: string;
140
- isKey: boolean;
141
- mandatory: boolean;
142
- private: boolean;
143
- depends: string;
144
- description: string;
145
- default: any;
146
- set: Function;
147
- get: Function;
148
- env: string[] | string;
149
- };
110
+ systemd: import("pacc").AttributeDefinition;
150
111
  port: {
151
- writable: boolean;
152
112
  type: string;
153
113
  isKey: boolean;
114
+ writable: boolean;
154
115
  mandatory: boolean;
155
116
  collection: boolean;
156
117
  private?: boolean;
@@ -310,20 +271,7 @@ export class BindService extends ExtraSourceService {
310
271
  get?: Function;
311
272
  env?: string[] | string;
312
273
  };
313
- priority: {
314
- writable: boolean;
315
- type: string;
316
- isKey: 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
- };
274
+ priority: import("pacc").AttributeDefinition;
327
275
  directory: {
328
276
  writable: boolean;
329
277
  type: string;
@@ -353,20 +301,7 @@ export class BindService extends ExtraSourceService {
353
301
  env?: string[] | string;
354
302
  };
355
303
  disabled: import("pacc").AttributeDefinition;
356
- tags: {
357
- writable: boolean;
358
- collection: boolean;
359
- type: string;
360
- isKey: boolean;
361
- mandatory: boolean;
362
- private: boolean;
363
- depends: string;
364
- description: string;
365
- default: any;
366
- set: Function;
367
- get: Function;
368
- env: string[] | string;
369
- };
304
+ tags: import("pacc").AttributeDefinition;
370
305
  };
371
306
  };
372
307
  specializations: {};
@@ -387,37 +322,24 @@ export class BindService extends ExtraSourceService {
387
322
  env?: string[] | string;
388
323
  };
389
324
  weight: {
390
- writable: boolean;
391
- default: number;
392
325
  type: string;
393
326
  isKey: boolean;
327
+ writable: boolean;
394
328
  mandatory: boolean;
395
329
  collection: boolean;
396
330
  private?: boolean;
397
331
  depends?: string;
398
332
  description?: string;
333
+ default?: any;
399
334
  set?: Function;
400
335
  get?: Function;
401
336
  env?: string[] | string;
402
337
  };
403
- systemd: {
404
- writable: boolean;
405
- collection: boolean;
406
- type: string;
407
- isKey: boolean;
408
- mandatory: boolean;
409
- private: boolean;
410
- depends: string;
411
- description: string;
412
- default: any;
413
- set: Function;
414
- get: Function;
415
- env: string[] | string;
416
- };
338
+ systemd: import("pacc").AttributeDefinition;
417
339
  port: {
418
- writable: boolean;
419
340
  type: string;
420
341
  isKey: boolean;
342
+ writable: boolean;
421
343
  mandatory: boolean;
422
344
  collection: boolean;
423
345
  private?: boolean;
@@ -43,20 +43,7 @@ export class ChronyService extends ExtraSourceService {
43
43
  get?: Function;
44
44
  env?: string[] | string;
45
45
  };
46
- priority: {
47
- writable: boolean;
48
- type: string;
49
- isKey: boolean;
50
- mandatory: boolean;
51
- collection: boolean;
52
- private?: boolean;
53
- depends?: string;
54
- description?: string;
55
- default?: any;
56
- set?: Function;
57
- get?: Function;
58
- env?: string[] | string;
59
- };
46
+ priority: import("pacc").AttributeDefinition;
60
47
  directory: {
61
48
  writable: boolean;
62
49
  type: string;
@@ -86,20 +73,7 @@ export class ChronyService extends ExtraSourceService {
86
73
  env?: string[] | string;
87
74
  };
88
75
  disabled: import("pacc").AttributeDefinition;
89
- tags: {
90
- writable: boolean;
91
- collection: boolean;
92
- type: string;
93
- isKey: boolean;
94
- mandatory: boolean;
95
- private: boolean;
96
- depends: string;
97
- description: string;
98
- default: any;
99
- set: Function;
100
- get: Function;
101
- env: string[] | string;
102
- };
76
+ tags: import("pacc").AttributeDefinition;
103
77
  };
104
78
  };
105
79
  specializations: {};
@@ -120,37 +94,24 @@ export class ChronyService extends ExtraSourceService {
120
94
  env?: string[] | string;
121
95
  };
122
96
  weight: {
123
- writable: boolean;
124
- default: number;
125
97
  type: string;
126
98
  isKey: boolean;
99
+ writable: boolean;
127
100
  mandatory: boolean;
128
101
  collection: boolean;
129
102
  private?: boolean;
130
103
  depends?: string;
131
104
  description?: string;
105
+ default?: any;
132
106
  set?: Function;
133
107
  get?: Function;
134
108
  env?: string[] | string;
135
109
  };
136
- systemd: {
137
- writable: boolean;
138
- collection: boolean;
139
- type: string;
140
- isKey: boolean;
141
- mandatory: boolean;
142
- private: boolean;
143
- depends: string;
144
- description: string;
145
- default: any;
146
- set: Function;
147
- get: Function;
148
- env: string[] | string;
149
- };
110
+ systemd: import("pacc").AttributeDefinition;
150
111
  port: {
151
- writable: boolean;
152
112
  type: string;
153
113
  isKey: boolean;
114
+ writable: boolean;
154
115
  mandatory: boolean;
155
116
  collection: boolean;
156
117
  private?: boolean;
@@ -310,20 +271,7 @@ export class ChronyService extends ExtraSourceService {
310
271
  get?: Function;
311
272
  env?: string[] | string;
312
273
  };
313
- priority: {
314
- writable: boolean;
315
- type: string;
316
- isKey: 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
- };
274
+ priority: import("pacc").AttributeDefinition;
327
275
  directory: {
328
276
  writable: boolean;
329
277
  type: string;
@@ -353,20 +301,7 @@ export class ChronyService extends ExtraSourceService {
353
301
  env?: string[] | string;
354
302
  };
355
303
  disabled: import("pacc").AttributeDefinition;
356
- tags: {
357
- writable: boolean;
358
- collection: boolean;
359
- type: string;
360
- isKey: boolean;
361
- mandatory: boolean;
362
- private: boolean;
363
- depends: string;
364
- description: string;
365
- default: any;
366
- set: Function;
367
- get: Function;
368
- env: string[] | string;
369
- };
304
+ tags: import("pacc").AttributeDefinition;
370
305
  };
371
306
  };
372
307
  specializations: {};
@@ -387,37 +322,24 @@ export class ChronyService extends ExtraSourceService {
387
322
  env?: string[] | string;
388
323
  };
389
324
  weight: {
390
- writable: boolean;
391
- default: number;
392
325
  type: string;
393
326
  isKey: boolean;
327
+ writable: boolean;
394
328
  mandatory: boolean;
395
329
  collection: boolean;
396
330
  private?: boolean;
397
331
  depends?: string;
398
332
  description?: string;
333
+ default?: any;
399
334
  set?: Function;
400
335
  get?: Function;
401
336
  env?: string[] | string;
402
337
  };
403
- systemd: {
404
- writable: boolean;
405
- collection: boolean;
406
- type: string;
407
- isKey: boolean;
408
- mandatory: boolean;
409
- private: boolean;
410
- depends: string;
411
- description: string;
412
- default: any;
413
- set: Function;
414
- get: Function;
415
- env: string[] | string;
416
- };
338
+ systemd: import("pacc").AttributeDefinition;
417
339
  port: {
418
- writable: boolean;
419
340
  type: string;
420
341
  isKey: boolean;
342
+ writable: boolean;
421
343
  mandatory: boolean;
422
344
  collection: boolean;
423
345
  private?: boolean;
@@ -567,7 +489,7 @@ export class ChronyService extends ExtraSourceService {
567
489
  preparePackages(dir: any): AsyncGenerator<{
568
490
  dir: any;
569
491
  sources: FileContentProvider[];
570
- outputs: Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
492
+ outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
571
493
  properties: {
572
494
  name: string;
573
495
  description: string;