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
|
@@ -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;
|
package/types/host.d.mts
CHANGED
|
@@ -19,7 +19,8 @@ export class Host extends ServiceOwner {
|
|
|
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 Host extends ServiceOwner {
|
|
|
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;
|
|
@@ -61,7 +63,8 @@ export class Host extends ServiceOwner {
|
|
|
61
63
|
default?: any;
|
|
62
64
|
set?: Function;
|
|
63
65
|
get?: Function;
|
|
64
|
-
|
|
66
|
+
toInternal?: Function;
|
|
67
|
+
toExternal?: Function;
|
|
65
68
|
externalName?: string;
|
|
66
69
|
env?: string[] | string;
|
|
67
70
|
additionalValues?: object;
|
|
@@ -83,7 +86,8 @@ export class Host extends ServiceOwner {
|
|
|
83
86
|
default?: any;
|
|
84
87
|
set?: Function;
|
|
85
88
|
get?: Function;
|
|
86
|
-
|
|
89
|
+
toInternal?: Function;
|
|
90
|
+
toExternal?: Function;
|
|
87
91
|
externalName?: string;
|
|
88
92
|
env?: string[] | string;
|
|
89
93
|
additionalValues?: object;
|
|
@@ -107,7 +111,8 @@ export class Host extends ServiceOwner {
|
|
|
107
111
|
default?: any;
|
|
108
112
|
set?: Function;
|
|
109
113
|
get?: Function;
|
|
110
|
-
|
|
114
|
+
toInternal?: Function;
|
|
115
|
+
toExternal?: Function;
|
|
111
116
|
externalName?: string;
|
|
112
117
|
env?: string[] | string;
|
|
113
118
|
additionalValues?: object;
|
|
@@ -127,7 +132,8 @@ export class Host extends ServiceOwner {
|
|
|
127
132
|
default?: any;
|
|
128
133
|
set?: Function;
|
|
129
134
|
get?: Function;
|
|
130
|
-
|
|
135
|
+
toInternal?: Function;
|
|
136
|
+
toExternal?: Function;
|
|
131
137
|
externalName?: string;
|
|
132
138
|
env?: string[] | string;
|
|
133
139
|
additionalValues?: object;
|
|
@@ -149,7 +155,8 @@ export class Host extends ServiceOwner {
|
|
|
149
155
|
default?: any;
|
|
150
156
|
set?: Function;
|
|
151
157
|
get?: Function;
|
|
152
|
-
|
|
158
|
+
toInternal?: Function;
|
|
159
|
+
toExternal?: Function;
|
|
153
160
|
values?: Set<any>;
|
|
154
161
|
externalName?: string;
|
|
155
162
|
env?: string[] | string;
|
|
@@ -171,7 +178,8 @@ export class Host extends ServiceOwner {
|
|
|
171
178
|
default?: any;
|
|
172
179
|
set?: Function;
|
|
173
180
|
get?: Function;
|
|
174
|
-
|
|
181
|
+
toInternal?: Function;
|
|
182
|
+
toExternal?: Function;
|
|
175
183
|
values?: Set<any>;
|
|
176
184
|
externalName?: string;
|
|
177
185
|
env?: string[] | string;
|
package/types/location.d.mts
CHANGED
|
@@ -21,7 +21,8 @@ export class Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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 Location extends Owner {
|
|
|
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;
|
|
@@ -225,7 +234,8 @@ export class Location extends Owner {
|
|
|
225
234
|
default?: any;
|
|
226
235
|
set?: Function;
|
|
227
236
|
get?: Function;
|
|
228
|
-
|
|
237
|
+
toInternal?: Function;
|
|
238
|
+
toExternal?: Function;
|
|
229
239
|
values?: Set<any>;
|
|
230
240
|
externalName?: string;
|
|
231
241
|
env?: string[] | string;
|
|
@@ -253,7 +263,8 @@ export class Location extends Owner {
|
|
|
253
263
|
default?: any;
|
|
254
264
|
set?: Function;
|
|
255
265
|
get?: Function;
|
|
256
|
-
|
|
266
|
+
toInternal?: Function;
|
|
267
|
+
toExternal?: Function;
|
|
257
268
|
values?: Set<any>;
|
|
258
269
|
externalName?: string;
|
|
259
270
|
env?: string[] | string;
|
|
@@ -275,7 +286,8 @@ export class Location extends Owner {
|
|
|
275
286
|
default?: any;
|
|
276
287
|
set?: Function;
|
|
277
288
|
get?: Function;
|
|
278
|
-
|
|
289
|
+
toInternal?: Function;
|
|
290
|
+
toExternal?: Function;
|
|
279
291
|
values?: Set<any>;
|
|
280
292
|
externalName?: string;
|
|
281
293
|
env?: string[] | string;
|
|
@@ -301,7 +313,8 @@ export class Location extends Owner {
|
|
|
301
313
|
default?: any;
|
|
302
314
|
set?: Function;
|
|
303
315
|
get?: Function;
|
|
304
|
-
|
|
316
|
+
toInternal?: Function;
|
|
317
|
+
toExternal?: Function;
|
|
305
318
|
values?: Set<any>;
|
|
306
319
|
externalName?: string;
|
|
307
320
|
env?: string[] | string;
|
|
@@ -321,7 +334,8 @@ export class Location extends Owner {
|
|
|
321
334
|
default?: any;
|
|
322
335
|
set?: Function;
|
|
323
336
|
get?: Function;
|
|
324
|
-
|
|
337
|
+
toInternal?: Function;
|
|
338
|
+
toExternal?: Function;
|
|
325
339
|
values?: Set<any>;
|
|
326
340
|
externalName?: string;
|
|
327
341
|
env?: string[] | string;
|