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 +2 -2
- package/types/base.d.mts +2 -0
- package/types/cluster.d.mts +12 -0
- package/types/extra-source-service.d.mts +7 -0
- package/types/host.d.mts +8 -0
- package/types/location.d.mts +8 -0
- package/types/network-interfaces/ethernet.d.mts +34 -0
- package/types/network-interfaces/loopback.d.mts +34 -0
- package/types/network-interfaces/network-interface.d.mts +34 -0
- package/types/network-interfaces/tun.d.mts +34 -0
- package/types/network-interfaces/wireguard.d.mts +34 -0
- package/types/network-interfaces/wlan.d.mts +53 -0
- package/types/network-support.d.mts +9 -0
- package/types/network.d.mts +15 -0
- package/types/owner.d.mts +4 -0
- package/types/root.d.mts +8 -0
- package/types/service.d.mts +15 -0
- package/types/services/bind.d.mts +22 -0
- package/types/services/chrony.d.mts +14 -0
- package/types/services/headscale.d.mts +14 -0
- package/types/services/influxdb.d.mts +16 -0
- package/types/services/kea.d.mts +24 -0
- package/types/services/mosquitto.d.mts +18 -0
- package/types/services/openldap.d.mts +14 -0
- package/types/services/systemd-journal-remote.d.mts +14 -0
- package/types/services/systemd-journal-upload.d.mts +14 -0
- package/types/services/systemd-journal.d.mts +14 -0
- package/types/services/systemd-resolved.d.mts +14 -0
- package/types/services/systemd-timesyncd.d.mts +14 -0
|
@@ -28,6 +28,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -53,6 +55,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
53
55
|
default?: any;
|
|
54
56
|
set?: Function;
|
|
55
57
|
get?: Function;
|
|
58
|
+
values?: Set<any>;
|
|
59
|
+
externalName?: string;
|
|
56
60
|
env?: string[] | string;
|
|
57
61
|
};
|
|
58
62
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -70,6 +74,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
70
74
|
default?: any;
|
|
71
75
|
set?: Function;
|
|
72
76
|
get?: Function;
|
|
77
|
+
externalName?: string;
|
|
73
78
|
env?: string[] | string;
|
|
74
79
|
};
|
|
75
80
|
type: import("pacc").AttributeDefinition;
|
|
@@ -87,6 +92,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
87
92
|
default?: any;
|
|
88
93
|
set?: Function;
|
|
89
94
|
get?: Function;
|
|
95
|
+
values?: Set<any>;
|
|
96
|
+
externalName?: string;
|
|
90
97
|
env?: string[] | string;
|
|
91
98
|
};
|
|
92
99
|
cidrAddresses: import("pacc").AttributeDefinition;
|
|
@@ -126,6 +133,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
126
133
|
default?: any;
|
|
127
134
|
set?: Function;
|
|
128
135
|
get?: Function;
|
|
136
|
+
values?: Set<any>;
|
|
137
|
+
externalName?: string;
|
|
129
138
|
env?: string[] | string;
|
|
130
139
|
};
|
|
131
140
|
priority: import("pacc").AttributeDefinition;
|
|
@@ -151,6 +160,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
151
160
|
default?: any;
|
|
152
161
|
set?: Function;
|
|
153
162
|
get?: Function;
|
|
163
|
+
values?: Set<any>;
|
|
164
|
+
externalName?: string;
|
|
154
165
|
env?: string[] | string;
|
|
155
166
|
};
|
|
156
167
|
systemd: import("pacc").AttributeDefinition;
|
|
@@ -168,6 +179,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
168
179
|
default?: any;
|
|
169
180
|
set?: Function;
|
|
170
181
|
get?: Function;
|
|
182
|
+
externalName?: string;
|
|
171
183
|
env?: string[] | string;
|
|
172
184
|
};
|
|
173
185
|
type: import("pacc").AttributeDefinition;
|
|
@@ -185,6 +197,8 @@ export class SystemdTimesyncdService extends ExtraSourceService {
|
|
|
185
197
|
default?: any;
|
|
186
198
|
set?: Function;
|
|
187
199
|
get?: Function;
|
|
200
|
+
values?: Set<any>;
|
|
201
|
+
externalName?: string;
|
|
188
202
|
env?: string[] | string;
|
|
189
203
|
};
|
|
190
204
|
cidrAddresses: import("pacc").AttributeDefinition;
|