@shipload/sdk 1.0.0-next.30 → 1.0.0-next.32
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/lib/shipload.d.ts +74 -33
- package/lib/shipload.js +180 -103
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +180 -103
- package/lib/shipload.m.js.map +1 -1
- package/lib/testing.d.ts +21 -10
- package/lib/testing.js +71 -32
- package/lib/testing.js.map +1 -1
- package/lib/testing.m.js +71 -32
- package/lib/testing.m.js.map +1 -1
- package/package.json +1 -1
- package/src/contracts/server.ts +64 -33
- package/src/entities/makers.ts +1 -0
- package/src/errors.ts +0 -1
- package/src/index-module.ts +4 -1
- package/src/managers/actions.ts +26 -17
- package/src/managers/construction.ts +50 -37
- package/src/scheduling/energy.ts +1 -2
- package/src/scheduling/idle-resolve.ts +44 -0
- package/src/scheduling/lane-core.ts +1 -3
- package/src/scheduling/projection.ts +1 -2
- package/src/scheduling/schedule.ts +10 -9
- package/src/subscriptions/mappers.ts +2 -0
- package/src/types.ts +7 -1
- package/src/utils/display-name.ts +11 -2
package/lib/shipload.d.ts
CHANGED
|
@@ -452,6 +452,7 @@ declare namespace Types {
|
|
|
452
452
|
recipe_id: UInt16;
|
|
453
453
|
quantity: UInt32;
|
|
454
454
|
inputs: cargo_item[];
|
|
455
|
+
target?: UInt64;
|
|
455
456
|
}
|
|
456
457
|
class crafter_stats extends Struct {
|
|
457
458
|
speed: UInt16;
|
|
@@ -512,6 +513,7 @@ declare namespace Types {
|
|
|
512
513
|
entitytarget?: entity_ref;
|
|
513
514
|
entitygroup?: UInt64;
|
|
514
515
|
energy_cost?: UInt32;
|
|
516
|
+
hold?: UInt64;
|
|
515
517
|
}
|
|
516
518
|
class schedule extends Struct {
|
|
517
519
|
started: TimePoint;
|
|
@@ -521,6 +523,13 @@ declare namespace Types {
|
|
|
521
523
|
lane_key: UInt8;
|
|
522
524
|
schedule: schedule;
|
|
523
525
|
}
|
|
526
|
+
class hold extends Struct {
|
|
527
|
+
id: UInt64;
|
|
528
|
+
kind: UInt8;
|
|
529
|
+
counterpart: entity_ref;
|
|
530
|
+
until: TimePoint;
|
|
531
|
+
incoming_mass: UInt32;
|
|
532
|
+
}
|
|
524
533
|
class entity_info extends Struct {
|
|
525
534
|
type: Name;
|
|
526
535
|
id: UInt64;
|
|
@@ -542,6 +551,7 @@ declare namespace Types {
|
|
|
542
551
|
hauler?: hauler_stats;
|
|
543
552
|
crafter?: crafter_stats;
|
|
544
553
|
lanes: lane[];
|
|
554
|
+
holds: hold[];
|
|
545
555
|
}
|
|
546
556
|
class slot_def extends Struct {
|
|
547
557
|
type: UInt8;
|
|
@@ -566,6 +576,7 @@ declare namespace Types {
|
|
|
566
576
|
cargomass: UInt32;
|
|
567
577
|
modules: module_entry[];
|
|
568
578
|
lanes: lane[];
|
|
579
|
+
holds: hold[];
|
|
569
580
|
}
|
|
570
581
|
class entity_seq_row extends Struct {
|
|
571
582
|
next_id: UInt64;
|
|
@@ -806,6 +817,11 @@ declare namespace Types {
|
|
|
806
817
|
kinds: kind_meta_row[];
|
|
807
818
|
templates: template_meta_row[];
|
|
808
819
|
}
|
|
820
|
+
class load extends Struct {
|
|
821
|
+
id: UInt64;
|
|
822
|
+
from_id: UInt64;
|
|
823
|
+
items: cargo_item[];
|
|
824
|
+
}
|
|
809
825
|
class location_static extends Struct {
|
|
810
826
|
coords: coordinates;
|
|
811
827
|
type: UInt8;
|
|
@@ -973,11 +989,6 @@ declare namespace Types {
|
|
|
973
989
|
class resources_result extends Struct {
|
|
974
990
|
resources: resource_info[];
|
|
975
991
|
}
|
|
976
|
-
class retarget extends Struct {
|
|
977
|
-
source_id: UInt64;
|
|
978
|
-
task_index: UInt64;
|
|
979
|
-
new_dest_id: UInt64;
|
|
980
|
-
}
|
|
981
992
|
class reveal extends Struct {
|
|
982
993
|
oracle_id: Name;
|
|
983
994
|
epoch: UInt64;
|
|
@@ -1050,11 +1061,6 @@ declare namespace Types {
|
|
|
1050
1061
|
class task_results extends Struct {
|
|
1051
1062
|
entities: entity_task_info[];
|
|
1052
1063
|
}
|
|
1053
|
-
class transfer extends Struct {
|
|
1054
|
-
source_id: UInt64;
|
|
1055
|
-
dest_id: UInt64;
|
|
1056
|
-
items: cargo_item[];
|
|
1057
|
-
}
|
|
1058
1064
|
class travel extends Struct {
|
|
1059
1065
|
id: UInt64;
|
|
1060
1066
|
x: Int64;
|
|
@@ -1072,6 +1078,11 @@ declare namespace Types {
|
|
|
1072
1078
|
host_id: UInt64;
|
|
1073
1079
|
target_id: UInt64;
|
|
1074
1080
|
}
|
|
1081
|
+
class unload extends Struct {
|
|
1082
|
+
id: UInt64;
|
|
1083
|
+
to_id: UInt64;
|
|
1084
|
+
items: cargo_item[];
|
|
1085
|
+
}
|
|
1075
1086
|
class warp extends Struct {
|
|
1076
1087
|
id: UInt64;
|
|
1077
1088
|
x: Int64;
|
|
@@ -1185,6 +1196,7 @@ declare namespace ActionParams {
|
|
|
1185
1196
|
cargomass: UInt32Type;
|
|
1186
1197
|
modules: Type.module_entry[];
|
|
1187
1198
|
lanes: Type.lane[];
|
|
1199
|
+
holds: Type.hold[];
|
|
1188
1200
|
}
|
|
1189
1201
|
interface lane {
|
|
1190
1202
|
lane_key: UInt8Type;
|
|
@@ -1203,11 +1215,19 @@ declare namespace ActionParams {
|
|
|
1203
1215
|
entitytarget?: Type.entity_ref;
|
|
1204
1216
|
entitygroup?: UInt64Type;
|
|
1205
1217
|
energy_cost?: UInt32Type;
|
|
1218
|
+
hold?: UInt64Type;
|
|
1206
1219
|
}
|
|
1207
1220
|
interface entity_ref {
|
|
1208
1221
|
entity_type: NameType;
|
|
1209
1222
|
entity_id: UInt64Type;
|
|
1210
1223
|
}
|
|
1224
|
+
interface hold {
|
|
1225
|
+
id: UInt64Type;
|
|
1226
|
+
kind: UInt8Type;
|
|
1227
|
+
counterpart: Type.entity_ref;
|
|
1228
|
+
until: TimePointType;
|
|
1229
|
+
incoming_mass: UInt32Type;
|
|
1230
|
+
}
|
|
1211
1231
|
interface cargo_row {
|
|
1212
1232
|
id: UInt64Type;
|
|
1213
1233
|
entity_id: UInt64Type;
|
|
@@ -1303,6 +1323,7 @@ declare namespace ActionParams {
|
|
|
1303
1323
|
recipe_id: UInt16Type;
|
|
1304
1324
|
quantity: UInt32Type;
|
|
1305
1325
|
inputs: Type.cargo_item[];
|
|
1326
|
+
target?: UInt64Type;
|
|
1306
1327
|
}
|
|
1307
1328
|
interface demolish {
|
|
1308
1329
|
entity_id: UInt64Type;
|
|
@@ -1454,6 +1475,11 @@ declare namespace ActionParams {
|
|
|
1454
1475
|
interface join {
|
|
1455
1476
|
account: NameType;
|
|
1456
1477
|
}
|
|
1478
|
+
interface load {
|
|
1479
|
+
id: UInt64Type;
|
|
1480
|
+
from_id: UInt64Type;
|
|
1481
|
+
items: Type.cargo_item[];
|
|
1482
|
+
}
|
|
1457
1483
|
interface nftimgurl {
|
|
1458
1484
|
item: Type.cargo_item;
|
|
1459
1485
|
location?: Type.coordinates;
|
|
@@ -1488,11 +1514,6 @@ declare namespace ActionParams {
|
|
|
1488
1514
|
id: UInt64Type;
|
|
1489
1515
|
count?: UInt64Type;
|
|
1490
1516
|
}
|
|
1491
|
-
interface retarget {
|
|
1492
|
-
source_id: UInt64Type;
|
|
1493
|
-
task_index: UInt64Type;
|
|
1494
|
-
new_dest_id: UInt64Type;
|
|
1495
|
-
}
|
|
1496
1517
|
interface reveal {
|
|
1497
1518
|
oracle_id: NameType;
|
|
1498
1519
|
epoch: UInt64Type;
|
|
@@ -1540,11 +1561,6 @@ declare namespace ActionParams {
|
|
|
1540
1561
|
module_index: UInt8Type;
|
|
1541
1562
|
module_ref: Type.cargo_ref;
|
|
1542
1563
|
}
|
|
1543
|
-
interface transfer {
|
|
1544
|
-
source_id: UInt64Type;
|
|
1545
|
-
dest_id: UInt64Type;
|
|
1546
|
-
items: Type.cargo_item[];
|
|
1547
|
-
}
|
|
1548
1564
|
interface travel {
|
|
1549
1565
|
id: UInt64Type;
|
|
1550
1566
|
x: Int64Type;
|
|
@@ -1555,6 +1571,11 @@ declare namespace ActionParams {
|
|
|
1555
1571
|
host_id: UInt64Type;
|
|
1556
1572
|
target_id: UInt64Type;
|
|
1557
1573
|
}
|
|
1574
|
+
interface unload {
|
|
1575
|
+
id: UInt64Type;
|
|
1576
|
+
to_id: UInt64Type;
|
|
1577
|
+
items: Type.cargo_item[];
|
|
1578
|
+
}
|
|
1558
1579
|
interface warp {
|
|
1559
1580
|
id: UInt64Type;
|
|
1560
1581
|
x: Int64Type;
|
|
@@ -1624,6 +1645,7 @@ interface ActionNameParams {
|
|
|
1624
1645
|
importreserve: ActionParams.importreserve;
|
|
1625
1646
|
importstate: ActionParams.importstate;
|
|
1626
1647
|
join: ActionParams.join;
|
|
1648
|
+
load: ActionParams.load;
|
|
1627
1649
|
nftimgurl: ActionParams.nftimgurl;
|
|
1628
1650
|
notify: ActionParams.notify;
|
|
1629
1651
|
placecargo: ActionParams.placecargo;
|
|
@@ -1633,7 +1655,6 @@ interface ActionNameParams {
|
|
|
1633
1655
|
removeoracle: ActionParams.removeoracle;
|
|
1634
1656
|
rename: ActionParams.rename;
|
|
1635
1657
|
resolve: ActionParams.resolve;
|
|
1636
|
-
retarget: ActionParams.retarget;
|
|
1637
1658
|
reveal: ActionParams.reveal;
|
|
1638
1659
|
rmmodule: ActionParams.rmmodule;
|
|
1639
1660
|
rmnftcfg: ActionParams.rmnftcfg;
|
|
@@ -1644,9 +1665,9 @@ interface ActionNameParams {
|
|
|
1644
1665
|
stowcargo: ActionParams.stowcargo;
|
|
1645
1666
|
stowentity: ActionParams.stowentity;
|
|
1646
1667
|
swapmodule: ActionParams.swapmodule;
|
|
1647
|
-
transfer: ActionParams.transfer;
|
|
1648
1668
|
travel: ActionParams.travel;
|
|
1649
1669
|
undeploy: ActionParams.undeploy;
|
|
1670
|
+
unload: ActionParams.unload;
|
|
1650
1671
|
warp: ActionParams.warp;
|
|
1651
1672
|
wipe: ActionParams.wipe;
|
|
1652
1673
|
}
|
|
@@ -1692,17 +1713,17 @@ interface ActionReturnValues {
|
|
|
1692
1713
|
grouptravel: Types.task_results;
|
|
1693
1714
|
hash: Checksum256;
|
|
1694
1715
|
hash512: Checksum512;
|
|
1716
|
+
load: Types.task_results;
|
|
1695
1717
|
nftimgurl: string;
|
|
1696
1718
|
placecargo: Types.task_results;
|
|
1697
1719
|
placeentity: Types.task_results;
|
|
1698
1720
|
recharge: Types.task_results;
|
|
1699
1721
|
resolve: Types.resolve_results;
|
|
1700
|
-
retarget: Types.task_results;
|
|
1701
1722
|
stowcargo: Types.task_results;
|
|
1702
1723
|
stowentity: Types.task_results;
|
|
1703
|
-
transfer: Types.task_results;
|
|
1704
1724
|
travel: Types.task_results;
|
|
1705
1725
|
undeploy: Types.task_results;
|
|
1726
|
+
unload: Types.task_results;
|
|
1706
1727
|
warp: Types.task_results;
|
|
1707
1728
|
}
|
|
1708
1729
|
type ActionReturnNames = keyof ActionReturnValues;
|
|
@@ -1788,7 +1809,6 @@ declare const WAREHOUSE_NOT_FOUND = "Cannot find warehouse for given id.";
|
|
|
1788
1809
|
declare const WAREHOUSE_ALREADY_AT_LOCATION = "Warehouse already exists at this location.";
|
|
1789
1810
|
declare const CONTAINER_NOT_FOUND = "Cannot find container for given id.";
|
|
1790
1811
|
declare const DESTINATION_CAPACITY_EXCEEDED = "Destination entity does not have enough capacity for the gather.";
|
|
1791
|
-
declare const CANCEL_PAIRED_HAS_PENDING = "Cannot cancel transfer, paired entity has pending tasks.";
|
|
1792
1812
|
declare const GROUP_EMPTY = "Group travel requires at least one entity.";
|
|
1793
1813
|
declare const GROUP_NO_THRUST = "Group travel requires at least one entity with engines.";
|
|
1794
1814
|
declare const GROUP_NOT_SAME_LOCATION = "All entities must be at the same location for group travel.";
|
|
@@ -1869,8 +1889,13 @@ declare enum TaskType {
|
|
|
1869
1889
|
UNDEPLOY = 11,
|
|
1870
1890
|
DEMOLISH = 13,
|
|
1871
1891
|
CLAIMPLOT = 14,
|
|
1872
|
-
BUILDPLOT = 15
|
|
1873
|
-
|
|
1892
|
+
BUILDPLOT = 15
|
|
1893
|
+
}
|
|
1894
|
+
declare enum HoldKind {
|
|
1895
|
+
PULL = 1,
|
|
1896
|
+
PUSH = 2,
|
|
1897
|
+
GATHER = 3,
|
|
1898
|
+
BUILD = 4
|
|
1874
1899
|
}
|
|
1875
1900
|
declare enum LocationType {
|
|
1876
1901
|
EMPTY = 0,
|
|
@@ -2220,10 +2245,12 @@ declare function currentTaskProgressFloatForLane(schedule: Schedule$2, now: Date
|
|
|
2220
2245
|
type Schedule$1 = Types.schedule;
|
|
2221
2246
|
type Task$2 = Types.task;
|
|
2222
2247
|
type Lane$1 = Types.lane;
|
|
2248
|
+
type Hold = Types.hold;
|
|
2223
2249
|
declare const LANE_MOBILITY = 0;
|
|
2224
2250
|
declare const LANE_BARRIER = 255;
|
|
2225
2251
|
interface ScheduleData {
|
|
2226
2252
|
lanes?: Lane$1[];
|
|
2253
|
+
holds?: Hold[];
|
|
2227
2254
|
}
|
|
2228
2255
|
interface LaneView {
|
|
2229
2256
|
laneKey: number;
|
|
@@ -2234,6 +2261,7 @@ declare function getLanes(entity: ScheduleData): LaneView[];
|
|
|
2234
2261
|
declare function getLane(entity: ScheduleData, laneKey: number): LaneView | undefined;
|
|
2235
2262
|
declare function mobilityLane(entity: ScheduleData): LaneView | undefined;
|
|
2236
2263
|
declare function hasSchedule$1(entity: ScheduleData): boolean;
|
|
2264
|
+
declare function hasHolds(entity: ScheduleData): boolean;
|
|
2237
2265
|
declare function isIdle(entity: ScheduleData): boolean;
|
|
2238
2266
|
declare function isEntityIdle(entity: ScheduleData, now: Date): boolean;
|
|
2239
2267
|
declare function entityIdleAt(entity: ScheduleData, _now: Date): Date | undefined;
|
|
@@ -2283,6 +2311,7 @@ type schedule_LaneView = LaneView;
|
|
|
2283
2311
|
declare const schedule_getLanes: typeof getLanes;
|
|
2284
2312
|
declare const schedule_getLane: typeof getLane;
|
|
2285
2313
|
declare const schedule_mobilityLane: typeof mobilityLane;
|
|
2314
|
+
declare const schedule_hasHolds: typeof hasHolds;
|
|
2286
2315
|
declare const schedule_isIdle: typeof isIdle;
|
|
2287
2316
|
declare const schedule_isEntityIdle: typeof isEntityIdle;
|
|
2288
2317
|
declare const schedule_entityIdleAt: typeof entityIdleAt;
|
|
@@ -2329,6 +2358,7 @@ declare namespace schedule {
|
|
|
2329
2358
|
schedule_getLane as getLane,
|
|
2330
2359
|
schedule_mobilityLane as mobilityLane,
|
|
2331
2360
|
hasSchedule$1 as hasSchedule,
|
|
2361
|
+
schedule_hasHolds as hasHolds,
|
|
2332
2362
|
schedule_isIdle as isIdle,
|
|
2333
2363
|
schedule_isEntityIdle as isEntityIdle,
|
|
2334
2364
|
schedule_entityIdleAt as entityIdleAt,
|
|
@@ -2706,16 +2736,16 @@ declare class ActionsManager extends BaseManager {
|
|
|
2706
2736
|
grouptravel(entities: EntityRefInput[], destination: CoordinatesType, recharge?: boolean): Action;
|
|
2707
2737
|
resolve(entityId: UInt64Type, count?: UInt64Type): Action;
|
|
2708
2738
|
cancel(entityId: UInt64Type, laneKey: number, count: UInt64Type): Action;
|
|
2709
|
-
retarget(sourceId: UInt64Type, taskIndex: UInt64Type, newDestId: UInt64Type): Action;
|
|
2710
2739
|
recharge(entityId: UInt64Type): Action;
|
|
2711
2740
|
rename(entityId: UInt64Type, name: string): Action;
|
|
2712
2741
|
refrshentity(entityId: UInt64Type): Action;
|
|
2713
|
-
|
|
2742
|
+
load(id: UInt64Type, fromId: UInt64Type, items: ActionParams.Type.cargo_item[]): Action;
|
|
2743
|
+
unload(id: UInt64Type, toId: UInt64Type, items: ActionParams.Type.cargo_item[]): Action;
|
|
2714
2744
|
foundCompany(account: NameType, name: string): Action;
|
|
2715
2745
|
join(account: NameType): Action;
|
|
2716
2746
|
gather(sourceId: UInt64Type, destinationId: UInt64Type, stratum: UInt16Type, quantity: UInt32Type): Action;
|
|
2717
2747
|
warp(entityId: UInt64Type, destination: CoordinatesType): Action;
|
|
2718
|
-
craft(entityId: UInt64Type, recipeId: number, quantity: number, inputs: ActionParams.Type.cargo_item[]): Action;
|
|
2748
|
+
craft(entityId: UInt64Type, recipeId: number, quantity: number, inputs: ActionParams.Type.cargo_item[], target?: UInt64Type): Action;
|
|
2719
2749
|
blend(entityId: UInt64Type, inputs: ActionParams.Type.cargo_item[]): Action;
|
|
2720
2750
|
deploy(entityId: UInt64Type, ref: ActionParams.Type.cargo_ref): Action;
|
|
2721
2751
|
claimplot(entityId: UInt64Type, targetItemId: UInt16Type, coords: ActionParams.Type.coordinates): Action;
|
|
@@ -2757,7 +2787,7 @@ declare class NftManager extends BaseManager {
|
|
|
2757
2787
|
getNftConfigForItem(itemId: UInt64Type): Promise<NftConfigForItem | undefined>;
|
|
2758
2788
|
}
|
|
2759
2789
|
|
|
2760
|
-
type EntityInfo = Types.entity_info;
|
|
2790
|
+
type EntityInfo$1 = Types.entity_info;
|
|
2761
2791
|
interface BoundingBox {
|
|
2762
2792
|
min_x: number;
|
|
2763
2793
|
min_y: number;
|
|
@@ -3126,6 +3156,7 @@ declare class ConstructionManager extends BaseManager {
|
|
|
3126
3156
|
inboundTransfersTo(plotId: UInt64, entities: Types.entity_info[], now: Date): InboundTransfer[];
|
|
3127
3157
|
inboundTransfersByTarget(entities: Types.entity_info[], now: Date): Map<string, InboundTransfer[]>;
|
|
3128
3158
|
private plotReservation;
|
|
3159
|
+
private builderBuildStart;
|
|
3129
3160
|
private builderCancelability;
|
|
3130
3161
|
private buildFromReservation;
|
|
3131
3162
|
scheduledBuildFor(plot: Types.entity_info, entities: Types.entity_info[], now: Date): ScheduledBuild | null;
|
|
@@ -3176,7 +3207,10 @@ interface DisplayNameResult {
|
|
|
3176
3207
|
name: string;
|
|
3177
3208
|
}
|
|
3178
3209
|
declare function normalizeDisplayName(input: string): string;
|
|
3179
|
-
|
|
3210
|
+
interface ValidateDisplayNameOptions {
|
|
3211
|
+
allowEmpty?: boolean;
|
|
3212
|
+
}
|
|
3213
|
+
declare function validateDisplayName(input: string, opts?: ValidateDisplayNameOptions): DisplayNameResult;
|
|
3180
3214
|
|
|
3181
3215
|
/**
|
|
3182
3216
|
* Travel calculations for ship movement, energy usage, and flight times.
|
|
@@ -3383,6 +3417,13 @@ interface TaskCargoChange {
|
|
|
3383
3417
|
}
|
|
3384
3418
|
declare function taskCargoChanges(task: Types.task): TaskCargoChange[];
|
|
3385
3419
|
|
|
3420
|
+
type EntityInfo = Types.entity_info;
|
|
3421
|
+
type CounterpartLookup = (entityId: UInt64) => EntityInfo | undefined;
|
|
3422
|
+
type IdleResolveTarget = ScheduleData & {
|
|
3423
|
+
id: UInt64;
|
|
3424
|
+
};
|
|
3425
|
+
declare function composeIdleResolve(blocker: IdleResolveTarget, action: Action, actions: ActionsManager, now: Date, lookupCounterpart?: CounterpartLookup): Action[];
|
|
3426
|
+
|
|
3386
3427
|
type Task = Types.task;
|
|
3387
3428
|
type CargoItem$1 = Types.cargo_item;
|
|
3388
3429
|
interface CargoEffect {
|
|
@@ -4056,4 +4097,4 @@ type gatherer_stats = Types.gatherer_stats;
|
|
|
4056
4097
|
type location_static = Types.location_static;
|
|
4057
4098
|
type location_derived = Types.location_derived;
|
|
4058
4099
|
|
|
4059
|
-
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, BuildMethod, BuildState, BuildableTarget, CANCEL_CONTAINS_GROUPED_TASK, CANCEL_PAIRED_HAS_PENDING, 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, CRAFT_ENERGY_DIVISOR, CRAFT_EXCEEDS_ENERGY_CAPACITY, CRAFT_NOT_ENOUGH_ENERGY, CapabilityAttribute, CapabilityInput, CargoData, CargoMassInfo, CargoStack, CategoryInfo, CategoryStacks, ClientMessage, ComputedCapabilities, ConnectionState, ConstructionManager, Container, ContainerEntity, Coordinates, CoordinatesType, CraftedItemCategory, CrafterCapability, DEPLOY_ENTITY_HAS_SCHEDULE, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, DESTINATION_CAPACITY_EXCEEDED, DecodedAtomicAsset, DerivedStratum, DescribeOptions, DisplayNameResult, Distance, 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, Entity$1 as Entity, EntityCapabilities, EntityClass, EntityInfo, EntityInstance, EntityInventory, EntityLayout, EntityRefInput, EntitySlot, EntityState, EntityStateInput, EntitySubscriptionHandle, EntityTypeName, EpochInfo, EpochsManager, ErrorMessage, EstimateTravelTimeOptions, EstimatedTravelTime, EventCatchupCompleteMessage, EventMessage, 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_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, GathererCapability, GathererDepthParams, HasCapacity, HasCargo, HasCargomass, HasScheduleAndLocation, 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_LOADER_T1, 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, ImmutableEntry, ImmutableModuleSlot, InboundTransfer, InstalledModule, InventoryAccessor, Item, ItemType, KindMeta, LANE_BARRIER, LANE_MOBILITY, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LaneView, LoadTimeBreakdown, LoaderCapability, Location, LocationStratum, LocationType, LocationsManager, 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, 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, PlanetSubtypeInfo, platform as PlatformContract, Types$1 as PlatformTypes, Player, PlayerStateInput, PlayersManager, PongMessage, Projectable, ProjectedEntity, ProjectionOptions, RECIPE_INPUTS_EXCESS, RECIPE_INPUTS_INSUFFICIENT, RECIPE_INPUTS_INVALID, RECIPE_INPUTS_MIXED, RECIPE_NOT_FOUND, REQUIRES_MORE_THAN_ONE, REQUIRES_POSITIVE_VALUE, RESERVE_TIERS, RESOLVE_COUNT_EXCEEDS_COMPLETED, RESOURCE_TIER_ADJECTIVES, RawData, Recipe, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedEvent, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedModuleSlot, ResourceCategory, ResourceStats, 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, ScheduleAccessor, ScheduleCapability, ScheduleData, ScheduledBuild, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, SourceCargoStack, SourceEntityRef, StackInput, StatDefinition, StatMapping, StatSlot, StorageCapability, StratumInfo, SubscribeEntityMessage, SubscribeEventsMessage, SubscribeMessage, SubscriptionEntityType, SubscriptionsManager, SubscriptionsOptions, TIER_ROLL_MAX, TRAVEL_MAX_DURATION, TaskCancelable, TaskCargoChange, TaskCargoDirection, TaskType, TemplateMeta, TextSpan, TierRange, TransferEntity, UnsubscribeEntityMessage, UnsubscribeEventsMessage, UnsubscribeMessage, UpdateBoundsMessage, UpdateMessage, WAREHOUSE_ALREADY_AT_LOCATION, WAREHOUSE_NOT_FOUND, WARP_HAS_CARGO, WARP_HAS_SCHEDULE, WARP_NOT_FULL_ENERGY, WARP_NO_CAPABILITY, WARP_OUT_OF_RANGE, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, allBuildableItems, allPlotBuildableItems, 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_orbital_altitude, calc_rechargetime, calc_ship_acceleration, calc_ship_flighttime, calc_ship_mass, calc_ship_rechargetime, calc_transfer_duration, calculateFlightTime, calculateLoadTimeBreakdown, calculateRefuelingTime, calculateTransferTime, canMove, candidateLaneCompletesAt, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoReadyAt, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryLabel, categoryLabelFromIndex, componentIcon, computeBaseCapacity, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityCapabilities, computeEntityStats, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeNftImageUrl, computeShipHullCapabilities, computeStorageCapabilities, computeWarehouseHullCapabilities, computeWarpCapabilities, computeWarpRange, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeAtomicAsset, decodeCraftedItemStats, decodeStat, decodeStats, Shipload as default, deriveLocation, deriveLocationSize, deriveLocationStatic, deriveResourceStats, deriveStatMappings, deriveStrata, deriveStratum, describeItem, describeModule, describeModuleForItem, describeModuleForSlot, deserializeAsset, deserializeAtomicData, deserializeComponent, deserializeEntity, deserializeModule, deserializeResource, displayName, distanceBetweenCoordinates, distanceBetweenPoints, easeFlightProgress, encodeGatheredCargoStats, encodeStats, energyAtTime, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, gatherer_stats, getCapabilityAttributes, getCategoryInfo, getComponents, getCurrentEpoch, getDepthThreshold, getDestinationLocation, getEffectiveReserve, getEligibleResources, getEntityClass, getEntityItems, getEntityLayout, getEpochInfo, getFlightOrigin, getInterpolatedPosition, getItem, getItems, getKindMeta, getLocationCandidates, getLocationProfile, getLocationType, getLocationTypeName, getModuleCapabilityType, getModules, getPackedEntityType, getPlanetSubtype, getPlanetSubtypes, getPositionAt, getRecipe, 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, interpolateFlightPosition, isBuildable, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isPlot, isPlotBuildable, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lane, laneKeyForModule, lerp, loader_stats, location_derived, location_static, makeEntity, mapEntity, maxCraftable, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, needsRecharge, normalizeDisplayName, parseWireEntity, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, rawScheduleEnd, readCommonBase, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveStats, rollTier, rollWithinTier, rotation, schedule, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, validateDisplayName, validateSchedule, workerLaneKey, yieldThresholdAt };
|
|
4100
|
+
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, 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, CRAFT_ENERGY_DIVISOR, CRAFT_EXCEEDS_ENERGY_CAPACITY, CRAFT_NOT_ENOUGH_ENERGY, CapabilityAttribute, CapabilityInput, CargoData, CargoMassInfo, CargoStack, CategoryInfo, CategoryStacks, ClientMessage, ComputedCapabilities, ConnectionState, ConstructionManager, Container, ContainerEntity, Coordinates, CoordinatesType, CounterpartLookup, CraftedItemCategory, CrafterCapability, DEPLOY_ENTITY_HAS_SCHEDULE, DEPTH_THRESHOLD_T1, DEPTH_THRESHOLD_T2, DEPTH_THRESHOLD_T3, DEPTH_THRESHOLD_T4, DEPTH_THRESHOLD_T5, DESTINATION_CAPACITY_EXCEEDED, DecodedAtomicAsset, DerivedStratum, DescribeOptions, DisplayNameResult, Distance, 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, Entity$1 as Entity, EntityCapabilities, EntityClass, EntityInfo$1 as EntityInfo, EntityInstance, EntityInventory, EntityLayout, EntityRefInput, EntitySlot, EntityState, EntityStateInput, EntitySubscriptionHandle, EntityTypeName, EpochInfo, EpochsManager, ErrorMessage, EstimateTravelTimeOptions, EstimatedTravelTime, EventCatchupCompleteMessage, EventMessage, 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_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, GathererCapability, GathererDepthParams, 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_LOADER_T1, 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, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LaneView, LoadTimeBreakdown, LoaderCapability, Location, LocationStratum, LocationType, LocationsManager, 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, 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, PlanetSubtypeInfo, platform as PlatformContract, Types$1 as PlatformTypes, Player, PlayerStateInput, PlayersManager, PongMessage, Projectable, ProjectedEntity, ProjectionOptions, RECIPE_INPUTS_EXCESS, RECIPE_INPUTS_INSUFFICIENT, RECIPE_INPUTS_INVALID, RECIPE_INPUTS_MIXED, RECIPE_NOT_FOUND, REQUIRES_MORE_THAN_ONE, REQUIRES_POSITIVE_VALUE, RESERVE_TIERS, RESOLVE_COUNT_EXCEEDS_COMPLETED, RESOURCE_TIER_ADJECTIVES, RawData, Recipe, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedEvent, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedModuleSlot, ResourceCategory, ResourceStats, 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, ScheduleAccessor, ScheduleCapability, ScheduleData, ScheduledBuild, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, SourceCargoStack, SourceEntityRef, StackInput, StatDefinition, StatMapping, StatSlot, StorageCapability, StratumInfo, SubscribeEntityMessage, SubscribeEventsMessage, SubscribeMessage, SubscriptionEntityType, SubscriptionsManager, SubscriptionsOptions, TIER_ROLL_MAX, TRAVEL_MAX_DURATION, TaskCancelable, TaskCargoChange, TaskCargoDirection, TaskType, TemplateMeta, TextSpan, TierRange, TransferEntity, UnsubscribeEntityMessage, UnsubscribeEventsMessage, UnsubscribeMessage, 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, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, allBuildableItems, allPlotBuildableItems, 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_orbital_altitude, calc_rechargetime, calc_ship_acceleration, calc_ship_flighttime, calc_ship_mass, calc_ship_rechargetime, calc_transfer_duration, calculateFlightTime, calculateLoadTimeBreakdown, calculateRefuelingTime, calculateTransferTime, canMove, candidateLaneCompletesAt, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoReadyAt, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryLabel, categoryLabelFromIndex, componentIcon, composeIdleResolve, computeBaseCapacity, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityCapabilities, computeEntityStats, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeNftImageUrl, computeShipHullCapabilities, computeStorageCapabilities, computeWarehouseHullCapabilities, computeWarpCapabilities, computeWarpRange, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeAtomicAsset, decodeCraftedItemStats, decodeStat, decodeStats, Shipload as default, deriveLocation, deriveLocationSize, deriveLocationStatic, deriveResourceStats, deriveStatMappings, deriveStrata, deriveStratum, describeItem, describeModule, describeModuleForItem, describeModuleForSlot, deserializeAsset, deserializeAtomicData, deserializeComponent, deserializeEntity, deserializeModule, deserializeResource, displayName, distanceBetweenCoordinates, distanceBetweenPoints, easeFlightProgress, encodeGatheredCargoStats, encodeStats, energyAtTime, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, gatherer_stats, getCapabilityAttributes, getCategoryInfo, getComponents, getCurrentEpoch, getDepthThreshold, getDestinationLocation, getEffectiveReserve, getEligibleResources, getEntityClass, getEntityItems, getEntityLayout, getEpochInfo, getFlightOrigin, getInterpolatedPosition, getItem, getItems, getKindMeta, getLocationCandidates, getLocationProfile, getLocationType, getLocationTypeName, getModuleCapabilityType, getModules, getPackedEntityType, getPlanetSubtype, getPlanetSubtypes, getPositionAt, getRecipe, 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, interpolateFlightPosition, isBuildable, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isPlot, isPlotBuildable, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lane, laneKeyForModule, lerp, loader_stats, location_derived, location_static, makeEntity, mapEntity, maxCraftable, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, needsRecharge, normalizeDisplayName, parseWireEntity, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, rawScheduleEnd, readCommonBase, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveStats, rollTier, rollWithinTier, rotation, schedule, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, validateDisplayName, validateSchedule, workerLaneKey, yieldThresholdAt };
|