pmcf 2.74.4 → 3.0.0
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 +1 -1
- package/src/base.mjs +5 -7
- package/src/subnet.mjs +1 -1
- package/src/types.mjs +1 -1
- package/types/base.d.mts +25 -9
- package/types/cluster.d.mts +51 -20
- package/types/extra-source-service.d.mts +25 -9
- package/types/host.d.mts +25 -9
- package/types/location.d.mts +52 -22
- package/types/network-interfaces/ethernet.d.mts +50 -18
- package/types/network-interfaces/loopback.d.mts +50 -18
- package/types/network-interfaces/network-interface.d.mts +50 -18
- package/types/network-interfaces/wireguard.d.mts +50 -18
- package/types/network-interfaces/wlan.d.mts +75 -27
- package/types/network.d.mts +26 -11
- package/types/owner.d.mts +26 -11
- package/types/root.d.mts +52 -22
- package/types/service.d.mts +50 -18
- package/types/services/bind.d.mts +50 -18
- package/types/services/chrony.d.mts +50 -18
- package/types/services/influxdb.d.mts +50 -18
- package/types/services/kea.d.mts +50 -18
- package/types/services/mosquitto.d.mts +50 -18
- package/types/services/openldap.d.mts +50 -18
- package/types/services/systemd-journal-remote.d.mts +50 -18
- package/types/services/systemd-journal-upload.d.mts +50 -18
- package/types/services/systemd-journal.d.mts +50 -18
- package/types/services/systemd-resolved.d.mts +50 -18
- package/types/services/systemd-timesyncd.d.mts +50 -18
- package/types/subnet.d.mts +1 -2
|
@@ -11,16 +11,22 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
11
11
|
collection: boolean;
|
|
12
12
|
writeable: boolean;
|
|
13
13
|
};
|
|
14
|
-
type:
|
|
15
|
-
type: string;
|
|
16
|
-
collection: boolean;
|
|
17
|
-
writeable: boolean;
|
|
18
|
-
};
|
|
14
|
+
type: import("pacc").AttributeDefinition;
|
|
19
15
|
name: {
|
|
16
|
+
isKey: boolean;
|
|
17
|
+
writeable: boolean;
|
|
20
18
|
type: string;
|
|
19
|
+
writable: boolean;
|
|
20
|
+
mandatory: boolean;
|
|
21
21
|
collection: boolean;
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
private?: boolean;
|
|
23
|
+
depends?: string;
|
|
24
|
+
additionalAttributes: string[];
|
|
25
|
+
description?: string;
|
|
26
|
+
default?: any;
|
|
27
|
+
set?: Function;
|
|
28
|
+
get?: Function;
|
|
29
|
+
env?: string[] | string;
|
|
24
30
|
};
|
|
25
31
|
description: {
|
|
26
32
|
writeable: boolean;
|
|
@@ -76,10 +82,20 @@ export namespace NetworkInterfaceTypeDefinition {
|
|
|
76
82
|
env?: string[] | string;
|
|
77
83
|
};
|
|
78
84
|
disabled: {
|
|
79
|
-
type: string;
|
|
80
|
-
collection: boolean;
|
|
81
85
|
writeable: boolean;
|
|
82
86
|
default: boolean;
|
|
87
|
+
type: string;
|
|
88
|
+
isKey: boolean;
|
|
89
|
+
writable: boolean;
|
|
90
|
+
mandatory: boolean;
|
|
91
|
+
collection: boolean;
|
|
92
|
+
private?: boolean;
|
|
93
|
+
depends?: string;
|
|
94
|
+
additionalAttributes: string[];
|
|
95
|
+
description?: string;
|
|
96
|
+
set?: Function;
|
|
97
|
+
get?: Function;
|
|
98
|
+
env?: string[] | string;
|
|
83
99
|
};
|
|
84
100
|
tags: {
|
|
85
101
|
collection: boolean;
|
|
@@ -373,16 +389,22 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
373
389
|
collection: boolean;
|
|
374
390
|
writeable: boolean;
|
|
375
391
|
};
|
|
376
|
-
type:
|
|
377
|
-
type: string;
|
|
378
|
-
collection: boolean;
|
|
379
|
-
writeable: boolean;
|
|
380
|
-
};
|
|
392
|
+
type: import("pacc").AttributeDefinition;
|
|
381
393
|
name: {
|
|
394
|
+
isKey: boolean;
|
|
395
|
+
writeable: boolean;
|
|
382
396
|
type: string;
|
|
397
|
+
writable: boolean;
|
|
398
|
+
mandatory: boolean;
|
|
383
399
|
collection: boolean;
|
|
384
|
-
|
|
385
|
-
|
|
400
|
+
private?: boolean;
|
|
401
|
+
depends?: string;
|
|
402
|
+
additionalAttributes: string[];
|
|
403
|
+
description?: string;
|
|
404
|
+
default?: any;
|
|
405
|
+
set?: Function;
|
|
406
|
+
get?: Function;
|
|
407
|
+
env?: string[] | string;
|
|
386
408
|
};
|
|
387
409
|
description: {
|
|
388
410
|
writeable: boolean;
|
|
@@ -438,10 +460,20 @@ export class NetworkInterface extends SkeletonNetworkInterface {
|
|
|
438
460
|
env?: string[] | string;
|
|
439
461
|
};
|
|
440
462
|
disabled: {
|
|
441
|
-
type: string;
|
|
442
|
-
collection: boolean;
|
|
443
463
|
writeable: boolean;
|
|
444
464
|
default: boolean;
|
|
465
|
+
type: string;
|
|
466
|
+
isKey: boolean;
|
|
467
|
+
writable: boolean;
|
|
468
|
+
mandatory: boolean;
|
|
469
|
+
collection: boolean;
|
|
470
|
+
private?: boolean;
|
|
471
|
+
depends?: string;
|
|
472
|
+
additionalAttributes: string[];
|
|
473
|
+
description?: string;
|
|
474
|
+
set?: Function;
|
|
475
|
+
get?: Function;
|
|
476
|
+
env?: string[] | string;
|
|
445
477
|
};
|
|
446
478
|
tags: {
|
|
447
479
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -375,16 +391,22 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
375
391
|
collection: boolean;
|
|
376
392
|
writeable: boolean;
|
|
377
393
|
};
|
|
378
|
-
type:
|
|
379
|
-
type: string;
|
|
380
|
-
collection: boolean;
|
|
381
|
-
writeable: boolean;
|
|
382
|
-
};
|
|
394
|
+
type: import("pacc").AttributeDefinition;
|
|
383
395
|
name: {
|
|
396
|
+
isKey: boolean;
|
|
397
|
+
writeable: boolean;
|
|
384
398
|
type: string;
|
|
399
|
+
writable: boolean;
|
|
400
|
+
mandatory: boolean;
|
|
385
401
|
collection: boolean;
|
|
386
|
-
|
|
387
|
-
|
|
402
|
+
private?: boolean;
|
|
403
|
+
depends?: string;
|
|
404
|
+
additionalAttributes: string[];
|
|
405
|
+
description?: string;
|
|
406
|
+
default?: any;
|
|
407
|
+
set?: Function;
|
|
408
|
+
get?: Function;
|
|
409
|
+
env?: string[] | string;
|
|
388
410
|
};
|
|
389
411
|
description: {
|
|
390
412
|
writeable: boolean;
|
|
@@ -440,10 +462,20 @@ export class WireguardNetworkInterface extends SkeletonNetworkInterface {
|
|
|
440
462
|
env?: string[] | string;
|
|
441
463
|
};
|
|
442
464
|
disabled: {
|
|
443
|
-
type: string;
|
|
444
|
-
collection: boolean;
|
|
445
465
|
writeable: boolean;
|
|
446
466
|
default: boolean;
|
|
467
|
+
type: string;
|
|
468
|
+
isKey: boolean;
|
|
469
|
+
writable: boolean;
|
|
470
|
+
mandatory: boolean;
|
|
471
|
+
collection: boolean;
|
|
472
|
+
private?: boolean;
|
|
473
|
+
depends?: string;
|
|
474
|
+
additionalAttributes: string[];
|
|
475
|
+
description?: string;
|
|
476
|
+
set?: Function;
|
|
477
|
+
get?: Function;
|
|
478
|
+
env?: string[] | string;
|
|
447
479
|
};
|
|
448
480
|
tags: {
|
|
449
481
|
collection: boolean;
|
|
@@ -14,16 +14,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
-
type:
|
|
18
|
-
type: string;
|
|
19
|
-
collection: boolean;
|
|
20
|
-
writeable: boolean;
|
|
21
|
-
};
|
|
17
|
+
type: import("pacc").AttributeDefinition;
|
|
22
18
|
name: {
|
|
19
|
+
isKey: boolean;
|
|
20
|
+
writeable: boolean;
|
|
23
21
|
type: string;
|
|
22
|
+
writable: boolean;
|
|
23
|
+
mandatory: boolean;
|
|
24
24
|
collection: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
private?: boolean;
|
|
26
|
+
depends?: string;
|
|
27
|
+
additionalAttributes: string[];
|
|
28
|
+
description?: string;
|
|
29
|
+
default?: any;
|
|
30
|
+
set?: Function;
|
|
31
|
+
get?: Function;
|
|
32
|
+
env?: string[] | string;
|
|
27
33
|
};
|
|
28
34
|
description: {
|
|
29
35
|
writeable: boolean;
|
|
@@ -79,10 +85,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
79
85
|
env?: string[] | string;
|
|
80
86
|
};
|
|
81
87
|
disabled: {
|
|
82
|
-
type: string;
|
|
83
|
-
collection: boolean;
|
|
84
88
|
writeable: boolean;
|
|
85
89
|
default: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
collection: boolean;
|
|
95
|
+
private?: boolean;
|
|
96
|
+
depends?: string;
|
|
97
|
+
additionalAttributes: string[];
|
|
98
|
+
description?: string;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
86
102
|
};
|
|
87
103
|
tags: {
|
|
88
104
|
collection: boolean;
|
|
@@ -377,16 +393,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
377
393
|
collection: boolean;
|
|
378
394
|
writeable: boolean;
|
|
379
395
|
};
|
|
380
|
-
type:
|
|
381
|
-
type: string;
|
|
382
|
-
collection: boolean;
|
|
383
|
-
writeable: boolean;
|
|
384
|
-
};
|
|
396
|
+
type: import("pacc").AttributeDefinition;
|
|
385
397
|
name: {
|
|
398
|
+
isKey: boolean;
|
|
399
|
+
writeable: boolean;
|
|
386
400
|
type: string;
|
|
401
|
+
writable: boolean;
|
|
402
|
+
mandatory: boolean;
|
|
387
403
|
collection: boolean;
|
|
388
|
-
|
|
389
|
-
|
|
404
|
+
private?: boolean;
|
|
405
|
+
depends?: string;
|
|
406
|
+
additionalAttributes: string[];
|
|
407
|
+
description?: string;
|
|
408
|
+
default?: any;
|
|
409
|
+
set?: Function;
|
|
410
|
+
get?: Function;
|
|
411
|
+
env?: string[] | string;
|
|
390
412
|
};
|
|
391
413
|
description: {
|
|
392
414
|
writeable: boolean;
|
|
@@ -442,10 +464,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
442
464
|
env?: string[] | string;
|
|
443
465
|
};
|
|
444
466
|
disabled: {
|
|
445
|
-
type: string;
|
|
446
|
-
collection: boolean;
|
|
447
467
|
writeable: boolean;
|
|
448
468
|
default: boolean;
|
|
469
|
+
type: string;
|
|
470
|
+
isKey: boolean;
|
|
471
|
+
writable: boolean;
|
|
472
|
+
mandatory: boolean;
|
|
473
|
+
collection: boolean;
|
|
474
|
+
private?: boolean;
|
|
475
|
+
depends?: string;
|
|
476
|
+
additionalAttributes: string[];
|
|
477
|
+
description?: string;
|
|
478
|
+
set?: Function;
|
|
479
|
+
get?: Function;
|
|
480
|
+
env?: string[] | string;
|
|
449
481
|
};
|
|
450
482
|
tags: {
|
|
451
483
|
collection: boolean;
|
|
@@ -738,16 +770,22 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
738
770
|
collection: boolean;
|
|
739
771
|
writeable: boolean;
|
|
740
772
|
};
|
|
741
|
-
type:
|
|
742
|
-
type: string;
|
|
743
|
-
collection: boolean;
|
|
744
|
-
writeable: boolean;
|
|
745
|
-
};
|
|
773
|
+
type: import("pacc").AttributeDefinition;
|
|
746
774
|
name: {
|
|
775
|
+
isKey: boolean;
|
|
776
|
+
writeable: boolean;
|
|
747
777
|
type: string;
|
|
778
|
+
writable: boolean;
|
|
779
|
+
mandatory: boolean;
|
|
748
780
|
collection: boolean;
|
|
749
|
-
|
|
750
|
-
|
|
781
|
+
private?: boolean;
|
|
782
|
+
depends?: string;
|
|
783
|
+
additionalAttributes: string[];
|
|
784
|
+
description?: string;
|
|
785
|
+
default?: any;
|
|
786
|
+
set?: Function;
|
|
787
|
+
get?: Function;
|
|
788
|
+
env?: string[] | string;
|
|
751
789
|
};
|
|
752
790
|
description: {
|
|
753
791
|
writeable: boolean;
|
|
@@ -803,10 +841,20 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
|
|
|
803
841
|
env?: string[] | string;
|
|
804
842
|
};
|
|
805
843
|
disabled: {
|
|
806
|
-
type: string;
|
|
807
|
-
collection: boolean;
|
|
808
844
|
writeable: boolean;
|
|
809
845
|
default: boolean;
|
|
846
|
+
type: string;
|
|
847
|
+
isKey: boolean;
|
|
848
|
+
writable: boolean;
|
|
849
|
+
mandatory: boolean;
|
|
850
|
+
collection: boolean;
|
|
851
|
+
private?: boolean;
|
|
852
|
+
depends?: string;
|
|
853
|
+
additionalAttributes: string[];
|
|
854
|
+
description?: string;
|
|
855
|
+
set?: Function;
|
|
856
|
+
get?: Function;
|
|
857
|
+
env?: string[] | string;
|
|
810
858
|
};
|
|
811
859
|
tags: {
|
|
812
860
|
collection: boolean;
|
package/types/network.d.mts
CHANGED
|
@@ -16,16 +16,22 @@ export class Network extends Owner {
|
|
|
16
16
|
collection: boolean;
|
|
17
17
|
writeable: boolean;
|
|
18
18
|
};
|
|
19
|
-
type:
|
|
20
|
-
type: string;
|
|
21
|
-
collection: boolean;
|
|
22
|
-
writeable: boolean;
|
|
23
|
-
};
|
|
19
|
+
type: import("pacc").AttributeDefinition;
|
|
24
20
|
name: {
|
|
21
|
+
isKey: boolean;
|
|
22
|
+
writeable: boolean;
|
|
25
23
|
type: string;
|
|
24
|
+
writable: boolean;
|
|
25
|
+
mandatory: boolean;
|
|
26
26
|
collection: boolean;
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
private?: boolean;
|
|
28
|
+
depends?: string;
|
|
29
|
+
additionalAttributes: string[];
|
|
30
|
+
description?: string;
|
|
31
|
+
default?: any;
|
|
32
|
+
set?: Function;
|
|
33
|
+
get?: Function;
|
|
34
|
+
env?: string[] | string;
|
|
29
35
|
};
|
|
30
36
|
description: {
|
|
31
37
|
writeable: boolean;
|
|
@@ -81,10 +87,20 @@ export class Network extends Owner {
|
|
|
81
87
|
env?: string[] | string;
|
|
82
88
|
};
|
|
83
89
|
disabled: {
|
|
84
|
-
type: string;
|
|
85
|
-
collection: boolean;
|
|
86
90
|
writeable: boolean;
|
|
87
91
|
default: boolean;
|
|
92
|
+
type: string;
|
|
93
|
+
isKey: boolean;
|
|
94
|
+
writable: boolean;
|
|
95
|
+
mandatory: boolean;
|
|
96
|
+
collection: boolean;
|
|
97
|
+
private?: boolean;
|
|
98
|
+
depends?: string;
|
|
99
|
+
additionalAttributes: string[];
|
|
100
|
+
description?: string;
|
|
101
|
+
set?: Function;
|
|
102
|
+
get?: Function;
|
|
103
|
+
env?: string[] | string;
|
|
88
104
|
};
|
|
89
105
|
tags: {
|
|
90
106
|
collection: boolean;
|
|
@@ -128,9 +144,8 @@ export class Network extends Owner {
|
|
|
128
144
|
constructWithIdentifierOnly: boolean;
|
|
129
145
|
properties: {
|
|
130
146
|
address: {
|
|
131
|
-
identifier: boolean;
|
|
132
|
-
type: string;
|
|
133
147
|
isKey: boolean;
|
|
148
|
+
type: string;
|
|
134
149
|
writable: boolean;
|
|
135
150
|
mandatory: boolean;
|
|
136
151
|
collection: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -12,16 +12,22 @@ export class Owner extends Base {
|
|
|
12
12
|
collection: boolean;
|
|
13
13
|
writeable: boolean;
|
|
14
14
|
};
|
|
15
|
-
type:
|
|
16
|
-
type: string;
|
|
17
|
-
collection: boolean;
|
|
18
|
-
writeable: boolean;
|
|
19
|
-
};
|
|
15
|
+
type: import("pacc").AttributeDefinition;
|
|
20
16
|
name: {
|
|
17
|
+
isKey: boolean;
|
|
18
|
+
writeable: boolean;
|
|
21
19
|
type: string;
|
|
20
|
+
writable: boolean;
|
|
21
|
+
mandatory: boolean;
|
|
22
22
|
collection: boolean;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
private?: boolean;
|
|
24
|
+
depends?: string;
|
|
25
|
+
additionalAttributes: string[];
|
|
26
|
+
description?: string;
|
|
27
|
+
default?: any;
|
|
28
|
+
set?: Function;
|
|
29
|
+
get?: Function;
|
|
30
|
+
env?: string[] | string;
|
|
25
31
|
};
|
|
26
32
|
description: {
|
|
27
33
|
writeable: boolean;
|
|
@@ -77,10 +83,20 @@ export class Owner extends Base {
|
|
|
77
83
|
env?: string[] | string;
|
|
78
84
|
};
|
|
79
85
|
disabled: {
|
|
80
|
-
type: string;
|
|
81
|
-
collection: boolean;
|
|
82
86
|
writeable: boolean;
|
|
83
87
|
default: boolean;
|
|
88
|
+
type: string;
|
|
89
|
+
isKey: boolean;
|
|
90
|
+
writable: boolean;
|
|
91
|
+
mandatory: boolean;
|
|
92
|
+
collection: boolean;
|
|
93
|
+
private?: boolean;
|
|
94
|
+
depends?: string;
|
|
95
|
+
additionalAttributes: string[];
|
|
96
|
+
description?: string;
|
|
97
|
+
set?: Function;
|
|
98
|
+
get?: Function;
|
|
99
|
+
env?: string[] | string;
|
|
84
100
|
};
|
|
85
101
|
tags: {
|
|
86
102
|
collection: boolean;
|
|
@@ -124,9 +140,8 @@ export class Owner extends Base {
|
|
|
124
140
|
constructWithIdentifierOnly: boolean;
|
|
125
141
|
properties: {
|
|
126
142
|
address: {
|
|
127
|
-
identifier: boolean;
|
|
128
|
-
type: string;
|
|
129
143
|
isKey: boolean;
|
|
144
|
+
type: string;
|
|
130
145
|
writable: boolean;
|
|
131
146
|
mandatory: boolean;
|
|
132
147
|
collection: boolean;
|
package/types/root.d.mts
CHANGED
|
@@ -18,16 +18,22 @@ export class Root extends Location {
|
|
|
18
18
|
collection: boolean;
|
|
19
19
|
writeable: boolean;
|
|
20
20
|
};
|
|
21
|
-
type:
|
|
22
|
-
type: string;
|
|
23
|
-
collection: boolean;
|
|
24
|
-
writeable: boolean;
|
|
25
|
-
};
|
|
21
|
+
type: import("pacc").AttributeDefinition;
|
|
26
22
|
name: {
|
|
23
|
+
isKey: boolean;
|
|
24
|
+
writeable: boolean;
|
|
27
25
|
type: string;
|
|
26
|
+
writable: boolean;
|
|
27
|
+
mandatory: boolean;
|
|
28
28
|
collection: boolean;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
private?: boolean;
|
|
30
|
+
depends?: string;
|
|
31
|
+
additionalAttributes: string[];
|
|
32
|
+
description?: string;
|
|
33
|
+
default?: any;
|
|
34
|
+
set?: Function;
|
|
35
|
+
get?: Function;
|
|
36
|
+
env?: string[] | string;
|
|
31
37
|
};
|
|
32
38
|
description: {
|
|
33
39
|
writeable: boolean;
|
|
@@ -83,10 +89,20 @@ export class Root extends Location {
|
|
|
83
89
|
env?: string[] | string;
|
|
84
90
|
};
|
|
85
91
|
disabled: {
|
|
86
|
-
type: string;
|
|
87
|
-
collection: boolean;
|
|
88
92
|
writeable: boolean;
|
|
89
93
|
default: boolean;
|
|
94
|
+
type: string;
|
|
95
|
+
isKey: boolean;
|
|
96
|
+
writable: boolean;
|
|
97
|
+
mandatory: boolean;
|
|
98
|
+
collection: boolean;
|
|
99
|
+
private?: boolean;
|
|
100
|
+
depends?: string;
|
|
101
|
+
additionalAttributes: string[];
|
|
102
|
+
description?: string;
|
|
103
|
+
set?: Function;
|
|
104
|
+
get?: Function;
|
|
105
|
+
env?: string[] | string;
|
|
90
106
|
};
|
|
91
107
|
tags: {
|
|
92
108
|
collection: boolean;
|
|
@@ -130,9 +146,8 @@ export class Root extends Location {
|
|
|
130
146
|
constructWithIdentifierOnly: boolean;
|
|
131
147
|
properties: {
|
|
132
148
|
address: {
|
|
133
|
-
identifier: boolean;
|
|
134
|
-
type: string;
|
|
135
149
|
isKey: boolean;
|
|
150
|
+
type: string;
|
|
136
151
|
writable: boolean;
|
|
137
152
|
mandatory: boolean;
|
|
138
153
|
collection: boolean;
|
|
@@ -288,16 +303,22 @@ export class Root extends Location {
|
|
|
288
303
|
collection: boolean;
|
|
289
304
|
writeable: boolean;
|
|
290
305
|
};
|
|
291
|
-
type:
|
|
292
|
-
type: string;
|
|
293
|
-
collection: boolean;
|
|
294
|
-
writeable: boolean;
|
|
295
|
-
};
|
|
306
|
+
type: import("pacc").AttributeDefinition;
|
|
296
307
|
name: {
|
|
308
|
+
isKey: boolean;
|
|
309
|
+
writeable: boolean;
|
|
297
310
|
type: string;
|
|
311
|
+
writable: boolean;
|
|
312
|
+
mandatory: boolean;
|
|
298
313
|
collection: boolean;
|
|
299
|
-
|
|
300
|
-
|
|
314
|
+
private?: boolean;
|
|
315
|
+
depends?: string;
|
|
316
|
+
additionalAttributes: string[];
|
|
317
|
+
description?: string;
|
|
318
|
+
default?: any;
|
|
319
|
+
set?: Function;
|
|
320
|
+
get?: Function;
|
|
321
|
+
env?: string[] | string;
|
|
301
322
|
};
|
|
302
323
|
description: {
|
|
303
324
|
writeable: boolean;
|
|
@@ -353,10 +374,20 @@ export class Root extends Location {
|
|
|
353
374
|
env?: string[] | string;
|
|
354
375
|
};
|
|
355
376
|
disabled: {
|
|
356
|
-
type: string;
|
|
357
|
-
collection: boolean;
|
|
358
377
|
writeable: boolean;
|
|
359
378
|
default: boolean;
|
|
379
|
+
type: string;
|
|
380
|
+
isKey: boolean;
|
|
381
|
+
writable: boolean;
|
|
382
|
+
mandatory: boolean;
|
|
383
|
+
collection: boolean;
|
|
384
|
+
private?: boolean;
|
|
385
|
+
depends?: string;
|
|
386
|
+
additionalAttributes: string[];
|
|
387
|
+
description?: string;
|
|
388
|
+
set?: Function;
|
|
389
|
+
get?: Function;
|
|
390
|
+
env?: string[] | string;
|
|
360
391
|
};
|
|
361
392
|
tags: {
|
|
362
393
|
collection: boolean;
|
|
@@ -400,9 +431,8 @@ export class Root extends Location {
|
|
|
400
431
|
constructWithIdentifierOnly: boolean;
|
|
401
432
|
properties: {
|
|
402
433
|
address: {
|
|
403
|
-
identifier: boolean;
|
|
404
|
-
type: string;
|
|
405
434
|
isKey: boolean;
|
|
435
|
+
type: string;
|
|
406
436
|
writable: boolean;
|
|
407
437
|
mandatory: boolean;
|
|
408
438
|
collection: boolean;
|