pmcf 3.10.24 → 3.10.26

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.10.24",
3
+ "version": "3.10.26",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "ip-utilties": "^1.4.9",
55
55
  "npm-pkgbuild": "^18.3.0",
56
- "pacc": "^4.28.0",
56
+ "pacc": "^4.29.0",
57
57
  "package-directory": "^8.1.0"
58
58
  },
59
59
  "devDependencies": {
package/types/base.d.mts CHANGED
@@ -27,6 +27,8 @@ export class Base {
27
27
  default?: any;
28
28
  set?: Function;
29
29
  get?: Function;
30
+ values?: Set<any>;
31
+ externalName?: string;
30
32
  env?: string[] | string;
31
33
  };
32
34
  priority: import("pacc").AttributeDefinition;
@@ -28,6 +28,8 @@ export class Cluster extends Host {
28
28
  default?: any;
29
29
  set?: Function;
30
30
  get?: Function;
31
+ values?: Set<any>;
32
+ externalName?: string;
31
33
  env?: string[] | string;
32
34
  };
33
35
  priority: import("pacc").AttributeDefinition;
@@ -91,6 +93,8 @@ export class Cluster extends Host {
91
93
  default?: any;
92
94
  set?: Function;
93
95
  get?: Function;
96
+ values?: Set<any>;
97
+ externalName?: string;
94
98
  env?: string[] | string;
95
99
  };
96
100
  };
@@ -123,6 +127,8 @@ export class Cluster extends Host {
123
127
  default?: any;
124
128
  set?: Function;
125
129
  get?: Function;
130
+ values?: Set<any>;
131
+ externalName?: string;
126
132
  env?: string[] | string;
127
133
  };
128
134
  priority: import("pacc").AttributeDefinition;
@@ -157,6 +163,7 @@ export class Cluster extends Host {
157
163
  default?: any;
158
164
  set?: Function;
159
165
  get?: Function;
166
+ externalName?: string;
160
167
  env?: string[] | string;
161
168
  };
162
169
  "machine-id": import("pacc").AttributeDefinition;
@@ -174,6 +181,7 @@ export class Cluster extends Host {
174
181
  default?: any;
175
182
  set?: Function;
176
183
  get?: Function;
184
+ externalName?: string;
177
185
  env?: string[] | string;
178
186
  };
179
187
  weight: import("pacc").AttributeDefinition;
@@ -193,6 +201,7 @@ export class Cluster extends Host {
193
201
  default?: any;
194
202
  set?: Function;
195
203
  get?: Function;
204
+ externalName?: string;
196
205
  env?: string[] | string;
197
206
  };
198
207
  architecture: {
@@ -208,6 +217,7 @@ export class Cluster extends Host {
208
217
  default?: any;
209
218
  set?: Function;
210
219
  get?: Function;
220
+ externalName?: string;
211
221
  env?: string[] | string;
212
222
  };
213
223
  replaces: import("pacc").AttributeDefinition;
@@ -232,6 +242,8 @@ export class Cluster extends Host {
232
242
  default?: any;
233
243
  set?: Function;
234
244
  get?: Function;
245
+ values?: Set<any>;
246
+ externalName?: string;
235
247
  env?: string[] | string;
236
248
  };
237
249
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -42,6 +42,8 @@ export class ExtraSourceService extends Service {
42
42
  default?: any;
43
43
  set?: Function;
44
44
  get?: Function;
45
+ values?: Set<any>;
46
+ externalName?: string;
45
47
  env?: string[] | string;
46
48
  };
47
49
  priority: import("pacc").AttributeDefinition;
@@ -67,6 +69,8 @@ export class ExtraSourceService extends Service {
67
69
  default?: any;
68
70
  set?: Function;
69
71
  get?: Function;
72
+ values?: Set<any>;
73
+ externalName?: string;
70
74
  env?: string[] | string;
71
75
  };
72
76
  systemd: import("pacc").AttributeDefinition;
@@ -84,6 +88,7 @@ export class ExtraSourceService extends Service {
84
88
  default?: any;
85
89
  set?: Function;
86
90
  get?: Function;
91
+ externalName?: string;
87
92
  env?: string[] | string;
88
93
  };
89
94
  type: import("pacc").AttributeDefinition;
@@ -101,6 +106,8 @@ export class ExtraSourceService extends Service {
101
106
  default?: any;
102
107
  set?: Function;
103
108
  get?: Function;
109
+ values?: Set<any>;
110
+ externalName?: string;
104
111
  env?: string[] | string;
105
112
  };
106
113
  cidrAddresses: import("pacc").AttributeDefinition;
package/types/host.d.mts CHANGED
@@ -26,6 +26,8 @@ export class Host extends ServiceOwner {
26
26
  default?: any;
27
27
  set?: Function;
28
28
  get?: Function;
29
+ values?: Set<any>;
30
+ externalName?: string;
29
31
  env?: string[] | string;
30
32
  };
31
33
  priority: import("pacc").AttributeDefinition;
@@ -60,6 +62,7 @@ export class Host extends ServiceOwner {
60
62
  default?: any;
61
63
  set?: Function;
62
64
  get?: Function;
65
+ externalName?: string;
63
66
  env?: string[] | string;
64
67
  };
65
68
  "machine-id": import("pacc").AttributeDefinition;
@@ -77,6 +80,7 @@ export class Host extends ServiceOwner {
77
80
  default?: any;
78
81
  set?: Function;
79
82
  get?: Function;
83
+ externalName?: string;
80
84
  env?: string[] | string;
81
85
  };
82
86
  weight: import("pacc").AttributeDefinition;
@@ -96,6 +100,7 @@ export class Host extends ServiceOwner {
96
100
  default?: any;
97
101
  set?: Function;
98
102
  get?: Function;
103
+ externalName?: string;
99
104
  env?: string[] | string;
100
105
  };
101
106
  architecture: {
@@ -111,6 +116,7 @@ export class Host extends ServiceOwner {
111
116
  default?: any;
112
117
  set?: Function;
113
118
  get?: Function;
119
+ externalName?: string;
114
120
  env?: string[] | string;
115
121
  };
116
122
  replaces: import("pacc").AttributeDefinition;
@@ -135,6 +141,8 @@ export class Host extends ServiceOwner {
135
141
  default?: any;
136
142
  set?: Function;
137
143
  get?: Function;
144
+ values?: Set<any>;
145
+ externalName?: string;
138
146
  env?: string[] | string;
139
147
  };
140
148
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -28,6 +28,8 @@ export class Location extends Owner {
28
28
  default?: any;
29
29
  set?: Function;
30
30
  get?: Function;
31
+ values?: Set<any>;
32
+ externalName?: string;
31
33
  env?: string[] | string;
32
34
  };
33
35
  priority: import("pacc").AttributeDefinition;
@@ -91,6 +93,8 @@ export class Location extends Owner {
91
93
  default?: any;
92
94
  set?: Function;
93
95
  get?: Function;
96
+ values?: Set<any>;
97
+ externalName?: string;
94
98
  env?: string[] | string;
95
99
  };
96
100
  };
@@ -123,6 +127,8 @@ export class Location extends Owner {
123
127
  default?: any;
124
128
  set?: Function;
125
129
  get?: Function;
130
+ values?: Set<any>;
131
+ externalName?: string;
126
132
  env?: string[] | string;
127
133
  };
128
134
  priority: import("pacc").AttributeDefinition;
@@ -186,6 +192,8 @@ export class Location extends Owner {
186
192
  default?: any;
187
193
  set?: Function;
188
194
  get?: Function;
195
+ values?: Set<any>;
196
+ externalName?: string;
189
197
  env?: string[] | string;
190
198
  };
191
199
  };
@@ -42,6 +42,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
42
42
  default?: any;
43
43
  set?: Function;
44
44
  get?: Function;
45
+ values?: Set<any>;
46
+ externalName?: string;
45
47
  env?: string[] | string;
46
48
  };
47
49
  priority: import("pacc").AttributeDefinition;
@@ -71,6 +73,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
71
73
  default?: any;
72
74
  set?: Function;
73
75
  get?: Function;
76
+ values?: Set<any>;
77
+ externalName?: string;
74
78
  env?: string[] | string;
75
79
  };
76
80
  ipAddresses: {
@@ -85,6 +89,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
85
89
  default?: any;
86
90
  set?: Function;
87
91
  get?: Function;
92
+ values?: Set<any>;
93
+ externalName?: string;
88
94
  env?: string[] | string;
89
95
  };
90
96
  hwaddr: {
@@ -99,6 +105,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
99
105
  default?: any;
100
106
  set?: Function;
101
107
  get?: Function;
108
+ values?: Set<any>;
109
+ externalName?: string;
102
110
  env?: string[] | string;
103
111
  };
104
112
  network: {
@@ -118,6 +126,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
118
126
  default?: any;
119
127
  set?: Function;
120
128
  get?: Function;
129
+ values?: Set<any>;
130
+ externalName?: string;
121
131
  env?: string[] | string;
122
132
  };
123
133
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -137,6 +147,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
137
147
  default?: any;
138
148
  set?: Function;
139
149
  get?: Function;
150
+ externalName?: string;
140
151
  env?: string[] | string;
141
152
  };
142
153
  class: {
@@ -152,6 +163,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
152
163
  default?: any;
153
164
  set?: Function;
154
165
  get?: Function;
166
+ externalName?: string;
155
167
  env?: string[] | string;
156
168
  };
157
169
  kind: {
@@ -167,6 +179,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
167
179
  default?: any;
168
180
  set?: Function;
169
181
  get?: Function;
182
+ externalName?: string;
170
183
  env?: string[] | string;
171
184
  };
172
185
  ssid: import("pacc").AttributeDefinition;
@@ -184,6 +197,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
184
197
  default?: any;
185
198
  set?: Function;
186
199
  get?: Function;
200
+ values?: Set<any>;
201
+ externalName?: string;
187
202
  env?: string[] | string;
188
203
  };
189
204
  mtu: {
@@ -198,6 +213,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
198
213
  description?: string;
199
214
  set?: Function;
200
215
  get?: Function;
216
+ values?: Set<any>;
217
+ externalName?: string;
201
218
  env?: string[] | string;
202
219
  };
203
220
  gateway: {
@@ -236,6 +253,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
236
253
  default?: any;
237
254
  set?: Function;
238
255
  get?: Function;
256
+ values?: Set<any>;
257
+ externalName?: string;
239
258
  env?: string[] | string;
240
259
  };
241
260
  priority: import("pacc").AttributeDefinition;
@@ -265,6 +284,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
265
284
  default?: any;
266
285
  set?: Function;
267
286
  get?: Function;
287
+ values?: Set<any>;
288
+ externalName?: string;
268
289
  env?: string[] | string;
269
290
  };
270
291
  ipAddresses: {
@@ -279,6 +300,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
279
300
  default?: any;
280
301
  set?: Function;
281
302
  get?: Function;
303
+ values?: Set<any>;
304
+ externalName?: string;
282
305
  env?: string[] | string;
283
306
  };
284
307
  hwaddr: {
@@ -293,6 +316,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
293
316
  default?: any;
294
317
  set?: Function;
295
318
  get?: Function;
319
+ values?: Set<any>;
320
+ externalName?: string;
296
321
  env?: string[] | string;
297
322
  };
298
323
  network: {
@@ -312,6 +337,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
312
337
  default?: any;
313
338
  set?: Function;
314
339
  get?: Function;
340
+ values?: Set<any>;
341
+ externalName?: string;
315
342
  env?: string[] | string;
316
343
  };
317
344
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -331,6 +358,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
331
358
  default?: any;
332
359
  set?: Function;
333
360
  get?: Function;
361
+ externalName?: string;
334
362
  env?: string[] | string;
335
363
  };
336
364
  class: {
@@ -346,6 +374,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
346
374
  default?: any;
347
375
  set?: Function;
348
376
  get?: Function;
377
+ externalName?: string;
349
378
  env?: string[] | string;
350
379
  };
351
380
  kind: {
@@ -361,6 +390,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
361
390
  default?: any;
362
391
  set?: Function;
363
392
  get?: Function;
393
+ externalName?: string;
364
394
  env?: string[] | string;
365
395
  };
366
396
  ssid: import("pacc").AttributeDefinition;
@@ -378,6 +408,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
378
408
  default?: any;
379
409
  set?: Function;
380
410
  get?: Function;
411
+ values?: Set<any>;
412
+ externalName?: string;
381
413
  env?: string[] | string;
382
414
  };
383
415
  mtu: {
@@ -392,6 +424,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
392
424
  description?: string;
393
425
  set?: Function;
394
426
  get?: Function;
427
+ values?: Set<any>;
428
+ externalName?: string;
395
429
  env?: string[] | string;
396
430
  };
397
431
  gateway: {
@@ -28,6 +28,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
28
28
  default?: any;
29
29
  set?: Function;
30
30
  get?: Function;
31
+ values?: Set<any>;
32
+ externalName?: string;
31
33
  env?: string[] | string;
32
34
  };
33
35
  priority: import("pacc").AttributeDefinition;
@@ -57,6 +59,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
57
59
  default?: any;
58
60
  set?: Function;
59
61
  get?: Function;
62
+ values?: Set<any>;
63
+ externalName?: string;
60
64
  env?: string[] | string;
61
65
  };
62
66
  ipAddresses: {
@@ -71,6 +75,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
71
75
  default?: any;
72
76
  set?: Function;
73
77
  get?: Function;
78
+ values?: Set<any>;
79
+ externalName?: string;
74
80
  env?: string[] | string;
75
81
  };
76
82
  hwaddr: {
@@ -85,6 +91,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
85
91
  default?: any;
86
92
  set?: Function;
87
93
  get?: Function;
94
+ values?: Set<any>;
95
+ externalName?: string;
88
96
  env?: string[] | string;
89
97
  };
90
98
  network: {
@@ -104,6 +112,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
104
112
  default?: any;
105
113
  set?: Function;
106
114
  get?: Function;
115
+ values?: Set<any>;
116
+ externalName?: string;
107
117
  env?: string[] | string;
108
118
  };
109
119
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -123,6 +133,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
123
133
  default?: any;
124
134
  set?: Function;
125
135
  get?: Function;
136
+ externalName?: string;
126
137
  env?: string[] | string;
127
138
  };
128
139
  class: {
@@ -138,6 +149,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
138
149
  default?: any;
139
150
  set?: Function;
140
151
  get?: Function;
152
+ externalName?: string;
141
153
  env?: string[] | string;
142
154
  };
143
155
  kind: {
@@ -153,6 +165,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
153
165
  default?: any;
154
166
  set?: Function;
155
167
  get?: Function;
168
+ externalName?: string;
156
169
  env?: string[] | string;
157
170
  };
158
171
  ssid: import("pacc").AttributeDefinition;
@@ -170,6 +183,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
170
183
  default?: any;
171
184
  set?: Function;
172
185
  get?: Function;
186
+ values?: Set<any>;
187
+ externalName?: string;
173
188
  env?: string[] | string;
174
189
  };
175
190
  mtu: {
@@ -184,6 +199,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
184
199
  description?: string;
185
200
  set?: Function;
186
201
  get?: Function;
202
+ values?: Set<any>;
203
+ externalName?: string;
187
204
  env?: string[] | string;
188
205
  };
189
206
  gateway: {
@@ -222,6 +239,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
222
239
  default?: any;
223
240
  set?: Function;
224
241
  get?: Function;
242
+ values?: Set<any>;
243
+ externalName?: string;
225
244
  env?: string[] | string;
226
245
  };
227
246
  priority: import("pacc").AttributeDefinition;
@@ -251,6 +270,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
251
270
  default?: any;
252
271
  set?: Function;
253
272
  get?: Function;
273
+ values?: Set<any>;
274
+ externalName?: string;
254
275
  env?: string[] | string;
255
276
  };
256
277
  ipAddresses: {
@@ -265,6 +286,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
265
286
  default?: any;
266
287
  set?: Function;
267
288
  get?: Function;
289
+ values?: Set<any>;
290
+ externalName?: string;
268
291
  env?: string[] | string;
269
292
  };
270
293
  hwaddr: {
@@ -279,6 +302,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
279
302
  default?: any;
280
303
  set?: Function;
281
304
  get?: Function;
305
+ values?: Set<any>;
306
+ externalName?: string;
282
307
  env?: string[] | string;
283
308
  };
284
309
  network: {
@@ -298,6 +323,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
298
323
  default?: any;
299
324
  set?: Function;
300
325
  get?: Function;
326
+ values?: Set<any>;
327
+ externalName?: string;
301
328
  env?: string[] | string;
302
329
  };
303
330
  cidrAddresses: import("pacc").AttributeDefinition;
@@ -317,6 +344,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
317
344
  default?: any;
318
345
  set?: Function;
319
346
  get?: Function;
347
+ externalName?: string;
320
348
  env?: string[] | string;
321
349
  };
322
350
  class: {
@@ -332,6 +360,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
332
360
  default?: any;
333
361
  set?: Function;
334
362
  get?: Function;
363
+ externalName?: string;
335
364
  env?: string[] | string;
336
365
  };
337
366
  kind: {
@@ -347,6 +376,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
347
376
  default?: any;
348
377
  set?: Function;
349
378
  get?: Function;
379
+ externalName?: string;
350
380
  env?: string[] | string;
351
381
  };
352
382
  ssid: import("pacc").AttributeDefinition;
@@ -364,6 +394,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
364
394
  default?: any;
365
395
  set?: Function;
366
396
  get?: Function;
397
+ values?: Set<any>;
398
+ externalName?: string;
367
399
  env?: string[] | string;
368
400
  };
369
401
  mtu: {
@@ -378,6 +410,8 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
378
410
  description?: string;
379
411
  set?: Function;
380
412
  get?: Function;
413
+ values?: Set<any>;
414
+ externalName?: string;
381
415
  env?: string[] | string;
382
416
  };
383
417
  gateway: {