pmcf 3.10.0 → 3.10.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.
- package/package.json +2 -2
- package/src/base.mjs +3 -3
- package/src/cluster.mjs +1 -1
- package/src/extra-source-service.mjs +1 -1
- package/src/filter.mjs +1 -1
- package/src/host.mjs +3 -8
- package/src/location.mjs +1 -1
- package/src/network-interfaces/ethernet.mjs +1 -1
- package/src/network-interfaces/loopback.mjs +1 -1
- package/src/network-interfaces/network-interface.mjs +8 -8
- package/src/network-interfaces/tun.mjs +1 -1
- package/src/network-interfaces/wireguard.mjs +1 -1
- package/src/network-interfaces/wlan.mjs +1 -1
- package/src/network-support.mjs +2 -2
- package/src/network.mjs +3 -3
- package/src/owner.mjs +1 -1
- package/src/root.mjs +1 -1
- package/src/service.mjs +6 -6
- package/src/services/bind.mjs +25 -20
- package/src/services/chrony.mjs +1 -1
- package/src/services/headscale.mjs +1 -1
- package/src/services/influxdb.mjs +2 -2
- package/src/services/kea.mjs +2 -2
- package/src/services/mosquitto.mjs +3 -3
- package/src/services/openldap.mjs +4 -4
- package/src/services/systemd-journal-remote.mjs +1 -1
- package/src/services/systemd-journal-upload.mjs +1 -1
- package/src/services/systemd-journal.mjs +1 -1
- package/src/services/systemd-resolved.mjs +1 -1
- package/src/services/systemd-timesyncd.mjs +1 -1
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +8 -7
- package/types/base.d.mts +1 -1
- package/types/cluster.d.mts +6 -6
- package/types/extra-source-service.d.mts +4 -4
- package/types/host.d.mts +2 -2
- package/types/location.d.mts +7 -7
- package/types/network-interfaces/ethernet.d.mts +6 -6
- package/types/network-interfaces/loopback.d.mts +5 -5
- package/types/network-interfaces/network-interface.d.mts +4 -4
- package/types/network-interfaces/tun.d.mts +5 -5
- package/types/network-interfaces/wireguard.d.mts +5 -5
- package/types/network-interfaces/wlan.d.mts +8 -8
- package/types/network-support.d.mts +2 -2
- package/types/network.d.mts +4 -4
- package/types/owner.d.mts +3 -3
- package/types/root.d.mts +8 -8
- package/types/service.d.mts +6 -6
- package/types/services/bind.d.mts +11 -11
- package/types/services/chrony.d.mts +6 -6
- package/types/services/headscale.d.mts +6 -6
- package/types/services/influxdb.d.mts +5 -5
- package/types/services/kea.d.mts +5 -5
- package/types/services/mosquitto.d.mts +6 -6
- package/types/services/openldap.d.mts +6 -6
- package/types/services/systemd-journal-remote.d.mts +5 -5
- package/types/services/systemd-journal-upload.d.mts +5 -5
- package/types/services/systemd-journal.d.mts +5 -5
- package/types/services/systemd-resolved.d.mts +6 -6
- package/types/services/systemd-timesyncd.d.mts +6 -6
- package/types/subnet.d.mts +1 -1
package/types/base.d.mts
CHANGED
package/types/cluster.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ export class Cluster extends Host {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -50,7 +50,7 @@ export class Cluster extends Host {
|
|
|
50
50
|
tags: import("pacc").AttributeDefinition;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
53
|
-
|
|
53
|
+
attributes: {
|
|
54
54
|
networks: {
|
|
55
55
|
type: string;
|
|
56
56
|
collection: boolean;
|
|
@@ -72,7 +72,7 @@ export class Cluster extends Host {
|
|
|
72
72
|
owners: string[];
|
|
73
73
|
priority: number;
|
|
74
74
|
constructWithIdentifierOnly: boolean;
|
|
75
|
-
|
|
75
|
+
attributes: {
|
|
76
76
|
address: {
|
|
77
77
|
isKey: boolean;
|
|
78
78
|
type: string;
|
|
@@ -233,7 +233,7 @@ export class Cluster extends Host {
|
|
|
233
233
|
extends: {
|
|
234
234
|
name: string;
|
|
235
235
|
owners: any[];
|
|
236
|
-
|
|
236
|
+
attributes: {
|
|
237
237
|
owner: {
|
|
238
238
|
type: string;
|
|
239
239
|
collection: boolean;
|
|
@@ -275,7 +275,7 @@ export class Cluster extends Host {
|
|
|
275
275
|
tags: import("pacc").AttributeDefinition;
|
|
276
276
|
};
|
|
277
277
|
};
|
|
278
|
-
|
|
278
|
+
attributes: {
|
|
279
279
|
networkInterfaces: {
|
|
280
280
|
type: string;
|
|
281
281
|
collection: boolean;
|
|
@@ -565,7 +565,7 @@ export class Cluster extends Host {
|
|
|
565
565
|
};
|
|
566
566
|
};
|
|
567
567
|
};
|
|
568
|
-
|
|
568
|
+
attributes: {
|
|
569
569
|
routerId: {
|
|
570
570
|
type: string;
|
|
571
571
|
isKey: boolean;
|
|
@@ -3,7 +3,7 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
3
3
|
export let owners: string[];
|
|
4
4
|
export { ServiceTypeDefinition as extends };
|
|
5
5
|
export let priority: number;
|
|
6
|
-
export namespace
|
|
6
|
+
export namespace attributes {
|
|
7
7
|
namespace source {
|
|
8
8
|
export { networkAddressType as type };
|
|
9
9
|
export let collection: boolean;
|
|
@@ -22,7 +22,7 @@ export class ExtraSourceService extends Service {
|
|
|
22
22
|
extends: {
|
|
23
23
|
name: string;
|
|
24
24
|
owners: any[];
|
|
25
|
-
|
|
25
|
+
attributes: {
|
|
26
26
|
owner: {
|
|
27
27
|
type: string;
|
|
28
28
|
collection: boolean;
|
|
@@ -66,7 +66,7 @@ export class ExtraSourceService extends Service {
|
|
|
66
66
|
};
|
|
67
67
|
specializations: {};
|
|
68
68
|
factoryFor(owner: any, value: any): any;
|
|
69
|
-
|
|
69
|
+
attributes: {
|
|
70
70
|
alias: {
|
|
71
71
|
type: string;
|
|
72
72
|
isKey: boolean;
|
|
@@ -214,7 +214,7 @@ export class ExtraSourceService extends Service {
|
|
|
214
214
|
};
|
|
215
215
|
};
|
|
216
216
|
priority: number;
|
|
217
|
-
|
|
217
|
+
attributes: {
|
|
218
218
|
source: {
|
|
219
219
|
type: string[];
|
|
220
220
|
collection: boolean;
|
package/types/host.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ export class Host extends ServiceOwner {
|
|
|
6
6
|
extends: {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: any[];
|
|
9
|
-
|
|
9
|
+
attributes: {
|
|
10
10
|
owner: {
|
|
11
11
|
type: string;
|
|
12
12
|
collection: boolean;
|
|
@@ -48,7 +48,7 @@ export class Host extends ServiceOwner {
|
|
|
48
48
|
tags: import("pacc").AttributeDefinition;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
attributes: {
|
|
52
52
|
networkInterfaces: {
|
|
53
53
|
type: string;
|
|
54
54
|
collection: boolean;
|
package/types/location.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ export class Location extends Owner {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -50,7 +50,7 @@ export class Location extends Owner {
|
|
|
50
50
|
tags: import("pacc").AttributeDefinition;
|
|
51
51
|
};
|
|
52
52
|
};
|
|
53
|
-
|
|
53
|
+
attributes: {
|
|
54
54
|
networks: {
|
|
55
55
|
type: string;
|
|
56
56
|
collection: boolean;
|
|
@@ -72,7 +72,7 @@ export class Location extends Owner {
|
|
|
72
72
|
owners: string[];
|
|
73
73
|
priority: number;
|
|
74
74
|
constructWithIdentifierOnly: boolean;
|
|
75
|
-
|
|
75
|
+
attributes: {
|
|
76
76
|
address: {
|
|
77
77
|
isKey: boolean;
|
|
78
78
|
type: string;
|
|
@@ -233,7 +233,7 @@ export class Location extends Owner {
|
|
|
233
233
|
extends: {
|
|
234
234
|
name: string;
|
|
235
235
|
owners: any[];
|
|
236
|
-
|
|
236
|
+
attributes: {
|
|
237
237
|
owner: {
|
|
238
238
|
type: string;
|
|
239
239
|
collection: boolean;
|
|
@@ -275,7 +275,7 @@ export class Location extends Owner {
|
|
|
275
275
|
tags: import("pacc").AttributeDefinition;
|
|
276
276
|
};
|
|
277
277
|
};
|
|
278
|
-
|
|
278
|
+
attributes: {
|
|
279
279
|
networks: {
|
|
280
280
|
type: string;
|
|
281
281
|
collection: boolean;
|
|
@@ -297,7 +297,7 @@ export class Location extends Owner {
|
|
|
297
297
|
owners: string[];
|
|
298
298
|
priority: number;
|
|
299
299
|
constructWithIdentifierOnly: boolean;
|
|
300
|
-
|
|
300
|
+
attributes: {
|
|
301
301
|
address: {
|
|
302
302
|
isKey: boolean;
|
|
303
303
|
type: string;
|
|
@@ -450,7 +450,7 @@ export class Location extends Owner {
|
|
|
450
450
|
};
|
|
451
451
|
};
|
|
452
452
|
};
|
|
453
|
-
|
|
453
|
+
attributes: {
|
|
454
454
|
locales: {
|
|
455
455
|
writable: boolean;
|
|
456
456
|
collection: boolean;
|
|
@@ -4,7 +4,7 @@ export namespace EthernetNetworkInterfaceTypeDefinition {
|
|
|
4
4
|
export let owners: string[];
|
|
5
5
|
export { NetworkInterfaceTypeDefinition as extends };
|
|
6
6
|
export let priority: number;
|
|
7
|
-
export namespace
|
|
7
|
+
export namespace attributes {
|
|
8
8
|
namespace arpbridge {
|
|
9
9
|
let type: string;
|
|
10
10
|
let collection: boolean;
|
|
@@ -22,7 +22,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
22
22
|
extends: {
|
|
23
23
|
name: string;
|
|
24
24
|
owners: any[];
|
|
25
|
-
|
|
25
|
+
attributes: {
|
|
26
26
|
owner: {
|
|
27
27
|
type: string;
|
|
28
28
|
collection: boolean;
|
|
@@ -66,7 +66,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
66
66
|
};
|
|
67
67
|
specializations: {};
|
|
68
68
|
factoryFor(owner: any, value: any): any;
|
|
69
|
-
|
|
69
|
+
attributes: {
|
|
70
70
|
services: {
|
|
71
71
|
type: string;
|
|
72
72
|
collection: boolean;
|
|
@@ -307,7 +307,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
307
307
|
extends: {
|
|
308
308
|
name: string;
|
|
309
309
|
owners: any[];
|
|
310
|
-
|
|
310
|
+
attributes: {
|
|
311
311
|
owner: {
|
|
312
312
|
type: string;
|
|
313
313
|
collection: boolean;
|
|
@@ -351,7 +351,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
351
351
|
};
|
|
352
352
|
specializations: {};
|
|
353
353
|
factoryFor(owner: any, value: any): any;
|
|
354
|
-
|
|
354
|
+
attributes: {
|
|
355
355
|
services: {
|
|
356
356
|
type: string;
|
|
357
357
|
collection: boolean;
|
|
@@ -585,7 +585,7 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
585
585
|
};
|
|
586
586
|
};
|
|
587
587
|
priority: number;
|
|
588
|
-
|
|
588
|
+
attributes: {
|
|
589
589
|
arpbridge: {
|
|
590
590
|
type: string;
|
|
591
591
|
collection: boolean;
|
|
@@ -8,7 +8,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
services: {
|
|
57
57
|
type: string;
|
|
58
58
|
collection: boolean;
|
|
@@ -293,7 +293,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
293
293
|
extends: {
|
|
294
294
|
name: string;
|
|
295
295
|
owners: any[];
|
|
296
|
-
|
|
296
|
+
attributes: {
|
|
297
297
|
owner: {
|
|
298
298
|
type: string;
|
|
299
299
|
collection: boolean;
|
|
@@ -337,7 +337,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
337
337
|
};
|
|
338
338
|
specializations: {};
|
|
339
339
|
factoryFor(owner: any, value: any): any;
|
|
340
|
-
|
|
340
|
+
attributes: {
|
|
341
341
|
services: {
|
|
342
342
|
type: string;
|
|
343
343
|
collection: boolean;
|
|
@@ -571,7 +571,7 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
|
|
|
571
571
|
};
|
|
572
572
|
};
|
|
573
573
|
priority: number;
|
|
574
|
-
|
|
574
|
+
attributes: {};
|
|
575
575
|
};
|
|
576
576
|
static isCommonName(name: any): any;
|
|
577
577
|
get kind(): string;
|
|
@@ -5,7 +5,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
5
5
|
let _extends: {
|
|
6
6
|
name: string;
|
|
7
7
|
owners: any[];
|
|
8
|
-
|
|
8
|
+
attributes: {
|
|
9
9
|
owner: {
|
|
10
10
|
type: string;
|
|
11
11
|
collection: boolean;
|
|
@@ -50,7 +50,7 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
50
50
|
export { _extends as extends };
|
|
51
51
|
export let specializations: {};
|
|
52
52
|
export function factoryFor(owner: any, value: any): any;
|
|
53
|
-
export let
|
|
53
|
+
export let attributes: {
|
|
54
54
|
services: {
|
|
55
55
|
type: string;
|
|
56
56
|
collection: boolean;
|
|
@@ -291,7 +291,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
291
291
|
extends: {
|
|
292
292
|
name: string;
|
|
293
293
|
owners: any[];
|
|
294
|
-
|
|
294
|
+
attributes: {
|
|
295
295
|
owner: {
|
|
296
296
|
type: string;
|
|
297
297
|
collection: boolean;
|
|
@@ -335,7 +335,7 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
335
335
|
};
|
|
336
336
|
specializations: {};
|
|
337
337
|
factoryFor(owner: any, value: any): any;
|
|
338
|
-
|
|
338
|
+
attributes: {
|
|
339
339
|
services: {
|
|
340
340
|
type: string;
|
|
341
341
|
collection: boolean;
|
|
@@ -8,7 +8,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
services: {
|
|
57
57
|
type: string;
|
|
58
58
|
collection: boolean;
|
|
@@ -293,7 +293,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
293
293
|
extends: {
|
|
294
294
|
name: string;
|
|
295
295
|
owners: any[];
|
|
296
|
-
|
|
296
|
+
attributes: {
|
|
297
297
|
owner: {
|
|
298
298
|
type: string;
|
|
299
299
|
collection: boolean;
|
|
@@ -337,7 +337,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
337
337
|
};
|
|
338
338
|
specializations: {};
|
|
339
339
|
factoryFor(owner: any, value: any): any;
|
|
340
|
-
|
|
340
|
+
attributes: {
|
|
341
341
|
services: {
|
|
342
342
|
type: string;
|
|
343
343
|
collection: boolean;
|
|
@@ -571,7 +571,7 @@ export class TUNNetworkInterface extends NetworkInterface {
|
|
|
571
571
|
};
|
|
572
572
|
};
|
|
573
573
|
priority: number;
|
|
574
|
-
|
|
574
|
+
attributes: {};
|
|
575
575
|
};
|
|
576
576
|
get kind(): string;
|
|
577
577
|
}
|
|
@@ -8,7 +8,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
services: {
|
|
57
57
|
type: string;
|
|
58
58
|
collection: boolean;
|
|
@@ -293,7 +293,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
293
293
|
extends: {
|
|
294
294
|
name: string;
|
|
295
295
|
owners: any[];
|
|
296
|
-
|
|
296
|
+
attributes: {
|
|
297
297
|
owner: {
|
|
298
298
|
type: string;
|
|
299
299
|
collection: boolean;
|
|
@@ -337,7 +337,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
337
337
|
};
|
|
338
338
|
specializations: {};
|
|
339
339
|
factoryFor(owner: any, value: any): any;
|
|
340
|
-
|
|
340
|
+
attributes: {
|
|
341
341
|
services: {
|
|
342
342
|
type: string;
|
|
343
343
|
collection: boolean;
|
|
@@ -571,7 +571,7 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
571
571
|
};
|
|
572
572
|
};
|
|
573
573
|
priority: number;
|
|
574
|
-
|
|
574
|
+
attributes: {};
|
|
575
575
|
};
|
|
576
576
|
get kind(): string;
|
|
577
577
|
}
|
|
@@ -8,7 +8,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
8
8
|
extends: {
|
|
9
9
|
name: string;
|
|
10
10
|
owners: any[];
|
|
11
|
-
|
|
11
|
+
attributes: {
|
|
12
12
|
owner: {
|
|
13
13
|
type: string;
|
|
14
14
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
52
52
|
};
|
|
53
53
|
specializations: {};
|
|
54
54
|
factoryFor(owner: any, value: any): any;
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
services: {
|
|
57
57
|
type: string;
|
|
58
58
|
collection: boolean;
|
|
@@ -295,7 +295,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
295
295
|
extends: {
|
|
296
296
|
name: string;
|
|
297
297
|
owners: any[];
|
|
298
|
-
|
|
298
|
+
attributes: {
|
|
299
299
|
owner: {
|
|
300
300
|
type: string;
|
|
301
301
|
collection: boolean;
|
|
@@ -339,7 +339,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
339
339
|
};
|
|
340
340
|
specializations: {};
|
|
341
341
|
factoryFor(owner: any, value: any): any;
|
|
342
|
-
|
|
342
|
+
attributes: {
|
|
343
343
|
services: {
|
|
344
344
|
type: string;
|
|
345
345
|
collection: boolean;
|
|
@@ -580,7 +580,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
580
580
|
extends: {
|
|
581
581
|
name: string;
|
|
582
582
|
owners: any[];
|
|
583
|
-
|
|
583
|
+
attributes: {
|
|
584
584
|
owner: {
|
|
585
585
|
type: string;
|
|
586
586
|
collection: boolean;
|
|
@@ -624,7 +624,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
624
624
|
};
|
|
625
625
|
specializations: {};
|
|
626
626
|
factoryFor(owner: any, value: any): any;
|
|
627
|
-
|
|
627
|
+
attributes: {
|
|
628
628
|
services: {
|
|
629
629
|
type: string;
|
|
630
630
|
collection: boolean;
|
|
@@ -858,7 +858,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
858
858
|
};
|
|
859
859
|
};
|
|
860
860
|
priority: number;
|
|
861
|
-
|
|
861
|
+
attributes: {
|
|
862
862
|
arpbridge: {
|
|
863
863
|
type: string;
|
|
864
864
|
collection: boolean;
|
|
@@ -867,7 +867,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
867
867
|
};
|
|
868
868
|
};
|
|
869
869
|
priority: number;
|
|
870
|
-
|
|
870
|
+
attributes: {
|
|
871
871
|
ssid: import("pacc").AttributeDefinition;
|
|
872
872
|
psk: {
|
|
873
873
|
writable: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const networkAddressType: string[];
|
|
2
|
-
export namespace
|
|
2
|
+
export namespace networkAttributes {
|
|
3
3
|
export let scope: {
|
|
4
4
|
values: string[];
|
|
5
5
|
type: string;
|
|
@@ -110,7 +110,7 @@ export namespace networkProperties {
|
|
|
110
110
|
}
|
|
111
111
|
export { boolean_attribute_writable as multicastDNS };
|
|
112
112
|
}
|
|
113
|
-
export namespace
|
|
113
|
+
export namespace networkAddressAttributes {
|
|
114
114
|
let hostName: {
|
|
115
115
|
writable: boolean;
|
|
116
116
|
type: string;
|
package/types/network.d.mts
CHANGED
|
@@ -10,7 +10,7 @@ export class Network extends Owner {
|
|
|
10
10
|
extends: {
|
|
11
11
|
name: string;
|
|
12
12
|
owners: any[];
|
|
13
|
-
|
|
13
|
+
attributes: {
|
|
14
14
|
owner: {
|
|
15
15
|
type: string;
|
|
16
16
|
collection: boolean;
|
|
@@ -52,7 +52,7 @@ export class Network extends Owner {
|
|
|
52
52
|
tags: import("pacc").AttributeDefinition;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
-
|
|
55
|
+
attributes: {
|
|
56
56
|
networks: {
|
|
57
57
|
type: string;
|
|
58
58
|
collection: boolean;
|
|
@@ -74,7 +74,7 @@ export class Network extends Owner {
|
|
|
74
74
|
owners: string[];
|
|
75
75
|
priority: number;
|
|
76
76
|
constructWithIdentifierOnly: boolean;
|
|
77
|
-
|
|
77
|
+
attributes: {
|
|
78
78
|
address: {
|
|
79
79
|
isKey: boolean;
|
|
80
80
|
type: string;
|
|
@@ -227,7 +227,7 @@ export class Network extends Owner {
|
|
|
227
227
|
};
|
|
228
228
|
};
|
|
229
229
|
};
|
|
230
|
-
|
|
230
|
+
attributes: {
|
|
231
231
|
bridge: {
|
|
232
232
|
type: string;
|
|
233
233
|
collection: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ export class Owner extends Base {
|
|
|
6
6
|
extends: {
|
|
7
7
|
name: string;
|
|
8
8
|
owners: any[];
|
|
9
|
-
|
|
9
|
+
attributes: {
|
|
10
10
|
owner: {
|
|
11
11
|
type: string;
|
|
12
12
|
collection: boolean;
|
|
@@ -48,7 +48,7 @@ export class Owner extends Base {
|
|
|
48
48
|
tags: import("pacc").AttributeDefinition;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
attributes: {
|
|
52
52
|
networks: {
|
|
53
53
|
type: string;
|
|
54
54
|
collection: boolean;
|
|
@@ -70,7 +70,7 @@ export class Owner extends Base {
|
|
|
70
70
|
owners: string[];
|
|
71
71
|
priority: number;
|
|
72
72
|
constructWithIdentifierOnly: boolean;
|
|
73
|
-
|
|
73
|
+
attributes: {
|
|
74
74
|
address: {
|
|
75
75
|
isKey: boolean;
|
|
76
76
|
type: string;
|
package/types/root.d.mts
CHANGED
|
@@ -12,7 +12,7 @@ export class Root extends Location {
|
|
|
12
12
|
extends: {
|
|
13
13
|
name: string;
|
|
14
14
|
owners: any[];
|
|
15
|
-
|
|
15
|
+
attributes: {
|
|
16
16
|
owner: {
|
|
17
17
|
type: string;
|
|
18
18
|
collection: boolean;
|
|
@@ -54,7 +54,7 @@ export class Root extends Location {
|
|
|
54
54
|
tags: import("pacc").AttributeDefinition;
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
|
-
|
|
57
|
+
attributes: {
|
|
58
58
|
networks: {
|
|
59
59
|
type: string;
|
|
60
60
|
collection: boolean;
|
|
@@ -76,7 +76,7 @@ export class Root extends Location {
|
|
|
76
76
|
owners: string[];
|
|
77
77
|
priority: number;
|
|
78
78
|
constructWithIdentifierOnly: boolean;
|
|
79
|
-
|
|
79
|
+
attributes: {
|
|
80
80
|
address: {
|
|
81
81
|
isKey: boolean;
|
|
82
82
|
type: string;
|
|
@@ -237,7 +237,7 @@ export class Root extends Location {
|
|
|
237
237
|
extends: {
|
|
238
238
|
name: string;
|
|
239
239
|
owners: any[];
|
|
240
|
-
|
|
240
|
+
attributes: {
|
|
241
241
|
owner: {
|
|
242
242
|
type: string;
|
|
243
243
|
collection: boolean;
|
|
@@ -279,7 +279,7 @@ export class Root extends Location {
|
|
|
279
279
|
tags: import("pacc").AttributeDefinition;
|
|
280
280
|
};
|
|
281
281
|
};
|
|
282
|
-
|
|
282
|
+
attributes: {
|
|
283
283
|
networks: {
|
|
284
284
|
type: string;
|
|
285
285
|
collection: boolean;
|
|
@@ -301,7 +301,7 @@ export class Root extends Location {
|
|
|
301
301
|
owners: string[];
|
|
302
302
|
priority: number;
|
|
303
303
|
constructWithIdentifierOnly: boolean;
|
|
304
|
-
|
|
304
|
+
attributes: {
|
|
305
305
|
address: {
|
|
306
306
|
isKey: boolean;
|
|
307
307
|
type: string;
|
|
@@ -454,7 +454,7 @@ export class Root extends Location {
|
|
|
454
454
|
};
|
|
455
455
|
};
|
|
456
456
|
};
|
|
457
|
-
|
|
457
|
+
attributes: {
|
|
458
458
|
locales: {
|
|
459
459
|
writable: boolean;
|
|
460
460
|
collection: boolean;
|
|
@@ -471,7 +471,7 @@ export class Root extends Location {
|
|
|
471
471
|
};
|
|
472
472
|
};
|
|
473
473
|
};
|
|
474
|
-
|
|
474
|
+
attributes: {};
|
|
475
475
|
};
|
|
476
476
|
constructor(directory: any);
|
|
477
477
|
get fullName(): string;
|
package/types/service.d.mts
CHANGED
|
@@ -16,7 +16,7 @@ export function serviceEndpoints(sources: any, options?: {
|
|
|
16
16
|
limit?: number;
|
|
17
17
|
join?: string;
|
|
18
18
|
}): string | any;
|
|
19
|
-
export namespace
|
|
19
|
+
export namespace endpointAttributes {
|
|
20
20
|
export let port: {
|
|
21
21
|
type: string;
|
|
22
22
|
isKey: boolean;
|
|
@@ -68,7 +68,7 @@ export namespace EndpointTypeDefinition {
|
|
|
68
68
|
export let owners: string[];
|
|
69
69
|
export let priority: number;
|
|
70
70
|
export let specializations: {};
|
|
71
|
-
export {
|
|
71
|
+
export { endpointAttributes as attributes };
|
|
72
72
|
}
|
|
73
73
|
export namespace ServiceTypeDefinition {
|
|
74
74
|
let name_1: string;
|
|
@@ -80,7 +80,7 @@ export namespace ServiceTypeDefinition {
|
|
|
80
80
|
let _extends: {
|
|
81
81
|
name: string;
|
|
82
82
|
owners: any[];
|
|
83
|
-
|
|
83
|
+
attributes: {
|
|
84
84
|
owner: {
|
|
85
85
|
type: string;
|
|
86
86
|
collection: boolean;
|
|
@@ -126,7 +126,7 @@ export namespace ServiceTypeDefinition {
|
|
|
126
126
|
let specializations_1: {};
|
|
127
127
|
export { specializations_1 as specializations };
|
|
128
128
|
export function factoryFor(owner: any, value: any): any;
|
|
129
|
-
export let
|
|
129
|
+
export let attributes: {
|
|
130
130
|
alias: {
|
|
131
131
|
type: string;
|
|
132
132
|
isKey: boolean;
|
|
@@ -281,7 +281,7 @@ export class Service extends Base {
|
|
|
281
281
|
extends: {
|
|
282
282
|
name: string;
|
|
283
283
|
owners: any[];
|
|
284
|
-
|
|
284
|
+
attributes: {
|
|
285
285
|
owner: {
|
|
286
286
|
type: string;
|
|
287
287
|
collection: boolean;
|
|
@@ -325,7 +325,7 @@ export class Service extends Base {
|
|
|
325
325
|
};
|
|
326
326
|
specializations: {};
|
|
327
327
|
factoryFor(owner: any, value: any): any;
|
|
328
|
-
|
|
328
|
+
attributes: {
|
|
329
329
|
alias: {
|
|
330
330
|
type: string;
|
|
331
331
|
isKey: boolean;
|