pmcf 3.20.1 → 3.20.3
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 +31 -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 +121 -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
|
@@ -13,7 +13,8 @@ export const networks_attribute: {
|
|
|
13
13
|
default?: any;
|
|
14
14
|
set?: Function;
|
|
15
15
|
get?: Function;
|
|
16
|
-
|
|
16
|
+
toInternal?: Function;
|
|
17
|
+
toExternal?: Function;
|
|
17
18
|
values?: Set<any>;
|
|
18
19
|
externalName?: string;
|
|
19
20
|
env?: string[] | string;
|
|
@@ -35,7 +36,8 @@ export namespace networkAttributes {
|
|
|
35
36
|
default?: any;
|
|
36
37
|
set?: Function;
|
|
37
38
|
get?: Function;
|
|
38
|
-
|
|
39
|
+
toInternal?: Function;
|
|
40
|
+
toExternal?: Function;
|
|
39
41
|
externalName?: string;
|
|
40
42
|
env?: string[] | string;
|
|
41
43
|
additionalValues?: object;
|
|
@@ -55,7 +57,8 @@ export namespace networkAttributes {
|
|
|
55
57
|
default?: any;
|
|
56
58
|
set?: Function;
|
|
57
59
|
get?: Function;
|
|
58
|
-
|
|
60
|
+
toInternal?: Function;
|
|
61
|
+
toExternal?: Function;
|
|
59
62
|
externalName?: string;
|
|
60
63
|
env?: string[] | string;
|
|
61
64
|
additionalValues?: object;
|
|
@@ -76,7 +79,8 @@ export namespace networkAttributes {
|
|
|
76
79
|
default?: any;
|
|
77
80
|
set?: Function;
|
|
78
81
|
get?: Function;
|
|
79
|
-
|
|
82
|
+
toInternal?: Function;
|
|
83
|
+
toExternal?: Function;
|
|
80
84
|
externalName?: string;
|
|
81
85
|
env?: string[] | string;
|
|
82
86
|
additionalValues?: object;
|
|
@@ -98,7 +102,8 @@ export namespace networkAttributes {
|
|
|
98
102
|
default?: any;
|
|
99
103
|
set?: Function;
|
|
100
104
|
get?: Function;
|
|
101
|
-
|
|
105
|
+
toInternal?: Function;
|
|
106
|
+
toExternal?: Function;
|
|
102
107
|
values?: Set<any>;
|
|
103
108
|
externalName?: string;
|
|
104
109
|
env?: string[] | string;
|
|
@@ -118,7 +123,8 @@ export namespace networkAttributes {
|
|
|
118
123
|
description?: string;
|
|
119
124
|
set?: Function;
|
|
120
125
|
get?: Function;
|
|
121
|
-
|
|
126
|
+
toInternal?: Function;
|
|
127
|
+
toExternal?: Function;
|
|
122
128
|
values?: Set<any>;
|
|
123
129
|
externalName?: string;
|
|
124
130
|
env?: string[] | string;
|
|
@@ -138,7 +144,8 @@ export namespace networkAttributes {
|
|
|
138
144
|
default?: any;
|
|
139
145
|
set?: Function;
|
|
140
146
|
get?: Function;
|
|
141
|
-
|
|
147
|
+
toInternal?: Function;
|
|
148
|
+
toExternal?: Function;
|
|
142
149
|
values?: Set<any>;
|
|
143
150
|
externalName?: string;
|
|
144
151
|
env?: string[] | string;
|
|
@@ -161,7 +168,8 @@ export namespace networkAddressAttributes {
|
|
|
161
168
|
default?: any;
|
|
162
169
|
set?: Function;
|
|
163
170
|
get?: Function;
|
|
164
|
-
|
|
171
|
+
toInternal?: Function;
|
|
172
|
+
toExternal?: Function;
|
|
165
173
|
values?: Set<any>;
|
|
166
174
|
externalName?: string;
|
|
167
175
|
env?: string[] | string;
|
package/types/network.d.mts
CHANGED
|
@@ -21,7 +21,8 @@ export namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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 namespace NetworkTypeDefinition {
|
|
|
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;
|
|
@@ -182,7 +189,8 @@ export namespace NetworkTypeDefinition {
|
|
|
182
189
|
default?: any;
|
|
183
190
|
set?: Function;
|
|
184
191
|
get?: Function;
|
|
185
|
-
|
|
192
|
+
toInternal?: Function;
|
|
193
|
+
toExternal?: Function;
|
|
186
194
|
values?: Set<any>;
|
|
187
195
|
externalName?: string;
|
|
188
196
|
env?: string[] | string;
|
|
@@ -202,7 +210,8 @@ export namespace NetworkTypeDefinition {
|
|
|
202
210
|
default?: any;
|
|
203
211
|
set?: Function;
|
|
204
212
|
get?: Function;
|
|
205
|
-
|
|
213
|
+
toInternal?: Function;
|
|
214
|
+
toExternal?: Function;
|
|
206
215
|
values?: Set<any>;
|
|
207
216
|
externalName?: string;
|
|
208
217
|
env?: string[] | string;
|
|
@@ -223,7 +232,8 @@ export namespace NetworkTypeDefinition {
|
|
|
223
232
|
default?: any;
|
|
224
233
|
set?: Function;
|
|
225
234
|
get?: Function;
|
|
226
|
-
|
|
235
|
+
toInternal?: Function;
|
|
236
|
+
toExternal?: Function;
|
|
227
237
|
externalName?: string;
|
|
228
238
|
env?: string[] | string;
|
|
229
239
|
additionalValues?: object;
|
|
@@ -243,7 +253,8 @@ export namespace NetworkTypeDefinition {
|
|
|
243
253
|
default?: any;
|
|
244
254
|
set?: Function;
|
|
245
255
|
get?: Function;
|
|
246
|
-
|
|
256
|
+
toInternal?: Function;
|
|
257
|
+
toExternal?: Function;
|
|
247
258
|
externalName?: string;
|
|
248
259
|
env?: string[] | string;
|
|
249
260
|
additionalValues?: object;
|
|
@@ -263,7 +274,8 @@ export namespace NetworkTypeDefinition {
|
|
|
263
274
|
default?: any;
|
|
264
275
|
set?: Function;
|
|
265
276
|
get?: Function;
|
|
266
|
-
|
|
277
|
+
toInternal?: Function;
|
|
278
|
+
toExternal?: Function;
|
|
267
279
|
externalName?: string;
|
|
268
280
|
env?: string[] | string;
|
|
269
281
|
additionalValues?: object;
|
|
@@ -285,7 +297,8 @@ export namespace NetworkTypeDefinition {
|
|
|
285
297
|
default?: any;
|
|
286
298
|
set?: Function;
|
|
287
299
|
get?: Function;
|
|
288
|
-
|
|
300
|
+
toInternal?: Function;
|
|
301
|
+
toExternal?: Function;
|
|
289
302
|
values?: Set<any>;
|
|
290
303
|
externalName?: string;
|
|
291
304
|
env?: string[] | string;
|
|
@@ -305,7 +318,8 @@ export namespace NetworkTypeDefinition {
|
|
|
305
318
|
description?: string;
|
|
306
319
|
set?: Function;
|
|
307
320
|
get?: Function;
|
|
308
|
-
|
|
321
|
+
toInternal?: Function;
|
|
322
|
+
toExternal?: Function;
|
|
309
323
|
values?: Set<any>;
|
|
310
324
|
externalName?: string;
|
|
311
325
|
env?: string[] | string;
|
|
@@ -338,7 +352,8 @@ export class Network extends Owner {
|
|
|
338
352
|
default?: any;
|
|
339
353
|
set?: Function;
|
|
340
354
|
get?: Function;
|
|
341
|
-
|
|
355
|
+
toInternal?: Function;
|
|
356
|
+
toExternal?: Function;
|
|
342
357
|
values?: Set<any>;
|
|
343
358
|
externalName?: string;
|
|
344
359
|
env?: string[] | string;
|
|
@@ -358,7 +373,8 @@ export class Network extends Owner {
|
|
|
358
373
|
default?: any;
|
|
359
374
|
set?: Function;
|
|
360
375
|
get?: Function;
|
|
361
|
-
|
|
376
|
+
toInternal?: Function;
|
|
377
|
+
toExternal?: Function;
|
|
362
378
|
values?: Set<any>;
|
|
363
379
|
externalName?: string;
|
|
364
380
|
env?: string[] | string;
|
|
@@ -378,7 +394,8 @@ export class Network extends Owner {
|
|
|
378
394
|
default?: any;
|
|
379
395
|
set?: Function;
|
|
380
396
|
get?: Function;
|
|
381
|
-
|
|
397
|
+
toInternal?: Function;
|
|
398
|
+
toExternal?: Function;
|
|
382
399
|
values?: Set<any>;
|
|
383
400
|
externalName?: string;
|
|
384
401
|
env?: string[] | string;
|
|
@@ -406,7 +423,8 @@ export class Network extends Owner {
|
|
|
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;
|
|
@@ -428,7 +446,8 @@ export class Network extends Owner {
|
|
|
428
446
|
default?: any;
|
|
429
447
|
set?: Function;
|
|
430
448
|
get?: Function;
|
|
431
|
-
|
|
449
|
+
toInternal?: Function;
|
|
450
|
+
toExternal?: Function;
|
|
432
451
|
values?: Set<any>;
|
|
433
452
|
externalName?: string;
|
|
434
453
|
env?: string[] | string;
|
|
@@ -454,7 +473,8 @@ export class Network extends Owner {
|
|
|
454
473
|
default?: any;
|
|
455
474
|
set?: Function;
|
|
456
475
|
get?: Function;
|
|
457
|
-
|
|
476
|
+
toInternal?: Function;
|
|
477
|
+
toExternal?: Function;
|
|
458
478
|
values?: Set<any>;
|
|
459
479
|
externalName?: string;
|
|
460
480
|
env?: string[] | string;
|
|
@@ -474,7 +494,8 @@ export class Network extends Owner {
|
|
|
474
494
|
default?: any;
|
|
475
495
|
set?: Function;
|
|
476
496
|
get?: Function;
|
|
477
|
-
|
|
497
|
+
toInternal?: Function;
|
|
498
|
+
toExternal?: Function;
|
|
478
499
|
values?: Set<any>;
|
|
479
500
|
externalName?: string;
|
|
480
501
|
env?: string[] | string;
|
|
@@ -498,7 +519,8 @@ export class Network extends Owner {
|
|
|
498
519
|
default?: any;
|
|
499
520
|
set?: Function;
|
|
500
521
|
get?: Function;
|
|
501
|
-
|
|
522
|
+
toInternal?: Function;
|
|
523
|
+
toExternal?: Function;
|
|
502
524
|
values?: Set<any>;
|
|
503
525
|
externalName?: string;
|
|
504
526
|
env?: string[] | string;
|
|
@@ -518,7 +540,8 @@ export class Network extends Owner {
|
|
|
518
540
|
default?: any;
|
|
519
541
|
set?: Function;
|
|
520
542
|
get?: Function;
|
|
521
|
-
|
|
543
|
+
toInternal?: Function;
|
|
544
|
+
toExternal?: Function;
|
|
522
545
|
values?: Set<any>;
|
|
523
546
|
externalName?: string;
|
|
524
547
|
env?: string[] | string;
|
|
@@ -539,7 +562,8 @@ export class Network extends Owner {
|
|
|
539
562
|
default?: any;
|
|
540
563
|
set?: Function;
|
|
541
564
|
get?: Function;
|
|
542
|
-
|
|
565
|
+
toInternal?: Function;
|
|
566
|
+
toExternal?: Function;
|
|
543
567
|
externalName?: string;
|
|
544
568
|
env?: string[] | string;
|
|
545
569
|
additionalValues?: object;
|
|
@@ -559,7 +583,8 @@ export class Network extends Owner {
|
|
|
559
583
|
default?: any;
|
|
560
584
|
set?: Function;
|
|
561
585
|
get?: Function;
|
|
562
|
-
|
|
586
|
+
toInternal?: Function;
|
|
587
|
+
toExternal?: Function;
|
|
563
588
|
externalName?: string;
|
|
564
589
|
env?: string[] | string;
|
|
565
590
|
additionalValues?: object;
|
|
@@ -579,7 +604,8 @@ export class Network extends Owner {
|
|
|
579
604
|
default?: any;
|
|
580
605
|
set?: Function;
|
|
581
606
|
get?: Function;
|
|
582
|
-
|
|
607
|
+
toInternal?: Function;
|
|
608
|
+
toExternal?: Function;
|
|
583
609
|
externalName?: string;
|
|
584
610
|
env?: string[] | string;
|
|
585
611
|
additionalValues?: object;
|
|
@@ -601,7 +627,8 @@ export class Network extends Owner {
|
|
|
601
627
|
default?: any;
|
|
602
628
|
set?: Function;
|
|
603
629
|
get?: Function;
|
|
604
|
-
|
|
630
|
+
toInternal?: Function;
|
|
631
|
+
toExternal?: Function;
|
|
605
632
|
values?: Set<any>;
|
|
606
633
|
externalName?: string;
|
|
607
634
|
env?: string[] | string;
|
|
@@ -621,7 +648,8 @@ export class Network extends Owner {
|
|
|
621
648
|
description?: string;
|
|
622
649
|
set?: Function;
|
|
623
650
|
get?: Function;
|
|
624
|
-
|
|
651
|
+
toInternal?: Function;
|
|
652
|
+
toExternal?: Function;
|
|
625
653
|
values?: Set<any>;
|
|
626
654
|
externalName?: string;
|
|
627
655
|
env?: string[] | string;
|
package/types/owner.d.mts
CHANGED
|
@@ -19,7 +19,8 @@ export class Owner extends Base {
|
|
|
19
19
|
default?: any;
|
|
20
20
|
set?: Function;
|
|
21
21
|
get?: Function;
|
|
22
|
-
|
|
22
|
+
toInternal?: Function;
|
|
23
|
+
toExternal?: Function;
|
|
23
24
|
values?: Set<any>;
|
|
24
25
|
externalName?: string;
|
|
25
26
|
env?: string[] | string;
|
|
@@ -39,7 +40,8 @@ export class Owner extends Base {
|
|
|
39
40
|
default?: any;
|
|
40
41
|
set?: Function;
|
|
41
42
|
get?: Function;
|
|
42
|
-
|
|
43
|
+
toInternal?: Function;
|
|
44
|
+
toExternal?: Function;
|
|
43
45
|
values?: Set<any>;
|
|
44
46
|
externalName?: string;
|
|
45
47
|
env?: string[] | string;
|
|
@@ -59,7 +61,8 @@ export class Owner extends Base {
|
|
|
59
61
|
default?: any;
|
|
60
62
|
set?: Function;
|
|
61
63
|
get?: Function;
|
|
62
|
-
|
|
64
|
+
toInternal?: Function;
|
|
65
|
+
toExternal?: Function;
|
|
63
66
|
values?: Set<any>;
|
|
64
67
|
externalName?: string;
|
|
65
68
|
env?: string[] | string;
|
|
@@ -87,7 +90,8 @@ export class Owner extends Base {
|
|
|
87
90
|
default?: any;
|
|
88
91
|
set?: Function;
|
|
89
92
|
get?: Function;
|
|
90
|
-
|
|
93
|
+
toInternal?: Function;
|
|
94
|
+
toExternal?: Function;
|
|
91
95
|
values?: Set<any>;
|
|
92
96
|
externalName?: string;
|
|
93
97
|
env?: string[] | string;
|
|
@@ -109,7 +113,8 @@ export class Owner extends Base {
|
|
|
109
113
|
default?: any;
|
|
110
114
|
set?: Function;
|
|
111
115
|
get?: Function;
|
|
112
|
-
|
|
116
|
+
toInternal?: Function;
|
|
117
|
+
toExternal?: Function;
|
|
113
118
|
values?: Set<any>;
|
|
114
119
|
externalName?: string;
|
|
115
120
|
env?: string[] | string;
|
|
@@ -135,7 +140,8 @@ export class Owner extends Base {
|
|
|
135
140
|
default?: any;
|
|
136
141
|
set?: Function;
|
|
137
142
|
get?: Function;
|
|
138
|
-
|
|
143
|
+
toInternal?: Function;
|
|
144
|
+
toExternal?: Function;
|
|
139
145
|
values?: Set<any>;
|
|
140
146
|
externalName?: string;
|
|
141
147
|
env?: string[] | string;
|
|
@@ -155,7 +161,8 @@ export class Owner extends Base {
|
|
|
155
161
|
default?: any;
|
|
156
162
|
set?: Function;
|
|
157
163
|
get?: Function;
|
|
158
|
-
|
|
164
|
+
toInternal?: Function;
|
|
165
|
+
toExternal?: Function;
|
|
159
166
|
values?: Set<any>;
|
|
160
167
|
externalName?: string;
|
|
161
168
|
env?: string[] | string;
|
package/types/service.d.mts
CHANGED
|
@@ -33,7 +33,8 @@ export namespace endpointAttributes {
|
|
|
33
33
|
default?: any;
|
|
34
34
|
set?: Function;
|
|
35
35
|
get?: Function;
|
|
36
|
-
|
|
36
|
+
toInternal?: Function;
|
|
37
|
+
toExternal?: Function;
|
|
37
38
|
externalName?: string;
|
|
38
39
|
env?: string[] | string;
|
|
39
40
|
additionalValues?: object;
|
|
@@ -72,7 +73,8 @@ export namespace ServiceTypeDefinition {
|
|
|
72
73
|
default?: any;
|
|
73
74
|
set?: Function;
|
|
74
75
|
get?: Function;
|
|
75
|
-
|
|
76
|
+
toInternal?: Function;
|
|
77
|
+
toExternal?: Function;
|
|
76
78
|
values?: Set<any>;
|
|
77
79
|
externalName?: string;
|
|
78
80
|
env?: string[] | string;
|
|
@@ -92,7 +94,8 @@ export namespace ServiceTypeDefinition {
|
|
|
92
94
|
default?: any;
|
|
93
95
|
set?: Function;
|
|
94
96
|
get?: Function;
|
|
95
|
-
|
|
97
|
+
toInternal?: Function;
|
|
98
|
+
toExternal?: Function;
|
|
96
99
|
values?: Set<any>;
|
|
97
100
|
externalName?: string;
|
|
98
101
|
env?: string[] | string;
|
|
@@ -114,7 +117,8 @@ export namespace ServiceTypeDefinition {
|
|
|
114
117
|
default?: any;
|
|
115
118
|
set?: Function;
|
|
116
119
|
get?: Function;
|
|
117
|
-
|
|
120
|
+
toInternal?: Function;
|
|
121
|
+
toExternal?: Function;
|
|
118
122
|
externalName?: string;
|
|
119
123
|
env?: string[] | string;
|
|
120
124
|
additionalValues?: object;
|
|
@@ -136,7 +140,8 @@ export namespace ServiceTypeDefinition {
|
|
|
136
140
|
default?: any;
|
|
137
141
|
set?: Function;
|
|
138
142
|
get?: Function;
|
|
139
|
-
|
|
143
|
+
toInternal?: Function;
|
|
144
|
+
toExternal?: Function;
|
|
140
145
|
externalName?: string;
|
|
141
146
|
env?: string[] | string;
|
|
142
147
|
additionalValues?: object;
|
|
@@ -160,7 +165,8 @@ export namespace ServiceTypeDefinition {
|
|
|
160
165
|
default?: any;
|
|
161
166
|
set?: Function;
|
|
162
167
|
get?: Function;
|
|
163
|
-
|
|
168
|
+
toInternal?: Function;
|
|
169
|
+
toExternal?: Function;
|
|
164
170
|
externalName?: string;
|
|
165
171
|
env?: string[] | string;
|
|
166
172
|
additionalValues?: object;
|
|
@@ -180,7 +186,8 @@ export namespace ServiceTypeDefinition {
|
|
|
180
186
|
default?: any;
|
|
181
187
|
set?: Function;
|
|
182
188
|
get?: Function;
|
|
183
|
-
|
|
189
|
+
toInternal?: Function;
|
|
190
|
+
toExternal?: Function;
|
|
184
191
|
externalName?: string;
|
|
185
192
|
env?: string[] | string;
|
|
186
193
|
additionalValues?: object;
|
|
@@ -202,7 +209,8 @@ export namespace ServiceTypeDefinition {
|
|
|
202
209
|
default?: any;
|
|
203
210
|
set?: Function;
|
|
204
211
|
get?: Function;
|
|
205
|
-
|
|
212
|
+
toInternal?: Function;
|
|
213
|
+
toExternal?: Function;
|
|
206
214
|
values?: Set<any>;
|
|
207
215
|
externalName?: string;
|
|
208
216
|
env?: string[] | string;
|
|
@@ -224,7 +232,8 @@ export namespace ServiceTypeDefinition {
|
|
|
224
232
|
default?: any;
|
|
225
233
|
set?: Function;
|
|
226
234
|
get?: Function;
|
|
227
|
-
|
|
235
|
+
toInternal?: Function;
|
|
236
|
+
toExternal?: Function;
|
|
228
237
|
values?: Set<any>;
|
|
229
238
|
externalName?: string;
|
|
230
239
|
env?: string[] | string;
|
|
@@ -260,7 +269,8 @@ export namespace ServiceTypeDefinition {
|
|
|
260
269
|
default?: any;
|
|
261
270
|
set?: Function;
|
|
262
271
|
get?: Function;
|
|
263
|
-
|
|
272
|
+
toInternal?: Function;
|
|
273
|
+
toExternal?: Function;
|
|
264
274
|
values?: Set<any>;
|
|
265
275
|
externalName?: string;
|
|
266
276
|
env?: string[] | string;
|
|
@@ -283,7 +293,8 @@ export namespace ServiceTypeDefinition {
|
|
|
283
293
|
default?: any;
|
|
284
294
|
set?: Function;
|
|
285
295
|
get?: Function;
|
|
286
|
-
|
|
296
|
+
toInternal?: Function;
|
|
297
|
+
toExternal?: Function;
|
|
287
298
|
externalName?: string;
|
|
288
299
|
env?: string[] | string;
|
|
289
300
|
additionalValues?: object;
|
|
@@ -305,7 +316,8 @@ export namespace ServiceTypeDefinition {
|
|
|
305
316
|
default?: any;
|
|
306
317
|
set?: Function;
|
|
307
318
|
get?: Function;
|
|
308
|
-
|
|
319
|
+
toInternal?: Function;
|
|
320
|
+
toExternal?: Function;
|
|
309
321
|
values?: Set<any>;
|
|
310
322
|
externalName?: string;
|
|
311
323
|
env?: string[] | string;
|
|
@@ -340,7 +352,8 @@ export class Service extends Base {
|
|
|
340
352
|
default?: any;
|
|
341
353
|
set?: Function;
|
|
342
354
|
get?: Function;
|
|
343
|
-
|
|
355
|
+
toInternal?: Function;
|
|
356
|
+
toExternal?: Function;
|
|
344
357
|
values?: Set<any>;
|
|
345
358
|
externalName?: string;
|
|
346
359
|
env?: string[] | string;
|
|
@@ -360,7 +373,8 @@ export class Service extends Base {
|
|
|
360
373
|
default?: any;
|
|
361
374
|
set?: Function;
|
|
362
375
|
get?: Function;
|
|
363
|
-
|
|
376
|
+
toInternal?: Function;
|
|
377
|
+
toExternal?: Function;
|
|
364
378
|
values?: Set<any>;
|
|
365
379
|
externalName?: string;
|
|
366
380
|
env?: string[] | string;
|
|
@@ -382,7 +396,8 @@ export class Service extends Base {
|
|
|
382
396
|
default?: any;
|
|
383
397
|
set?: Function;
|
|
384
398
|
get?: Function;
|
|
385
|
-
|
|
399
|
+
toInternal?: Function;
|
|
400
|
+
toExternal?: Function;
|
|
386
401
|
externalName?: string;
|
|
387
402
|
env?: string[] | string;
|
|
388
403
|
additionalValues?: object;
|
|
@@ -404,7 +419,8 @@ export class Service extends Base {
|
|
|
404
419
|
default?: any;
|
|
405
420
|
set?: Function;
|
|
406
421
|
get?: Function;
|
|
407
|
-
|
|
422
|
+
toInternal?: Function;
|
|
423
|
+
toExternal?: Function;
|
|
408
424
|
externalName?: string;
|
|
409
425
|
env?: string[] | string;
|
|
410
426
|
additionalValues?: object;
|
|
@@ -428,7 +444,8 @@ export class Service extends Base {
|
|
|
428
444
|
default?: any;
|
|
429
445
|
set?: Function;
|
|
430
446
|
get?: Function;
|
|
431
|
-
|
|
447
|
+
toInternal?: Function;
|
|
448
|
+
toExternal?: Function;
|
|
432
449
|
externalName?: string;
|
|
433
450
|
env?: string[] | string;
|
|
434
451
|
additionalValues?: object;
|
|
@@ -448,7 +465,8 @@ export class Service extends Base {
|
|
|
448
465
|
default?: any;
|
|
449
466
|
set?: Function;
|
|
450
467
|
get?: Function;
|
|
451
|
-
|
|
468
|
+
toInternal?: Function;
|
|
469
|
+
toExternal?: Function;
|
|
452
470
|
externalName?: string;
|
|
453
471
|
env?: string[] | string;
|
|
454
472
|
additionalValues?: object;
|
|
@@ -470,7 +488,8 @@ export class Service extends Base {
|
|
|
470
488
|
default?: any;
|
|
471
489
|
set?: Function;
|
|
472
490
|
get?: Function;
|
|
473
|
-
|
|
491
|
+
toInternal?: Function;
|
|
492
|
+
toExternal?: Function;
|
|
474
493
|
values?: Set<any>;
|
|
475
494
|
externalName?: string;
|
|
476
495
|
env?: string[] | string;
|
|
@@ -492,7 +511,8 @@ export class Service extends Base {
|
|
|
492
511
|
default?: any;
|
|
493
512
|
set?: Function;
|
|
494
513
|
get?: Function;
|
|
495
|
-
|
|
514
|
+
toInternal?: Function;
|
|
515
|
+
toExternal?: Function;
|
|
496
516
|
values?: Set<any>;
|
|
497
517
|
externalName?: string;
|
|
498
518
|
env?: string[] | string;
|
|
@@ -524,7 +544,8 @@ export class Service extends Base {
|
|
|
524
544
|
default?: any;
|
|
525
545
|
set?: Function;
|
|
526
546
|
get?: Function;
|
|
527
|
-
|
|
547
|
+
toInternal?: Function;
|
|
548
|
+
toExternal?: Function;
|
|
528
549
|
values?: Set<any>;
|
|
529
550
|
externalName?: string;
|
|
530
551
|
env?: string[] | string;
|
|
@@ -547,7 +568,8 @@ export class Service extends Base {
|
|
|
547
568
|
default?: any;
|
|
548
569
|
set?: Function;
|
|
549
570
|
get?: Function;
|
|
550
|
-
|
|
571
|
+
toInternal?: Function;
|
|
572
|
+
toExternal?: Function;
|
|
551
573
|
externalName?: string;
|
|
552
574
|
env?: string[] | string;
|
|
553
575
|
additionalValues?: object;
|
|
@@ -569,7 +591,8 @@ export class Service extends Base {
|
|
|
569
591
|
default?: any;
|
|
570
592
|
set?: Function;
|
|
571
593
|
get?: Function;
|
|
572
|
-
|
|
594
|
+
toInternal?: Function;
|
|
595
|
+
toExternal?: Function;
|
|
573
596
|
values?: Set<any>;
|
|
574
597
|
externalName?: string;
|
|
575
598
|
env?: string[] | string;
|