pmcf 3.20.1 → 3.20.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/services/systemd-resolved.mjs +34 -6
- package/types/base.d.mts +2 -1
- package/types/cluster.d.mts +36 -18
- package/types/extra-source-service.d.mts +80 -40
- package/types/host.d.mts +16 -8
- package/types/location.d.mts +28 -14
- package/types/network-interfaces/ethernet.d.mts +96 -48
- package/types/network-interfaces/loopback.d.mts +92 -46
- package/types/network-interfaces/network-interface.d.mts +92 -46
- package/types/network-interfaces/tun.d.mts +92 -46
- package/types/network-interfaces/wireguard.d.mts +92 -46
- package/types/network-interfaces/wlan.d.mts +142 -71
- package/types/network-support.d.mts +16 -8
- package/types/network.d.mts +56 -28
- package/types/owner.d.mts +14 -7
- package/types/service.d.mts +46 -23
- package/types/services/bind.d.mts +114 -57
- package/types/services/chrony.d.mts +100 -50
- package/types/services/headscale.d.mts +60 -30
- package/types/services/influxdb.d.mts +62 -31
- package/types/services/kea.d.mts +70 -35
- package/types/services/mosquitto.d.mts +64 -32
- package/types/services/openldap.d.mts +60 -30
- package/types/services/systemd-journal-remote.d.mts +80 -40
- package/types/services/systemd-journal-upload.d.mts +70 -35
- package/types/services/systemd-journal.d.mts +106 -53
- package/types/services/systemd-resolved.d.mts +117 -60
- package/types/services/systemd-timesyncd.d.mts +100 -50
- package/types/services/tailscale.d.mts +60 -30
- package/types/subnet.d.mts +2 -1
- package/types/utils.d.mts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"ip-utilties": "^2.0.2",
|
|
57
57
|
"npm-pkgbuild": "^19.1.3",
|
|
58
|
-
"pacc": "^
|
|
58
|
+
"pacc": "^7.0.0",
|
|
59
59
|
"package-directory": "^8.1.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
addType,
|
|
3
|
+
duration_attribute_writable,
|
|
4
|
+
string_attribute_writable,
|
|
5
|
+
boolean_attribute_writable,
|
|
6
|
+
yesno_attribute_writable
|
|
7
|
+
} from "pacc";
|
|
2
8
|
import {
|
|
3
9
|
ExtraSourceService,
|
|
4
10
|
ExtraSourceServiceTypeDefinition,
|
|
5
11
|
ServiceTypeDefinition,
|
|
6
|
-
serviceEndpoints
|
|
12
|
+
serviceEndpoints
|
|
7
13
|
} from "pmcf";
|
|
8
14
|
import { yesno } from "../utils.mjs";
|
|
9
15
|
|
|
@@ -14,8 +20,21 @@ const SystemdResolvedServiceTypeDefinition = {
|
|
|
14
20
|
owners: ServiceTypeDefinition.owners,
|
|
15
21
|
key: "name",
|
|
16
22
|
attributes: {
|
|
17
|
-
|
|
18
|
-
|
|
23
|
+
DNS: string_attribute_writable,
|
|
24
|
+
FallbackDNS: string_attribute_writable,
|
|
25
|
+
Domains: string_attribute_writable,
|
|
26
|
+
MulticastDNS: boolean_attribute_writable,
|
|
27
|
+
Cache: boolean_attribute_writable,
|
|
28
|
+
CacheFromLocalhost: boolean_attribute_writable,
|
|
29
|
+
DNSStubListener: boolean_attribute_writable,
|
|
30
|
+
DNSStubListenerExtra: string_attribute_writable,
|
|
31
|
+
ReadEtcHosts: boolean_attribute_writable,
|
|
32
|
+
ResolveUnicastSingleLabel: boolean_attribute_writable,
|
|
33
|
+
StaleRetentionSec: duration_attribute_writable,
|
|
34
|
+
RefuseRecordTypes: string_attribute_writable,
|
|
35
|
+
DNSSEC: yesno_attribute_writable,
|
|
36
|
+
DNSOverTLS: yesno_attribute_writable,
|
|
37
|
+
LLMNR: yesno_attribute_writable
|
|
19
38
|
}
|
|
20
39
|
};
|
|
21
40
|
|
|
@@ -59,9 +78,18 @@ export class SystemdResolvedService extends ExtraSourceService {
|
|
|
59
78
|
DNS: serviceEndpoints(this, options(300, 399, 4)),
|
|
60
79
|
FallbackDNS: serviceEndpoints(this, options(100, 199, 4)),
|
|
61
80
|
Domains: [...this.localDomains].join(" "),
|
|
62
|
-
DNSSEC: yesno(this.dnssec),
|
|
63
81
|
MulticastDNS: yesno(this.network.multicastDNS),
|
|
64
|
-
|
|
82
|
+
|
|
83
|
+
DNSSEC: yesno(this.DNSSEC),
|
|
84
|
+
|
|
85
|
+
// TODO extendet properties with getAttribute()
|
|
86
|
+
...Object.fromEntries(
|
|
87
|
+
Object.entries(SystemdResolvedServiceTypeDefinition.attributes)
|
|
88
|
+
.map(([k, v]) => [k, this.extendedProperty(k)])
|
|
89
|
+
.filter(([k, v]) => v !== undefined)
|
|
90
|
+
),
|
|
91
|
+
LLMNR: yesno(this.LLMNR),
|
|
92
|
+
|
|
65
93
|
}
|
|
66
94
|
]
|
|
67
95
|
};
|
package/types/base.d.mts
CHANGED
package/types/cluster.d.mts
CHANGED
|
@@ -21,7 +21,8 @@ export class Cluster extends Host {
|
|
|
21
21
|
default?: any;
|
|
22
22
|
set?: Function;
|
|
23
23
|
get?: Function;
|
|
24
|
-
|
|
24
|
+
toInternal?: Function;
|
|
25
|
+
toExternal?: Function;
|
|
25
26
|
values?: Set<any>;
|
|
26
27
|
externalName?: string;
|
|
27
28
|
env?: string[] | string;
|
|
@@ -41,7 +42,8 @@ export class Cluster extends Host {
|
|
|
41
42
|
default?: any;
|
|
42
43
|
set?: Function;
|
|
43
44
|
get?: Function;
|
|
44
|
-
|
|
45
|
+
toInternal?: Function;
|
|
46
|
+
toExternal?: Function;
|
|
45
47
|
values?: Set<any>;
|
|
46
48
|
externalName?: string;
|
|
47
49
|
env?: string[] | string;
|
|
@@ -61,7 +63,8 @@ export class Cluster extends Host {
|
|
|
61
63
|
default?: any;
|
|
62
64
|
set?: Function;
|
|
63
65
|
get?: Function;
|
|
64
|
-
|
|
66
|
+
toInternal?: Function;
|
|
67
|
+
toExternal?: Function;
|
|
65
68
|
values?: Set<any>;
|
|
66
69
|
externalName?: string;
|
|
67
70
|
env?: string[] | string;
|
|
@@ -89,7 +92,8 @@ export class Cluster extends Host {
|
|
|
89
92
|
default?: any;
|
|
90
93
|
set?: Function;
|
|
91
94
|
get?: Function;
|
|
92
|
-
|
|
95
|
+
toInternal?: Function;
|
|
96
|
+
toExternal?: Function;
|
|
93
97
|
values?: Set<any>;
|
|
94
98
|
externalName?: string;
|
|
95
99
|
env?: string[] | string;
|
|
@@ -111,7 +115,8 @@ export class Cluster extends Host {
|
|
|
111
115
|
default?: any;
|
|
112
116
|
set?: Function;
|
|
113
117
|
get?: Function;
|
|
114
|
-
|
|
118
|
+
toInternal?: Function;
|
|
119
|
+
toExternal?: Function;
|
|
115
120
|
values?: Set<any>;
|
|
116
121
|
externalName?: string;
|
|
117
122
|
env?: string[] | string;
|
|
@@ -137,7 +142,8 @@ export class Cluster extends Host {
|
|
|
137
142
|
default?: any;
|
|
138
143
|
set?: Function;
|
|
139
144
|
get?: Function;
|
|
140
|
-
|
|
145
|
+
toInternal?: Function;
|
|
146
|
+
toExternal?: Function;
|
|
141
147
|
values?: Set<any>;
|
|
142
148
|
externalName?: string;
|
|
143
149
|
env?: string[] | string;
|
|
@@ -157,7 +163,8 @@ export class Cluster extends Host {
|
|
|
157
163
|
default?: any;
|
|
158
164
|
set?: Function;
|
|
159
165
|
get?: Function;
|
|
160
|
-
|
|
166
|
+
toInternal?: Function;
|
|
167
|
+
toExternal?: Function;
|
|
161
168
|
values?: Set<any>;
|
|
162
169
|
externalName?: string;
|
|
163
170
|
env?: string[] | string;
|
|
@@ -185,7 +192,8 @@ export class Cluster extends Host {
|
|
|
185
192
|
default?: any;
|
|
186
193
|
set?: Function;
|
|
187
194
|
get?: Function;
|
|
188
|
-
|
|
195
|
+
toInternal?: Function;
|
|
196
|
+
toExternal?: Function;
|
|
189
197
|
values?: Set<any>;
|
|
190
198
|
externalName?: string;
|
|
191
199
|
env?: string[] | string;
|
|
@@ -205,7 +213,8 @@ export class Cluster extends Host {
|
|
|
205
213
|
default?: any;
|
|
206
214
|
set?: Function;
|
|
207
215
|
get?: Function;
|
|
208
|
-
|
|
216
|
+
toInternal?: Function;
|
|
217
|
+
toExternal?: Function;
|
|
209
218
|
values?: Set<any>;
|
|
210
219
|
externalName?: string;
|
|
211
220
|
env?: string[] | string;
|
|
@@ -227,7 +236,8 @@ export class Cluster extends Host {
|
|
|
227
236
|
default?: any;
|
|
228
237
|
set?: Function;
|
|
229
238
|
get?: Function;
|
|
230
|
-
|
|
239
|
+
toInternal?: Function;
|
|
240
|
+
toExternal?: Function;
|
|
231
241
|
externalName?: string;
|
|
232
242
|
env?: string[] | string;
|
|
233
243
|
additionalValues?: object;
|
|
@@ -249,7 +259,8 @@ export class Cluster extends Host {
|
|
|
249
259
|
default?: any;
|
|
250
260
|
set?: Function;
|
|
251
261
|
get?: Function;
|
|
252
|
-
|
|
262
|
+
toInternal?: Function;
|
|
263
|
+
toExternal?: Function;
|
|
253
264
|
externalName?: string;
|
|
254
265
|
env?: string[] | string;
|
|
255
266
|
additionalValues?: object;
|
|
@@ -273,7 +284,8 @@ export class Cluster extends Host {
|
|
|
273
284
|
default?: any;
|
|
274
285
|
set?: Function;
|
|
275
286
|
get?: Function;
|
|
276
|
-
|
|
287
|
+
toInternal?: Function;
|
|
288
|
+
toExternal?: Function;
|
|
277
289
|
externalName?: string;
|
|
278
290
|
env?: string[] | string;
|
|
279
291
|
additionalValues?: object;
|
|
@@ -293,7 +305,8 @@ export class Cluster extends Host {
|
|
|
293
305
|
default?: any;
|
|
294
306
|
set?: Function;
|
|
295
307
|
get?: Function;
|
|
296
|
-
|
|
308
|
+
toInternal?: Function;
|
|
309
|
+
toExternal?: Function;
|
|
297
310
|
externalName?: string;
|
|
298
311
|
env?: string[] | string;
|
|
299
312
|
additionalValues?: object;
|
|
@@ -315,7 +328,8 @@ export class Cluster extends Host {
|
|
|
315
328
|
default?: any;
|
|
316
329
|
set?: Function;
|
|
317
330
|
get?: Function;
|
|
318
|
-
|
|
331
|
+
toInternal?: Function;
|
|
332
|
+
toExternal?: Function;
|
|
319
333
|
values?: Set<any>;
|
|
320
334
|
externalName?: string;
|
|
321
335
|
env?: string[] | string;
|
|
@@ -337,7 +351,8 @@ export class Cluster extends Host {
|
|
|
337
351
|
default?: any;
|
|
338
352
|
set?: Function;
|
|
339
353
|
get?: Function;
|
|
340
|
-
|
|
354
|
+
toInternal?: Function;
|
|
355
|
+
toExternal?: Function;
|
|
341
356
|
values?: Set<any>;
|
|
342
357
|
externalName?: string;
|
|
343
358
|
env?: string[] | string;
|
|
@@ -366,7 +381,8 @@ export class Cluster extends Host {
|
|
|
366
381
|
default?: any;
|
|
367
382
|
set?: Function;
|
|
368
383
|
get?: Function;
|
|
369
|
-
|
|
384
|
+
toInternal?: Function;
|
|
385
|
+
toExternal?: Function;
|
|
370
386
|
values?: Set<any>;
|
|
371
387
|
externalName?: string;
|
|
372
388
|
env?: string[] | string;
|
|
@@ -386,7 +402,8 @@ export class Cluster extends Host {
|
|
|
386
402
|
default?: any;
|
|
387
403
|
set?: Function;
|
|
388
404
|
get?: Function;
|
|
389
|
-
|
|
405
|
+
toInternal?: Function;
|
|
406
|
+
toExternal?: Function;
|
|
390
407
|
values?: Set<any>;
|
|
391
408
|
externalName?: string;
|
|
392
409
|
env?: string[] | string;
|
|
@@ -406,7 +423,8 @@ export class Cluster extends Host {
|
|
|
406
423
|
default?: any;
|
|
407
424
|
set?: Function;
|
|
408
425
|
get?: Function;
|
|
409
|
-
|
|
426
|
+
toInternal?: Function;
|
|
427
|
+
toExternal?: Function;
|
|
410
428
|
values?: Set<any>;
|
|
411
429
|
externalName?: string;
|
|
412
430
|
env?: string[] | string;
|
|
@@ -22,7 +22,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
22
22
|
default?: any;
|
|
23
23
|
set?: Function;
|
|
24
24
|
get?: Function;
|
|
25
|
-
|
|
25
|
+
toInternal?: Function;
|
|
26
|
+
toExternal?: Function;
|
|
26
27
|
values?: Set<any>;
|
|
27
28
|
externalName?: string;
|
|
28
29
|
env?: string[] | string;
|
|
@@ -42,7 +43,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
42
43
|
default?: any;
|
|
43
44
|
set?: Function;
|
|
44
45
|
get?: Function;
|
|
45
|
-
|
|
46
|
+
toInternal?: Function;
|
|
47
|
+
toExternal?: Function;
|
|
46
48
|
values?: Set<any>;
|
|
47
49
|
externalName?: string;
|
|
48
50
|
env?: string[] | string;
|
|
@@ -64,7 +66,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
64
66
|
default?: any;
|
|
65
67
|
set?: Function;
|
|
66
68
|
get?: Function;
|
|
67
|
-
|
|
69
|
+
toInternal?: Function;
|
|
70
|
+
toExternal?: Function;
|
|
68
71
|
externalName?: string;
|
|
69
72
|
env?: string[] | string;
|
|
70
73
|
additionalValues?: object;
|
|
@@ -86,7 +89,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
86
89
|
default?: any;
|
|
87
90
|
set?: Function;
|
|
88
91
|
get?: Function;
|
|
89
|
-
|
|
92
|
+
toInternal?: Function;
|
|
93
|
+
toExternal?: Function;
|
|
90
94
|
externalName?: string;
|
|
91
95
|
env?: string[] | string;
|
|
92
96
|
additionalValues?: object;
|
|
@@ -110,7 +114,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
110
114
|
default?: any;
|
|
111
115
|
set?: Function;
|
|
112
116
|
get?: Function;
|
|
113
|
-
|
|
117
|
+
toInternal?: Function;
|
|
118
|
+
toExternal?: Function;
|
|
114
119
|
externalName?: string;
|
|
115
120
|
env?: string[] | string;
|
|
116
121
|
additionalValues?: object;
|
|
@@ -130,7 +135,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
130
135
|
default?: any;
|
|
131
136
|
set?: Function;
|
|
132
137
|
get?: Function;
|
|
133
|
-
|
|
138
|
+
toInternal?: Function;
|
|
139
|
+
toExternal?: Function;
|
|
134
140
|
externalName?: string;
|
|
135
141
|
env?: string[] | string;
|
|
136
142
|
additionalValues?: object;
|
|
@@ -152,7 +158,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
152
158
|
default?: any;
|
|
153
159
|
set?: Function;
|
|
154
160
|
get?: Function;
|
|
155
|
-
|
|
161
|
+
toInternal?: Function;
|
|
162
|
+
toExternal?: Function;
|
|
156
163
|
values?: Set<any>;
|
|
157
164
|
externalName?: string;
|
|
158
165
|
env?: string[] | string;
|
|
@@ -174,7 +181,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
174
181
|
default?: any;
|
|
175
182
|
set?: Function;
|
|
176
183
|
get?: Function;
|
|
177
|
-
|
|
184
|
+
toInternal?: Function;
|
|
185
|
+
toExternal?: Function;
|
|
178
186
|
values?: Set<any>;
|
|
179
187
|
externalName?: string;
|
|
180
188
|
env?: string[] | string;
|
|
@@ -201,7 +209,8 @@ export namespace ExtraSourceServiceTypeDefinition {
|
|
|
201
209
|
default?: any;
|
|
202
210
|
set?: Function;
|
|
203
211
|
get?: Function;
|
|
204
|
-
|
|
212
|
+
toInternal?: Function;
|
|
213
|
+
toExternal?: Function;
|
|
205
214
|
values?: Set<any>;
|
|
206
215
|
externalName?: string;
|
|
207
216
|
env?: string[] | string;
|
|
@@ -234,7 +243,8 @@ export class ExtraSourceService extends Service {
|
|
|
234
243
|
default?: any;
|
|
235
244
|
set?: Function;
|
|
236
245
|
get?: Function;
|
|
237
|
-
|
|
246
|
+
toInternal?: Function;
|
|
247
|
+
toExternal?: Function;
|
|
238
248
|
values?: Set<any>;
|
|
239
249
|
externalName?: string;
|
|
240
250
|
env?: string[] | string;
|
|
@@ -254,7 +264,8 @@ export class ExtraSourceService extends Service {
|
|
|
254
264
|
default?: any;
|
|
255
265
|
set?: Function;
|
|
256
266
|
get?: Function;
|
|
257
|
-
|
|
267
|
+
toInternal?: Function;
|
|
268
|
+
toExternal?: Function;
|
|
258
269
|
values?: Set<any>;
|
|
259
270
|
externalName?: string;
|
|
260
271
|
env?: string[] | string;
|
|
@@ -276,7 +287,8 @@ export class ExtraSourceService extends Service {
|
|
|
276
287
|
default?: any;
|
|
277
288
|
set?: Function;
|
|
278
289
|
get?: Function;
|
|
279
|
-
|
|
290
|
+
toInternal?: Function;
|
|
291
|
+
toExternal?: Function;
|
|
280
292
|
externalName?: string;
|
|
281
293
|
env?: string[] | string;
|
|
282
294
|
additionalValues?: object;
|
|
@@ -298,7 +310,8 @@ export class ExtraSourceService extends Service {
|
|
|
298
310
|
default?: any;
|
|
299
311
|
set?: Function;
|
|
300
312
|
get?: Function;
|
|
301
|
-
|
|
313
|
+
toInternal?: Function;
|
|
314
|
+
toExternal?: Function;
|
|
302
315
|
externalName?: string;
|
|
303
316
|
env?: string[] | string;
|
|
304
317
|
additionalValues?: object;
|
|
@@ -322,7 +335,8 @@ export class ExtraSourceService extends Service {
|
|
|
322
335
|
default?: any;
|
|
323
336
|
set?: Function;
|
|
324
337
|
get?: Function;
|
|
325
|
-
|
|
338
|
+
toInternal?: Function;
|
|
339
|
+
toExternal?: Function;
|
|
326
340
|
externalName?: string;
|
|
327
341
|
env?: string[] | string;
|
|
328
342
|
additionalValues?: object;
|
|
@@ -342,7 +356,8 @@ export class ExtraSourceService extends Service {
|
|
|
342
356
|
default?: any;
|
|
343
357
|
set?: Function;
|
|
344
358
|
get?: Function;
|
|
345
|
-
|
|
359
|
+
toInternal?: Function;
|
|
360
|
+
toExternal?: Function;
|
|
346
361
|
externalName?: string;
|
|
347
362
|
env?: string[] | string;
|
|
348
363
|
additionalValues?: object;
|
|
@@ -364,7 +379,8 @@ export class ExtraSourceService extends Service {
|
|
|
364
379
|
default?: any;
|
|
365
380
|
set?: Function;
|
|
366
381
|
get?: Function;
|
|
367
|
-
|
|
382
|
+
toInternal?: Function;
|
|
383
|
+
toExternal?: Function;
|
|
368
384
|
values?: Set<any>;
|
|
369
385
|
externalName?: string;
|
|
370
386
|
env?: string[] | string;
|
|
@@ -386,7 +402,8 @@ export class ExtraSourceService extends Service {
|
|
|
386
402
|
default?: any;
|
|
387
403
|
set?: Function;
|
|
388
404
|
get?: Function;
|
|
389
|
-
|
|
405
|
+
toInternal?: Function;
|
|
406
|
+
toExternal?: Function;
|
|
390
407
|
values?: Set<any>;
|
|
391
408
|
externalName?: string;
|
|
392
409
|
env?: string[] | string;
|
|
@@ -418,7 +435,8 @@ export class ExtraSourceService extends Service {
|
|
|
418
435
|
default?: any;
|
|
419
436
|
set?: Function;
|
|
420
437
|
get?: Function;
|
|
421
|
-
|
|
438
|
+
toInternal?: Function;
|
|
439
|
+
toExternal?: Function;
|
|
422
440
|
values?: Set<any>;
|
|
423
441
|
externalName?: string;
|
|
424
442
|
env?: string[] | string;
|
|
@@ -441,7 +459,8 @@ export class ExtraSourceService extends Service {
|
|
|
441
459
|
default?: any;
|
|
442
460
|
set?: Function;
|
|
443
461
|
get?: Function;
|
|
444
|
-
|
|
462
|
+
toInternal?: Function;
|
|
463
|
+
toExternal?: Function;
|
|
445
464
|
externalName?: string;
|
|
446
465
|
env?: string[] | string;
|
|
447
466
|
additionalValues?: object;
|
|
@@ -463,7 +482,8 @@ export class ExtraSourceService extends Service {
|
|
|
463
482
|
default?: any;
|
|
464
483
|
set?: Function;
|
|
465
484
|
get?: Function;
|
|
466
|
-
|
|
485
|
+
toInternal?: Function;
|
|
486
|
+
toExternal?: Function;
|
|
467
487
|
values?: Set<any>;
|
|
468
488
|
externalName?: string;
|
|
469
489
|
env?: string[] | string;
|
|
@@ -497,7 +517,8 @@ export class ExtraSourceService extends Service {
|
|
|
497
517
|
default?: any;
|
|
498
518
|
set?: Function;
|
|
499
519
|
get?: Function;
|
|
500
|
-
|
|
520
|
+
toInternal?: Function;
|
|
521
|
+
toExternal?: Function;
|
|
501
522
|
values?: Set<any>;
|
|
502
523
|
externalName?: string;
|
|
503
524
|
env?: string[] | string;
|
|
@@ -517,7 +538,8 @@ export class ExtraSourceService extends Service {
|
|
|
517
538
|
default?: any;
|
|
518
539
|
set?: Function;
|
|
519
540
|
get?: Function;
|
|
520
|
-
|
|
541
|
+
toInternal?: Function;
|
|
542
|
+
toExternal?: Function;
|
|
521
543
|
values?: Set<any>;
|
|
522
544
|
externalName?: string;
|
|
523
545
|
env?: string[] | string;
|
|
@@ -539,7 +561,8 @@ export class ExtraSourceService extends Service {
|
|
|
539
561
|
default?: any;
|
|
540
562
|
set?: Function;
|
|
541
563
|
get?: Function;
|
|
542
|
-
|
|
564
|
+
toInternal?: Function;
|
|
565
|
+
toExternal?: Function;
|
|
543
566
|
externalName?: string;
|
|
544
567
|
env?: string[] | string;
|
|
545
568
|
additionalValues?: object;
|
|
@@ -561,7 +584,8 @@ export class ExtraSourceService extends Service {
|
|
|
561
584
|
default?: any;
|
|
562
585
|
set?: Function;
|
|
563
586
|
get?: Function;
|
|
564
|
-
|
|
587
|
+
toInternal?: Function;
|
|
588
|
+
toExternal?: Function;
|
|
565
589
|
externalName?: string;
|
|
566
590
|
env?: string[] | string;
|
|
567
591
|
additionalValues?: object;
|
|
@@ -585,7 +609,8 @@ export class ExtraSourceService extends Service {
|
|
|
585
609
|
default?: any;
|
|
586
610
|
set?: Function;
|
|
587
611
|
get?: Function;
|
|
588
|
-
|
|
612
|
+
toInternal?: Function;
|
|
613
|
+
toExternal?: Function;
|
|
589
614
|
externalName?: string;
|
|
590
615
|
env?: string[] | string;
|
|
591
616
|
additionalValues?: object;
|
|
@@ -605,7 +630,8 @@ export class ExtraSourceService extends Service {
|
|
|
605
630
|
default?: any;
|
|
606
631
|
set?: Function;
|
|
607
632
|
get?: Function;
|
|
608
|
-
|
|
633
|
+
toInternal?: Function;
|
|
634
|
+
toExternal?: Function;
|
|
609
635
|
externalName?: string;
|
|
610
636
|
env?: string[] | string;
|
|
611
637
|
additionalValues?: object;
|
|
@@ -627,7 +653,8 @@ export class ExtraSourceService extends Service {
|
|
|
627
653
|
default?: any;
|
|
628
654
|
set?: Function;
|
|
629
655
|
get?: Function;
|
|
630
|
-
|
|
656
|
+
toInternal?: Function;
|
|
657
|
+
toExternal?: Function;
|
|
631
658
|
values?: Set<any>;
|
|
632
659
|
externalName?: string;
|
|
633
660
|
env?: string[] | string;
|
|
@@ -649,7 +676,8 @@ export class ExtraSourceService extends Service {
|
|
|
649
676
|
default?: any;
|
|
650
677
|
set?: Function;
|
|
651
678
|
get?: Function;
|
|
652
|
-
|
|
679
|
+
toInternal?: Function;
|
|
680
|
+
toExternal?: Function;
|
|
653
681
|
values?: Set<any>;
|
|
654
682
|
externalName?: string;
|
|
655
683
|
env?: string[] | string;
|
|
@@ -681,7 +709,8 @@ export class ExtraSourceService extends Service {
|
|
|
681
709
|
default?: any;
|
|
682
710
|
set?: Function;
|
|
683
711
|
get?: Function;
|
|
684
|
-
|
|
712
|
+
toInternal?: Function;
|
|
713
|
+
toExternal?: Function;
|
|
685
714
|
values?: Set<any>;
|
|
686
715
|
externalName?: string;
|
|
687
716
|
env?: string[] | string;
|
|
@@ -704,7 +733,8 @@ export class ExtraSourceService extends Service {
|
|
|
704
733
|
default?: any;
|
|
705
734
|
set?: Function;
|
|
706
735
|
get?: Function;
|
|
707
|
-
|
|
736
|
+
toInternal?: Function;
|
|
737
|
+
toExternal?: Function;
|
|
708
738
|
externalName?: string;
|
|
709
739
|
env?: string[] | string;
|
|
710
740
|
additionalValues?: object;
|
|
@@ -726,7 +756,8 @@ export class ExtraSourceService extends Service {
|
|
|
726
756
|
default?: any;
|
|
727
757
|
set?: Function;
|
|
728
758
|
get?: Function;
|
|
729
|
-
|
|
759
|
+
toInternal?: Function;
|
|
760
|
+
toExternal?: Function;
|
|
730
761
|
values?: Set<any>;
|
|
731
762
|
externalName?: string;
|
|
732
763
|
env?: string[] | string;
|
|
@@ -758,7 +789,8 @@ export class ExtraSourceService extends Service {
|
|
|
758
789
|
default?: any;
|
|
759
790
|
set?: Function;
|
|
760
791
|
get?: Function;
|
|
761
|
-
|
|
792
|
+
toInternal?: Function;
|
|
793
|
+
toExternal?: Function;
|
|
762
794
|
values?: Set<any>;
|
|
763
795
|
externalName?: string;
|
|
764
796
|
env?: string[] | string;
|
|
@@ -778,7 +810,8 @@ export class ExtraSourceService extends Service {
|
|
|
778
810
|
default?: any;
|
|
779
811
|
set?: Function;
|
|
780
812
|
get?: Function;
|
|
781
|
-
|
|
813
|
+
toInternal?: Function;
|
|
814
|
+
toExternal?: Function;
|
|
782
815
|
values?: Set<any>;
|
|
783
816
|
externalName?: string;
|
|
784
817
|
env?: string[] | string;
|
|
@@ -800,7 +833,8 @@ export class ExtraSourceService extends Service {
|
|
|
800
833
|
default?: any;
|
|
801
834
|
set?: Function;
|
|
802
835
|
get?: Function;
|
|
803
|
-
|
|
836
|
+
toInternal?: Function;
|
|
837
|
+
toExternal?: Function;
|
|
804
838
|
externalName?: string;
|
|
805
839
|
env?: string[] | string;
|
|
806
840
|
additionalValues?: object;
|
|
@@ -822,7 +856,8 @@ export class ExtraSourceService extends Service {
|
|
|
822
856
|
default?: any;
|
|
823
857
|
set?: Function;
|
|
824
858
|
get?: Function;
|
|
825
|
-
|
|
859
|
+
toInternal?: Function;
|
|
860
|
+
toExternal?: Function;
|
|
826
861
|
externalName?: string;
|
|
827
862
|
env?: string[] | string;
|
|
828
863
|
additionalValues?: object;
|
|
@@ -846,7 +881,8 @@ export class ExtraSourceService extends Service {
|
|
|
846
881
|
default?: any;
|
|
847
882
|
set?: Function;
|
|
848
883
|
get?: Function;
|
|
849
|
-
|
|
884
|
+
toInternal?: Function;
|
|
885
|
+
toExternal?: Function;
|
|
850
886
|
externalName?: string;
|
|
851
887
|
env?: string[] | string;
|
|
852
888
|
additionalValues?: object;
|
|
@@ -866,7 +902,8 @@ export class ExtraSourceService extends Service {
|
|
|
866
902
|
default?: any;
|
|
867
903
|
set?: Function;
|
|
868
904
|
get?: Function;
|
|
869
|
-
|
|
905
|
+
toInternal?: Function;
|
|
906
|
+
toExternal?: Function;
|
|
870
907
|
externalName?: string;
|
|
871
908
|
env?: string[] | string;
|
|
872
909
|
additionalValues?: object;
|
|
@@ -888,7 +925,8 @@ export class ExtraSourceService extends Service {
|
|
|
888
925
|
default?: any;
|
|
889
926
|
set?: Function;
|
|
890
927
|
get?: Function;
|
|
891
|
-
|
|
928
|
+
toInternal?: Function;
|
|
929
|
+
toExternal?: Function;
|
|
892
930
|
values?: Set<any>;
|
|
893
931
|
externalName?: string;
|
|
894
932
|
env?: string[] | string;
|
|
@@ -910,7 +948,8 @@ export class ExtraSourceService extends Service {
|
|
|
910
948
|
default?: any;
|
|
911
949
|
set?: Function;
|
|
912
950
|
get?: Function;
|
|
913
|
-
|
|
951
|
+
toInternal?: Function;
|
|
952
|
+
toExternal?: Function;
|
|
914
953
|
values?: Set<any>;
|
|
915
954
|
externalName?: string;
|
|
916
955
|
env?: string[] | string;
|
|
@@ -937,7 +976,8 @@ export class ExtraSourceService extends Service {
|
|
|
937
976
|
default?: any;
|
|
938
977
|
set?: Function;
|
|
939
978
|
get?: Function;
|
|
940
|
-
|
|
979
|
+
toInternal?: Function;
|
|
980
|
+
toExternal?: Function;
|
|
941
981
|
values?: Set<any>;
|
|
942
982
|
externalName?: string;
|
|
943
983
|
env?: string[] | string;
|