incanto 0.58.0 → 0.59.0
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/bin/incanto-multiplay.mjs +170 -0
- package/bin/incanto-verify.mjs +68 -4
- package/bin/incanto.mjs +1 -0
- package/dist/2d.d.ts +8 -2
- package/dist/2d.js +3 -3
- package/dist/3d.d.ts +9 -3
- package/dist/3d.js +4 -4
- package/dist/{behavior-l08AEbq9.d.ts → behavior-DWKTUzKI.d.ts} +10 -0
- package/dist/{create-game-D10bU5_J.js → create-game-BiW8Men_.js} +6 -6
- package/dist/{create-game-BZwWJIns.js → create-game-CHDLDQsQ.js} +6 -6
- package/dist/debug.d.ts +1 -1
- package/dist/debug.js +2 -2
- package/dist/{duplicate-BPLZDZpd.js → duplicate-DJQd44CD.js} +1 -1
- package/dist/{environment-presets-CvvQr_bJ.js → environment-presets-DRAz5EV9.js} +12 -10
- package/dist/{gameplay-BVphcxmE.js → gameplay-BBEjPFsR.js} +62 -34
- package/dist/gameplay.d.ts +1 -1
- package/dist/gameplay.js +1 -1
- package/dist/index.d.ts +36 -8
- package/dist/index.js +8 -8
- package/dist/{json-BLk7H2Qa.js → json-CwwhxQgb.js} +7 -1
- package/dist/{loader-BcrRSjxB.js → loader-D8n7TU8W.js} +142 -5
- package/dist/{loader-BbEMTuWg.d.ts → loader-TvkRFbyL.d.ts} +1 -1
- package/dist/net.d.ts +2 -2
- package/dist/net.js +1 -1
- package/dist/{pathfinding-mEN4V1CU.d.ts → pathfinding-BqWBb0kh.d.ts} +1 -1
- package/dist/{physics-2d-EqA-jddf.js → physics-2d-BaRSRrrZ.js} +12 -2
- package/dist/{physics-3d-Dnz4fsXX.js → physics-3d-CYxjh-HW.js} +13 -3
- package/dist/react.d.ts +1 -1
- package/dist/react.js +2 -2
- package/dist/{register-C6ZBFRjd.js → register-BpFcgdcL.js} +57 -27
- package/dist/{register-Ch70uByv.js → register-CDrAQqPp.js} +90 -41
- package/dist/{registry-C7u42TID.js → registry-WWcQcfMr.js} +1 -1
- package/dist/{replay-s7I2GstT.js → replay-CEPyQtF_.js} +31 -7
- package/dist/{replay-Dw6gMlYA.d.ts → replay-O-yAGM76.d.ts} +1 -1
- package/dist/{split-screen-B0baBwxI.d.ts → split-screen-BQ3tAsf-.d.ts} +38 -1
- package/dist/{split-screen-DLsUrleX.js → split-screen-DDMZutQ6.js} +56 -13
- package/dist/{sprite-animation-C0wXLBZJ.js → sprite-animation-CY-mrr1L.js} +1 -1
- package/dist/{src-C1J09Op6.js → src-CY21B462.js} +1 -1
- package/dist/{teardown-Cs113S9F.js → teardown-RApWnM1G.js} +1 -1
- package/dist/{test-ZBga8kQ9.js → test-DHYuFyAu.js} +260 -25
- package/dist/test.d.ts +103 -5
- package/dist/test.js +3 -3
- package/dist/vite.js +2 -2
- package/editor/assets/{agent8-BQQjE9UQ.js → agent8-BoRGtVxK.js} +1 -1
- package/editor/assets/{debug-C9UCsXBS.js → debug-CzdyCg75.js} +1 -1
- package/editor/assets/{index-CBgfM3WD.js → index-VesuVEhe.js} +91 -91
- package/editor/index.html +1 -1
- package/package.json +2 -1
- package/schemas/scene.schema.json +1174 -70
- package/skills/incanto-localization.md +40 -8
- package/skills/incanto-multiplayer.md +57 -4
- package/skills/incanto-node-reference.md +18 -0
- package/skills/incanto-physics-and-input.md +26 -0
- package/skills/incanto-verifying-your-game.md +22 -0
- package/templates-app/beacon-isle-3d/package.json +1 -1
- package/templates-app/platformer-2d/package.json +1 -1
- package/templates-app/star-survivor/package.json +1 -1
- package/templates-app/tps-3d/package.json +1 -1
- package/templates-app/village-quest-3d/package.json +1 -1
|
@@ -433,7 +433,23 @@
|
|
|
433
433
|
"required": ["name"]
|
|
434
434
|
},
|
|
435
435
|
"network": {
|
|
436
|
-
"type": "object"
|
|
436
|
+
"type": "object",
|
|
437
|
+
"properties": {
|
|
438
|
+
"mode": {
|
|
439
|
+
"enum": ["owner", "observer"]
|
|
440
|
+
},
|
|
441
|
+
"sync": {
|
|
442
|
+
"type": "array",
|
|
443
|
+
"items": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"minLength": 1
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
"throttleMs": {
|
|
449
|
+
"type": "number"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"additionalProperties": false
|
|
437
453
|
},
|
|
438
454
|
"children": {
|
|
439
455
|
"type": "array",
|
|
@@ -565,7 +581,23 @@
|
|
|
565
581
|
"required": ["name"]
|
|
566
582
|
},
|
|
567
583
|
"network": {
|
|
568
|
-
"type": "object"
|
|
584
|
+
"type": "object",
|
|
585
|
+
"properties": {
|
|
586
|
+
"mode": {
|
|
587
|
+
"enum": ["owner", "observer"]
|
|
588
|
+
},
|
|
589
|
+
"sync": {
|
|
590
|
+
"type": "array",
|
|
591
|
+
"items": {
|
|
592
|
+
"type": "string",
|
|
593
|
+
"minLength": 1
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"throttleMs": {
|
|
597
|
+
"type": "number"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"additionalProperties": false
|
|
569
601
|
},
|
|
570
602
|
"children": {
|
|
571
603
|
"type": "array",
|
|
@@ -740,7 +772,23 @@
|
|
|
740
772
|
"required": ["name"]
|
|
741
773
|
},
|
|
742
774
|
"network": {
|
|
743
|
-
"type": "object"
|
|
775
|
+
"type": "object",
|
|
776
|
+
"properties": {
|
|
777
|
+
"mode": {
|
|
778
|
+
"enum": ["owner", "observer"]
|
|
779
|
+
},
|
|
780
|
+
"sync": {
|
|
781
|
+
"type": "array",
|
|
782
|
+
"items": {
|
|
783
|
+
"type": "string",
|
|
784
|
+
"minLength": 1
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
"throttleMs": {
|
|
788
|
+
"type": "number"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"additionalProperties": false
|
|
744
792
|
},
|
|
745
793
|
"children": {
|
|
746
794
|
"type": "array",
|
|
@@ -818,6 +866,10 @@
|
|
|
818
866
|
"collider": {
|
|
819
867
|
"type": "object",
|
|
820
868
|
"default": {}
|
|
869
|
+
},
|
|
870
|
+
"enabled": {
|
|
871
|
+
"type": "boolean",
|
|
872
|
+
"default": true
|
|
821
873
|
}
|
|
822
874
|
},
|
|
823
875
|
"additionalProperties": false
|
|
@@ -835,7 +887,23 @@
|
|
|
835
887
|
"required": ["name"]
|
|
836
888
|
},
|
|
837
889
|
"network": {
|
|
838
|
-
"type": "object"
|
|
890
|
+
"type": "object",
|
|
891
|
+
"properties": {
|
|
892
|
+
"mode": {
|
|
893
|
+
"enum": ["owner", "observer"]
|
|
894
|
+
},
|
|
895
|
+
"sync": {
|
|
896
|
+
"type": "array",
|
|
897
|
+
"items": {
|
|
898
|
+
"type": "string",
|
|
899
|
+
"minLength": 1
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"throttleMs": {
|
|
903
|
+
"type": "number"
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
"additionalProperties": false
|
|
839
907
|
},
|
|
840
908
|
"children": {
|
|
841
909
|
"type": "array",
|
|
@@ -921,6 +989,10 @@
|
|
|
921
989
|
"collider": {
|
|
922
990
|
"type": "object",
|
|
923
991
|
"default": {}
|
|
992
|
+
},
|
|
993
|
+
"enabled": {
|
|
994
|
+
"type": "boolean",
|
|
995
|
+
"default": true
|
|
924
996
|
}
|
|
925
997
|
},
|
|
926
998
|
"additionalProperties": false
|
|
@@ -938,7 +1010,23 @@
|
|
|
938
1010
|
"required": ["name"]
|
|
939
1011
|
},
|
|
940
1012
|
"network": {
|
|
941
|
-
"type": "object"
|
|
1013
|
+
"type": "object",
|
|
1014
|
+
"properties": {
|
|
1015
|
+
"mode": {
|
|
1016
|
+
"enum": ["owner", "observer"]
|
|
1017
|
+
},
|
|
1018
|
+
"sync": {
|
|
1019
|
+
"type": "array",
|
|
1020
|
+
"items": {
|
|
1021
|
+
"type": "string",
|
|
1022
|
+
"minLength": 1
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"throttleMs": {
|
|
1026
|
+
"type": "number"
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"additionalProperties": false
|
|
942
1030
|
},
|
|
943
1031
|
"children": {
|
|
944
1032
|
"type": "array",
|
|
@@ -1057,7 +1145,23 @@
|
|
|
1057
1145
|
"required": ["name"]
|
|
1058
1146
|
},
|
|
1059
1147
|
"network": {
|
|
1060
|
-
"type": "object"
|
|
1148
|
+
"type": "object",
|
|
1149
|
+
"properties": {
|
|
1150
|
+
"mode": {
|
|
1151
|
+
"enum": ["owner", "observer"]
|
|
1152
|
+
},
|
|
1153
|
+
"sync": {
|
|
1154
|
+
"type": "array",
|
|
1155
|
+
"items": {
|
|
1156
|
+
"type": "string",
|
|
1157
|
+
"minLength": 1
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
"throttleMs": {
|
|
1161
|
+
"type": "number"
|
|
1162
|
+
}
|
|
1163
|
+
},
|
|
1164
|
+
"additionalProperties": false
|
|
1061
1165
|
},
|
|
1062
1166
|
"children": {
|
|
1063
1167
|
"type": "array",
|
|
@@ -1160,7 +1264,23 @@
|
|
|
1160
1264
|
"required": ["name"]
|
|
1161
1265
|
},
|
|
1162
1266
|
"network": {
|
|
1163
|
-
"type": "object"
|
|
1267
|
+
"type": "object",
|
|
1268
|
+
"properties": {
|
|
1269
|
+
"mode": {
|
|
1270
|
+
"enum": ["owner", "observer"]
|
|
1271
|
+
},
|
|
1272
|
+
"sync": {
|
|
1273
|
+
"type": "array",
|
|
1274
|
+
"items": {
|
|
1275
|
+
"type": "string",
|
|
1276
|
+
"minLength": 1
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"throttleMs": {
|
|
1280
|
+
"type": "number"
|
|
1281
|
+
}
|
|
1282
|
+
},
|
|
1283
|
+
"additionalProperties": false
|
|
1164
1284
|
},
|
|
1165
1285
|
"children": {
|
|
1166
1286
|
"type": "array",
|
|
@@ -1267,7 +1387,23 @@
|
|
|
1267
1387
|
"required": ["name"]
|
|
1268
1388
|
},
|
|
1269
1389
|
"network": {
|
|
1270
|
-
"type": "object"
|
|
1390
|
+
"type": "object",
|
|
1391
|
+
"properties": {
|
|
1392
|
+
"mode": {
|
|
1393
|
+
"enum": ["owner", "observer"]
|
|
1394
|
+
},
|
|
1395
|
+
"sync": {
|
|
1396
|
+
"type": "array",
|
|
1397
|
+
"items": {
|
|
1398
|
+
"type": "string",
|
|
1399
|
+
"minLength": 1
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"throttleMs": {
|
|
1403
|
+
"type": "number"
|
|
1404
|
+
}
|
|
1405
|
+
},
|
|
1406
|
+
"additionalProperties": false
|
|
1271
1407
|
},
|
|
1272
1408
|
"children": {
|
|
1273
1409
|
"type": "array",
|
|
@@ -1392,7 +1528,23 @@
|
|
|
1392
1528
|
"required": ["name"]
|
|
1393
1529
|
},
|
|
1394
1530
|
"network": {
|
|
1395
|
-
"type": "object"
|
|
1531
|
+
"type": "object",
|
|
1532
|
+
"properties": {
|
|
1533
|
+
"mode": {
|
|
1534
|
+
"enum": ["owner", "observer"]
|
|
1535
|
+
},
|
|
1536
|
+
"sync": {
|
|
1537
|
+
"type": "array",
|
|
1538
|
+
"items": {
|
|
1539
|
+
"type": "string",
|
|
1540
|
+
"minLength": 1
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"throttleMs": {
|
|
1544
|
+
"type": "number"
|
|
1545
|
+
}
|
|
1546
|
+
},
|
|
1547
|
+
"additionalProperties": false
|
|
1396
1548
|
},
|
|
1397
1549
|
"children": {
|
|
1398
1550
|
"type": "array",
|
|
@@ -1503,7 +1655,23 @@
|
|
|
1503
1655
|
"required": ["name"]
|
|
1504
1656
|
},
|
|
1505
1657
|
"network": {
|
|
1506
|
-
"type": "object"
|
|
1658
|
+
"type": "object",
|
|
1659
|
+
"properties": {
|
|
1660
|
+
"mode": {
|
|
1661
|
+
"enum": ["owner", "observer"]
|
|
1662
|
+
},
|
|
1663
|
+
"sync": {
|
|
1664
|
+
"type": "array",
|
|
1665
|
+
"items": {
|
|
1666
|
+
"type": "string",
|
|
1667
|
+
"minLength": 1
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
"throttleMs": {
|
|
1671
|
+
"type": "number"
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
"additionalProperties": false
|
|
1507
1675
|
},
|
|
1508
1676
|
"children": {
|
|
1509
1677
|
"type": "array",
|
|
@@ -1617,7 +1785,23 @@
|
|
|
1617
1785
|
"required": ["name"]
|
|
1618
1786
|
},
|
|
1619
1787
|
"network": {
|
|
1620
|
-
"type": "object"
|
|
1788
|
+
"type": "object",
|
|
1789
|
+
"properties": {
|
|
1790
|
+
"mode": {
|
|
1791
|
+
"enum": ["owner", "observer"]
|
|
1792
|
+
},
|
|
1793
|
+
"sync": {
|
|
1794
|
+
"type": "array",
|
|
1795
|
+
"items": {
|
|
1796
|
+
"type": "string",
|
|
1797
|
+
"minLength": 1
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
"throttleMs": {
|
|
1801
|
+
"type": "number"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"additionalProperties": false
|
|
1621
1805
|
},
|
|
1622
1806
|
"children": {
|
|
1623
1807
|
"type": "array",
|
|
@@ -1696,6 +1880,10 @@
|
|
|
1696
1880
|
"type": "object",
|
|
1697
1881
|
"default": {}
|
|
1698
1882
|
},
|
|
1883
|
+
"enabled": {
|
|
1884
|
+
"type": "boolean",
|
|
1885
|
+
"default": true
|
|
1886
|
+
},
|
|
1699
1887
|
"velocity": {
|
|
1700
1888
|
"type": "array",
|
|
1701
1889
|
"items": {
|
|
@@ -1729,7 +1917,23 @@
|
|
|
1729
1917
|
"required": ["name"]
|
|
1730
1918
|
},
|
|
1731
1919
|
"network": {
|
|
1732
|
-
"type": "object"
|
|
1920
|
+
"type": "object",
|
|
1921
|
+
"properties": {
|
|
1922
|
+
"mode": {
|
|
1923
|
+
"enum": ["owner", "observer"]
|
|
1924
|
+
},
|
|
1925
|
+
"sync": {
|
|
1926
|
+
"type": "array",
|
|
1927
|
+
"items": {
|
|
1928
|
+
"type": "string",
|
|
1929
|
+
"minLength": 1
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"throttleMs": {
|
|
1933
|
+
"type": "number"
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
"additionalProperties": false
|
|
1733
1937
|
},
|
|
1734
1938
|
"children": {
|
|
1735
1939
|
"type": "array",
|
|
@@ -1816,6 +2020,10 @@
|
|
|
1816
2020
|
"type": "object",
|
|
1817
2021
|
"default": {}
|
|
1818
2022
|
},
|
|
2023
|
+
"enabled": {
|
|
2024
|
+
"type": "boolean",
|
|
2025
|
+
"default": true
|
|
2026
|
+
},
|
|
1819
2027
|
"velocity": {
|
|
1820
2028
|
"type": "array",
|
|
1821
2029
|
"items": {
|
|
@@ -1849,7 +2057,23 @@
|
|
|
1849
2057
|
"required": ["name"]
|
|
1850
2058
|
},
|
|
1851
2059
|
"network": {
|
|
1852
|
-
"type": "object"
|
|
2060
|
+
"type": "object",
|
|
2061
|
+
"properties": {
|
|
2062
|
+
"mode": {
|
|
2063
|
+
"enum": ["owner", "observer"]
|
|
2064
|
+
},
|
|
2065
|
+
"sync": {
|
|
2066
|
+
"type": "array",
|
|
2067
|
+
"items": {
|
|
2068
|
+
"type": "string",
|
|
2069
|
+
"minLength": 1
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"throttleMs": {
|
|
2073
|
+
"type": "number"
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"additionalProperties": false
|
|
1853
2077
|
},
|
|
1854
2078
|
"children": {
|
|
1855
2079
|
"type": "array",
|
|
@@ -1963,7 +2187,23 @@
|
|
|
1963
2187
|
"required": ["name"]
|
|
1964
2188
|
},
|
|
1965
2189
|
"network": {
|
|
1966
|
-
"type": "object"
|
|
2190
|
+
"type": "object",
|
|
2191
|
+
"properties": {
|
|
2192
|
+
"mode": {
|
|
2193
|
+
"enum": ["owner", "observer"]
|
|
2194
|
+
},
|
|
2195
|
+
"sync": {
|
|
2196
|
+
"type": "array",
|
|
2197
|
+
"items": {
|
|
2198
|
+
"type": "string",
|
|
2199
|
+
"minLength": 1
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
"throttleMs": {
|
|
2203
|
+
"type": "number"
|
|
2204
|
+
}
|
|
2205
|
+
},
|
|
2206
|
+
"additionalProperties": false
|
|
1967
2207
|
},
|
|
1968
2208
|
"children": {
|
|
1969
2209
|
"type": "array",
|
|
@@ -2176,7 +2416,23 @@
|
|
|
2176
2416
|
"required": ["name"]
|
|
2177
2417
|
},
|
|
2178
2418
|
"network": {
|
|
2179
|
-
"type": "object"
|
|
2419
|
+
"type": "object",
|
|
2420
|
+
"properties": {
|
|
2421
|
+
"mode": {
|
|
2422
|
+
"enum": ["owner", "observer"]
|
|
2423
|
+
},
|
|
2424
|
+
"sync": {
|
|
2425
|
+
"type": "array",
|
|
2426
|
+
"items": {
|
|
2427
|
+
"type": "string",
|
|
2428
|
+
"minLength": 1
|
|
2429
|
+
}
|
|
2430
|
+
},
|
|
2431
|
+
"throttleMs": {
|
|
2432
|
+
"type": "number"
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2435
|
+
"additionalProperties": false
|
|
2180
2436
|
},
|
|
2181
2437
|
"children": {
|
|
2182
2438
|
"type": "array",
|
|
@@ -2292,7 +2548,23 @@
|
|
|
2292
2548
|
"required": ["name"]
|
|
2293
2549
|
},
|
|
2294
2550
|
"network": {
|
|
2295
|
-
"type": "object"
|
|
2551
|
+
"type": "object",
|
|
2552
|
+
"properties": {
|
|
2553
|
+
"mode": {
|
|
2554
|
+
"enum": ["owner", "observer"]
|
|
2555
|
+
},
|
|
2556
|
+
"sync": {
|
|
2557
|
+
"type": "array",
|
|
2558
|
+
"items": {
|
|
2559
|
+
"type": "string",
|
|
2560
|
+
"minLength": 1
|
|
2561
|
+
}
|
|
2562
|
+
},
|
|
2563
|
+
"throttleMs": {
|
|
2564
|
+
"type": "number"
|
|
2565
|
+
}
|
|
2566
|
+
},
|
|
2567
|
+
"additionalProperties": false
|
|
2296
2568
|
},
|
|
2297
2569
|
"children": {
|
|
2298
2570
|
"type": "array",
|
|
@@ -2414,7 +2686,23 @@
|
|
|
2414
2686
|
"required": ["name"]
|
|
2415
2687
|
},
|
|
2416
2688
|
"network": {
|
|
2417
|
-
"type": "object"
|
|
2689
|
+
"type": "object",
|
|
2690
|
+
"properties": {
|
|
2691
|
+
"mode": {
|
|
2692
|
+
"enum": ["owner", "observer"]
|
|
2693
|
+
},
|
|
2694
|
+
"sync": {
|
|
2695
|
+
"type": "array",
|
|
2696
|
+
"items": {
|
|
2697
|
+
"type": "string",
|
|
2698
|
+
"minLength": 1
|
|
2699
|
+
}
|
|
2700
|
+
},
|
|
2701
|
+
"throttleMs": {
|
|
2702
|
+
"type": "number"
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2705
|
+
"additionalProperties": false
|
|
2418
2706
|
},
|
|
2419
2707
|
"children": {
|
|
2420
2708
|
"type": "array",
|
|
@@ -2562,7 +2850,23 @@
|
|
|
2562
2850
|
"required": ["name"]
|
|
2563
2851
|
},
|
|
2564
2852
|
"network": {
|
|
2565
|
-
"type": "object"
|
|
2853
|
+
"type": "object",
|
|
2854
|
+
"properties": {
|
|
2855
|
+
"mode": {
|
|
2856
|
+
"enum": ["owner", "observer"]
|
|
2857
|
+
},
|
|
2858
|
+
"sync": {
|
|
2859
|
+
"type": "array",
|
|
2860
|
+
"items": {
|
|
2861
|
+
"type": "string",
|
|
2862
|
+
"minLength": 1
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
"throttleMs": {
|
|
2866
|
+
"type": "number"
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2869
|
+
"additionalProperties": false
|
|
2566
2870
|
},
|
|
2567
2871
|
"children": {
|
|
2568
2872
|
"type": "array",
|
|
@@ -2757,7 +3061,23 @@
|
|
|
2757
3061
|
"required": ["name"]
|
|
2758
3062
|
},
|
|
2759
3063
|
"network": {
|
|
2760
|
-
"type": "object"
|
|
3064
|
+
"type": "object",
|
|
3065
|
+
"properties": {
|
|
3066
|
+
"mode": {
|
|
3067
|
+
"enum": ["owner", "observer"]
|
|
3068
|
+
},
|
|
3069
|
+
"sync": {
|
|
3070
|
+
"type": "array",
|
|
3071
|
+
"items": {
|
|
3072
|
+
"type": "string",
|
|
3073
|
+
"minLength": 1
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
"throttleMs": {
|
|
3077
|
+
"type": "number"
|
|
3078
|
+
}
|
|
3079
|
+
},
|
|
3080
|
+
"additionalProperties": false
|
|
2761
3081
|
},
|
|
2762
3082
|
"children": {
|
|
2763
3083
|
"type": "array",
|
|
@@ -2820,7 +3140,23 @@
|
|
|
2820
3140
|
"required": ["name"]
|
|
2821
3141
|
},
|
|
2822
3142
|
"network": {
|
|
2823
|
-
"type": "object"
|
|
3143
|
+
"type": "object",
|
|
3144
|
+
"properties": {
|
|
3145
|
+
"mode": {
|
|
3146
|
+
"enum": ["owner", "observer"]
|
|
3147
|
+
},
|
|
3148
|
+
"sync": {
|
|
3149
|
+
"type": "array",
|
|
3150
|
+
"items": {
|
|
3151
|
+
"type": "string",
|
|
3152
|
+
"minLength": 1
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3155
|
+
"throttleMs": {
|
|
3156
|
+
"type": "number"
|
|
3157
|
+
}
|
|
3158
|
+
},
|
|
3159
|
+
"additionalProperties": false
|
|
2824
3160
|
},
|
|
2825
3161
|
"children": {
|
|
2826
3162
|
"type": "array",
|
|
@@ -2951,7 +3287,23 @@
|
|
|
2951
3287
|
"required": ["name"]
|
|
2952
3288
|
},
|
|
2953
3289
|
"network": {
|
|
2954
|
-
"type": "object"
|
|
3290
|
+
"type": "object",
|
|
3291
|
+
"properties": {
|
|
3292
|
+
"mode": {
|
|
3293
|
+
"enum": ["owner", "observer"]
|
|
3294
|
+
},
|
|
3295
|
+
"sync": {
|
|
3296
|
+
"type": "array",
|
|
3297
|
+
"items": {
|
|
3298
|
+
"type": "string",
|
|
3299
|
+
"minLength": 1
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
"throttleMs": {
|
|
3303
|
+
"type": "number"
|
|
3304
|
+
}
|
|
3305
|
+
},
|
|
3306
|
+
"additionalProperties": false
|
|
2955
3307
|
},
|
|
2956
3308
|
"children": {
|
|
2957
3309
|
"type": "array",
|
|
@@ -3081,7 +3433,23 @@
|
|
|
3081
3433
|
"required": ["name"]
|
|
3082
3434
|
},
|
|
3083
3435
|
"network": {
|
|
3084
|
-
"type": "object"
|
|
3436
|
+
"type": "object",
|
|
3437
|
+
"properties": {
|
|
3438
|
+
"mode": {
|
|
3439
|
+
"enum": ["owner", "observer"]
|
|
3440
|
+
},
|
|
3441
|
+
"sync": {
|
|
3442
|
+
"type": "array",
|
|
3443
|
+
"items": {
|
|
3444
|
+
"type": "string",
|
|
3445
|
+
"minLength": 1
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
"throttleMs": {
|
|
3449
|
+
"type": "number"
|
|
3450
|
+
}
|
|
3451
|
+
},
|
|
3452
|
+
"additionalProperties": false
|
|
3085
3453
|
},
|
|
3086
3454
|
"children": {
|
|
3087
3455
|
"type": "array",
|
|
@@ -3219,7 +3587,23 @@
|
|
|
3219
3587
|
"required": ["name"]
|
|
3220
3588
|
},
|
|
3221
3589
|
"network": {
|
|
3222
|
-
"type": "object"
|
|
3590
|
+
"type": "object",
|
|
3591
|
+
"properties": {
|
|
3592
|
+
"mode": {
|
|
3593
|
+
"enum": ["owner", "observer"]
|
|
3594
|
+
},
|
|
3595
|
+
"sync": {
|
|
3596
|
+
"type": "array",
|
|
3597
|
+
"items": {
|
|
3598
|
+
"type": "string",
|
|
3599
|
+
"minLength": 1
|
|
3600
|
+
}
|
|
3601
|
+
},
|
|
3602
|
+
"throttleMs": {
|
|
3603
|
+
"type": "number"
|
|
3604
|
+
}
|
|
3605
|
+
},
|
|
3606
|
+
"additionalProperties": false
|
|
3223
3607
|
},
|
|
3224
3608
|
"children": {
|
|
3225
3609
|
"type": "array",
|
|
@@ -3329,7 +3713,23 @@
|
|
|
3329
3713
|
"required": ["name"]
|
|
3330
3714
|
},
|
|
3331
3715
|
"network": {
|
|
3332
|
-
"type": "object"
|
|
3716
|
+
"type": "object",
|
|
3717
|
+
"properties": {
|
|
3718
|
+
"mode": {
|
|
3719
|
+
"enum": ["owner", "observer"]
|
|
3720
|
+
},
|
|
3721
|
+
"sync": {
|
|
3722
|
+
"type": "array",
|
|
3723
|
+
"items": {
|
|
3724
|
+
"type": "string",
|
|
3725
|
+
"minLength": 1
|
|
3726
|
+
}
|
|
3727
|
+
},
|
|
3728
|
+
"throttleMs": {
|
|
3729
|
+
"type": "number"
|
|
3730
|
+
}
|
|
3731
|
+
},
|
|
3732
|
+
"additionalProperties": false
|
|
3333
3733
|
},
|
|
3334
3734
|
"children": {
|
|
3335
3735
|
"type": "array",
|
|
@@ -3503,7 +3903,23 @@
|
|
|
3503
3903
|
"required": ["name"]
|
|
3504
3904
|
},
|
|
3505
3905
|
"network": {
|
|
3506
|
-
"type": "object"
|
|
3906
|
+
"type": "object",
|
|
3907
|
+
"properties": {
|
|
3908
|
+
"mode": {
|
|
3909
|
+
"enum": ["owner", "observer"]
|
|
3910
|
+
},
|
|
3911
|
+
"sync": {
|
|
3912
|
+
"type": "array",
|
|
3913
|
+
"items": {
|
|
3914
|
+
"type": "string",
|
|
3915
|
+
"minLength": 1
|
|
3916
|
+
}
|
|
3917
|
+
},
|
|
3918
|
+
"throttleMs": {
|
|
3919
|
+
"type": "number"
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
"additionalProperties": false
|
|
3507
3923
|
},
|
|
3508
3924
|
"children": {
|
|
3509
3925
|
"type": "array",
|
|
@@ -3625,7 +4041,23 @@
|
|
|
3625
4041
|
"required": ["name"]
|
|
3626
4042
|
},
|
|
3627
4043
|
"network": {
|
|
3628
|
-
"type": "object"
|
|
4044
|
+
"type": "object",
|
|
4045
|
+
"properties": {
|
|
4046
|
+
"mode": {
|
|
4047
|
+
"enum": ["owner", "observer"]
|
|
4048
|
+
},
|
|
4049
|
+
"sync": {
|
|
4050
|
+
"type": "array",
|
|
4051
|
+
"items": {
|
|
4052
|
+
"type": "string",
|
|
4053
|
+
"minLength": 1
|
|
4054
|
+
}
|
|
4055
|
+
},
|
|
4056
|
+
"throttleMs": {
|
|
4057
|
+
"type": "number"
|
|
4058
|
+
}
|
|
4059
|
+
},
|
|
4060
|
+
"additionalProperties": false
|
|
3629
4061
|
},
|
|
3630
4062
|
"children": {
|
|
3631
4063
|
"type": "array",
|
|
@@ -3749,7 +4181,23 @@
|
|
|
3749
4181
|
"required": ["name"]
|
|
3750
4182
|
},
|
|
3751
4183
|
"network": {
|
|
3752
|
-
"type": "object"
|
|
4184
|
+
"type": "object",
|
|
4185
|
+
"properties": {
|
|
4186
|
+
"mode": {
|
|
4187
|
+
"enum": ["owner", "observer"]
|
|
4188
|
+
},
|
|
4189
|
+
"sync": {
|
|
4190
|
+
"type": "array",
|
|
4191
|
+
"items": {
|
|
4192
|
+
"type": "string",
|
|
4193
|
+
"minLength": 1
|
|
4194
|
+
}
|
|
4195
|
+
},
|
|
4196
|
+
"throttleMs": {
|
|
4197
|
+
"type": "number"
|
|
4198
|
+
}
|
|
4199
|
+
},
|
|
4200
|
+
"additionalProperties": false
|
|
3753
4201
|
},
|
|
3754
4202
|
"children": {
|
|
3755
4203
|
"type": "array",
|
|
@@ -3904,7 +4352,23 @@
|
|
|
3904
4352
|
"required": ["name"]
|
|
3905
4353
|
},
|
|
3906
4354
|
"network": {
|
|
3907
|
-
"type": "object"
|
|
4355
|
+
"type": "object",
|
|
4356
|
+
"properties": {
|
|
4357
|
+
"mode": {
|
|
4358
|
+
"enum": ["owner", "observer"]
|
|
4359
|
+
},
|
|
4360
|
+
"sync": {
|
|
4361
|
+
"type": "array",
|
|
4362
|
+
"items": {
|
|
4363
|
+
"type": "string",
|
|
4364
|
+
"minLength": 1
|
|
4365
|
+
}
|
|
4366
|
+
},
|
|
4367
|
+
"throttleMs": {
|
|
4368
|
+
"type": "number"
|
|
4369
|
+
}
|
|
4370
|
+
},
|
|
4371
|
+
"additionalProperties": false
|
|
3908
4372
|
},
|
|
3909
4373
|
"children": {
|
|
3910
4374
|
"type": "array",
|
|
@@ -3968,7 +4432,23 @@
|
|
|
3968
4432
|
"required": ["name"]
|
|
3969
4433
|
},
|
|
3970
4434
|
"network": {
|
|
3971
|
-
"type": "object"
|
|
4435
|
+
"type": "object",
|
|
4436
|
+
"properties": {
|
|
4437
|
+
"mode": {
|
|
4438
|
+
"enum": ["owner", "observer"]
|
|
4439
|
+
},
|
|
4440
|
+
"sync": {
|
|
4441
|
+
"type": "array",
|
|
4442
|
+
"items": {
|
|
4443
|
+
"type": "string",
|
|
4444
|
+
"minLength": 1
|
|
4445
|
+
}
|
|
4446
|
+
},
|
|
4447
|
+
"throttleMs": {
|
|
4448
|
+
"type": "number"
|
|
4449
|
+
}
|
|
4450
|
+
},
|
|
4451
|
+
"additionalProperties": false
|
|
3972
4452
|
},
|
|
3973
4453
|
"children": {
|
|
3974
4454
|
"type": "array",
|
|
@@ -4018,7 +4498,23 @@
|
|
|
4018
4498
|
"required": ["name"]
|
|
4019
4499
|
},
|
|
4020
4500
|
"network": {
|
|
4021
|
-
"type": "object"
|
|
4501
|
+
"type": "object",
|
|
4502
|
+
"properties": {
|
|
4503
|
+
"mode": {
|
|
4504
|
+
"enum": ["owner", "observer"]
|
|
4505
|
+
},
|
|
4506
|
+
"sync": {
|
|
4507
|
+
"type": "array",
|
|
4508
|
+
"items": {
|
|
4509
|
+
"type": "string",
|
|
4510
|
+
"minLength": 1
|
|
4511
|
+
}
|
|
4512
|
+
},
|
|
4513
|
+
"throttleMs": {
|
|
4514
|
+
"type": "number"
|
|
4515
|
+
}
|
|
4516
|
+
},
|
|
4517
|
+
"additionalProperties": false
|
|
4022
4518
|
},
|
|
4023
4519
|
"children": {
|
|
4024
4520
|
"type": "array",
|
|
@@ -4108,7 +4604,23 @@
|
|
|
4108
4604
|
"required": ["name"]
|
|
4109
4605
|
},
|
|
4110
4606
|
"network": {
|
|
4111
|
-
"type": "object"
|
|
4607
|
+
"type": "object",
|
|
4608
|
+
"properties": {
|
|
4609
|
+
"mode": {
|
|
4610
|
+
"enum": ["owner", "observer"]
|
|
4611
|
+
},
|
|
4612
|
+
"sync": {
|
|
4613
|
+
"type": "array",
|
|
4614
|
+
"items": {
|
|
4615
|
+
"type": "string",
|
|
4616
|
+
"minLength": 1
|
|
4617
|
+
}
|
|
4618
|
+
},
|
|
4619
|
+
"throttleMs": {
|
|
4620
|
+
"type": "number"
|
|
4621
|
+
}
|
|
4622
|
+
},
|
|
4623
|
+
"additionalProperties": false
|
|
4112
4624
|
},
|
|
4113
4625
|
"children": {
|
|
4114
4626
|
"type": "array",
|
|
@@ -4206,7 +4718,23 @@
|
|
|
4206
4718
|
"required": ["name"]
|
|
4207
4719
|
},
|
|
4208
4720
|
"network": {
|
|
4209
|
-
"type": "object"
|
|
4721
|
+
"type": "object",
|
|
4722
|
+
"properties": {
|
|
4723
|
+
"mode": {
|
|
4724
|
+
"enum": ["owner", "observer"]
|
|
4725
|
+
},
|
|
4726
|
+
"sync": {
|
|
4727
|
+
"type": "array",
|
|
4728
|
+
"items": {
|
|
4729
|
+
"type": "string",
|
|
4730
|
+
"minLength": 1
|
|
4731
|
+
}
|
|
4732
|
+
},
|
|
4733
|
+
"throttleMs": {
|
|
4734
|
+
"type": "number"
|
|
4735
|
+
}
|
|
4736
|
+
},
|
|
4737
|
+
"additionalProperties": false
|
|
4210
4738
|
},
|
|
4211
4739
|
"children": {
|
|
4212
4740
|
"type": "array",
|
|
@@ -4316,7 +4844,23 @@
|
|
|
4316
4844
|
"required": ["name"]
|
|
4317
4845
|
},
|
|
4318
4846
|
"network": {
|
|
4319
|
-
"type": "object"
|
|
4847
|
+
"type": "object",
|
|
4848
|
+
"properties": {
|
|
4849
|
+
"mode": {
|
|
4850
|
+
"enum": ["owner", "observer"]
|
|
4851
|
+
},
|
|
4852
|
+
"sync": {
|
|
4853
|
+
"type": "array",
|
|
4854
|
+
"items": {
|
|
4855
|
+
"type": "string",
|
|
4856
|
+
"minLength": 1
|
|
4857
|
+
}
|
|
4858
|
+
},
|
|
4859
|
+
"throttleMs": {
|
|
4860
|
+
"type": "number"
|
|
4861
|
+
}
|
|
4862
|
+
},
|
|
4863
|
+
"additionalProperties": false
|
|
4320
4864
|
},
|
|
4321
4865
|
"children": {
|
|
4322
4866
|
"type": "array",
|
|
@@ -4520,7 +5064,23 @@
|
|
|
4520
5064
|
"required": ["name"]
|
|
4521
5065
|
},
|
|
4522
5066
|
"network": {
|
|
4523
|
-
"type": "object"
|
|
5067
|
+
"type": "object",
|
|
5068
|
+
"properties": {
|
|
5069
|
+
"mode": {
|
|
5070
|
+
"enum": ["owner", "observer"]
|
|
5071
|
+
},
|
|
5072
|
+
"sync": {
|
|
5073
|
+
"type": "array",
|
|
5074
|
+
"items": {
|
|
5075
|
+
"type": "string",
|
|
5076
|
+
"minLength": 1
|
|
5077
|
+
}
|
|
5078
|
+
},
|
|
5079
|
+
"throttleMs": {
|
|
5080
|
+
"type": "number"
|
|
5081
|
+
}
|
|
5082
|
+
},
|
|
5083
|
+
"additionalProperties": false
|
|
4524
5084
|
},
|
|
4525
5085
|
"children": {
|
|
4526
5086
|
"type": "array",
|
|
@@ -4736,7 +5296,23 @@
|
|
|
4736
5296
|
"required": ["name"]
|
|
4737
5297
|
},
|
|
4738
5298
|
"network": {
|
|
4739
|
-
"type": "object"
|
|
5299
|
+
"type": "object",
|
|
5300
|
+
"properties": {
|
|
5301
|
+
"mode": {
|
|
5302
|
+
"enum": ["owner", "observer"]
|
|
5303
|
+
},
|
|
5304
|
+
"sync": {
|
|
5305
|
+
"type": "array",
|
|
5306
|
+
"items": {
|
|
5307
|
+
"type": "string",
|
|
5308
|
+
"minLength": 1
|
|
5309
|
+
}
|
|
5310
|
+
},
|
|
5311
|
+
"throttleMs": {
|
|
5312
|
+
"type": "number"
|
|
5313
|
+
}
|
|
5314
|
+
},
|
|
5315
|
+
"additionalProperties": false
|
|
4740
5316
|
},
|
|
4741
5317
|
"children": {
|
|
4742
5318
|
"type": "array",
|
|
@@ -4815,6 +5391,10 @@
|
|
|
4815
5391
|
"type": "object",
|
|
4816
5392
|
"default": {}
|
|
4817
5393
|
},
|
|
5394
|
+
"enabled": {
|
|
5395
|
+
"type": "boolean",
|
|
5396
|
+
"default": true
|
|
5397
|
+
},
|
|
4818
5398
|
"mass": {
|
|
4819
5399
|
"type": "number",
|
|
4820
5400
|
"default": 1
|
|
@@ -4860,7 +5440,23 @@
|
|
|
4860
5440
|
"required": ["name"]
|
|
4861
5441
|
},
|
|
4862
5442
|
"network": {
|
|
4863
|
-
"type": "object"
|
|
5443
|
+
"type": "object",
|
|
5444
|
+
"properties": {
|
|
5445
|
+
"mode": {
|
|
5446
|
+
"enum": ["owner", "observer"]
|
|
5447
|
+
},
|
|
5448
|
+
"sync": {
|
|
5449
|
+
"type": "array",
|
|
5450
|
+
"items": {
|
|
5451
|
+
"type": "string",
|
|
5452
|
+
"minLength": 1
|
|
5453
|
+
}
|
|
5454
|
+
},
|
|
5455
|
+
"throttleMs": {
|
|
5456
|
+
"type": "number"
|
|
5457
|
+
}
|
|
5458
|
+
},
|
|
5459
|
+
"additionalProperties": false
|
|
4864
5460
|
},
|
|
4865
5461
|
"children": {
|
|
4866
5462
|
"type": "array",
|
|
@@ -4947,6 +5543,10 @@
|
|
|
4947
5543
|
"type": "object",
|
|
4948
5544
|
"default": {}
|
|
4949
5545
|
},
|
|
5546
|
+
"enabled": {
|
|
5547
|
+
"type": "boolean",
|
|
5548
|
+
"default": true
|
|
5549
|
+
},
|
|
4950
5550
|
"mass": {
|
|
4951
5551
|
"type": "number",
|
|
4952
5552
|
"default": 1
|
|
@@ -4992,7 +5592,23 @@
|
|
|
4992
5592
|
"required": ["name"]
|
|
4993
5593
|
},
|
|
4994
5594
|
"network": {
|
|
4995
|
-
"type": "object"
|
|
5595
|
+
"type": "object",
|
|
5596
|
+
"properties": {
|
|
5597
|
+
"mode": {
|
|
5598
|
+
"enum": ["owner", "observer"]
|
|
5599
|
+
},
|
|
5600
|
+
"sync": {
|
|
5601
|
+
"type": "array",
|
|
5602
|
+
"items": {
|
|
5603
|
+
"type": "string",
|
|
5604
|
+
"minLength": 1
|
|
5605
|
+
}
|
|
5606
|
+
},
|
|
5607
|
+
"throttleMs": {
|
|
5608
|
+
"type": "number"
|
|
5609
|
+
}
|
|
5610
|
+
},
|
|
5611
|
+
"additionalProperties": false
|
|
4996
5612
|
},
|
|
4997
5613
|
"children": {
|
|
4998
5614
|
"type": "array",
|
|
@@ -5164,7 +5780,23 @@
|
|
|
5164
5780
|
"required": ["name"]
|
|
5165
5781
|
},
|
|
5166
5782
|
"network": {
|
|
5167
|
-
"type": "object"
|
|
5783
|
+
"type": "object",
|
|
5784
|
+
"properties": {
|
|
5785
|
+
"mode": {
|
|
5786
|
+
"enum": ["owner", "observer"]
|
|
5787
|
+
},
|
|
5788
|
+
"sync": {
|
|
5789
|
+
"type": "array",
|
|
5790
|
+
"items": {
|
|
5791
|
+
"type": "string",
|
|
5792
|
+
"minLength": 1
|
|
5793
|
+
}
|
|
5794
|
+
},
|
|
5795
|
+
"throttleMs": {
|
|
5796
|
+
"type": "number"
|
|
5797
|
+
}
|
|
5798
|
+
},
|
|
5799
|
+
"additionalProperties": false
|
|
5168
5800
|
},
|
|
5169
5801
|
"children": {
|
|
5170
5802
|
"type": "array",
|
|
@@ -5283,7 +5915,23 @@
|
|
|
5283
5915
|
"required": ["name"]
|
|
5284
5916
|
},
|
|
5285
5917
|
"network": {
|
|
5286
|
-
"type": "object"
|
|
5918
|
+
"type": "object",
|
|
5919
|
+
"properties": {
|
|
5920
|
+
"mode": {
|
|
5921
|
+
"enum": ["owner", "observer"]
|
|
5922
|
+
},
|
|
5923
|
+
"sync": {
|
|
5924
|
+
"type": "array",
|
|
5925
|
+
"items": {
|
|
5926
|
+
"type": "string",
|
|
5927
|
+
"minLength": 1
|
|
5928
|
+
}
|
|
5929
|
+
},
|
|
5930
|
+
"throttleMs": {
|
|
5931
|
+
"type": "number"
|
|
5932
|
+
}
|
|
5933
|
+
},
|
|
5934
|
+
"additionalProperties": false
|
|
5287
5935
|
},
|
|
5288
5936
|
"children": {
|
|
5289
5937
|
"type": "array",
|
|
@@ -5437,7 +6085,23 @@
|
|
|
5437
6085
|
"required": ["name"]
|
|
5438
6086
|
},
|
|
5439
6087
|
"network": {
|
|
5440
|
-
"type": "object"
|
|
6088
|
+
"type": "object",
|
|
6089
|
+
"properties": {
|
|
6090
|
+
"mode": {
|
|
6091
|
+
"enum": ["owner", "observer"]
|
|
6092
|
+
},
|
|
6093
|
+
"sync": {
|
|
6094
|
+
"type": "array",
|
|
6095
|
+
"items": {
|
|
6096
|
+
"type": "string",
|
|
6097
|
+
"minLength": 1
|
|
6098
|
+
}
|
|
6099
|
+
},
|
|
6100
|
+
"throttleMs": {
|
|
6101
|
+
"type": "number"
|
|
6102
|
+
}
|
|
6103
|
+
},
|
|
6104
|
+
"additionalProperties": false
|
|
5441
6105
|
},
|
|
5442
6106
|
"children": {
|
|
5443
6107
|
"type": "array",
|
|
@@ -5515,6 +6179,10 @@
|
|
|
5515
6179
|
"collider": {
|
|
5516
6180
|
"type": "object",
|
|
5517
6181
|
"default": {}
|
|
6182
|
+
},
|
|
6183
|
+
"enabled": {
|
|
6184
|
+
"type": "boolean",
|
|
6185
|
+
"default": true
|
|
5518
6186
|
}
|
|
5519
6187
|
},
|
|
5520
6188
|
"additionalProperties": false
|
|
@@ -5532,10 +6200,26 @@
|
|
|
5532
6200
|
"required": ["name"]
|
|
5533
6201
|
},
|
|
5534
6202
|
"network": {
|
|
5535
|
-
"type": "object"
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
6203
|
+
"type": "object",
|
|
6204
|
+
"properties": {
|
|
6205
|
+
"mode": {
|
|
6206
|
+
"enum": ["owner", "observer"]
|
|
6207
|
+
},
|
|
6208
|
+
"sync": {
|
|
6209
|
+
"type": "array",
|
|
6210
|
+
"items": {
|
|
6211
|
+
"type": "string",
|
|
6212
|
+
"minLength": 1
|
|
6213
|
+
}
|
|
6214
|
+
},
|
|
6215
|
+
"throttleMs": {
|
|
6216
|
+
"type": "number"
|
|
6217
|
+
}
|
|
6218
|
+
},
|
|
6219
|
+
"additionalProperties": false
|
|
6220
|
+
},
|
|
6221
|
+
"children": {
|
|
6222
|
+
"type": "array",
|
|
5539
6223
|
"items": {
|
|
5540
6224
|
"$ref": "#/$defs/node"
|
|
5541
6225
|
}
|
|
@@ -5618,6 +6302,10 @@
|
|
|
5618
6302
|
"collider": {
|
|
5619
6303
|
"type": "object",
|
|
5620
6304
|
"default": {}
|
|
6305
|
+
},
|
|
6306
|
+
"enabled": {
|
|
6307
|
+
"type": "boolean",
|
|
6308
|
+
"default": true
|
|
5621
6309
|
}
|
|
5622
6310
|
},
|
|
5623
6311
|
"additionalProperties": false
|
|
@@ -5635,7 +6323,23 @@
|
|
|
5635
6323
|
"required": ["name"]
|
|
5636
6324
|
},
|
|
5637
6325
|
"network": {
|
|
5638
|
-
"type": "object"
|
|
6326
|
+
"type": "object",
|
|
6327
|
+
"properties": {
|
|
6328
|
+
"mode": {
|
|
6329
|
+
"enum": ["owner", "observer"]
|
|
6330
|
+
},
|
|
6331
|
+
"sync": {
|
|
6332
|
+
"type": "array",
|
|
6333
|
+
"items": {
|
|
6334
|
+
"type": "string",
|
|
6335
|
+
"minLength": 1
|
|
6336
|
+
}
|
|
6337
|
+
},
|
|
6338
|
+
"throttleMs": {
|
|
6339
|
+
"type": "number"
|
|
6340
|
+
}
|
|
6341
|
+
},
|
|
6342
|
+
"additionalProperties": false
|
|
5639
6343
|
},
|
|
5640
6344
|
"children": {
|
|
5641
6345
|
"type": "array",
|
|
@@ -5805,7 +6509,23 @@
|
|
|
5805
6509
|
"required": ["name"]
|
|
5806
6510
|
},
|
|
5807
6511
|
"network": {
|
|
5808
|
-
"type": "object"
|
|
6512
|
+
"type": "object",
|
|
6513
|
+
"properties": {
|
|
6514
|
+
"mode": {
|
|
6515
|
+
"enum": ["owner", "observer"]
|
|
6516
|
+
},
|
|
6517
|
+
"sync": {
|
|
6518
|
+
"type": "array",
|
|
6519
|
+
"items": {
|
|
6520
|
+
"type": "string",
|
|
6521
|
+
"minLength": 1
|
|
6522
|
+
}
|
|
6523
|
+
},
|
|
6524
|
+
"throttleMs": {
|
|
6525
|
+
"type": "number"
|
|
6526
|
+
}
|
|
6527
|
+
},
|
|
6528
|
+
"additionalProperties": false
|
|
5809
6529
|
},
|
|
5810
6530
|
"children": {
|
|
5811
6531
|
"type": "array",
|
|
@@ -5923,7 +6643,23 @@
|
|
|
5923
6643
|
"required": ["name"]
|
|
5924
6644
|
},
|
|
5925
6645
|
"network": {
|
|
5926
|
-
"type": "object"
|
|
6646
|
+
"type": "object",
|
|
6647
|
+
"properties": {
|
|
6648
|
+
"mode": {
|
|
6649
|
+
"enum": ["owner", "observer"]
|
|
6650
|
+
},
|
|
6651
|
+
"sync": {
|
|
6652
|
+
"type": "array",
|
|
6653
|
+
"items": {
|
|
6654
|
+
"type": "string",
|
|
6655
|
+
"minLength": 1
|
|
6656
|
+
}
|
|
6657
|
+
},
|
|
6658
|
+
"throttleMs": {
|
|
6659
|
+
"type": "number"
|
|
6660
|
+
}
|
|
6661
|
+
},
|
|
6662
|
+
"additionalProperties": false
|
|
5927
6663
|
},
|
|
5928
6664
|
"children": {
|
|
5929
6665
|
"type": "array",
|
|
@@ -5987,7 +6723,23 @@
|
|
|
5987
6723
|
"required": ["name"]
|
|
5988
6724
|
},
|
|
5989
6725
|
"network": {
|
|
5990
|
-
"type": "object"
|
|
6726
|
+
"type": "object",
|
|
6727
|
+
"properties": {
|
|
6728
|
+
"mode": {
|
|
6729
|
+
"enum": ["owner", "observer"]
|
|
6730
|
+
},
|
|
6731
|
+
"sync": {
|
|
6732
|
+
"type": "array",
|
|
6733
|
+
"items": {
|
|
6734
|
+
"type": "string",
|
|
6735
|
+
"minLength": 1
|
|
6736
|
+
}
|
|
6737
|
+
},
|
|
6738
|
+
"throttleMs": {
|
|
6739
|
+
"type": "number"
|
|
6740
|
+
}
|
|
6741
|
+
},
|
|
6742
|
+
"additionalProperties": false
|
|
5991
6743
|
},
|
|
5992
6744
|
"children": {
|
|
5993
6745
|
"type": "array",
|
|
@@ -6113,7 +6865,23 @@
|
|
|
6113
6865
|
"required": ["name"]
|
|
6114
6866
|
},
|
|
6115
6867
|
"network": {
|
|
6116
|
-
"type": "object"
|
|
6868
|
+
"type": "object",
|
|
6869
|
+
"properties": {
|
|
6870
|
+
"mode": {
|
|
6871
|
+
"enum": ["owner", "observer"]
|
|
6872
|
+
},
|
|
6873
|
+
"sync": {
|
|
6874
|
+
"type": "array",
|
|
6875
|
+
"items": {
|
|
6876
|
+
"type": "string",
|
|
6877
|
+
"minLength": 1
|
|
6878
|
+
}
|
|
6879
|
+
},
|
|
6880
|
+
"throttleMs": {
|
|
6881
|
+
"type": "number"
|
|
6882
|
+
}
|
|
6883
|
+
},
|
|
6884
|
+
"additionalProperties": false
|
|
6117
6885
|
},
|
|
6118
6886
|
"children": {
|
|
6119
6887
|
"type": "array",
|
|
@@ -6274,7 +7042,23 @@
|
|
|
6274
7042
|
"required": ["name"]
|
|
6275
7043
|
},
|
|
6276
7044
|
"network": {
|
|
6277
|
-
"type": "object"
|
|
7045
|
+
"type": "object",
|
|
7046
|
+
"properties": {
|
|
7047
|
+
"mode": {
|
|
7048
|
+
"enum": ["owner", "observer"]
|
|
7049
|
+
},
|
|
7050
|
+
"sync": {
|
|
7051
|
+
"type": "array",
|
|
7052
|
+
"items": {
|
|
7053
|
+
"type": "string",
|
|
7054
|
+
"minLength": 1
|
|
7055
|
+
}
|
|
7056
|
+
},
|
|
7057
|
+
"throttleMs": {
|
|
7058
|
+
"type": "number"
|
|
7059
|
+
}
|
|
7060
|
+
},
|
|
7061
|
+
"additionalProperties": false
|
|
6278
7062
|
},
|
|
6279
7063
|
"children": {
|
|
6280
7064
|
"type": "array",
|
|
@@ -6340,7 +7124,23 @@
|
|
|
6340
7124
|
"required": ["name"]
|
|
6341
7125
|
},
|
|
6342
7126
|
"network": {
|
|
6343
|
-
"type": "object"
|
|
7127
|
+
"type": "object",
|
|
7128
|
+
"properties": {
|
|
7129
|
+
"mode": {
|
|
7130
|
+
"enum": ["owner", "observer"]
|
|
7131
|
+
},
|
|
7132
|
+
"sync": {
|
|
7133
|
+
"type": "array",
|
|
7134
|
+
"items": {
|
|
7135
|
+
"type": "string",
|
|
7136
|
+
"minLength": 1
|
|
7137
|
+
}
|
|
7138
|
+
},
|
|
7139
|
+
"throttleMs": {
|
|
7140
|
+
"type": "number"
|
|
7141
|
+
}
|
|
7142
|
+
},
|
|
7143
|
+
"additionalProperties": false
|
|
6344
7144
|
},
|
|
6345
7145
|
"children": {
|
|
6346
7146
|
"type": "array",
|
|
@@ -6431,7 +7231,23 @@
|
|
|
6431
7231
|
"required": ["name"]
|
|
6432
7232
|
},
|
|
6433
7233
|
"network": {
|
|
6434
|
-
"type": "object"
|
|
7234
|
+
"type": "object",
|
|
7235
|
+
"properties": {
|
|
7236
|
+
"mode": {
|
|
7237
|
+
"enum": ["owner", "observer"]
|
|
7238
|
+
},
|
|
7239
|
+
"sync": {
|
|
7240
|
+
"type": "array",
|
|
7241
|
+
"items": {
|
|
7242
|
+
"type": "string",
|
|
7243
|
+
"minLength": 1
|
|
7244
|
+
}
|
|
7245
|
+
},
|
|
7246
|
+
"throttleMs": {
|
|
7247
|
+
"type": "number"
|
|
7248
|
+
}
|
|
7249
|
+
},
|
|
7250
|
+
"additionalProperties": false
|
|
6435
7251
|
},
|
|
6436
7252
|
"children": {
|
|
6437
7253
|
"type": "array",
|
|
@@ -6550,7 +7366,23 @@
|
|
|
6550
7366
|
"required": ["name"]
|
|
6551
7367
|
},
|
|
6552
7368
|
"network": {
|
|
6553
|
-
"type": "object"
|
|
7369
|
+
"type": "object",
|
|
7370
|
+
"properties": {
|
|
7371
|
+
"mode": {
|
|
7372
|
+
"enum": ["owner", "observer"]
|
|
7373
|
+
},
|
|
7374
|
+
"sync": {
|
|
7375
|
+
"type": "array",
|
|
7376
|
+
"items": {
|
|
7377
|
+
"type": "string",
|
|
7378
|
+
"minLength": 1
|
|
7379
|
+
}
|
|
7380
|
+
},
|
|
7381
|
+
"throttleMs": {
|
|
7382
|
+
"type": "number"
|
|
7383
|
+
}
|
|
7384
|
+
},
|
|
7385
|
+
"additionalProperties": false
|
|
6554
7386
|
},
|
|
6555
7387
|
"children": {
|
|
6556
7388
|
"type": "array",
|
|
@@ -6653,7 +7485,23 @@
|
|
|
6653
7485
|
"required": ["name"]
|
|
6654
7486
|
},
|
|
6655
7487
|
"network": {
|
|
6656
|
-
"type": "object"
|
|
7488
|
+
"type": "object",
|
|
7489
|
+
"properties": {
|
|
7490
|
+
"mode": {
|
|
7491
|
+
"enum": ["owner", "observer"]
|
|
7492
|
+
},
|
|
7493
|
+
"sync": {
|
|
7494
|
+
"type": "array",
|
|
7495
|
+
"items": {
|
|
7496
|
+
"type": "string",
|
|
7497
|
+
"minLength": 1
|
|
7498
|
+
}
|
|
7499
|
+
},
|
|
7500
|
+
"throttleMs": {
|
|
7501
|
+
"type": "number"
|
|
7502
|
+
}
|
|
7503
|
+
},
|
|
7504
|
+
"additionalProperties": false
|
|
6657
7505
|
},
|
|
6658
7506
|
"children": {
|
|
6659
7507
|
"type": "array",
|
|
@@ -6752,7 +7600,23 @@
|
|
|
6752
7600
|
"required": ["name"]
|
|
6753
7601
|
},
|
|
6754
7602
|
"network": {
|
|
6755
|
-
"type": "object"
|
|
7603
|
+
"type": "object",
|
|
7604
|
+
"properties": {
|
|
7605
|
+
"mode": {
|
|
7606
|
+
"enum": ["owner", "observer"]
|
|
7607
|
+
},
|
|
7608
|
+
"sync": {
|
|
7609
|
+
"type": "array",
|
|
7610
|
+
"items": {
|
|
7611
|
+
"type": "string",
|
|
7612
|
+
"minLength": 1
|
|
7613
|
+
}
|
|
7614
|
+
},
|
|
7615
|
+
"throttleMs": {
|
|
7616
|
+
"type": "number"
|
|
7617
|
+
}
|
|
7618
|
+
},
|
|
7619
|
+
"additionalProperties": false
|
|
6756
7620
|
},
|
|
6757
7621
|
"children": {
|
|
6758
7622
|
"type": "array",
|
|
@@ -6847,7 +7711,23 @@
|
|
|
6847
7711
|
"required": ["name"]
|
|
6848
7712
|
},
|
|
6849
7713
|
"network": {
|
|
6850
|
-
"type": "object"
|
|
7714
|
+
"type": "object",
|
|
7715
|
+
"properties": {
|
|
7716
|
+
"mode": {
|
|
7717
|
+
"enum": ["owner", "observer"]
|
|
7718
|
+
},
|
|
7719
|
+
"sync": {
|
|
7720
|
+
"type": "array",
|
|
7721
|
+
"items": {
|
|
7722
|
+
"type": "string",
|
|
7723
|
+
"minLength": 1
|
|
7724
|
+
}
|
|
7725
|
+
},
|
|
7726
|
+
"throttleMs": {
|
|
7727
|
+
"type": "number"
|
|
7728
|
+
}
|
|
7729
|
+
},
|
|
7730
|
+
"additionalProperties": false
|
|
6851
7731
|
},
|
|
6852
7732
|
"children": {
|
|
6853
7733
|
"type": "array",
|
|
@@ -6955,7 +7835,23 @@
|
|
|
6955
7835
|
"required": ["name"]
|
|
6956
7836
|
},
|
|
6957
7837
|
"network": {
|
|
6958
|
-
"type": "object"
|
|
7838
|
+
"type": "object",
|
|
7839
|
+
"properties": {
|
|
7840
|
+
"mode": {
|
|
7841
|
+
"enum": ["owner", "observer"]
|
|
7842
|
+
},
|
|
7843
|
+
"sync": {
|
|
7844
|
+
"type": "array",
|
|
7845
|
+
"items": {
|
|
7846
|
+
"type": "string",
|
|
7847
|
+
"minLength": 1
|
|
7848
|
+
}
|
|
7849
|
+
},
|
|
7850
|
+
"throttleMs": {
|
|
7851
|
+
"type": "number"
|
|
7852
|
+
}
|
|
7853
|
+
},
|
|
7854
|
+
"additionalProperties": false
|
|
6959
7855
|
},
|
|
6960
7856
|
"children": {
|
|
6961
7857
|
"type": "array",
|
|
@@ -7050,7 +7946,23 @@
|
|
|
7050
7946
|
"required": ["name"]
|
|
7051
7947
|
},
|
|
7052
7948
|
"network": {
|
|
7053
|
-
"type": "object"
|
|
7949
|
+
"type": "object",
|
|
7950
|
+
"properties": {
|
|
7951
|
+
"mode": {
|
|
7952
|
+
"enum": ["owner", "observer"]
|
|
7953
|
+
},
|
|
7954
|
+
"sync": {
|
|
7955
|
+
"type": "array",
|
|
7956
|
+
"items": {
|
|
7957
|
+
"type": "string",
|
|
7958
|
+
"minLength": 1
|
|
7959
|
+
}
|
|
7960
|
+
},
|
|
7961
|
+
"throttleMs": {
|
|
7962
|
+
"type": "number"
|
|
7963
|
+
}
|
|
7964
|
+
},
|
|
7965
|
+
"additionalProperties": false
|
|
7054
7966
|
},
|
|
7055
7967
|
"children": {
|
|
7056
7968
|
"type": "array",
|
|
@@ -7141,7 +8053,23 @@
|
|
|
7141
8053
|
"required": ["name"]
|
|
7142
8054
|
},
|
|
7143
8055
|
"network": {
|
|
7144
|
-
"type": "object"
|
|
8056
|
+
"type": "object",
|
|
8057
|
+
"properties": {
|
|
8058
|
+
"mode": {
|
|
8059
|
+
"enum": ["owner", "observer"]
|
|
8060
|
+
},
|
|
8061
|
+
"sync": {
|
|
8062
|
+
"type": "array",
|
|
8063
|
+
"items": {
|
|
8064
|
+
"type": "string",
|
|
8065
|
+
"minLength": 1
|
|
8066
|
+
}
|
|
8067
|
+
},
|
|
8068
|
+
"throttleMs": {
|
|
8069
|
+
"type": "number"
|
|
8070
|
+
}
|
|
8071
|
+
},
|
|
8072
|
+
"additionalProperties": false
|
|
7145
8073
|
},
|
|
7146
8074
|
"children": {
|
|
7147
8075
|
"type": "array",
|
|
@@ -7261,7 +8189,23 @@
|
|
|
7261
8189
|
"required": ["name"]
|
|
7262
8190
|
},
|
|
7263
8191
|
"network": {
|
|
7264
|
-
"type": "object"
|
|
8192
|
+
"type": "object",
|
|
8193
|
+
"properties": {
|
|
8194
|
+
"mode": {
|
|
8195
|
+
"enum": ["owner", "observer"]
|
|
8196
|
+
},
|
|
8197
|
+
"sync": {
|
|
8198
|
+
"type": "array",
|
|
8199
|
+
"items": {
|
|
8200
|
+
"type": "string",
|
|
8201
|
+
"minLength": 1
|
|
8202
|
+
}
|
|
8203
|
+
},
|
|
8204
|
+
"throttleMs": {
|
|
8205
|
+
"type": "number"
|
|
8206
|
+
}
|
|
8207
|
+
},
|
|
8208
|
+
"additionalProperties": false
|
|
7265
8209
|
},
|
|
7266
8210
|
"children": {
|
|
7267
8211
|
"type": "array",
|
|
@@ -7356,7 +8300,23 @@
|
|
|
7356
8300
|
"required": ["name"]
|
|
7357
8301
|
},
|
|
7358
8302
|
"network": {
|
|
7359
|
-
"type": "object"
|
|
8303
|
+
"type": "object",
|
|
8304
|
+
"properties": {
|
|
8305
|
+
"mode": {
|
|
8306
|
+
"enum": ["owner", "observer"]
|
|
8307
|
+
},
|
|
8308
|
+
"sync": {
|
|
8309
|
+
"type": "array",
|
|
8310
|
+
"items": {
|
|
8311
|
+
"type": "string",
|
|
8312
|
+
"minLength": 1
|
|
8313
|
+
}
|
|
8314
|
+
},
|
|
8315
|
+
"throttleMs": {
|
|
8316
|
+
"type": "number"
|
|
8317
|
+
}
|
|
8318
|
+
},
|
|
8319
|
+
"additionalProperties": false
|
|
7360
8320
|
},
|
|
7361
8321
|
"children": {
|
|
7362
8322
|
"type": "array",
|
|
@@ -7451,7 +8411,23 @@
|
|
|
7451
8411
|
"required": ["name"]
|
|
7452
8412
|
},
|
|
7453
8413
|
"network": {
|
|
7454
|
-
"type": "object"
|
|
8414
|
+
"type": "object",
|
|
8415
|
+
"properties": {
|
|
8416
|
+
"mode": {
|
|
8417
|
+
"enum": ["owner", "observer"]
|
|
8418
|
+
},
|
|
8419
|
+
"sync": {
|
|
8420
|
+
"type": "array",
|
|
8421
|
+
"items": {
|
|
8422
|
+
"type": "string",
|
|
8423
|
+
"minLength": 1
|
|
8424
|
+
}
|
|
8425
|
+
},
|
|
8426
|
+
"throttleMs": {
|
|
8427
|
+
"type": "number"
|
|
8428
|
+
}
|
|
8429
|
+
},
|
|
8430
|
+
"additionalProperties": false
|
|
7455
8431
|
},
|
|
7456
8432
|
"children": {
|
|
7457
8433
|
"type": "array",
|
|
@@ -7546,7 +8522,23 @@
|
|
|
7546
8522
|
"required": ["name"]
|
|
7547
8523
|
},
|
|
7548
8524
|
"network": {
|
|
7549
|
-
"type": "object"
|
|
8525
|
+
"type": "object",
|
|
8526
|
+
"properties": {
|
|
8527
|
+
"mode": {
|
|
8528
|
+
"enum": ["owner", "observer"]
|
|
8529
|
+
},
|
|
8530
|
+
"sync": {
|
|
8531
|
+
"type": "array",
|
|
8532
|
+
"items": {
|
|
8533
|
+
"type": "string",
|
|
8534
|
+
"minLength": 1
|
|
8535
|
+
}
|
|
8536
|
+
},
|
|
8537
|
+
"throttleMs": {
|
|
8538
|
+
"type": "number"
|
|
8539
|
+
}
|
|
8540
|
+
},
|
|
8541
|
+
"additionalProperties": false
|
|
7550
8542
|
},
|
|
7551
8543
|
"children": {
|
|
7552
8544
|
"type": "array",
|
|
@@ -7657,7 +8649,23 @@
|
|
|
7657
8649
|
"required": ["name"]
|
|
7658
8650
|
},
|
|
7659
8651
|
"network": {
|
|
7660
|
-
"type": "object"
|
|
8652
|
+
"type": "object",
|
|
8653
|
+
"properties": {
|
|
8654
|
+
"mode": {
|
|
8655
|
+
"enum": ["owner", "observer"]
|
|
8656
|
+
},
|
|
8657
|
+
"sync": {
|
|
8658
|
+
"type": "array",
|
|
8659
|
+
"items": {
|
|
8660
|
+
"type": "string",
|
|
8661
|
+
"minLength": 1
|
|
8662
|
+
}
|
|
8663
|
+
},
|
|
8664
|
+
"throttleMs": {
|
|
8665
|
+
"type": "number"
|
|
8666
|
+
}
|
|
8667
|
+
},
|
|
8668
|
+
"additionalProperties": false
|
|
7661
8669
|
},
|
|
7662
8670
|
"children": {
|
|
7663
8671
|
"type": "array",
|
|
@@ -7760,7 +8768,23 @@
|
|
|
7760
8768
|
"required": ["name"]
|
|
7761
8769
|
},
|
|
7762
8770
|
"network": {
|
|
7763
|
-
"type": "object"
|
|
8771
|
+
"type": "object",
|
|
8772
|
+
"properties": {
|
|
8773
|
+
"mode": {
|
|
8774
|
+
"enum": ["owner", "observer"]
|
|
8775
|
+
},
|
|
8776
|
+
"sync": {
|
|
8777
|
+
"type": "array",
|
|
8778
|
+
"items": {
|
|
8779
|
+
"type": "string",
|
|
8780
|
+
"minLength": 1
|
|
8781
|
+
}
|
|
8782
|
+
},
|
|
8783
|
+
"throttleMs": {
|
|
8784
|
+
"type": "number"
|
|
8785
|
+
}
|
|
8786
|
+
},
|
|
8787
|
+
"additionalProperties": false
|
|
7764
8788
|
},
|
|
7765
8789
|
"children": {
|
|
7766
8790
|
"type": "array",
|
|
@@ -7851,7 +8875,23 @@
|
|
|
7851
8875
|
"required": ["name"]
|
|
7852
8876
|
},
|
|
7853
8877
|
"network": {
|
|
7854
|
-
"type": "object"
|
|
8878
|
+
"type": "object",
|
|
8879
|
+
"properties": {
|
|
8880
|
+
"mode": {
|
|
8881
|
+
"enum": ["owner", "observer"]
|
|
8882
|
+
},
|
|
8883
|
+
"sync": {
|
|
8884
|
+
"type": "array",
|
|
8885
|
+
"items": {
|
|
8886
|
+
"type": "string",
|
|
8887
|
+
"minLength": 1
|
|
8888
|
+
}
|
|
8889
|
+
},
|
|
8890
|
+
"throttleMs": {
|
|
8891
|
+
"type": "number"
|
|
8892
|
+
}
|
|
8893
|
+
},
|
|
8894
|
+
"additionalProperties": false
|
|
7855
8895
|
},
|
|
7856
8896
|
"children": {
|
|
7857
8897
|
"type": "array",
|
|
@@ -7967,7 +9007,23 @@
|
|
|
7967
9007
|
"required": ["name"]
|
|
7968
9008
|
},
|
|
7969
9009
|
"network": {
|
|
7970
|
-
"type": "object"
|
|
9010
|
+
"type": "object",
|
|
9011
|
+
"properties": {
|
|
9012
|
+
"mode": {
|
|
9013
|
+
"enum": ["owner", "observer"]
|
|
9014
|
+
},
|
|
9015
|
+
"sync": {
|
|
9016
|
+
"type": "array",
|
|
9017
|
+
"items": {
|
|
9018
|
+
"type": "string",
|
|
9019
|
+
"minLength": 1
|
|
9020
|
+
}
|
|
9021
|
+
},
|
|
9022
|
+
"throttleMs": {
|
|
9023
|
+
"type": "number"
|
|
9024
|
+
}
|
|
9025
|
+
},
|
|
9026
|
+
"additionalProperties": false
|
|
7971
9027
|
},
|
|
7972
9028
|
"children": {
|
|
7973
9029
|
"type": "array",
|
|
@@ -8070,7 +9126,23 @@
|
|
|
8070
9126
|
"required": ["name"]
|
|
8071
9127
|
},
|
|
8072
9128
|
"network": {
|
|
8073
|
-
"type": "object"
|
|
9129
|
+
"type": "object",
|
|
9130
|
+
"properties": {
|
|
9131
|
+
"mode": {
|
|
9132
|
+
"enum": ["owner", "observer"]
|
|
9133
|
+
},
|
|
9134
|
+
"sync": {
|
|
9135
|
+
"type": "array",
|
|
9136
|
+
"items": {
|
|
9137
|
+
"type": "string",
|
|
9138
|
+
"minLength": 1
|
|
9139
|
+
}
|
|
9140
|
+
},
|
|
9141
|
+
"throttleMs": {
|
|
9142
|
+
"type": "number"
|
|
9143
|
+
}
|
|
9144
|
+
},
|
|
9145
|
+
"additionalProperties": false
|
|
8074
9146
|
},
|
|
8075
9147
|
"children": {
|
|
8076
9148
|
"type": "array",
|
|
@@ -8300,7 +9372,23 @@
|
|
|
8300
9372
|
"required": ["name"]
|
|
8301
9373
|
},
|
|
8302
9374
|
"network": {
|
|
8303
|
-
"type": "object"
|
|
9375
|
+
"type": "object",
|
|
9376
|
+
"properties": {
|
|
9377
|
+
"mode": {
|
|
9378
|
+
"enum": ["owner", "observer"]
|
|
9379
|
+
},
|
|
9380
|
+
"sync": {
|
|
9381
|
+
"type": "array",
|
|
9382
|
+
"items": {
|
|
9383
|
+
"type": "string",
|
|
9384
|
+
"minLength": 1
|
|
9385
|
+
}
|
|
9386
|
+
},
|
|
9387
|
+
"throttleMs": {
|
|
9388
|
+
"type": "number"
|
|
9389
|
+
}
|
|
9390
|
+
},
|
|
9391
|
+
"additionalProperties": false
|
|
8304
9392
|
},
|
|
8305
9393
|
"children": {
|
|
8306
9394
|
"type": "array",
|
|
@@ -8411,7 +9499,23 @@
|
|
|
8411
9499
|
"required": ["name"]
|
|
8412
9500
|
},
|
|
8413
9501
|
"network": {
|
|
8414
|
-
"type": "object"
|
|
9502
|
+
"type": "object",
|
|
9503
|
+
"properties": {
|
|
9504
|
+
"mode": {
|
|
9505
|
+
"enum": ["owner", "observer"]
|
|
9506
|
+
},
|
|
9507
|
+
"sync": {
|
|
9508
|
+
"type": "array",
|
|
9509
|
+
"items": {
|
|
9510
|
+
"type": "string",
|
|
9511
|
+
"minLength": 1
|
|
9512
|
+
}
|
|
9513
|
+
},
|
|
9514
|
+
"throttleMs": {
|
|
9515
|
+
"type": "number"
|
|
9516
|
+
}
|
|
9517
|
+
},
|
|
9518
|
+
"additionalProperties": false
|
|
8415
9519
|
},
|
|
8416
9520
|
"children": {
|
|
8417
9521
|
"type": "array",
|