@shipload/sdk 1.0.0-next.37 → 1.0.0-next.39
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 +100 -5
- package/lib/shipload.js +679 -262
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +668 -262
- package/lib/shipload.m.js.map +1 -1
- package/lib/testing.d.ts +15 -0
- package/lib/testing.js +75 -5
- package/lib/testing.js.map +1 -1
- package/lib/testing.m.js +75 -5
- package/lib/testing.m.js.map +1 -1
- package/package.json +1 -1
- package/src/capabilities/modules.ts +3 -0
- package/src/contracts/server.ts +30 -1
- package/src/data/capabilities.ts +7 -10
- package/src/data/capability-formulas.ts +8 -8
- package/src/data/entities.json +30 -0
- package/src/data/item-ids.ts +3 -0
- package/src/data/items.json +19 -0
- package/src/data/kind-registry.json +24 -0
- package/src/data/kind-registry.ts +15 -0
- package/src/data/metadata.ts +22 -5
- package/src/data/recipes.json +5 -5
- package/src/derivation/capabilities.test.ts +21 -3
- package/src/derivation/capabilities.ts +80 -35
- package/src/entities/makers.ts +7 -0
- package/src/entities/slot-multiplier.ts +4 -0
- package/src/index-module.ts +15 -2
- package/src/managers/actions.ts +176 -1
- package/src/nft/buildImmutableData.ts +23 -6
- package/src/nft/description.ts +41 -8
- package/src/resolution/describe-module.ts +13 -5
- package/src/resolution/resolve-item.test.ts +37 -0
- package/src/resolution/resolve-item.ts +37 -10
- package/src/scheduling/projection.ts +19 -0
- package/src/travel/route-planner.ts +29 -3
- package/src/types/capabilities.ts +5 -0
- package/src/types.ts +1 -0
package/lib/shipload.d.ts
CHANGED
|
@@ -510,6 +510,11 @@ declare namespace Types {
|
|
|
510
510
|
thrust: UInt16;
|
|
511
511
|
output_pct: UInt16;
|
|
512
512
|
}
|
|
513
|
+
class launcher_stats extends Struct {
|
|
514
|
+
charge_rate: UInt16;
|
|
515
|
+
velocity: UInt16;
|
|
516
|
+
drain: UInt16;
|
|
517
|
+
}
|
|
513
518
|
class task extends Struct {
|
|
514
519
|
type: UInt8;
|
|
515
520
|
duration: UInt32;
|
|
@@ -556,6 +561,7 @@ declare namespace Types {
|
|
|
556
561
|
gatherer_lanes: gatherer_lane[];
|
|
557
562
|
crafter_lanes: crafter_lane[];
|
|
558
563
|
loader_lanes: loader_lane[];
|
|
564
|
+
launcher?: launcher_stats;
|
|
559
565
|
lanes: lane[];
|
|
560
566
|
holds: hold[];
|
|
561
567
|
}
|
|
@@ -841,6 +847,11 @@ declare namespace Types {
|
|
|
841
847
|
kinds: kind_meta_row[];
|
|
842
848
|
templates: template_meta_row[];
|
|
843
849
|
}
|
|
850
|
+
class launch extends Struct {
|
|
851
|
+
launcher_id: UInt64;
|
|
852
|
+
catcher_id: UInt64;
|
|
853
|
+
items: cargo_item[];
|
|
854
|
+
}
|
|
844
855
|
class load extends Struct {
|
|
845
856
|
id: UInt64;
|
|
846
857
|
from_id: UInt64;
|
|
@@ -974,6 +985,7 @@ declare namespace Types {
|
|
|
974
985
|
gatherer_lanes: gatherer_lane[];
|
|
975
986
|
crafter_lanes: crafter_lane[];
|
|
976
987
|
loader_lanes: loader_lane[];
|
|
988
|
+
launcher?: launcher_stats;
|
|
977
989
|
}
|
|
978
990
|
class recharge extends Struct {
|
|
979
991
|
id: UInt64;
|
|
@@ -1543,6 +1555,11 @@ declare namespace ActionParams {
|
|
|
1543
1555
|
interface join {
|
|
1544
1556
|
account: NameType;
|
|
1545
1557
|
}
|
|
1558
|
+
interface launch {
|
|
1559
|
+
launcher_id: UInt64Type;
|
|
1560
|
+
catcher_id: UInt64Type;
|
|
1561
|
+
items: Type.cargo_item[];
|
|
1562
|
+
}
|
|
1546
1563
|
interface load {
|
|
1547
1564
|
id: UInt64Type;
|
|
1548
1565
|
from_id: UInt64Type;
|
|
@@ -1731,6 +1748,7 @@ interface ActionNameParams {
|
|
|
1731
1748
|
importreserve: ActionParams.importreserve;
|
|
1732
1749
|
importstate: ActionParams.importstate;
|
|
1733
1750
|
join: ActionParams.join;
|
|
1751
|
+
launch: ActionParams.launch;
|
|
1734
1752
|
load: ActionParams.load;
|
|
1735
1753
|
nftimgurl: ActionParams.nftimgurl;
|
|
1736
1754
|
notify: ActionParams.notify;
|
|
@@ -1805,6 +1823,7 @@ interface ActionReturnValues {
|
|
|
1805
1823
|
grouptravel: Types.task_results;
|
|
1806
1824
|
hash: Checksum256;
|
|
1807
1825
|
hash512: Checksum512;
|
|
1826
|
+
launch: Types.task_results;
|
|
1808
1827
|
load: Types.task_results;
|
|
1809
1828
|
nftimgurl: string;
|
|
1810
1829
|
placecargo: Types.task_results;
|
|
@@ -2023,7 +2042,7 @@ interface Distance {
|
|
|
2023
2042
|
}
|
|
2024
2043
|
type ItemType = 'resource' | 'component' | 'module' | 'entity';
|
|
2025
2044
|
type ResourceCategory = 'ore' | 'crystal' | 'gas' | 'regolith' | 'biomass';
|
|
2026
|
-
type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler' | 'battery';
|
|
2045
|
+
type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler' | 'battery' | 'catcher';
|
|
2027
2046
|
declare const RESOURCE_TIER_ADJECTIVES: Record<number, string>;
|
|
2028
2047
|
declare const COMPONENT_TIER_PREFIXES: Record<number, string>;
|
|
2029
2048
|
declare const MODULE_TIER_PREFIXES: Record<number, string>;
|
|
@@ -2111,11 +2130,14 @@ declare const ITEM_STORAGE_T1 = 10105;
|
|
|
2111
2130
|
declare const ITEM_HAULER_T1 = 10106;
|
|
2112
2131
|
declare const ITEM_WARP_T1 = 10107;
|
|
2113
2132
|
declare const ITEM_BATTERY_T1 = 10108;
|
|
2133
|
+
declare const ITEM_LAUNCHER_T1 = 10109;
|
|
2114
2134
|
declare const ITEM_CONTAINER_T1_PACKED = 10200;
|
|
2115
2135
|
declare const ITEM_SHIP_T1_PACKED = 10201;
|
|
2116
2136
|
declare const ITEM_WAREHOUSE_T1_PACKED = 10202;
|
|
2117
2137
|
declare const ITEM_EXTRACTOR_T1_PACKED = 10203;
|
|
2118
2138
|
declare const ITEM_FACTORY_T1_PACKED = 10204;
|
|
2139
|
+
declare const ITEM_MASS_DRIVER_T1_PACKED = 10205;
|
|
2140
|
+
declare const ITEM_MASS_CATCHER_T1_PACKED = 10206;
|
|
2119
2141
|
declare const ITEM_PLATE_T2 = 20001;
|
|
2120
2142
|
declare const ITEM_FRAME_T2 = 20002;
|
|
2121
2143
|
declare const ITEM_CONTAINER_T2_PACKED = 20200;
|
|
@@ -2157,7 +2179,7 @@ declare enum EntityClass {
|
|
|
2157
2179
|
PlanetaryStructure = 1,
|
|
2158
2180
|
Plot = 2
|
|
2159
2181
|
}
|
|
2160
|
-
type EntityTypeName = 'ship' | 'warehouse' | 'extractor' | 'factory' | 'container' | 'nexus' | 'plot';
|
|
2182
|
+
type EntityTypeName = 'ship' | 'warehouse' | 'extractor' | 'factory' | 'container' | 'nexus' | 'plot' | 'mdriver' | 'mcatcher';
|
|
2161
2183
|
interface KindMeta {
|
|
2162
2184
|
kind: Name;
|
|
2163
2185
|
classification: EntityClass;
|
|
@@ -2284,6 +2306,7 @@ interface EntityCapabilities {
|
|
|
2284
2306
|
gatherer?: GathererStats;
|
|
2285
2307
|
crafter?: CrafterStats;
|
|
2286
2308
|
hauler?: Types.hauler_stats;
|
|
2309
|
+
launcher?: Types.launcher_stats;
|
|
2287
2310
|
}
|
|
2288
2311
|
interface EntityState {
|
|
2289
2312
|
owner: Name;
|
|
@@ -2298,6 +2321,7 @@ declare function capsHasLoaders(caps: EntityCapabilities): boolean;
|
|
|
2298
2321
|
declare function capsHasGatherer(caps: EntityCapabilities): boolean;
|
|
2299
2322
|
declare function capsHasMass(caps: EntityCapabilities): boolean;
|
|
2300
2323
|
declare function capsHasHauler(caps: EntityCapabilities): boolean;
|
|
2324
|
+
declare function capsHasLauncher(caps: EntityCapabilities): boolean;
|
|
2301
2325
|
|
|
2302
2326
|
interface HasCargo {
|
|
2303
2327
|
cargo: Types.cargo_item[];
|
|
@@ -2910,6 +2934,34 @@ declare class EpochsManager extends BaseManager {
|
|
|
2910
2934
|
getRevealsFor(epoch: UInt64Type): Promise<Types.reveal_row[]>;
|
|
2911
2935
|
}
|
|
2912
2936
|
|
|
2937
|
+
type LaunchNumericInput = number | bigint | string | {
|
|
2938
|
+
toNumber(): number;
|
|
2939
|
+
} | {
|
|
2940
|
+
toString(): string;
|
|
2941
|
+
};
|
|
2942
|
+
interface LaunchStatsInput {
|
|
2943
|
+
charge_rate?: LaunchNumericInput;
|
|
2944
|
+
chargeRate?: LaunchNumericInput;
|
|
2945
|
+
velocity: LaunchNumericInput;
|
|
2946
|
+
drain: LaunchNumericInput;
|
|
2947
|
+
}
|
|
2948
|
+
interface LaunchQuoteLauncher {
|
|
2949
|
+
coordinates: CoordinatesType;
|
|
2950
|
+
launcher: LaunchStatsInput;
|
|
2951
|
+
generator?: {
|
|
2952
|
+
capacity: LaunchNumericInput;
|
|
2953
|
+
};
|
|
2954
|
+
}
|
|
2955
|
+
interface LaunchQuoteCatcher {
|
|
2956
|
+
coordinates: CoordinatesType;
|
|
2957
|
+
}
|
|
2958
|
+
interface LaunchQuote {
|
|
2959
|
+
chargeTime: number;
|
|
2960
|
+
flightTime: number;
|
|
2961
|
+
arrival: Date;
|
|
2962
|
+
energyCost: number;
|
|
2963
|
+
maxReach: bigint;
|
|
2964
|
+
}
|
|
2913
2965
|
type EntityRefInput = {
|
|
2914
2966
|
entityType: NameType;
|
|
2915
2967
|
entityId: UInt64Type;
|
|
@@ -2930,6 +2982,8 @@ declare class ActionsManager extends BaseManager {
|
|
|
2930
2982
|
refrshentity(entityId: UInt64Type): Action;
|
|
2931
2983
|
load(id: UInt64Type, fromId: UInt64Type, items: ActionParams.Type.cargo_item[]): Action;
|
|
2932
2984
|
unload(id: UInt64Type, toId: UInt64Type, items: ActionParams.Type.cargo_item[]): Action;
|
|
2985
|
+
launch(launcherId: UInt64Type, catcherId: UInt64Type, items: ActionParams.Type.cargo_item[]): Action;
|
|
2986
|
+
getLaunchQuote(launcher: LaunchQuoteLauncher, catcher: LaunchQuoteCatcher, items: ActionParams.Type.cargo_item[], start?: Date): LaunchQuote;
|
|
2933
2987
|
foundCompany(account: NameType, name: string): Action;
|
|
2934
2988
|
join(account: NameType): Action;
|
|
2935
2989
|
gather(sourceId: UInt64Type, destinationId: UInt64Type, stratum: UInt16Type, quantity: UInt32Type, slot?: UInt8Type): Action;
|
|
@@ -3582,6 +3636,7 @@ interface RouteFailure {
|
|
|
3582
3636
|
reason: RouteFailureReason;
|
|
3583
3637
|
furthest?: Coord;
|
|
3584
3638
|
legsNeeded?: number;
|
|
3639
|
+
partialWaypoints?: Coord[];
|
|
3585
3640
|
}
|
|
3586
3641
|
type RouteResult = RoutePlan | RouteFailure;
|
|
3587
3642
|
interface PlanRouteParams {
|
|
@@ -3593,6 +3648,7 @@ interface PlanRouteParams {
|
|
|
3593
3648
|
nodeBudget?: number;
|
|
3594
3649
|
maxLegs?: number;
|
|
3595
3650
|
}
|
|
3651
|
+
declare const MAX_LEGS = 12;
|
|
3596
3652
|
declare function planRoute(params: PlanRouteParams): RouteResult;
|
|
3597
3653
|
declare function sdkSystemGraph(seed: Checksum256Type): SystemGraph;
|
|
3598
3654
|
|
|
@@ -3698,6 +3754,7 @@ interface ProjectedEntity {
|
|
|
3698
3754
|
loaderLanes: Types.loader_lane[];
|
|
3699
3755
|
generator?: Types.energy_stats;
|
|
3700
3756
|
hauler?: Types.hauler_stats;
|
|
3757
|
+
launcher?: Types.launcher_stats;
|
|
3701
3758
|
readonly cargoMass: UInt64;
|
|
3702
3759
|
readonly totalMass: UInt64;
|
|
3703
3760
|
readonly gathererLanes: Types.gatherer_lane[];
|
|
@@ -3705,6 +3762,7 @@ interface ProjectedEntity {
|
|
|
3705
3762
|
hasMovement(): boolean;
|
|
3706
3763
|
hasStorage(): boolean;
|
|
3707
3764
|
hasLoaders(): boolean;
|
|
3765
|
+
hasLauncher(): boolean;
|
|
3708
3766
|
capabilities(): EntityCapabilities;
|
|
3709
3767
|
state(): EntityState;
|
|
3710
3768
|
}
|
|
@@ -3718,6 +3776,7 @@ interface Projectable extends ScheduleData {
|
|
|
3718
3776
|
gatherer_lanes?: Types.gatherer_lane[];
|
|
3719
3777
|
crafter_lanes?: Types.crafter_lane[];
|
|
3720
3778
|
hauler?: Types.hauler_stats;
|
|
3779
|
+
launcher?: Types.launcher_stats;
|
|
3721
3780
|
capacity?: UInt32;
|
|
3722
3781
|
cargo: Types.cargo_item[];
|
|
3723
3782
|
cargomass: UInt32;
|
|
@@ -4000,8 +4059,20 @@ declare function computeHaulerCapabilities(stats: Record<string, number>): {
|
|
|
4000
4059
|
efficiency: number;
|
|
4001
4060
|
drain: number;
|
|
4002
4061
|
};
|
|
4003
|
-
declare function
|
|
4004
|
-
|
|
4062
|
+
declare function computeLauncherCapabilities(stats: {
|
|
4063
|
+
charge_rate: number;
|
|
4064
|
+
velocity: number;
|
|
4065
|
+
drain: number;
|
|
4066
|
+
}, amp?: number): {
|
|
4067
|
+
chargeRate: number;
|
|
4068
|
+
velocity: number;
|
|
4069
|
+
drain: number;
|
|
4070
|
+
};
|
|
4071
|
+
declare function computeStorageCapabilities(stats: Record<string, number>): {
|
|
4072
|
+
capacity: number;
|
|
4073
|
+
};
|
|
4074
|
+
declare function computeBatteryCapabilities(stats: Record<string, number>): {
|
|
4075
|
+
capacity: number;
|
|
4005
4076
|
};
|
|
4006
4077
|
|
|
4007
4078
|
declare function computeBaseCapacity(itemId: number, stats: Record<string, number>): number;
|
|
@@ -4067,6 +4138,11 @@ interface ComputedCapabilities {
|
|
|
4067
4138
|
warp?: {
|
|
4068
4139
|
range: number;
|
|
4069
4140
|
};
|
|
4141
|
+
launcher?: {
|
|
4142
|
+
chargeRate: number;
|
|
4143
|
+
velocity: number;
|
|
4144
|
+
drain: number;
|
|
4145
|
+
};
|
|
4070
4146
|
}
|
|
4071
4147
|
declare function computeEntityCapabilities(stats: Record<string, number>, itemId: number, modules: InstalledModule[], layout: EntitySlot[]): ComputedCapabilities;
|
|
4072
4148
|
declare function computeContainerCapabilities(stats: Record<string, number>): {
|
|
@@ -4143,6 +4219,7 @@ interface ResolvedAttributeGroup {
|
|
|
4143
4219
|
type ResolvedItemType = 'resource' | 'component' | 'module' | 'entity';
|
|
4144
4220
|
interface ResolvedModuleSlot {
|
|
4145
4221
|
name?: string;
|
|
4222
|
+
capability?: string;
|
|
4146
4223
|
installed: boolean;
|
|
4147
4224
|
attributes?: {
|
|
4148
4225
|
label: string;
|
|
@@ -4225,6 +4302,10 @@ declare function computeBaseCapacityContainerT2(stats: bigint): number;
|
|
|
4225
4302
|
declare function computeBaseCapacityWarehouse(stats: bigint): number;
|
|
4226
4303
|
declare const computeEngineThrust: (vol: number) => number;
|
|
4227
4304
|
declare const computeEngineDrain: (thm: number) => number;
|
|
4305
|
+
declare const ENGINE_DRAIN_BASE = 118;
|
|
4306
|
+
declare const ENGINE_DRAIN_REF_THRUST = 775;
|
|
4307
|
+
declare const ENGINE_DRAIN_REF_THM = 500;
|
|
4308
|
+
declare const computeTravelDrain: (totalThrust: number, avgThm: number) => number;
|
|
4228
4309
|
declare const computeGeneratorCap: (com: number) => number;
|
|
4229
4310
|
declare const computeGeneratorRech: (fin: number) => number;
|
|
4230
4311
|
declare const computeGathererYield: (str: number) => number;
|
|
@@ -4238,6 +4319,8 @@ declare const computeHaulerCapacity: (fin: number) => number;
|
|
|
4238
4319
|
declare const computeHaulerEfficiency: (con: number) => number;
|
|
4239
4320
|
declare const computeHaulerDrain: (com: number) => number;
|
|
4240
4321
|
declare const computeWarpRange: (stat: number) => number;
|
|
4322
|
+
declare const computeCargoBayCapacity: (strength: number, density: number, hardness: number, cohesion: number) => number;
|
|
4323
|
+
declare const computeBatteryBankCapacity: (volatility: number, thermal: number, plasticity: number, insulation: number) => number;
|
|
4241
4324
|
declare function entityDisplayName(itemId: number): string;
|
|
4242
4325
|
declare function moduleDisplayName(itemId: number): string;
|
|
4243
4326
|
declare function formatModuleLine(slot: number, itemId: number, stats: bigint): string;
|
|
@@ -4341,6 +4424,10 @@ declare const index_computeBaseCapacityContainerT2: typeof computeBaseCapacityCo
|
|
|
4341
4424
|
declare const index_computeBaseCapacityWarehouse: typeof computeBaseCapacityWarehouse;
|
|
4342
4425
|
declare const index_computeEngineThrust: typeof computeEngineThrust;
|
|
4343
4426
|
declare const index_computeEngineDrain: typeof computeEngineDrain;
|
|
4427
|
+
declare const index_ENGINE_DRAIN_BASE: typeof ENGINE_DRAIN_BASE;
|
|
4428
|
+
declare const index_ENGINE_DRAIN_REF_THRUST: typeof ENGINE_DRAIN_REF_THRUST;
|
|
4429
|
+
declare const index_ENGINE_DRAIN_REF_THM: typeof ENGINE_DRAIN_REF_THM;
|
|
4430
|
+
declare const index_computeTravelDrain: typeof computeTravelDrain;
|
|
4344
4431
|
declare const index_computeGeneratorCap: typeof computeGeneratorCap;
|
|
4345
4432
|
declare const index_computeGeneratorRech: typeof computeGeneratorRech;
|
|
4346
4433
|
declare const index_computeGathererYield: typeof computeGathererYield;
|
|
@@ -4354,6 +4441,8 @@ declare const index_computeHaulerCapacity: typeof computeHaulerCapacity;
|
|
|
4354
4441
|
declare const index_computeHaulerEfficiency: typeof computeHaulerEfficiency;
|
|
4355
4442
|
declare const index_computeHaulerDrain: typeof computeHaulerDrain;
|
|
4356
4443
|
declare const index_computeWarpRange: typeof computeWarpRange;
|
|
4444
|
+
declare const index_computeCargoBayCapacity: typeof computeCargoBayCapacity;
|
|
4445
|
+
declare const index_computeBatteryBankCapacity: typeof computeBatteryBankCapacity;
|
|
4357
4446
|
declare const index_entityDisplayName: typeof entityDisplayName;
|
|
4358
4447
|
declare const index_moduleDisplayName: typeof moduleDisplayName;
|
|
4359
4448
|
declare const index_formatModuleLine: typeof formatModuleLine;
|
|
@@ -4403,6 +4492,10 @@ declare namespace index {
|
|
|
4403
4492
|
index_computeBaseCapacityWarehouse as computeBaseCapacityWarehouse,
|
|
4404
4493
|
index_computeEngineThrust as computeEngineThrust,
|
|
4405
4494
|
index_computeEngineDrain as computeEngineDrain,
|
|
4495
|
+
index_ENGINE_DRAIN_BASE as ENGINE_DRAIN_BASE,
|
|
4496
|
+
index_ENGINE_DRAIN_REF_THRUST as ENGINE_DRAIN_REF_THRUST,
|
|
4497
|
+
index_ENGINE_DRAIN_REF_THM as ENGINE_DRAIN_REF_THM,
|
|
4498
|
+
index_computeTravelDrain as computeTravelDrain,
|
|
4406
4499
|
index_computeGeneratorCap as computeGeneratorCap,
|
|
4407
4500
|
index_computeGeneratorRech as computeGeneratorRech,
|
|
4408
4501
|
index_computeGathererYield as computeGathererYield,
|
|
@@ -4416,6 +4509,8 @@ declare namespace index {
|
|
|
4416
4509
|
index_computeHaulerEfficiency as computeHaulerEfficiency,
|
|
4417
4510
|
index_computeHaulerDrain as computeHaulerDrain,
|
|
4418
4511
|
index_computeWarpRange as computeWarpRange,
|
|
4512
|
+
index_computeCargoBayCapacity as computeCargoBayCapacity,
|
|
4513
|
+
index_computeBatteryBankCapacity as computeBatteryBankCapacity,
|
|
4419
4514
|
index_entityDisplayName as entityDisplayName,
|
|
4420
4515
|
index_moduleDisplayName as moduleDisplayName,
|
|
4421
4516
|
index_formatModuleLine as formatModuleLine,
|
|
@@ -4554,4 +4649,4 @@ type entity_row = Types.entity_row;
|
|
|
4554
4649
|
type location_static = Types.location_static;
|
|
4555
4650
|
type location_derived = Types.location_derived;
|
|
4556
4651
|
|
|
4557
|
-
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, 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, 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, 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_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, LOCAL_HALF, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LanePlanEntry, LaneView, LoadTimeBreakdown, LoaderCapability, LoaderStats, 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, 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, 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, RawData, ReachStats, Recipe, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedCrafterLane, ResolvedEvent, ResolvedGathererLane, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedLoaderLane, ResolvedModuleSlot, ResourceCategory, 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, 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, SystemGraph, 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, WH, WOULD_OVERFILL, WOULD_STRAND, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, WrapDeposit, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, addressFromCoordinates, 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_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, 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, computeGroupPerLegReach, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, computeNftImageUrl, computePerLegReach, computeShipHullCapabilities, computeStorageCapabilities, computeWarehouseHullCapabilities, computeWarpCapabilities, computeWarpRange, coordsToLocationId, createInventoryAccessor, createProjectedEntity, createScheduleAccessor, decodeAddress, decodeAtomicAsset, decodeCraftedItemStats, decodeRegion, decodeSector, 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, encodeAddress, encodeAddressMemo, encodeGatheredCargoStats, encodeRegion, encodeSector, encodeStats, energyAtTime, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, feistel, feistelInv, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, getCapabilityAttributes, getCategoryInfo, 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, 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, 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, needsRecharge, normalizeDisplayName, parseWireEntity, partnerRegion, planParallelGather, planParallelTransfer, planRoute, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, rawScheduleEnd, readCommonBase, regionOf, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveLaneCrafter, resolveLaneGatherer, resolveLaneLoader, resolveLockedAmount, resolveStats, rollTier, rollWithinTier, rollupCrafter, rollupGatherer, rollupLoaders, rotation, schedule, sdkSystemGraph, selectGatherLane, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, validateDisplayName, validateSchedule, workerLaneKey, wormholeAt, wormholeAtRegionEndpoint, yieldThresholdAt };
|
|
4652
|
+
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, 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, 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, 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, RawData, ReachStats, Recipe, RecipeInput, RecipeSlotInput, RenderDescriptionOptions, Reservation, ReserveTier, ResolvedAttributeGroup, ResolvedCrafterLane, ResolvedEvent, ResolvedGathererLane, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedLoaderLane, ResolvedModuleSlot, ResourceCategory, 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, 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, SystemGraph, 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, WH, WOULD_OVERFILL, WOULD_STRAND, Warehouse, WarehouseEntity, WebSocketConnection, WebSocketConnectionOptions, WireCoordinates, WireEntity, WrapDeposit, YIELD_FRACTION_DEEP, YIELD_FRACTION_SHALLOW, addressFromCoordinates, 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_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, 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, feistel, feistelInv, fetchAtomicAssetsForOwner, fetchAtomicSchemas, filterByBuildMethod, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, getCapabilityAttributes, getCategoryInfo, 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, 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, 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, needsRecharge, normalizeDisplayName, parseWireEntity, partnerRegion, planParallelGather, planParallelTransfer, planRoute, projectEntity, projectEntityAt, projectRemainingAt, projectedCargoAvailableAt, rawScheduleEnd, readCommonBase, regionOf, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveLaneCrafter, resolveLaneGatherer, resolveLaneLoader, resolveLockedAmount, resolveStats, rollTier, rollWithinTier, rollupCrafter, rollupGatherer, rollupLoaders, rotation, schedule, sdkSystemGraph, selectGatherLane, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, starRating, starsForStat, statMagnitude, subtractFromStacks, task, taskCargoChanges, taskCargoEffect, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, validateDisplayName, validateSchedule, workerLaneKey, wormholeAt, wormholeAtRegionEndpoint, yieldThresholdAt };
|