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.
- package/package.json +2 -2
- package/src/base.mjs +11 -7
- package/src/network-interfaces/loopback.mjs +3 -0
- package/src/network-interfaces/network-interface.mjs +1 -1
- package/src/network-support.mjs +6 -9
- package/src/service.mjs +5 -4
- package/types/base.d.mts +3 -29
- package/types/cluster.d.mts +4 -56
- package/types/extra-source-service.d.mts +6 -45
- package/types/host.d.mts +3 -29
- package/types/location.d.mts +5 -57
- package/types/network-interfaces/ethernet.d.mts +14 -92
- package/types/network-interfaces/loopback.d.mts +16 -92
- package/types/network-interfaces/network-interface.d.mts +14 -92
- package/types/network-interfaces/tun.d.mts +14 -92
- package/types/network-interfaces/wireguard.d.mts +14 -92
- package/types/network-interfaces/wlan.d.mts +21 -138
- package/types/network-support.d.mts +6 -18
- package/types/network.d.mts +6 -45
- package/types/owner.d.mts +2 -28
- package/types/root.d.mts +4 -56
- package/types/service.d.mts +13 -91
- package/types/services/bind.d.mts +12 -90
- package/types/services/chrony.d.mts +13 -91
- package/types/services/influxdb.d.mts +13 -91
- package/types/services/kea.d.mts +13 -91
- package/types/services/mosquitto.d.mts +13 -91
- package/types/services/openldap.d.mts +13 -91
- package/types/services/systemd-journal-remote.d.mts +12 -90
- package/types/services/systemd-journal-upload.d.mts +12 -90
- package/types/services/systemd-journal.d.mts +12 -90
- package/types/services/systemd-resolved.d.mts +12 -90
- package/types/services/systemd-timesyncd.d.mts +12 -90
|
@@ -43,20 +43,7 @@ export class InfluxdbService extends Service {
|
|
|
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 InfluxdbService extends Service {
|
|
|
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 InfluxdbService extends Service {
|
|
|
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;
|
|
@@ -307,20 +268,7 @@ export class InfluxdbService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class InfluxdbService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class InfluxdbService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|
|
@@ -559,7 +481,7 @@ export class InfluxdbService extends Service {
|
|
|
559
481
|
preparePackages(dir: any): AsyncGenerator<{
|
|
560
482
|
dir: any;
|
|
561
483
|
sources: FileContentProvider[];
|
|
562
|
-
outputs: Set<typeof import("npm-pkgbuild").
|
|
484
|
+
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
563
485
|
properties: {
|
|
564
486
|
name: string;
|
|
565
487
|
description: string;
|
package/types/services/kea.d.mts
CHANGED
|
@@ -44,20 +44,7 @@ export class KeaService extends Service {
|
|
|
44
44
|
get?: Function;
|
|
45
45
|
env?: string[] | string;
|
|
46
46
|
};
|
|
47
|
-
priority:
|
|
48
|
-
writable: boolean;
|
|
49
|
-
type: string;
|
|
50
|
-
isKey: boolean;
|
|
51
|
-
mandatory: boolean;
|
|
52
|
-
collection: boolean;
|
|
53
|
-
private?: boolean;
|
|
54
|
-
depends?: string;
|
|
55
|
-
description?: string;
|
|
56
|
-
default?: any;
|
|
57
|
-
set?: Function;
|
|
58
|
-
get?: Function;
|
|
59
|
-
env?: string[] | string;
|
|
60
|
-
};
|
|
47
|
+
priority: import("pacc").AttributeDefinition;
|
|
61
48
|
directory: {
|
|
62
49
|
writable: boolean;
|
|
63
50
|
type: string;
|
|
@@ -87,20 +74,7 @@ export class KeaService extends Service {
|
|
|
87
74
|
env?: string[] | string;
|
|
88
75
|
};
|
|
89
76
|
disabled: import("pacc").AttributeDefinition;
|
|
90
|
-
tags:
|
|
91
|
-
writable: boolean;
|
|
92
|
-
collection: boolean;
|
|
93
|
-
type: string;
|
|
94
|
-
isKey: boolean;
|
|
95
|
-
mandatory: boolean;
|
|
96
|
-
private: boolean;
|
|
97
|
-
depends: string;
|
|
98
|
-
description: string;
|
|
99
|
-
default: any;
|
|
100
|
-
set: Function;
|
|
101
|
-
get: Function;
|
|
102
|
-
env: string[] | string;
|
|
103
|
-
};
|
|
77
|
+
tags: import("pacc").AttributeDefinition;
|
|
104
78
|
};
|
|
105
79
|
};
|
|
106
80
|
specializations: {};
|
|
@@ -121,37 +95,24 @@ export class KeaService extends Service {
|
|
|
121
95
|
env?: string[] | string;
|
|
122
96
|
};
|
|
123
97
|
weight: {
|
|
124
|
-
writable: boolean;
|
|
125
|
-
default: number;
|
|
126
98
|
type: string;
|
|
127
99
|
isKey: boolean;
|
|
100
|
+
writable: boolean;
|
|
128
101
|
mandatory: boolean;
|
|
129
102
|
collection: boolean;
|
|
130
103
|
private?: boolean;
|
|
131
104
|
depends?: string;
|
|
132
105
|
description?: string;
|
|
106
|
+
default?: any;
|
|
133
107
|
set?: Function;
|
|
134
108
|
get?: Function;
|
|
135
109
|
env?: string[] | string;
|
|
136
110
|
};
|
|
137
|
-
systemd:
|
|
138
|
-
writable: boolean;
|
|
139
|
-
collection: boolean;
|
|
140
|
-
type: string;
|
|
141
|
-
isKey: boolean;
|
|
142
|
-
mandatory: boolean;
|
|
143
|
-
private: boolean;
|
|
144
|
-
depends: string;
|
|
145
|
-
description: string;
|
|
146
|
-
default: any;
|
|
147
|
-
set: Function;
|
|
148
|
-
get: Function;
|
|
149
|
-
env: string[] | string;
|
|
150
|
-
};
|
|
111
|
+
systemd: import("pacc").AttributeDefinition;
|
|
151
112
|
port: {
|
|
152
|
-
writable: boolean;
|
|
153
113
|
type: string;
|
|
154
114
|
isKey: boolean;
|
|
115
|
+
writable: boolean;
|
|
155
116
|
mandatory: boolean;
|
|
156
117
|
collection: boolean;
|
|
157
118
|
private?: boolean;
|
|
@@ -308,20 +269,7 @@ export class KeaService extends Service {
|
|
|
308
269
|
get?: Function;
|
|
309
270
|
env?: string[] | string;
|
|
310
271
|
};
|
|
311
|
-
priority:
|
|
312
|
-
writable: boolean;
|
|
313
|
-
type: string;
|
|
314
|
-
isKey: boolean;
|
|
315
|
-
mandatory: boolean;
|
|
316
|
-
collection: boolean;
|
|
317
|
-
private?: boolean;
|
|
318
|
-
depends?: string;
|
|
319
|
-
description?: string;
|
|
320
|
-
default?: any;
|
|
321
|
-
set?: Function;
|
|
322
|
-
get?: Function;
|
|
323
|
-
env?: string[] | string;
|
|
324
|
-
};
|
|
272
|
+
priority: import("pacc").AttributeDefinition;
|
|
325
273
|
directory: {
|
|
326
274
|
writable: boolean;
|
|
327
275
|
type: string;
|
|
@@ -351,20 +299,7 @@ export class KeaService extends Service {
|
|
|
351
299
|
env?: string[] | string;
|
|
352
300
|
};
|
|
353
301
|
disabled: import("pacc").AttributeDefinition;
|
|
354
|
-
tags:
|
|
355
|
-
writable: boolean;
|
|
356
|
-
collection: boolean;
|
|
357
|
-
type: string;
|
|
358
|
-
isKey: boolean;
|
|
359
|
-
mandatory: boolean;
|
|
360
|
-
private: boolean;
|
|
361
|
-
depends: string;
|
|
362
|
-
description: string;
|
|
363
|
-
default: any;
|
|
364
|
-
set: Function;
|
|
365
|
-
get: Function;
|
|
366
|
-
env: string[] | string;
|
|
367
|
-
};
|
|
302
|
+
tags: import("pacc").AttributeDefinition;
|
|
368
303
|
};
|
|
369
304
|
};
|
|
370
305
|
specializations: {};
|
|
@@ -385,37 +320,24 @@ export class KeaService extends Service {
|
|
|
385
320
|
env?: string[] | string;
|
|
386
321
|
};
|
|
387
322
|
weight: {
|
|
388
|
-
writable: boolean;
|
|
389
|
-
default: number;
|
|
390
323
|
type: string;
|
|
391
324
|
isKey: boolean;
|
|
325
|
+
writable: boolean;
|
|
392
326
|
mandatory: boolean;
|
|
393
327
|
collection: boolean;
|
|
394
328
|
private?: boolean;
|
|
395
329
|
depends?: string;
|
|
396
330
|
description?: string;
|
|
331
|
+
default?: any;
|
|
397
332
|
set?: Function;
|
|
398
333
|
get?: Function;
|
|
399
334
|
env?: string[] | string;
|
|
400
335
|
};
|
|
401
|
-
systemd:
|
|
402
|
-
writable: boolean;
|
|
403
|
-
collection: boolean;
|
|
404
|
-
type: string;
|
|
405
|
-
isKey: boolean;
|
|
406
|
-
mandatory: boolean;
|
|
407
|
-
private: boolean;
|
|
408
|
-
depends: string;
|
|
409
|
-
description: string;
|
|
410
|
-
default: any;
|
|
411
|
-
set: Function;
|
|
412
|
-
get: Function;
|
|
413
|
-
env: string[] | string;
|
|
414
|
-
};
|
|
336
|
+
systemd: import("pacc").AttributeDefinition;
|
|
415
337
|
port: {
|
|
416
|
-
writable: boolean;
|
|
417
338
|
type: string;
|
|
418
339
|
isKey: boolean;
|
|
340
|
+
writable: boolean;
|
|
419
341
|
mandatory: boolean;
|
|
420
342
|
collection: boolean;
|
|
421
343
|
private?: boolean;
|
|
@@ -662,7 +584,7 @@ export class KeaService extends Service {
|
|
|
662
584
|
preparePackages(dir: any): AsyncGenerator<{
|
|
663
585
|
dir: any;
|
|
664
586
|
sources: FileContentProvider[];
|
|
665
|
-
outputs: Set<typeof import("npm-pkgbuild").
|
|
587
|
+
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
666
588
|
properties: {
|
|
667
589
|
name: string;
|
|
668
590
|
description: string;
|
|
@@ -43,20 +43,7 @@ export class MosquittoService extends Service {
|
|
|
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 MosquittoService extends Service {
|
|
|
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 MosquittoService extends Service {
|
|
|
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;
|
|
@@ -307,20 +268,7 @@ export class MosquittoService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class MosquittoService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class MosquittoService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|
|
@@ -569,7 +491,7 @@ export class MosquittoService extends Service {
|
|
|
569
491
|
preparePackages(dir: any): AsyncGenerator<{
|
|
570
492
|
dir: any;
|
|
571
493
|
sources: FileContentProvider[];
|
|
572
|
-
outputs: Set<typeof import("npm-pkgbuild").
|
|
494
|
+
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
573
495
|
properties: {
|
|
574
496
|
name: string;
|
|
575
497
|
description: string;
|