@shipload/sdk 1.0.0-next.43 → 1.0.0-next.45

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.
Files changed (40) hide show
  1. package/lib/shipload.d.ts +141 -172
  2. package/lib/shipload.js +506 -301
  3. package/lib/shipload.js.map +1 -1
  4. package/lib/shipload.m.js +503 -303
  5. package/lib/shipload.m.js.map +1 -1
  6. package/lib/testing.d.ts +50 -67
  7. package/lib/testing.js +168 -208
  8. package/lib/testing.js.map +1 -1
  9. package/lib/testing.m.js +169 -209
  10. package/lib/testing.m.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/contracts/server.ts +126 -214
  13. package/src/data/capabilities.ts +14 -14
  14. package/src/data/capability-formulas.ts +7 -7
  15. package/src/data/entities.json +4 -0
  16. package/src/data/item-ids.ts +1 -0
  17. package/src/data/items.json +6 -0
  18. package/src/data/kind-registry.json +18 -6
  19. package/src/data/kind-registry.ts +7 -0
  20. package/src/data/metadata.ts +22 -15
  21. package/src/data/recipes.json +170 -19
  22. package/src/derivation/build-methods.test.ts +13 -0
  23. package/src/derivation/build-methods.ts +5 -2
  24. package/src/derivation/capabilities.ts +8 -8
  25. package/src/index-module.ts +5 -0
  26. package/src/managers/actions.ts +25 -8
  27. package/src/managers/cluster.test.ts +39 -0
  28. package/src/managers/cluster.ts +53 -0
  29. package/src/managers/context.ts +9 -0
  30. package/src/managers/index.ts +2 -0
  31. package/src/nft/buildImmutableData.ts +15 -17
  32. package/src/nft/description.ts +8 -8
  33. package/src/resolution/describe-module.ts +6 -6
  34. package/src/resolution/resolve-item.test.ts +12 -1
  35. package/src/resolution/resolve-item.ts +6 -4
  36. package/src/shipload.ts +5 -0
  37. package/src/subscriptions/manager.cluster.test.ts +46 -0
  38. package/src/subscriptions/manager.ts +22 -0
  39. package/src/subscriptions/types.ts +16 -0
  40. package/src/types.ts +7 -0
package/lib/shipload.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _wharfkit_antelope from '@wharfkit/antelope';
2
- import { Blob, ABI, Struct, Name, Asset, UInt64, Checksum256, UInt32, TimePointSec, ExtendedAsset, Checksum256Type, UInt32Type, NameType, UInt64Type, AssetType, ExtendedAssetType, Action, UInt16, UInt8, Int64, TimePoint, BlockTimestamp, Bytes, Int32, UInt16Type, UInt8Type, Int64Type, TimePointType, Int32Type, Checksum512, Transaction, APIClient } from '@wharfkit/antelope';
2
+ import { Blob, ABI, Struct, Name, Asset, UInt64, Checksum256, UInt32, TimePointSec, ExtendedAsset, Checksum256Type, UInt32Type, NameType, UInt64Type, AssetType, ExtendedAssetType, Action, UInt16, UInt8, Int64, TimePoint, Int8, Bytes, Int32, BlockTimestamp, UInt16Type, UInt8Type, Int8Type, Int64Type, TimePointType, Int32Type, Checksum512, Transaction, APIClient } from '@wharfkit/antelope';
3
3
  import * as _wharfkit_contract from '@wharfkit/contract';
4
4
  import { Contract as Contract$2, PartialBy, ContractArgs, ActionOptions, Table } from '@wharfkit/contract';
5
5
  import { ChainDefinition } from '@wharfkit/common';
@@ -392,30 +392,28 @@ declare namespace Types {
392
392
  id: UInt64;
393
393
  entity_id?: UInt64;
394
394
  }
395
- class claim_row extends Struct {
396
- owner: Name;
397
- }
398
- class coordinates extends Struct {
399
- x: Int64;
400
- y: Int64;
401
- z?: UInt16;
395
+ class cluster_slot extends Struct {
396
+ hub: UInt64;
397
+ gx: Int8;
398
+ gy: Int8;
402
399
  }
403
400
  class claimplot extends Struct {
404
401
  builder_id: UInt64;
405
402
  target_item_id: UInt16;
406
- coords: coordinates;
407
- }
408
- class claimstarter extends Struct {
409
- owner: Name;
403
+ slot: cluster_slot;
410
404
  }
411
405
  class cleanrsvp extends Struct {
412
406
  epoch: UInt64;
413
407
  max_rows: UInt64;
414
408
  }
415
- class cleartable extends Struct {
416
- table_name: Name;
417
- scope?: Name;
418
- max_rows?: UInt64;
409
+ class cluster_cell extends Struct {
410
+ gx: Int8;
411
+ gy: Int8;
412
+ entity: UInt64;
413
+ }
414
+ class cluster_row extends Struct {
415
+ root: UInt64;
416
+ cells: cluster_cell[];
419
417
  }
420
418
  class commit extends Struct {
421
419
  oracle_id: Name;
@@ -447,6 +445,11 @@ declare namespace Types {
447
445
  class configlog extends Struct {
448
446
  config: game_config;
449
447
  }
448
+ class coordinates extends Struct {
449
+ x: Int64;
450
+ y: Int64;
451
+ z?: UInt16;
452
+ }
450
453
  class craft extends Struct {
451
454
  id: UInt64;
452
455
  recipe_id: UInt16;
@@ -467,6 +470,7 @@ declare namespace Types {
467
470
  class deploy extends Struct {
468
471
  id: UInt64;
469
472
  ref: cargo_ref;
473
+ slot?: cluster_slot;
470
474
  }
471
475
  class descentity extends Struct {
472
476
  item_id: UInt16;
@@ -626,11 +630,12 @@ declare namespace Types {
626
630
  threshold: UInt8;
627
631
  seed: Checksum256;
628
632
  }
629
- class fixcargomass extends Struct {
630
- entity_id: UInt64;
633
+ class grid_cell extends Struct {
634
+ gx: Int8;
635
+ gy: Int8;
631
636
  }
632
- class forcereveal extends Struct {
633
- epoch: UInt64;
637
+ class footprint_result extends Struct {
638
+ cells: grid_cell[];
634
639
  }
635
640
  class gather extends Struct {
636
641
  source_id: UInt64;
@@ -642,11 +647,10 @@ declare namespace Types {
642
647
  class genesisfleet extends Struct {
643
648
  entities: entity_row[];
644
649
  }
645
- class getconfig extends Struct {
650
+ class getcluster extends Struct {
651
+ hub_id: UInt64;
646
652
  }
647
- class getdeposit extends Struct {
648
- owner: Name;
649
- asset_id: UInt64;
653
+ class getconfig extends Struct {
650
654
  }
651
655
  class getdistance extends Struct {
652
656
  ax: Int64;
@@ -667,15 +671,15 @@ declare namespace Types {
667
671
  class getentity extends Struct {
668
672
  entity_id: UInt64;
669
673
  }
674
+ class getfootprint extends Struct {
675
+ item_id: UInt16;
676
+ }
670
677
  class getitemdata extends Struct {
671
678
  }
672
679
  class getitemids extends Struct {
673
680
  }
674
681
  class getitems extends Struct {
675
682
  }
676
- class getitemtype extends Struct {
677
- item_id: UInt16;
678
- }
679
683
  class getitemtypes extends Struct {
680
684
  }
681
685
  class getkindmeta extends Struct {
@@ -696,8 +700,6 @@ declare namespace Types {
696
700
  entity_id: UInt64;
697
701
  recharge: boolean;
698
702
  }
699
- class getnftbase extends Struct {
700
- }
701
703
  class getnftinfo extends Struct {
702
704
  }
703
705
  class getplayer extends Struct {
@@ -756,37 +758,6 @@ declare namespace Types {
756
758
  class hash512 extends Struct {
757
759
  value: string;
758
760
  }
759
- class importcargo extends Struct {
760
- row: cargo_row;
761
- }
762
- class importentity extends Struct {
763
- row: entity_row;
764
- }
765
- class importgroup extends Struct {
766
- row: entitygroup_row;
767
- }
768
- class importplayer extends Struct {
769
- owner: Name;
770
- }
771
- class reserve_row extends Struct {
772
- id: UInt64;
773
- coord_id: UInt64;
774
- stratum: UInt16;
775
- remaining: UInt32;
776
- last_block: BlockTimestamp;
777
- }
778
- class importreserve extends Struct {
779
- epoch_scope: UInt32;
780
- row: reserve_row;
781
- }
782
- class state_row extends Struct {
783
- enabled: boolean;
784
- epoch: UInt32;
785
- seed: Checksum256;
786
- }
787
- class importstate extends Struct {
788
- row: state_row;
789
- }
790
761
  class item_id_pair extends Struct {
791
762
  id: UInt16;
792
763
  name: string;
@@ -882,6 +853,13 @@ declare namespace Types {
882
853
  class modules_result extends Struct {
883
854
  modules: module_info[];
884
855
  }
856
+ class movetile extends Struct {
857
+ hub_id: UInt64;
858
+ from_gx: Int8;
859
+ from_gy: Int8;
860
+ to_gx: Int8;
861
+ to_gy: Int8;
862
+ }
885
863
  class nearby_system extends Struct {
886
864
  distance: UInt64;
887
865
  energy_cost: UInt64;
@@ -1000,6 +978,13 @@ declare namespace Types {
1000
978
  id: UInt64;
1001
979
  name: string;
1002
980
  }
981
+ class reserve_row extends Struct {
982
+ id: UInt64;
983
+ coord_id: UInt64;
984
+ stratum: UInt16;
985
+ remaining: UInt32;
986
+ last_block: BlockTimestamp;
987
+ }
1003
988
  class resolve extends Struct {
1004
989
  id: UInt64;
1005
990
  count?: UInt64;
@@ -1052,11 +1037,6 @@ declare namespace Types {
1052
1037
  class rmnftcfg extends Struct {
1053
1038
  item_id: UInt16;
1054
1039
  }
1055
- class setcoords extends Struct {
1056
- entity_id: UInt64;
1057
- x: Int64;
1058
- y: Int64;
1059
- }
1060
1040
  class setnftcfg extends Struct {
1061
1041
  item_id: UInt16;
1062
1042
  template_id: Int32;
@@ -1074,6 +1054,11 @@ declare namespace Types {
1074
1054
  fee_pct: UInt16;
1075
1055
  fee_account: Name;
1076
1056
  }
1057
+ class state_row extends Struct {
1058
+ enabled: boolean;
1059
+ epoch: UInt32;
1060
+ seed: Checksum256;
1061
+ }
1077
1062
  class stowcargo extends Struct {
1078
1063
  owner: Name;
1079
1064
  entity_id: UInt64;
@@ -1144,8 +1129,6 @@ declare namespace Types {
1144
1129
  x: Int64;
1145
1130
  y: Int64;
1146
1131
  }
1147
- class wipe extends Struct {
1148
- }
1149
1132
  class wormhole_info extends Struct {
1150
1133
  coords: coordinates;
1151
1134
  is_wormhole: boolean;
@@ -1163,7 +1146,7 @@ declare namespace Types {
1163
1146
  }
1164
1147
  declare const TableMap: {
1165
1148
  cargo: typeof Types.cargo_row;
1166
- claims: typeof Types.claim_row;
1149
+ cluster: typeof Types.cluster_row;
1167
1150
  commit: typeof Types.commit_row;
1168
1151
  entity: typeof Types.entity_row;
1169
1152
  entitygroup: typeof Types.entitygroup_row;
@@ -1182,7 +1165,7 @@ declare const TableMap: {
1182
1165
  };
1183
1166
  interface TableTypes {
1184
1167
  cargo: Types.cargo_row;
1185
- claims: Types.claim_row;
1168
+ cluster: Types.cluster_row;
1186
1169
  commit: Types.commit_row;
1187
1170
  entity: Types.entity_row;
1188
1171
  entitygroup: Types.entitygroup_row;
@@ -1224,10 +1207,10 @@ declare namespace ActionParams {
1224
1207
  quantity: UInt32Type;
1225
1208
  entity_id?: UInt64Type;
1226
1209
  }
1227
- interface coordinates {
1228
- x: Int64Type;
1229
- y: Int64Type;
1230
- z?: UInt16Type;
1210
+ interface cluster_slot {
1211
+ hub: UInt64Type;
1212
+ gx: Int8Type;
1213
+ gy: Int8Type;
1231
1214
  }
1232
1215
  interface game_config {
1233
1216
  version: UInt32Type;
@@ -1259,6 +1242,11 @@ declare namespace ActionParams {
1259
1242
  lanes: Type.lane[];
1260
1243
  holds: Type.hold[];
1261
1244
  }
1245
+ interface coordinates {
1246
+ x: Int64Type;
1247
+ y: Int64Type;
1248
+ z?: UInt16Type;
1249
+ }
1262
1250
  interface lane {
1263
1251
  lane_key: UInt8Type;
1264
1252
  schedule: Type.schedule;
@@ -1289,31 +1277,6 @@ declare namespace ActionParams {
1289
1277
  until: TimePointType;
1290
1278
  incoming_mass: UInt32Type;
1291
1279
  }
1292
- interface cargo_row {
1293
- id: UInt64Type;
1294
- entity_id: UInt64Type;
1295
- item_id: UInt64Type;
1296
- quantity: UInt64Type;
1297
- stats: UInt64Type;
1298
- modules: Type.module_entry[];
1299
- sequence_id?: UInt64Type;
1300
- }
1301
- interface entitygroup_row {
1302
- id: UInt64Type;
1303
- participants: Type.entity_ref[];
1304
- }
1305
- interface reserve_row {
1306
- id: UInt64Type;
1307
- coord_id: UInt64Type;
1308
- stratum: UInt16Type;
1309
- remaining: UInt32Type;
1310
- last_block: BlockTimestamp;
1311
- }
1312
- interface state_row {
1313
- enabled: boolean;
1314
- epoch: UInt32Type;
1315
- seed: Checksum256Type;
1316
- }
1317
1280
  interface task_event {
1318
1281
  event_type: UInt8Type;
1319
1282
  owner: NameType;
@@ -1357,20 +1320,12 @@ declare namespace ActionParams {
1357
1320
  interface claimplot {
1358
1321
  builder_id: UInt64Type;
1359
1322
  target_item_id: UInt16Type;
1360
- coords: Type.coordinates;
1361
- }
1362
- interface claimstarter {
1363
- owner: NameType;
1323
+ slot: Type.cluster_slot;
1364
1324
  }
1365
1325
  interface cleanrsvp {
1366
1326
  epoch: UInt64Type;
1367
1327
  max_rows: UInt64Type;
1368
1328
  }
1369
- interface cleartable {
1370
- table_name: NameType;
1371
- scope?: NameType;
1372
- max_rows?: UInt64Type;
1373
- }
1374
1329
  interface commit {
1375
1330
  oracle_id: NameType;
1376
1331
  epoch: UInt64Type;
@@ -1393,6 +1348,7 @@ declare namespace ActionParams {
1393
1348
  interface deploy {
1394
1349
  id: UInt64Type;
1395
1350
  ref: Type.cargo_ref;
1351
+ slot?: Type.cluster_slot;
1396
1352
  }
1397
1353
  interface descentity {
1398
1354
  item_id: UInt16Type;
@@ -1403,12 +1359,6 @@ declare namespace ActionParams {
1403
1359
  interface enable {
1404
1360
  enabled: boolean;
1405
1361
  }
1406
- interface fixcargomass {
1407
- entity_id: UInt64Type;
1408
- }
1409
- interface forcereveal {
1410
- epoch: UInt64Type;
1411
- }
1412
1362
  interface gather {
1413
1363
  source_id: UInt64Type;
1414
1364
  destination_id: UInt64Type;
@@ -1419,11 +1369,10 @@ declare namespace ActionParams {
1419
1369
  interface genesisfleet {
1420
1370
  entities: Type.entity_row[];
1421
1371
  }
1422
- interface getconfig {
1372
+ interface getcluster {
1373
+ hub_id: UInt64Type;
1423
1374
  }
1424
- interface getdeposit {
1425
- owner: NameType;
1426
- asset_id: UInt64Type;
1375
+ interface getconfig {
1427
1376
  }
1428
1377
  interface getdistance {
1429
1378
  ax: Int64Type;
@@ -1444,15 +1393,15 @@ declare namespace ActionParams {
1444
1393
  interface getentity {
1445
1394
  entity_id: UInt64Type;
1446
1395
  }
1396
+ interface getfootprint {
1397
+ item_id: UInt16Type;
1398
+ }
1447
1399
  interface getitemdata {
1448
1400
  }
1449
1401
  interface getitemids {
1450
1402
  }
1451
1403
  interface getitems {
1452
1404
  }
1453
- interface getitemtype {
1454
- item_id: UInt16Type;
1455
- }
1456
1405
  interface getitemtypes {
1457
1406
  }
1458
1407
  interface getkindmeta {
@@ -1473,8 +1422,6 @@ declare namespace ActionParams {
1473
1422
  entity_id: UInt64Type;
1474
1423
  recharge: boolean;
1475
1424
  }
1476
- interface getnftbase {
1477
- }
1478
1425
  interface getnftinfo {
1479
1426
  }
1480
1427
  interface getplayer {
@@ -1533,25 +1480,6 @@ declare namespace ActionParams {
1533
1480
  interface hash512 {
1534
1481
  value: string;
1535
1482
  }
1536
- interface importcargo {
1537
- row: Type.cargo_row;
1538
- }
1539
- interface importentity {
1540
- row: Type.entity_row;
1541
- }
1542
- interface importgroup {
1543
- row: Type.entitygroup_row;
1544
- }
1545
- interface importplayer {
1546
- owner: NameType;
1547
- }
1548
- interface importreserve {
1549
- epoch_scope: UInt32Type;
1550
- row: Type.reserve_row;
1551
- }
1552
- interface importstate {
1553
- row: Type.state_row;
1554
- }
1555
1483
  interface join {
1556
1484
  account: NameType;
1557
1485
  }
@@ -1565,6 +1493,13 @@ declare namespace ActionParams {
1565
1493
  from_id: UInt64Type;
1566
1494
  items: Type.cargo_item[];
1567
1495
  }
1496
+ interface movetile {
1497
+ hub_id: UInt64Type;
1498
+ from_gx: Int8Type;
1499
+ from_gy: Int8Type;
1500
+ to_gx: Int8Type;
1501
+ to_gy: Int8Type;
1502
+ }
1568
1503
  interface nftimgurl {
1569
1504
  item: Type.cargo_item;
1570
1505
  location?: Type.coordinates;
@@ -1615,11 +1550,6 @@ declare namespace ActionParams {
1615
1550
  interface rmnftcfg {
1616
1551
  item_id: UInt16Type;
1617
1552
  }
1618
- interface setcoords {
1619
- entity_id: UInt64Type;
1620
- x: Int64Type;
1621
- y: Int64Type;
1622
- }
1623
1553
  interface setnftcfg {
1624
1554
  item_id: UInt16Type;
1625
1555
  template_id: Int32Type;
@@ -1681,8 +1611,6 @@ declare namespace ActionParams {
1681
1611
  x: Int64Type;
1682
1612
  y: Int64Type;
1683
1613
  }
1684
- interface wipe {
1685
- }
1686
1614
  }
1687
1615
  interface ActionNameParams {
1688
1616
  addmodule: ActionParams.addmodule;
@@ -1692,9 +1620,7 @@ interface ActionNameParams {
1692
1620
  buildplot: ActionParams.buildplot;
1693
1621
  cancel: ActionParams.cancel;
1694
1622
  claimplot: ActionParams.claimplot;
1695
- claimstarter: ActionParams.claimstarter;
1696
1623
  cleanrsvp: ActionParams.cleanrsvp;
1697
- cleartable: ActionParams.cleartable;
1698
1624
  commit: ActionParams.commit;
1699
1625
  configlog: ActionParams.configlog;
1700
1626
  craft: ActionParams.craft;
@@ -1702,21 +1628,19 @@ interface ActionNameParams {
1702
1628
  deploy: ActionParams.deploy;
1703
1629
  descentity: ActionParams.descentity;
1704
1630
  enable: ActionParams.enable;
1705
- fixcargomass: ActionParams.fixcargomass;
1706
- forcereveal: ActionParams.forcereveal;
1707
1631
  gather: ActionParams.gather;
1708
1632
  genesisfleet: ActionParams.genesisfleet;
1633
+ getcluster: ActionParams.getcluster;
1709
1634
  getconfig: ActionParams.getconfig;
1710
- getdeposit: ActionParams.getdeposit;
1711
1635
  getdistance: ActionParams.getdistance;
1712
1636
  geteligible: ActionParams.geteligible;
1713
1637
  getentcls: ActionParams.getentcls;
1714
1638
  getentities: ActionParams.getentities;
1715
1639
  getentity: ActionParams.getentity;
1640
+ getfootprint: ActionParams.getfootprint;
1716
1641
  getitemdata: ActionParams.getitemdata;
1717
1642
  getitemids: ActionParams.getitemids;
1718
1643
  getitems: ActionParams.getitems;
1719
- getitemtype: ActionParams.getitemtype;
1720
1644
  getitemtypes: ActionParams.getitemtypes;
1721
1645
  getkindmeta: ActionParams.getkindmeta;
1722
1646
  getlocation: ActionParams.getlocation;
@@ -1724,7 +1648,6 @@ interface ActionNameParams {
1724
1648
  getmodtypes: ActionParams.getmodtypes;
1725
1649
  getmodules: ActionParams.getmodules;
1726
1650
  getnearby: ActionParams.getnearby;
1727
- getnftbase: ActionParams.getnftbase;
1728
1651
  getnftinfo: ActionParams.getnftinfo;
1729
1652
  getplayer: ActionParams.getplayer;
1730
1653
  getprojstate: ActionParams.getprojstate;
@@ -1741,15 +1664,10 @@ interface ActionNameParams {
1741
1664
  grouptravel: ActionParams.grouptravel;
1742
1665
  hash: ActionParams.hash;
1743
1666
  hash512: ActionParams.hash512;
1744
- importcargo: ActionParams.importcargo;
1745
- importentity: ActionParams.importentity;
1746
- importgroup: ActionParams.importgroup;
1747
- importplayer: ActionParams.importplayer;
1748
- importreserve: ActionParams.importreserve;
1749
- importstate: ActionParams.importstate;
1750
1667
  join: ActionParams.join;
1751
1668
  launch: ActionParams.launch;
1752
1669
  load: ActionParams.load;
1670
+ movetile: ActionParams.movetile;
1753
1671
  nftimgurl: ActionParams.nftimgurl;
1754
1672
  notify: ActionParams.notify;
1755
1673
  placecargo: ActionParams.placecargo;
@@ -1763,7 +1681,6 @@ interface ActionNameParams {
1763
1681
  reveal: ActionParams.reveal;
1764
1682
  rmmodule: ActionParams.rmmodule;
1765
1683
  rmnftcfg: ActionParams.rmnftcfg;
1766
- setcoords: ActionParams.setcoords;
1767
1684
  setnftcfg: ActionParams.setnftcfg;
1768
1685
  setthreshold: ActionParams.setthreshold;
1769
1686
  setwrapcost: ActionParams.setwrapcost;
@@ -1776,7 +1693,6 @@ interface ActionNameParams {
1776
1693
  undeploy: ActionParams.undeploy;
1777
1694
  unload: ActionParams.unload;
1778
1695
  warp: ActionParams.warp;
1779
- wipe: ActionParams.wipe;
1780
1696
  }
1781
1697
  type ActionNames = keyof ActionNameParams;
1782
1698
  interface ActionReturnValues {
@@ -1788,17 +1704,17 @@ interface ActionReturnValues {
1788
1704
  deploy: Types.task_results;
1789
1705
  descentity: string;
1790
1706
  gather: Types.task_results;
1707
+ getcluster: Types.cluster_row;
1791
1708
  getconfig: Types.game_config;
1792
- getdeposit: ExtendedAsset;
1793
1709
  getdistance: UInt64;
1794
1710
  geteligible: UInt16[];
1795
1711
  getentcls: Types.enum_result;
1796
1712
  getentities: Types.entity_info[];
1797
1713
  getentity: Types.entity_info;
1714
+ getfootprint: Types.footprint_result;
1798
1715
  getitemdata: Types.itemdata_result;
1799
1716
  getitemids: Types.item_ids_result;
1800
1717
  getitems: Types.items_info;
1801
- getitemtype: UInt8;
1802
1718
  getitemtypes: Types.enum_result;
1803
1719
  getkindmeta: Types.kind_meta_result;
1804
1720
  getlocation: Types.location_info;
@@ -1806,7 +1722,6 @@ interface ActionReturnValues {
1806
1722
  getmodtypes: Types.enum_result;
1807
1723
  getmodules: Types.modules_result;
1808
1724
  getnearby: Types.nearby_info;
1809
- getnftbase: string[];
1810
1725
  getnftinfo: Types.nftinfo_result;
1811
1726
  getplayer: Types.player_info;
1812
1727
  getprojstate: Types.projected_state;
@@ -1825,6 +1740,7 @@ interface ActionReturnValues {
1825
1740
  hash512: Checksum512;
1826
1741
  launch: Types.task_results;
1827
1742
  load: Types.task_results;
1743
+ movetile: Types.task_results;
1828
1744
  nftimgurl: string;
1829
1745
  placecargo: Types.task_results;
1830
1746
  placeentity: Types.task_results;
@@ -1976,6 +1892,11 @@ declare const MAX_ORBITAL_ALTITUDE = 3000;
1976
1892
  declare const BASE_ORBITAL_MASS = 100000;
1977
1893
  declare const MIN_TRANSFER_DISTANCE_PLANETARY_STRUCTURE = 100;
1978
1894
  declare const MIN_TRANSFER_DISTANCE_ORBITAL_VESSEL = 200;
1895
+ interface ClusterSlotType {
1896
+ hub: UInt64Type;
1897
+ gx: number;
1898
+ gy: number;
1899
+ }
1979
1900
  interface ShipLike {
1980
1901
  coordinates: Types.coordinates;
1981
1902
  hullmass?: UInt32;
@@ -2138,6 +2059,7 @@ declare const ITEM_EXTRACTOR_T1_PACKED = 10203;
2138
2059
  declare const ITEM_FACTORY_T1_PACKED = 10204;
2139
2060
  declare const ITEM_MASS_DRIVER_T1_PACKED = 10205;
2140
2061
  declare const ITEM_MASS_CATCHER_T1_PACKED = 10206;
2062
+ declare const ITEM_HUB_T1_PACKED = 10207;
2141
2063
  declare const ITEM_PLATE_T2 = 20001;
2142
2064
  declare const ITEM_FRAME_T2 = 20002;
2143
2065
  declare const ITEM_CONTAINER_T2_PACKED = 20200;
@@ -2177,9 +2099,10 @@ declare const CAP_MODULES = 16;
2177
2099
  declare enum EntityClass {
2178
2100
  OrbitalVessel = 0,
2179
2101
  PlanetaryStructure = 1,
2180
- Plot = 2
2102
+ Plot = 2,
2103
+ OrbitalStructure = 3
2181
2104
  }
2182
- type EntityTypeName = 'ship' | 'warehouse' | 'extractor' | 'factory' | 'container' | 'nexus' | 'plot' | 'mdriver' | 'mcatcher';
2105
+ type EntityTypeName = 'ship' | 'warehouse' | 'extractor' | 'factory' | 'container' | 'nexus' | 'plot' | 'mdriver' | 'mcatcher' | 'hub';
2183
2106
  interface KindMeta {
2184
2107
  kind: Name;
2185
2108
  classification: EntityClass;
@@ -2204,6 +2127,7 @@ declare const ENTITY_EXTRACTOR: Name;
2204
2127
  declare const ENTITY_FACTORY: Name;
2205
2128
  declare const ENTITY_CONTAINER: Name;
2206
2129
  declare const ENTITY_NEXUS: Name;
2130
+ declare const ENTITY_HUB: Name;
2207
2131
  declare function isShip(entity: {
2208
2132
  type?: Name;
2209
2133
  }): boolean;
@@ -2225,6 +2149,9 @@ declare function isNexus(entity: {
2225
2149
  declare function isPlot(entity: {
2226
2150
  type?: Name;
2227
2151
  }): boolean;
2152
+ declare function isHub(entity: {
2153
+ type?: Name;
2154
+ }): boolean;
2228
2155
 
2229
2156
  declare class EntityInventory extends Types.cargo_item {
2230
2157
  private _item?;
@@ -3005,8 +2932,9 @@ declare class ActionsManager extends BaseManager {
3005
2932
  warp(entityId: UInt64Type, destination: CoordinatesType): Action;
3006
2933
  craft(entityId: UInt64Type, recipeId: number, quantity: number, inputs: ActionParams.Type.cargo_item[], target?: UInt64Type, slot?: UInt8Type): Action;
3007
2934
  blend(entityId: UInt64Type, inputs: ActionParams.Type.cargo_item[]): Action;
3008
- deploy(entityId: UInt64Type, ref: ActionParams.Type.cargo_ref): Action;
3009
- claimplot(entityId: UInt64Type, targetItemId: UInt16Type, coords: ActionParams.Type.coordinates): Action;
2935
+ deploy(entityId: UInt64Type, ref: ActionParams.Type.cargo_ref, slot?: ClusterSlotType): Action;
2936
+ claimplot(entityId: UInt64Type, targetItemId: UInt16Type, slot: ClusterSlotType): Action;
2937
+ movetile(hubId: UInt64Type, fromGx: number, fromGy: number, toGx: number, toGy: number): Action;
3010
2938
  buildplot(entityId: UInt64Type, plotId: UInt64Type): Action;
3011
2939
  addmodule(entityId: UInt64Type, moduleIndex: number, moduleRef: ActionParams.Type.cargo_ref, targetRef?: ActionParams.Type.cargo_ref | null): Action;
3012
2940
  rmmodule(entityId: UInt64Type, moduleIndex: number, targetRef?: ActionParams.Type.cargo_ref | null): Action;
@@ -3037,6 +2965,24 @@ declare class ActionsManager extends BaseManager {
3037
2965
  cleanrsvp(epoch: UInt64Type, maxRows: UInt64Type): Action;
3038
2966
  }
3039
2967
 
2968
+ interface GridCell {
2969
+ gx: number;
2970
+ gy: number;
2971
+ }
2972
+ interface ClusterCell extends GridCell {
2973
+ entity: number;
2974
+ }
2975
+ interface Cluster {
2976
+ root: number;
2977
+ cells: ClusterCell[];
2978
+ }
2979
+ declare function computeFreeCells(footprint: GridCell[], occupied: ClusterCell[]): GridCell[];
2980
+ declare class ClusterManager extends BaseManager {
2981
+ getFootprint(itemId: UInt16Type): Promise<GridCell[]>;
2982
+ getCluster(hubId: UInt64Type): Promise<Cluster>;
2983
+ freeCells(hubId: UInt64Type, hubItemId: UInt16Type): Promise<GridCell[]>;
2984
+ }
2985
+
3040
2986
  interface NftConfigForItem {
3041
2987
  templateId: number;
3042
2988
  schemaName: string;
@@ -3165,7 +3111,20 @@ type ErrorMessage = {
3165
3111
  error: string;
3166
3112
  sub_id?: string;
3167
3113
  };
3168
- type ServerMessage = AckMessage | SnapshotMessage | UpdateMessage | BoundsDeltaMessage | EntityDeletedMessage | EventMessage | EventCatchupCompleteMessage | PongMessage | ErrorMessage;
3114
+ interface ClusterCellWire {
3115
+ gx: number;
3116
+ gy: number;
3117
+ entity: number;
3118
+ }
3119
+ type ClusterDeltaMessage = {
3120
+ type: 'cluster';
3121
+ sub_id: string;
3122
+ hub_id: number;
3123
+ seq: number;
3124
+ cells?: ClusterCellWire[];
3125
+ erased?: boolean;
3126
+ };
3127
+ type ServerMessage = AckMessage | SnapshotMessage | UpdateMessage | BoundsDeltaMessage | EntityDeletedMessage | EventMessage | EventCatchupCompleteMessage | PongMessage | ErrorMessage | ClusterDeltaMessage;
3169
3128
 
3170
3129
  type SubscriptionEntityType = 'ship' | 'warehouse' | 'container' | 'nexus';
3171
3130
  type EntityInstance = Entity$1;
@@ -3198,6 +3157,12 @@ interface EntitySubscriptionHandlers {
3198
3157
  onBoundsDelta?: (entered: EntityInstance[], exited: number[], meta: EntitySubscriptionMeta) => void;
3199
3158
  onDeleted?: (id: string, meta: EntitySubscriptionMeta) => void;
3200
3159
  onError?: (error: Error) => void;
3160
+ onCluster?: (payload: {
3161
+ hubId: number;
3162
+ seq: number;
3163
+ cells: ClusterCellWire[] | null;
3164
+ erased: boolean;
3165
+ }) => void;
3201
3166
  }
3202
3167
  interface EntitiesSubscriptionHandle {
3203
3168
  readonly subId: string;
@@ -3254,6 +3219,7 @@ declare class SubscriptionsManager {
3254
3219
  private handleBoundsDelta;
3255
3220
  private handleError;
3256
3221
  private handleEntityDeleted;
3222
+ private handleCluster;
3257
3223
  }
3258
3224
 
3259
3225
  declare class GameContext {
@@ -3267,6 +3233,7 @@ declare class GameContext {
3267
3233
  private _coordinates?;
3268
3234
  private _epochs?;
3269
3235
  private _actions?;
3236
+ private _clusters?;
3270
3237
  private _nft?;
3271
3238
  private _subscriptions?;
3272
3239
  private _subscriptionsUrl?;
@@ -3279,6 +3246,7 @@ declare class GameContext {
3279
3246
  get coordinates(): CoordinatesManager;
3280
3247
  get epochs(): EpochsManager;
3281
3248
  get actions(): ActionsManager;
3249
+ get clusters(): ClusterManager;
3282
3250
  get nft(): NftManager;
3283
3251
  setSubscriptionsUrl(url: string): void;
3284
3252
  get subscriptions(): SubscriptionsManager;
@@ -3333,6 +3301,7 @@ declare class Shipload {
3333
3301
  get coordinates(): CoordinatesManager;
3334
3302
  get epochs(): EpochsManager;
3335
3303
  get actions(): ActionsManager;
3304
+ get clusters(): ClusterManager;
3336
3305
  get nft(): NftManager;
3337
3306
  get subscriptions(): SubscriptionsManager;
3338
3307
  getGame(reload?: boolean): Promise<Types$1.game_row>;
@@ -4775,4 +4744,4 @@ type entity_row = Types.entity_row;
4775
4744
  type location_static = Types.location_static;
4776
4745
  type location_derived = Types.location_derived;
4777
4746
 
4778
- export { ALL_ENTITY_TYPES, ATOMICASSETS_ACCOUNT, AckMessage, ActionsManager, AnyEntity, AtomicAssetRow, AtomicAttributeType, AtomicSchemaRow, BASE_ORBITAL_MASS, BLEND_INPUTS_MUST_MATCH, BLEND_REQUIRES_MULTIPLE, BLEND_STAT_LESS_NOT_SUPPORTED, BoundingBox, BoundsDeltaMessage, BoundsSubscriptionHandle, BroadEntitySubscriptionFilter, BuildMethod, BuildState, BuildableTarget, CANCEL_CONTAINS_GROUPED_TASK, CAP_DEMOLISH, CAP_MODULES, CAP_UNDEPLOY, CAP_WRAP, CATEGORY_LABELS, COMMIT_ALREADY_SET, COMMIT_CANNOT_MATCH, COMMIT_NOT_SET, COMPANY_NOT_FOUND, COMPONENT_TIER_PREFIXES, CONTAINER_NOT_FOUND, CONTAINER_Z, COORD_MAX, COORD_MIN, COORD_OFFSET, CRAFT_ENERGY_DIVISOR, CRAFT_EXCEEDS_ENERGY_CAPACITY, CRAFT_NOT_ENOUGH_ENERGY, CancelBlockReason, CancelEffects, CancelEligibilityInput, CancelPlan, CancelRefund, CancelReleasedHold, CapabilityAttribute, CapabilityAttributeRow, CapabilityInput, CargoData, CargoMassInfo, CargoStack, CategoryInfo, CategoryStacks, ClientMessage, ComputedCapabilities, ConnectionState, ConstructionManager, Container, ContainerEntity, Coord, CoordinateAddress, Coordinates, CoordinatesType, CounterpartLookup, CraftedItemCategory, CrafterCapability, CrafterStats, DEPLOY_ENTITY_HAS_SCHEDULE, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, DESTINATION_CAPACITY_EXCEEDED, DecodedAtomicAsset, DemandRow, DerivedLoaders, DerivedStratum, DescribeOptions, DisplayNameResult, Distance, ENGINE_DRAIN_BASE, ENGINE_DRAIN_REF_THM, ENGINE_DRAIN_REF_THRUST, ENTITY_ALREADY_THERE, ENTITY_CAPACITY_EXCEEDED, ENTITY_CARGO_NOT_LOADED, ENTITY_CARGO_NOT_OWNED, ENTITY_CONTAINER, ENTITY_EXTRACTOR, ENTITY_FACTORY, ENTITY_INVALID_CARGO, ENTITY_INVALID_DESTINATION, ENTITY_INVALID_TRAVEL_DURATION, ENTITY_NEXUS, ENTITY_NOT_ENOUGH_ENERGY, ENTITY_NOT_ENOUGH_ENERGY_CAPACITY, ENTITY_NO_CRAFTER, ENTITY_SHIP, ENTITY_WAREHOUSE, EPOCH_NON_ZERO, EPOCH_NOT_READY, ERROR_SYSTEM_ALREADY_INITIALIZED, ERROR_SYSTEM_DISABLED, ERROR_SYSTEM_NOT_INITIALIZED, EffectiveReserveInput, EnergyCapability, EntitiesManager, EntitiesSubscriptionHandle, Entity$1 as Entity, EntityCapabilities, EntityClass, EntityDeletedMessage, EntityInfo$2 as EntityInfo, EntityInstance, EntityInventory, EntityLayout, EntityRefInput, EntitySlot, EntityState, EntityStateInput, EntitySubscriptionFilter, EntitySubscriptionHandle, EntitySubscriptionHandlers, EntitySubscriptionMeta, EntityTypeName, EpochInfo, EpochsManager, ErrorMessage, EstimateTravelTimeOptions, EstimatedTravelTime, EventCatchupCompleteMessage, EventMessage, ExactEntitySubscriptionFilter, Extractor, Factory, FetchAssetsOptions, FinalizerCapability, FinalizerEntityRef, FloatPosition, GAME_NOT_FOUND, GAME_SEED_NOT_SET, GATHERER_DEPTH_MAX_TIER, GATHERER_DEPTH_TABLE, GATHER_EXCEEDS_ENERGY_CAPACITY, GATHER_MASS_DIVISOR, GATHER_NOT_ENOUGH_ENERGY, GROUP_DUPLICATE_ENTITY, GROUP_EMPTY, GROUP_ENTITY_NOT_MOVABLE, GROUP_HAUL_CAPACITY_EXCEEDED, GROUP_NOT_FOUND, GROUP_NOT_SAME_LOCATION, GROUP_NOT_SAME_OWNER, GROUP_NO_THRUST, GameState, GatherPlanEntity, GathererCapability, GathererDepthParams, GathererStats, HasCapacity, HasCargo, HasCargomass, HasScheduleAndLocation, HoldKind, INSUFFICIENT_BALANCE, INSUFFICIENT_ITEM_QUANTITY, INSUFFICIENT_ITEM_SUPPLY, INVALID_AMOUNT, ITEM_BATTERY_T1, ITEM_BEAM, ITEM_BIOMASS_T1, ITEM_BIOMASS_T10, ITEM_BIOMASS_T2, ITEM_BIOMASS_T3, ITEM_BIOMASS_T4, ITEM_BIOMASS_T5, ITEM_BIOMASS_T6, ITEM_BIOMASS_T7, ITEM_BIOMASS_T8, ITEM_BIOMASS_T9, ITEM_CERAMIC, ITEM_CONTAINER_T1_PACKED, ITEM_CONTAINER_T2_PACKED, ITEM_CRAFTER_T1, ITEM_CRYSTAL_T1, ITEM_CRYSTAL_T10, ITEM_CRYSTAL_T2, ITEM_CRYSTAL_T3, ITEM_CRYSTAL_T4, ITEM_CRYSTAL_T5, ITEM_CRYSTAL_T6, ITEM_CRYSTAL_T7, ITEM_CRYSTAL_T8, ITEM_CRYSTAL_T9, ITEM_DOES_NOT_EXIST, ITEM_ENGINE_T1, ITEM_EXTRACTOR_T1_PACKED, ITEM_FACTORY_T1_PACKED, ITEM_FRAME, ITEM_FRAME_T2, ITEM_GAS_T1, ITEM_GAS_T10, ITEM_GAS_T2, ITEM_GAS_T3, ITEM_GAS_T4, ITEM_GAS_T5, ITEM_GAS_T6, ITEM_GAS_T7, ITEM_GAS_T8, ITEM_GAS_T9, ITEM_GATHERER_T1, ITEM_GENERATOR_T1, ITEM_HAULER_T1, ITEM_LAUNCHER_T1, ITEM_LOADER_T1, ITEM_MASS_CATCHER_T1_PACKED, ITEM_MASS_DRIVER_T1_PACKED, ITEM_NOT_AVAILABLE_AT_LOCATION, ITEM_NOT_DEPLOYABLE, ITEM_NOT_PACKED_ENTITY, ITEM_ORE_T1, ITEM_ORE_T10, ITEM_ORE_T2, ITEM_ORE_T3, ITEM_ORE_T4, ITEM_ORE_T5, ITEM_ORE_T6, ITEM_ORE_T7, ITEM_ORE_T8, ITEM_ORE_T9, ITEM_PLASMA_CELL, ITEM_PLATE, ITEM_PLATE_T2, ITEM_POLYMER, ITEM_REACTOR, ITEM_REGOLITH_T1, ITEM_REGOLITH_T10, ITEM_REGOLITH_T2, ITEM_REGOLITH_T3, ITEM_REGOLITH_T4, ITEM_REGOLITH_T5, ITEM_REGOLITH_T6, ITEM_REGOLITH_T7, ITEM_REGOLITH_T8, ITEM_REGOLITH_T9, ITEM_RESIN, ITEM_RESONATOR, ITEM_SENSOR, ITEM_SHIP_T1_PACKED, ITEM_STORAGE_T1, ITEM_TYPE_COMPONENT, ITEM_TYPE_ENTITY, ITEM_TYPE_MODULE, ITEM_TYPE_RESOURCE, ITEM_WAREHOUSE_T1_PACKED, ITEM_WARP_T1, IdleResolveTarget, ImmutableEntry, ImmutableModuleSlot, InboundTransfer, InstalledModule, InventoryAccessor, Item, ItemType, KindMeta, LANE_BARRIER, LANE_MOBILITY, LOCAL_HALF, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LanePlanEntry, LaneView, LaunchNumericInput, LaunchQuote, LaunchQuoteCatcher, LaunchQuoteLauncher, LaunchStatsInput, LoadTimeBreakdown, LoaderCapability, LoaderStats, Location, LocationStratum, LocationType, LocationsManager, MAX_LEGS, MAX_ORBITAL_ALTITUDE, MAX_STARS_PER_STAT, MAX_STAR_RATING, MIN_ORBITAL_ALTITUDE, MIN_TRANSFER_DISTANCE_ORBITAL_VESSEL, MIN_TRANSFER_DISTANCE_PLANETARY_STRUCTURE, MODULE_ANY, MODULE_BATTERY, MODULE_CARGO_NOT_FOUND, MODULE_CRAFTER, MODULE_ENGINE, MODULE_ENTITY_BUSY, MODULE_GATHERER, MODULE_GENERATOR, MODULE_HAULER, MODULE_LAUNCHER, MODULE_LOADER, MODULE_NOT_MODULE, MODULE_SLOT_EMPTY, MODULE_SLOT_INVALID, MODULE_SLOT_OCCUPIED, MODULE_STORAGE, MODULE_TIER_PREFIXES, MODULE_TYPE_MISMATCH, MODULE_WARP, MassCapability, MintAssetParams, ModuleDescription, ModuleEntry, ModuleType, MovementCapability, index as NFT, NFTCargoItem, NFTCommonBase, NFTInstalledModule, NFTModuleSlot, NO_SCHEDULE, NamedStats, Neighbor, Nexus, NftConfigForItem, NftManager, OrderedTask, OwnerSubscriptionHandle, PLANETARY_STRUCTURE_Z, PLANET_SUBTYPE_GAS_GIANT, PLANET_SUBTYPE_ICY, PLANET_SUBTYPE_INDUSTRIAL, PLANET_SUBTYPE_OCEAN, PLANET_SUBTYPE_ROCKY, PLANET_SUBTYPE_TERRESTRIAL, PLAYER_ALREADY_JOINED, PLAYER_NOT_FOUND, PLAYER_NOT_JOINED, PRECISION, PackedModule, PackedModuleInput, PingMessage, PlanRouteParams, PlanTarget, PlanetSubtypeInfo, platform as PlatformContract, Types$1 as PlatformTypes, Player, PlayerRosterEntry, PlayerStateInput, PlayersManager, PongMessage, Projectable, ProjectedEntity, ProjectionOptions, RECIPE_INPUTS_EXCESS, RECIPE_INPUTS_INSUFFICIENT, RECIPE_INPUTS_INVALID, RECIPE_INPUTS_MIXED, RECIPE_NOT_FOUND, REGION_DIV, REGION_PER_AXIS, REQUIRES_MORE_THAN_ONE, REQUIRES_POSITIVE_VALUE, RESERVE_TIERS, RESOLVE_COUNT_EXCEEDS_COMPLETED, RESOURCE_TIER_ADJECTIVES, RESOURCE_TIER_MULT_TENTHS, RawData, ReachStats, Recipe, RecipeConsumer, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedCrafterLane, ResolvedEvent, ResolvedGathererLane, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedLoaderLane, ResolvedModuleSlot, ResourceCategory, ResourceDemand, ResourceStats, RouteFailure, RouteFailureReason, RoutePlan, RouteResult, SECTORS_PER_AXIS, SECTOR_DIV, SHIPLOAD_COLLECTION, SHIP_ALREADY_TRAVELING, SHIP_CANNOT_BUY_TRAVELING, SHIP_CANNOT_CANCEL_TASK, SHIP_CANNOT_UPDATE_TRAVELING, SHIP_NOT_ARRIVED, SHIP_NOT_FOUND, SHIP_NOT_IDLE, SHIP_NOT_OWNED, SHIP_NO_COMPLETED_TASKS, SHIP_NO_TASKS_TO_CANCEL, SLOT_FORMULAS, STAR_STEP, ScanProvider, ScheduleAccessor, ScheduleCapability, ScheduleData, ScheduledBuild, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, SourceCargoStack, SourceEntityRef, StackInput, StatDefinition, StatFlow, StatMapping, StatSlot, StorageCapability, StratumInfo, SubscribeEntityMessage, SubscribeEventsMessage, SubscribeMessage, SubscriptionEntityType, SubscriptionsManager, SubscriptionsOptions, SystemGraph, TIER_ROLL_MAX, TRAVEL_MAX_DURATION, TaskCancelable, TaskCargoChange, TaskCargoDirection, TaskType, TemplateMeta, TextSpan, TierRange, TransferEntity, UnsubscribeEntityMessage, UnsubscribeEventsMessage, UnsubscribeMessage, UnwrapDestination, UnwrapItem, UpdateBoundsMessage, UpdateMessage, ValidateDisplayNameOptions, WAREHOUSE_ALREADY_AT_LOCATION, WAREHOUSE_NOT_FOUND, WARP_HAS_CARGO, WARP_HAS_SCHEDULE, WARP_NOT_FULL_ENERGY, WARP_NO_CAPABILITY, WARP_OUT_OF_RANGE, WH, WOULD_OVERFILL, WOULD_STRAND, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, WrapDeposit, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, addressFromCoordinates, allBuildableItems, allPlotBuildableItems, applyResourceTierMultiplier, availableBuildMethods, availableCapacity$1 as availableCapacity, availableCapacityFromMass, availableForItem, baseName, blendCargoStacks, blendComponentStacks, blendCrossGroup, blendStacks, buildComponentImmutable, buildEntityDescription, buildEntityImmutable, buildImmutableData, buildMintAssetAction, buildModuleImmutable, buildResourceImmutable, calcCargoItemMass, calcCargoMass, calcEnergyUsage, calcStacksMass, calc_acceleration, calc_craft_duration, calc_craft_energy, calc_energyusage, calc_flighttime, calc_gather_duration, calc_gather_energy, calc_gather_rate, calc_loader_acceleration, calc_loader_flighttime, calc_onesided_duration, calc_orbital_altitude, calc_rechargetime, calc_ship_acceleration, calc_ship_flighttime, calc_ship_mass, calc_ship_rechargetime, calc_transfer_duration, calc_transit_duration, calculateFlightTime, calculateLoadTimeBreakdown, calculateRefuelingTime, calculateTransferTime, canMove, cancelEligibility, candidateLaneCompletesAt, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLauncher, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoReadyAt, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryLabel, categoryLabelFromIndex, componentIcon, composeIdleResolve, computeBaseCapacity, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeBatteryCapabilities, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityCapabilities, computeEntityStats, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeGroupPerLegReach, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLauncherCapabilities, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeNftImageUrl, computePerLegReach, computeShipHullCapabilities, computeStorageCapabilities, computeTravelDrain, computeWarehouseHullCapabilities, computeWarpCapabilities, computeWarpRange, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeAddress, decodeAtomicAsset, decodeCraftedItemStats, decodeRegion, decodeSector, decodeStat, decodeStats, Shipload as default, deriveLocation, deriveLocationSize, deriveLocationStatic, deriveResourceStats, deriveStatMappings, deriveStrata, deriveStratum, derivedLoaders, describeItem, describeModule, describeModuleForItem, describeModuleForSlot, deserializeAsset, deserializeAtomicData, deserializeComponent, deserializeEntity, deserializeModule, deserializeResource, displayName, distanceBetweenCoordinates, distanceBetweenPoints, easeFlightProgress, encodeAddress, encodeAddressMemo, encodeGatheredCargoStats, encodeRegion, encodeSector, encodeStats, energyAtTime, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, estimateUnwrapDuration, feistel, feistelInv, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, getAllRecipes, getCapabilityAttributeRows, getCapabilityAttributes, getCategoryInfo, getComponentDemand, getComponents, getCurrentEpoch, getDepthThreshold, getDestinationLocation, getEffectiveReserve, getEligibleResources, getEntityClass, getEntityItems, getEntityLayout, getEpochInfo, getFlightOrigin, getInterpolatedPosition, getItem, getItems, getKindMeta, getLocationCandidates, getLocationKind, getLocationProfile, getLocationType, getLocationTypeName, getModuleCapabilityType, getModules, getPackedEntityType, getPlanetSubtype, getPlanetSubtypes, getPositionAt, getProducersForAttribute, getRecipe, getRecipeConsumers, getResourceDemand, getResourceTier, getResourceWeight, getResources, getStatDefinitions, getStatMappings, getStatMappingsForCapability, getStatMappingsForStat, getStatName, getSystemName, getTemplateMeta, hasEnergy, hasEnergyForDistance, hasGatherer, hasLoaders, hasMass, hasSchedule, hasSpace$1 as hasSpace, hasSpaceForMass, hasStorage, hasSystem, hash, hash512, incomingHoldMass, interpolateFlightPosition, isBuildable, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isPlot, isPlotBuildable, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isValidWormholePair, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lane, laneKeyForModule, lerp, location_derived, location_static, makeEntity, mapEntity, maxCraftable, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, nearbyWormholes, needsRecharge, normalizeDisplayName, parseWireEntity, partnerRegion, planParallelGather, planParallelTransfer, planRoute, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, projectedPeakCargomass, rawScheduleEnd, readCommonBase, receiveFits, regionOf, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveLaneCrafter, resolveLaneGatherer, resolveLaneLoader, resolveLockedAmount, resolveStats, rollTier, rollWithinTier, rollupCrafter, rollupGatherer, rollupLoaders, rotation, schedule, sdkSystemGraph, selectGatherLane, setScanProvider, setSubscriptionsDebug, sourceLabelForOutput, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, unwrapLoadDuration, unwrapTransitDuration, validateDisplayName, validateSchedule, workerLaneKey, wormholeAt, wormholeAtRegionEndpoint, yieldThresholdAt };
4747
+ export { ALL_ENTITY_TYPES, ATOMICASSETS_ACCOUNT, AckMessage, ActionsManager, AnyEntity, AtomicAssetRow, AtomicAttributeType, AtomicSchemaRow, BASE_ORBITAL_MASS, BLEND_INPUTS_MUST_MATCH, BLEND_REQUIRES_MULTIPLE, BLEND_STAT_LESS_NOT_SUPPORTED, BoundingBox, BoundsDeltaMessage, BoundsSubscriptionHandle, BroadEntitySubscriptionFilter, BuildMethod, BuildState, BuildableTarget, CANCEL_CONTAINS_GROUPED_TASK, CAP_DEMOLISH, CAP_MODULES, CAP_UNDEPLOY, CAP_WRAP, CATEGORY_LABELS, COMMIT_ALREADY_SET, COMMIT_CANNOT_MATCH, COMMIT_NOT_SET, COMPANY_NOT_FOUND, COMPONENT_TIER_PREFIXES, CONTAINER_NOT_FOUND, CONTAINER_Z, COORD_MAX, COORD_MIN, COORD_OFFSET, CRAFT_ENERGY_DIVISOR, CRAFT_EXCEEDS_ENERGY_CAPACITY, CRAFT_NOT_ENOUGH_ENERGY, CancelBlockReason, CancelEffects, CancelEligibilityInput, CancelPlan, CancelRefund, CancelReleasedHold, CapabilityAttribute, CapabilityAttributeRow, CapabilityInput, CargoData, CargoMassInfo, CargoStack, CategoryInfo, CategoryStacks, ClientMessage, Cluster, ClusterCell, ClusterCellWire, ClusterDeltaMessage, ClusterManager, ClusterSlotType, ComputedCapabilities, ConnectionState, ConstructionManager, Container, ContainerEntity, Coord, CoordinateAddress, Coordinates, CoordinatesType, CounterpartLookup, CraftedItemCategory, CrafterCapability, CrafterStats, DEPLOY_ENTITY_HAS_SCHEDULE, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, DESTINATION_CAPACITY_EXCEEDED, DecodedAtomicAsset, DemandRow, DerivedLoaders, DerivedStratum, DescribeOptions, DisplayNameResult, Distance, ENGINE_DRAIN_BASE, ENGINE_DRAIN_REF_THM, ENGINE_DRAIN_REF_THRUST, ENTITY_ALREADY_THERE, ENTITY_CAPACITY_EXCEEDED, ENTITY_CARGO_NOT_LOADED, ENTITY_CARGO_NOT_OWNED, ENTITY_CONTAINER, ENTITY_EXTRACTOR, ENTITY_FACTORY, ENTITY_HUB, ENTITY_INVALID_CARGO, ENTITY_INVALID_DESTINATION, ENTITY_INVALID_TRAVEL_DURATION, ENTITY_NEXUS, ENTITY_NOT_ENOUGH_ENERGY, ENTITY_NOT_ENOUGH_ENERGY_CAPACITY, ENTITY_NO_CRAFTER, ENTITY_SHIP, ENTITY_WAREHOUSE, EPOCH_NON_ZERO, EPOCH_NOT_READY, ERROR_SYSTEM_ALREADY_INITIALIZED, ERROR_SYSTEM_DISABLED, ERROR_SYSTEM_NOT_INITIALIZED, EffectiveReserveInput, EnergyCapability, EntitiesManager, EntitiesSubscriptionHandle, Entity$1 as Entity, EntityCapabilities, EntityClass, EntityDeletedMessage, EntityInfo$2 as EntityInfo, EntityInstance, EntityInventory, EntityLayout, EntityRefInput, EntitySlot, EntityState, EntityStateInput, EntitySubscriptionFilter, EntitySubscriptionHandle, EntitySubscriptionHandlers, EntitySubscriptionMeta, EntityTypeName, EpochInfo, EpochsManager, ErrorMessage, EstimateTravelTimeOptions, EstimatedTravelTime, EventCatchupCompleteMessage, EventMessage, ExactEntitySubscriptionFilter, Extractor, Factory, FetchAssetsOptions, FinalizerCapability, FinalizerEntityRef, FloatPosition, GAME_NOT_FOUND, GAME_SEED_NOT_SET, GATHERER_DEPTH_MAX_TIER, GATHERER_DEPTH_TABLE, GATHER_EXCEEDS_ENERGY_CAPACITY, GATHER_MASS_DIVISOR, GATHER_NOT_ENOUGH_ENERGY, GROUP_DUPLICATE_ENTITY, GROUP_EMPTY, GROUP_ENTITY_NOT_MOVABLE, GROUP_HAUL_CAPACITY_EXCEEDED, GROUP_NOT_FOUND, GROUP_NOT_SAME_LOCATION, GROUP_NOT_SAME_OWNER, GROUP_NO_THRUST, GameState, GatherPlanEntity, GathererCapability, GathererDepthParams, GathererStats, GridCell, HasCapacity, HasCargo, HasCargomass, HasScheduleAndLocation, HoldKind, INSUFFICIENT_BALANCE, INSUFFICIENT_ITEM_QUANTITY, INSUFFICIENT_ITEM_SUPPLY, INVALID_AMOUNT, ITEM_BATTERY_T1, ITEM_BEAM, ITEM_BIOMASS_T1, ITEM_BIOMASS_T10, ITEM_BIOMASS_T2, ITEM_BIOMASS_T3, ITEM_BIOMASS_T4, ITEM_BIOMASS_T5, ITEM_BIOMASS_T6, ITEM_BIOMASS_T7, ITEM_BIOMASS_T8, ITEM_BIOMASS_T9, ITEM_CERAMIC, ITEM_CONTAINER_T1_PACKED, ITEM_CONTAINER_T2_PACKED, ITEM_CRAFTER_T1, ITEM_CRYSTAL_T1, ITEM_CRYSTAL_T10, ITEM_CRYSTAL_T2, ITEM_CRYSTAL_T3, ITEM_CRYSTAL_T4, ITEM_CRYSTAL_T5, ITEM_CRYSTAL_T6, ITEM_CRYSTAL_T7, ITEM_CRYSTAL_T8, ITEM_CRYSTAL_T9, ITEM_DOES_NOT_EXIST, ITEM_ENGINE_T1, ITEM_EXTRACTOR_T1_PACKED, ITEM_FACTORY_T1_PACKED, ITEM_FRAME, ITEM_FRAME_T2, ITEM_GAS_T1, ITEM_GAS_T10, ITEM_GAS_T2, ITEM_GAS_T3, ITEM_GAS_T4, ITEM_GAS_T5, ITEM_GAS_T6, ITEM_GAS_T7, ITEM_GAS_T8, ITEM_GAS_T9, ITEM_GATHERER_T1, ITEM_GENERATOR_T1, ITEM_HAULER_T1, ITEM_HUB_T1_PACKED, ITEM_LAUNCHER_T1, ITEM_LOADER_T1, ITEM_MASS_CATCHER_T1_PACKED, ITEM_MASS_DRIVER_T1_PACKED, ITEM_NOT_AVAILABLE_AT_LOCATION, ITEM_NOT_DEPLOYABLE, ITEM_NOT_PACKED_ENTITY, ITEM_ORE_T1, ITEM_ORE_T10, ITEM_ORE_T2, ITEM_ORE_T3, ITEM_ORE_T4, ITEM_ORE_T5, ITEM_ORE_T6, ITEM_ORE_T7, ITEM_ORE_T8, ITEM_ORE_T9, ITEM_PLASMA_CELL, ITEM_PLATE, ITEM_PLATE_T2, ITEM_POLYMER, ITEM_REACTOR, ITEM_REGOLITH_T1, ITEM_REGOLITH_T10, ITEM_REGOLITH_T2, ITEM_REGOLITH_T3, ITEM_REGOLITH_T4, ITEM_REGOLITH_T5, ITEM_REGOLITH_T6, ITEM_REGOLITH_T7, ITEM_REGOLITH_T8, ITEM_REGOLITH_T9, ITEM_RESIN, ITEM_RESONATOR, ITEM_SENSOR, ITEM_SHIP_T1_PACKED, ITEM_STORAGE_T1, ITEM_TYPE_COMPONENT, ITEM_TYPE_ENTITY, ITEM_TYPE_MODULE, ITEM_TYPE_RESOURCE, ITEM_WAREHOUSE_T1_PACKED, ITEM_WARP_T1, IdleResolveTarget, ImmutableEntry, ImmutableModuleSlot, InboundTransfer, InstalledModule, InventoryAccessor, Item, ItemType, KindMeta, LANE_BARRIER, LANE_MOBILITY, LOCAL_HALF, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LanePlanEntry, LaneView, LaunchNumericInput, LaunchQuote, LaunchQuoteCatcher, LaunchQuoteLauncher, LaunchStatsInput, LoadTimeBreakdown, LoaderCapability, LoaderStats, Location, LocationStratum, LocationType, LocationsManager, MAX_LEGS, MAX_ORBITAL_ALTITUDE, MAX_STARS_PER_STAT, MAX_STAR_RATING, MIN_ORBITAL_ALTITUDE, MIN_TRANSFER_DISTANCE_ORBITAL_VESSEL, MIN_TRANSFER_DISTANCE_PLANETARY_STRUCTURE, MODULE_ANY, MODULE_BATTERY, MODULE_CARGO_NOT_FOUND, MODULE_CRAFTER, MODULE_ENGINE, MODULE_ENTITY_BUSY, MODULE_GATHERER, MODULE_GENERATOR, MODULE_HAULER, MODULE_LAUNCHER, MODULE_LOADER, MODULE_NOT_MODULE, MODULE_SLOT_EMPTY, MODULE_SLOT_INVALID, MODULE_SLOT_OCCUPIED, MODULE_STORAGE, MODULE_TIER_PREFIXES, MODULE_TYPE_MISMATCH, MODULE_WARP, MassCapability, MintAssetParams, ModuleDescription, ModuleEntry, ModuleType, MovementCapability, index as NFT, NFTCargoItem, NFTCommonBase, NFTInstalledModule, NFTModuleSlot, NO_SCHEDULE, NamedStats, Neighbor, Nexus, NftConfigForItem, NftManager, OrderedTask, OwnerSubscriptionHandle, PLANETARY_STRUCTURE_Z, PLANET_SUBTYPE_GAS_GIANT, PLANET_SUBTYPE_ICY, PLANET_SUBTYPE_INDUSTRIAL, PLANET_SUBTYPE_OCEAN, PLANET_SUBTYPE_ROCKY, PLANET_SUBTYPE_TERRESTRIAL, PLAYER_ALREADY_JOINED, PLAYER_NOT_FOUND, PLAYER_NOT_JOINED, PRECISION, PackedModule, PackedModuleInput, PingMessage, PlanRouteParams, PlanTarget, PlanetSubtypeInfo, platform as PlatformContract, Types$1 as PlatformTypes, Player, PlayerRosterEntry, PlayerStateInput, PlayersManager, PongMessage, Projectable, ProjectedEntity, ProjectionOptions, RECIPE_INPUTS_EXCESS, RECIPE_INPUTS_INSUFFICIENT, RECIPE_INPUTS_INVALID, RECIPE_INPUTS_MIXED, RECIPE_NOT_FOUND, REGION_DIV, REGION_PER_AXIS, REQUIRES_MORE_THAN_ONE, REQUIRES_POSITIVE_VALUE, RESERVE_TIERS, RESOLVE_COUNT_EXCEEDS_COMPLETED, RESOURCE_TIER_ADJECTIVES, RESOURCE_TIER_MULT_TENTHS, RawData, ReachStats, Recipe, RecipeConsumer, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedCrafterLane, ResolvedEvent, ResolvedGathererLane, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedLoaderLane, ResolvedModuleSlot, ResourceCategory, ResourceDemand, ResourceStats, RouteFailure, RouteFailureReason, RoutePlan, RouteResult, SECTORS_PER_AXIS, SECTOR_DIV, SHIPLOAD_COLLECTION, SHIP_ALREADY_TRAVELING, SHIP_CANNOT_BUY_TRAVELING, SHIP_CANNOT_CANCEL_TASK, SHIP_CANNOT_UPDATE_TRAVELING, SHIP_NOT_ARRIVED, SHIP_NOT_FOUND, SHIP_NOT_IDLE, SHIP_NOT_OWNED, SHIP_NO_COMPLETED_TASKS, SHIP_NO_TASKS_TO_CANCEL, SLOT_FORMULAS, STAR_STEP, ScanProvider, ScheduleAccessor, ScheduleCapability, ScheduleData, ScheduledBuild, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, SourceCargoStack, SourceEntityRef, StackInput, StatDefinition, StatFlow, StatMapping, StatSlot, StorageCapability, StratumInfo, SubscribeEntityMessage, SubscribeEventsMessage, SubscribeMessage, SubscriptionEntityType, SubscriptionsManager, SubscriptionsOptions, SystemGraph, TIER_ROLL_MAX, TRAVEL_MAX_DURATION, TaskCancelable, TaskCargoChange, TaskCargoDirection, TaskType, TemplateMeta, TextSpan, TierRange, TransferEntity, UnsubscribeEntityMessage, UnsubscribeEventsMessage, UnsubscribeMessage, UnwrapDestination, UnwrapItem, UpdateBoundsMessage, UpdateMessage, ValidateDisplayNameOptions, WAREHOUSE_ALREADY_AT_LOCATION, WAREHOUSE_NOT_FOUND, WARP_HAS_CARGO, WARP_HAS_SCHEDULE, WARP_NOT_FULL_ENERGY, WARP_NO_CAPABILITY, WARP_OUT_OF_RANGE, WH, WOULD_OVERFILL, WOULD_STRAND, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, WrapDeposit, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, addressFromCoordinates, allBuildableItems, allPlotBuildableItems, applyResourceTierMultiplier, availableBuildMethods, availableCapacity$1 as availableCapacity, availableCapacityFromMass, availableForItem, baseName, blendCargoStacks, blendComponentStacks, blendCrossGroup, blendStacks, buildComponentImmutable, buildEntityDescription, buildEntityImmutable, buildImmutableData, buildMintAssetAction, buildModuleImmutable, buildResourceImmutable, calcCargoItemMass, calcCargoMass, calcEnergyUsage, calcStacksMass, calc_acceleration, calc_craft_duration, calc_craft_energy, calc_energyusage, calc_flighttime, calc_gather_duration, calc_gather_energy, calc_gather_rate, calc_loader_acceleration, calc_loader_flighttime, calc_onesided_duration, calc_orbital_altitude, calc_rechargetime, calc_ship_acceleration, calc_ship_flighttime, calc_ship_mass, calc_ship_rechargetime, calc_transfer_duration, calc_transit_duration, calculateFlightTime, calculateLoadTimeBreakdown, calculateRefuelingTime, calculateTransferTime, canMove, cancelEligibility, candidateLaneCompletesAt, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLauncher, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoReadyAt, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryLabel, categoryLabelFromIndex, componentIcon, composeIdleResolve, computeBaseCapacity, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeBatteryCapabilities, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityCapabilities, computeEntityStats, computeFreeCells, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeGroupPerLegReach, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLauncherCapabilities, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeNftImageUrl, computePerLegReach, computeShipHullCapabilities, computeStorageCapabilities, computeTravelDrain, computeWarehouseHullCapabilities, computeWarpCapabilities, computeWarpRange, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeAddress, decodeAtomicAsset, decodeCraftedItemStats, decodeRegion, decodeSector, decodeStat, decodeStats, Shipload as default, deriveLocation, deriveLocationSize, deriveLocationStatic, deriveResourceStats, deriveStatMappings, deriveStrata, deriveStratum, derivedLoaders, describeItem, describeModule, describeModuleForItem, describeModuleForSlot, deserializeAsset, deserializeAtomicData, deserializeComponent, deserializeEntity, deserializeModule, deserializeResource, displayName, distanceBetweenCoordinates, distanceBetweenPoints, easeFlightProgress, encodeAddress, encodeAddressMemo, encodeGatheredCargoStats, encodeRegion, encodeSector, encodeStats, energyAtTime, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, estimateUnwrapDuration, feistel, feistelInv, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, getAllRecipes, getCapabilityAttributeRows, getCapabilityAttributes, getCategoryInfo, getComponentDemand, getComponents, getCurrentEpoch, getDepthThreshold, getDestinationLocation, getEffectiveReserve, getEligibleResources, getEntityClass, getEntityItems, getEntityLayout, getEpochInfo, getFlightOrigin, getInterpolatedPosition, getItem, getItems, getKindMeta, getLocationCandidates, getLocationKind, getLocationProfile, getLocationType, getLocationTypeName, getModuleCapabilityType, getModules, getPackedEntityType, getPlanetSubtype, getPlanetSubtypes, getPositionAt, getProducersForAttribute, getRecipe, getRecipeConsumers, getResourceDemand, getResourceTier, getResourceWeight, getResources, getStatDefinitions, getStatMappings, getStatMappingsForCapability, getStatMappingsForStat, getStatName, getSystemName, getTemplateMeta, hasEnergy, hasEnergyForDistance, hasGatherer, hasLoaders, hasMass, hasSchedule, hasSpace$1 as hasSpace, hasSpaceForMass, hasStorage, hasSystem, hash, hash512, incomingHoldMass, interpolateFlightPosition, isBuildable, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isHub, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isPlot, isPlotBuildable, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isValidWormholePair, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lane, laneKeyForModule, lerp, location_derived, location_static, makeEntity, mapEntity, maxCraftable, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, nearbyWormholes, needsRecharge, normalizeDisplayName, parseWireEntity, partnerRegion, planParallelGather, planParallelTransfer, planRoute, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, projectedPeakCargomass, rawScheduleEnd, readCommonBase, receiveFits, regionOf, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveLaneCrafter, resolveLaneGatherer, resolveLaneLoader, resolveLockedAmount, resolveStats, rollTier, rollWithinTier, rollupCrafter, rollupGatherer, rollupLoaders, rotation, schedule, sdkSystemGraph, selectGatherLane, setScanProvider, setSubscriptionsDebug, sourceLabelForOutput, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, unwrapLoadDuration, unwrapTransitDuration, validateDisplayName, validateSchedule, workerLaneKey, wormholeAt, wormholeAtRegionEndpoint, yieldThresholdAt };