pmcf 3.20.0 → 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/README.md +33 -10
- package/package.json +2 -2
- package/src/services/systemd-journal-upload.mjs +12 -4
- package/src/services/systemd-journal.mjs +11 -1
- 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
|
@@ -25,7 +25,8 @@ export class BindService extends ExtraSourceService {
|
|
|
25
25
|
default?: any;
|
|
26
26
|
set?: Function;
|
|
27
27
|
get?: Function;
|
|
28
|
-
|
|
28
|
+
toInternal?: Function;
|
|
29
|
+
toExternal?: Function;
|
|
29
30
|
values?: Set<any>;
|
|
30
31
|
externalName?: string;
|
|
31
32
|
env?: string[] | string;
|
|
@@ -45,7 +46,8 @@ export class BindService extends ExtraSourceService {
|
|
|
45
46
|
default?: any;
|
|
46
47
|
set?: Function;
|
|
47
48
|
get?: Function;
|
|
48
|
-
|
|
49
|
+
toInternal?: Function;
|
|
50
|
+
toExternal?: Function;
|
|
49
51
|
values?: Set<any>;
|
|
50
52
|
externalName?: string;
|
|
51
53
|
env?: string[] | string;
|
|
@@ -67,7 +69,8 @@ export class BindService extends ExtraSourceService {
|
|
|
67
69
|
default?: any;
|
|
68
70
|
set?: Function;
|
|
69
71
|
get?: Function;
|
|
70
|
-
|
|
72
|
+
toInternal?: Function;
|
|
73
|
+
toExternal?: Function;
|
|
71
74
|
externalName?: string;
|
|
72
75
|
env?: string[] | string;
|
|
73
76
|
additionalValues?: object;
|
|
@@ -89,7 +92,8 @@ export class BindService extends ExtraSourceService {
|
|
|
89
92
|
default?: any;
|
|
90
93
|
set?: Function;
|
|
91
94
|
get?: Function;
|
|
92
|
-
|
|
95
|
+
toInternal?: Function;
|
|
96
|
+
toExternal?: Function;
|
|
93
97
|
externalName?: string;
|
|
94
98
|
env?: string[] | string;
|
|
95
99
|
additionalValues?: object;
|
|
@@ -113,7 +117,8 @@ export class BindService extends ExtraSourceService {
|
|
|
113
117
|
default?: any;
|
|
114
118
|
set?: Function;
|
|
115
119
|
get?: Function;
|
|
116
|
-
|
|
120
|
+
toInternal?: Function;
|
|
121
|
+
toExternal?: Function;
|
|
117
122
|
externalName?: string;
|
|
118
123
|
env?: string[] | string;
|
|
119
124
|
additionalValues?: object;
|
|
@@ -133,7 +138,8 @@ export class BindService extends ExtraSourceService {
|
|
|
133
138
|
default?: any;
|
|
134
139
|
set?: Function;
|
|
135
140
|
get?: Function;
|
|
136
|
-
|
|
141
|
+
toInternal?: Function;
|
|
142
|
+
toExternal?: Function;
|
|
137
143
|
externalName?: string;
|
|
138
144
|
env?: string[] | string;
|
|
139
145
|
additionalValues?: object;
|
|
@@ -155,7 +161,8 @@ export class BindService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -177,7 +184,8 @@ export class BindService extends ExtraSourceService {
|
|
|
177
184
|
default?: any;
|
|
178
185
|
set?: Function;
|
|
179
186
|
get?: Function;
|
|
180
|
-
|
|
187
|
+
toInternal?: Function;
|
|
188
|
+
toExternal?: Function;
|
|
181
189
|
values?: Set<any>;
|
|
182
190
|
externalName?: string;
|
|
183
191
|
env?: string[] | string;
|
|
@@ -209,7 +217,8 @@ export class BindService extends ExtraSourceService {
|
|
|
209
217
|
default?: any;
|
|
210
218
|
set?: Function;
|
|
211
219
|
get?: Function;
|
|
212
|
-
|
|
220
|
+
toInternal?: Function;
|
|
221
|
+
toExternal?: Function;
|
|
213
222
|
values?: Set<any>;
|
|
214
223
|
externalName?: string;
|
|
215
224
|
env?: string[] | string;
|
|
@@ -232,7 +241,8 @@ export class BindService extends ExtraSourceService {
|
|
|
232
241
|
default?: any;
|
|
233
242
|
set?: Function;
|
|
234
243
|
get?: Function;
|
|
235
|
-
|
|
244
|
+
toInternal?: Function;
|
|
245
|
+
toExternal?: Function;
|
|
236
246
|
externalName?: string;
|
|
237
247
|
env?: string[] | string;
|
|
238
248
|
additionalValues?: object;
|
|
@@ -254,7 +264,8 @@ export class BindService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -288,7 +299,8 @@ export class BindService extends ExtraSourceService {
|
|
|
288
299
|
default?: any;
|
|
289
300
|
set?: Function;
|
|
290
301
|
get?: Function;
|
|
291
|
-
|
|
302
|
+
toInternal?: Function;
|
|
303
|
+
toExternal?: Function;
|
|
292
304
|
values?: Set<any>;
|
|
293
305
|
externalName?: string;
|
|
294
306
|
env?: string[] | string;
|
|
@@ -308,7 +320,8 @@ export class BindService extends ExtraSourceService {
|
|
|
308
320
|
default?: any;
|
|
309
321
|
set?: Function;
|
|
310
322
|
get?: Function;
|
|
311
|
-
|
|
323
|
+
toInternal?: Function;
|
|
324
|
+
toExternal?: Function;
|
|
312
325
|
values?: Set<any>;
|
|
313
326
|
externalName?: string;
|
|
314
327
|
env?: string[] | string;
|
|
@@ -330,7 +343,8 @@ export class BindService extends ExtraSourceService {
|
|
|
330
343
|
default?: any;
|
|
331
344
|
set?: Function;
|
|
332
345
|
get?: Function;
|
|
333
|
-
|
|
346
|
+
toInternal?: Function;
|
|
347
|
+
toExternal?: Function;
|
|
334
348
|
externalName?: string;
|
|
335
349
|
env?: string[] | string;
|
|
336
350
|
additionalValues?: object;
|
|
@@ -352,7 +366,8 @@ export class BindService extends ExtraSourceService {
|
|
|
352
366
|
default?: any;
|
|
353
367
|
set?: Function;
|
|
354
368
|
get?: Function;
|
|
355
|
-
|
|
369
|
+
toInternal?: Function;
|
|
370
|
+
toExternal?: Function;
|
|
356
371
|
externalName?: string;
|
|
357
372
|
env?: string[] | string;
|
|
358
373
|
additionalValues?: object;
|
|
@@ -376,7 +391,8 @@ export class BindService extends ExtraSourceService {
|
|
|
376
391
|
default?: any;
|
|
377
392
|
set?: Function;
|
|
378
393
|
get?: Function;
|
|
379
|
-
|
|
394
|
+
toInternal?: Function;
|
|
395
|
+
toExternal?: Function;
|
|
380
396
|
externalName?: string;
|
|
381
397
|
env?: string[] | string;
|
|
382
398
|
additionalValues?: object;
|
|
@@ -396,7 +412,8 @@ export class BindService extends ExtraSourceService {
|
|
|
396
412
|
default?: any;
|
|
397
413
|
set?: Function;
|
|
398
414
|
get?: Function;
|
|
399
|
-
|
|
415
|
+
toInternal?: Function;
|
|
416
|
+
toExternal?: Function;
|
|
400
417
|
externalName?: string;
|
|
401
418
|
env?: string[] | string;
|
|
402
419
|
additionalValues?: object;
|
|
@@ -418,7 +435,8 @@ export class BindService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -440,7 +458,8 @@ export class BindService extends ExtraSourceService {
|
|
|
440
458
|
default?: any;
|
|
441
459
|
set?: Function;
|
|
442
460
|
get?: Function;
|
|
443
|
-
|
|
461
|
+
toInternal?: Function;
|
|
462
|
+
toExternal?: Function;
|
|
444
463
|
values?: Set<any>;
|
|
445
464
|
externalName?: string;
|
|
446
465
|
env?: string[] | string;
|
|
@@ -472,7 +491,8 @@ export class BindService extends ExtraSourceService {
|
|
|
472
491
|
default?: any;
|
|
473
492
|
set?: Function;
|
|
474
493
|
get?: Function;
|
|
475
|
-
|
|
494
|
+
toInternal?: Function;
|
|
495
|
+
toExternal?: Function;
|
|
476
496
|
values?: Set<any>;
|
|
477
497
|
externalName?: string;
|
|
478
498
|
env?: string[] | string;
|
|
@@ -495,7 +515,8 @@ export class BindService extends ExtraSourceService {
|
|
|
495
515
|
default?: any;
|
|
496
516
|
set?: Function;
|
|
497
517
|
get?: Function;
|
|
498
|
-
|
|
518
|
+
toInternal?: Function;
|
|
519
|
+
toExternal?: Function;
|
|
499
520
|
externalName?: string;
|
|
500
521
|
env?: string[] | string;
|
|
501
522
|
additionalValues?: object;
|
|
@@ -517,7 +538,8 @@ export class BindService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -549,7 +571,8 @@ export class BindService extends ExtraSourceService {
|
|
|
549
571
|
default?: any;
|
|
550
572
|
set?: Function;
|
|
551
573
|
get?: Function;
|
|
552
|
-
|
|
574
|
+
toInternal?: Function;
|
|
575
|
+
toExternal?: Function;
|
|
553
576
|
values?: Set<any>;
|
|
554
577
|
externalName?: string;
|
|
555
578
|
env?: string[] | string;
|
|
@@ -569,7 +592,8 @@ export class BindService extends ExtraSourceService {
|
|
|
569
592
|
default?: any;
|
|
570
593
|
set?: Function;
|
|
571
594
|
get?: Function;
|
|
572
|
-
|
|
595
|
+
toInternal?: Function;
|
|
596
|
+
toExternal?: Function;
|
|
573
597
|
values?: Set<any>;
|
|
574
598
|
externalName?: string;
|
|
575
599
|
env?: string[] | string;
|
|
@@ -591,7 +615,8 @@ export class BindService extends ExtraSourceService {
|
|
|
591
615
|
default?: any;
|
|
592
616
|
set?: Function;
|
|
593
617
|
get?: Function;
|
|
594
|
-
|
|
618
|
+
toInternal?: Function;
|
|
619
|
+
toExternal?: Function;
|
|
595
620
|
externalName?: string;
|
|
596
621
|
env?: string[] | string;
|
|
597
622
|
additionalValues?: object;
|
|
@@ -613,7 +638,8 @@ export class BindService extends ExtraSourceService {
|
|
|
613
638
|
default?: any;
|
|
614
639
|
set?: Function;
|
|
615
640
|
get?: Function;
|
|
616
|
-
|
|
641
|
+
toInternal?: Function;
|
|
642
|
+
toExternal?: Function;
|
|
617
643
|
externalName?: string;
|
|
618
644
|
env?: string[] | string;
|
|
619
645
|
additionalValues?: object;
|
|
@@ -637,7 +663,8 @@ export class BindService extends ExtraSourceService {
|
|
|
637
663
|
default?: any;
|
|
638
664
|
set?: Function;
|
|
639
665
|
get?: Function;
|
|
640
|
-
|
|
666
|
+
toInternal?: Function;
|
|
667
|
+
toExternal?: Function;
|
|
641
668
|
externalName?: string;
|
|
642
669
|
env?: string[] | string;
|
|
643
670
|
additionalValues?: object;
|
|
@@ -657,7 +684,8 @@ export class BindService extends ExtraSourceService {
|
|
|
657
684
|
default?: any;
|
|
658
685
|
set?: Function;
|
|
659
686
|
get?: Function;
|
|
660
|
-
|
|
687
|
+
toInternal?: Function;
|
|
688
|
+
toExternal?: Function;
|
|
661
689
|
externalName?: string;
|
|
662
690
|
env?: string[] | string;
|
|
663
691
|
additionalValues?: object;
|
|
@@ -679,7 +707,8 @@ export class BindService extends ExtraSourceService {
|
|
|
679
707
|
default?: any;
|
|
680
708
|
set?: Function;
|
|
681
709
|
get?: Function;
|
|
682
|
-
|
|
710
|
+
toInternal?: Function;
|
|
711
|
+
toExternal?: Function;
|
|
683
712
|
values?: Set<any>;
|
|
684
713
|
externalName?: string;
|
|
685
714
|
env?: string[] | string;
|
|
@@ -701,7 +730,8 @@ export class BindService extends ExtraSourceService {
|
|
|
701
730
|
default?: any;
|
|
702
731
|
set?: Function;
|
|
703
732
|
get?: Function;
|
|
704
|
-
|
|
733
|
+
toInternal?: Function;
|
|
734
|
+
toExternal?: Function;
|
|
705
735
|
values?: Set<any>;
|
|
706
736
|
externalName?: string;
|
|
707
737
|
env?: string[] | string;
|
|
@@ -728,7 +758,8 @@ export class BindService extends ExtraSourceService {
|
|
|
728
758
|
default?: any;
|
|
729
759
|
set?: Function;
|
|
730
760
|
get?: Function;
|
|
731
|
-
|
|
761
|
+
toInternal?: Function;
|
|
762
|
+
toExternal?: Function;
|
|
732
763
|
values?: Set<any>;
|
|
733
764
|
externalName?: string;
|
|
734
765
|
env?: string[] | string;
|
|
@@ -758,7 +789,8 @@ export class BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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 BindService extends ExtraSourceService {
|
|
|
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;
|
|
@@ -942,7 +981,8 @@ export class BindService extends ExtraSourceService {
|
|
|
942
981
|
default?: any;
|
|
943
982
|
set?: Function;
|
|
944
983
|
get?: Function;
|
|
945
|
-
|
|
984
|
+
toInternal?: Function;
|
|
985
|
+
toExternal?: Function;
|
|
946
986
|
values?: Set<any>;
|
|
947
987
|
externalName?: string;
|
|
948
988
|
env?: string[] | string;
|
|
@@ -965,7 +1005,8 @@ export class BindService extends ExtraSourceService {
|
|
|
965
1005
|
default?: any;
|
|
966
1006
|
set?: Function;
|
|
967
1007
|
get?: Function;
|
|
968
|
-
|
|
1008
|
+
toInternal?: Function;
|
|
1009
|
+
toExternal?: Function;
|
|
969
1010
|
externalName?: string;
|
|
970
1011
|
env?: string[] | string;
|
|
971
1012
|
additionalValues?: object;
|
|
@@ -987,7 +1028,8 @@ export class BindService extends ExtraSourceService {
|
|
|
987
1028
|
default?: any;
|
|
988
1029
|
set?: Function;
|
|
989
1030
|
get?: Function;
|
|
990
|
-
|
|
1031
|
+
toInternal?: Function;
|
|
1032
|
+
toExternal?: Function;
|
|
991
1033
|
values?: Set<any>;
|
|
992
1034
|
externalName?: string;
|
|
993
1035
|
env?: string[] | string;
|
|
@@ -1019,7 +1061,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1019
1061
|
default?: any;
|
|
1020
1062
|
set?: Function;
|
|
1021
1063
|
get?: Function;
|
|
1022
|
-
|
|
1064
|
+
toInternal?: Function;
|
|
1065
|
+
toExternal?: Function;
|
|
1023
1066
|
values?: Set<any>;
|
|
1024
1067
|
externalName?: string;
|
|
1025
1068
|
env?: string[] | string;
|
|
@@ -1039,7 +1082,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1039
1082
|
default?: any;
|
|
1040
1083
|
set?: Function;
|
|
1041
1084
|
get?: Function;
|
|
1042
|
-
|
|
1085
|
+
toInternal?: Function;
|
|
1086
|
+
toExternal?: Function;
|
|
1043
1087
|
values?: Set<any>;
|
|
1044
1088
|
externalName?: string;
|
|
1045
1089
|
env?: string[] | string;
|
|
@@ -1061,7 +1105,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1061
1105
|
default?: any;
|
|
1062
1106
|
set?: Function;
|
|
1063
1107
|
get?: Function;
|
|
1064
|
-
|
|
1108
|
+
toInternal?: Function;
|
|
1109
|
+
toExternal?: Function;
|
|
1065
1110
|
externalName?: string;
|
|
1066
1111
|
env?: string[] | string;
|
|
1067
1112
|
additionalValues?: object;
|
|
@@ -1083,7 +1128,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1083
1128
|
default?: any;
|
|
1084
1129
|
set?: Function;
|
|
1085
1130
|
get?: Function;
|
|
1086
|
-
|
|
1131
|
+
toInternal?: Function;
|
|
1132
|
+
toExternal?: Function;
|
|
1087
1133
|
externalName?: string;
|
|
1088
1134
|
env?: string[] | string;
|
|
1089
1135
|
additionalValues?: object;
|
|
@@ -1107,7 +1153,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1107
1153
|
default?: any;
|
|
1108
1154
|
set?: Function;
|
|
1109
1155
|
get?: Function;
|
|
1110
|
-
|
|
1156
|
+
toInternal?: Function;
|
|
1157
|
+
toExternal?: Function;
|
|
1111
1158
|
externalName?: string;
|
|
1112
1159
|
env?: string[] | string;
|
|
1113
1160
|
additionalValues?: object;
|
|
@@ -1127,7 +1174,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1127
1174
|
default?: any;
|
|
1128
1175
|
set?: Function;
|
|
1129
1176
|
get?: Function;
|
|
1130
|
-
|
|
1177
|
+
toInternal?: Function;
|
|
1178
|
+
toExternal?: Function;
|
|
1131
1179
|
externalName?: string;
|
|
1132
1180
|
env?: string[] | string;
|
|
1133
1181
|
additionalValues?: object;
|
|
@@ -1149,7 +1197,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1149
1197
|
default?: any;
|
|
1150
1198
|
set?: Function;
|
|
1151
1199
|
get?: Function;
|
|
1152
|
-
|
|
1200
|
+
toInternal?: Function;
|
|
1201
|
+
toExternal?: Function;
|
|
1153
1202
|
values?: Set<any>;
|
|
1154
1203
|
externalName?: string;
|
|
1155
1204
|
env?: string[] | string;
|
|
@@ -1171,7 +1220,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1171
1220
|
default?: any;
|
|
1172
1221
|
set?: Function;
|
|
1173
1222
|
get?: Function;
|
|
1174
|
-
|
|
1223
|
+
toInternal?: Function;
|
|
1224
|
+
toExternal?: Function;
|
|
1175
1225
|
values?: Set<any>;
|
|
1176
1226
|
externalName?: string;
|
|
1177
1227
|
env?: string[] | string;
|
|
@@ -1209,7 +1259,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1209
1259
|
default?: any;
|
|
1210
1260
|
set?: Function;
|
|
1211
1261
|
get?: Function;
|
|
1212
|
-
|
|
1262
|
+
toInternal?: Function;
|
|
1263
|
+
toExternal?: Function;
|
|
1213
1264
|
values?: Set<any>;
|
|
1214
1265
|
externalName?: string;
|
|
1215
1266
|
env?: string[] | string;
|
|
@@ -1229,7 +1280,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1229
1280
|
default?: any;
|
|
1230
1281
|
set?: Function;
|
|
1231
1282
|
get?: Function;
|
|
1232
|
-
|
|
1283
|
+
toInternal?: Function;
|
|
1284
|
+
toExternal?: Function;
|
|
1233
1285
|
values?: Set<any>;
|
|
1234
1286
|
externalName?: string;
|
|
1235
1287
|
env?: string[] | string;
|
|
@@ -1254,7 +1306,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1254
1306
|
default?: any;
|
|
1255
1307
|
set?: Function;
|
|
1256
1308
|
get?: Function;
|
|
1257
|
-
|
|
1309
|
+
toInternal?: Function;
|
|
1310
|
+
toExternal?: Function;
|
|
1258
1311
|
values?: Set<any>;
|
|
1259
1312
|
externalName?: string;
|
|
1260
1313
|
env?: string[] | string;
|
|
@@ -1277,7 +1330,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1277
1330
|
description?: string;
|
|
1278
1331
|
set?: Function;
|
|
1279
1332
|
get?: Function;
|
|
1280
|
-
|
|
1333
|
+
toInternal?: Function;
|
|
1334
|
+
toExternal?: Function;
|
|
1281
1335
|
values?: Set<any>;
|
|
1282
1336
|
externalName?: string;
|
|
1283
1337
|
env?: string[] | string;
|
|
@@ -1297,7 +1351,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1297
1351
|
description?: string;
|
|
1298
1352
|
set?: Function;
|
|
1299
1353
|
get?: Function;
|
|
1300
|
-
|
|
1354
|
+
toInternal?: Function;
|
|
1355
|
+
toExternal?: Function;
|
|
1301
1356
|
values?: Set<any>;
|
|
1302
1357
|
externalName?: string;
|
|
1303
1358
|
env?: string[] | string;
|
|
@@ -1317,7 +1372,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1317
1372
|
description?: string;
|
|
1318
1373
|
set?: Function;
|
|
1319
1374
|
get?: Function;
|
|
1320
|
-
|
|
1375
|
+
toInternal?: Function;
|
|
1376
|
+
toExternal?: Function;
|
|
1321
1377
|
values?: Set<any>;
|
|
1322
1378
|
externalName?: string;
|
|
1323
1379
|
env?: string[] | string;
|
|
@@ -1337,7 +1393,8 @@ export class BindService extends ExtraSourceService {
|
|
|
1337
1393
|
description?: string;
|
|
1338
1394
|
set?: Function;
|
|
1339
1395
|
get?: Function;
|
|
1340
|
-
|
|
1396
|
+
toInternal?: Function;
|
|
1397
|
+
toExternal?: Function;
|
|
1341
1398
|
values?: Set<any>;
|
|
1342
1399
|
externalName?: string;
|
|
1343
1400
|
env?: string[] | string;
|