@shipload/sdk 1.0.0-next.16 → 1.0.0-next.18

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 (41) hide show
  1. package/lib/shipload.d.ts +111 -26
  2. package/lib/shipload.js +3443 -2896
  3. package/lib/shipload.js.map +1 -1
  4. package/lib/shipload.m.js +3416 -2884
  5. package/lib/shipload.m.js.map +1 -1
  6. package/lib/testing.d.ts +3 -2
  7. package/lib/testing.js +65 -50
  8. package/lib/testing.js.map +1 -1
  9. package/lib/testing.m.js +66 -51
  10. package/lib/testing.m.js.map +1 -1
  11. package/package.json +1 -1
  12. package/src/capabilities/gathering.ts +17 -7
  13. package/src/capabilities/modules.ts +6 -0
  14. package/src/contracts/server.ts +7 -4
  15. package/src/data/capabilities.ts +6 -1
  16. package/src/data/capability-formulas.ts +7 -1
  17. package/src/data/colors.ts +12 -12
  18. package/src/data/item-ids.ts +13 -12
  19. package/src/data/items.json +30 -23
  20. package/src/data/metadata.ts +36 -23
  21. package/src/data/recipes.json +111 -46
  22. package/src/derivation/capabilities.ts +18 -7
  23. package/src/derivation/capability-mappings.ts +2 -0
  24. package/src/derivation/index.ts +7 -2
  25. package/src/derivation/reserve-regen.ts +34 -0
  26. package/src/derivation/resources.ts +9 -1
  27. package/src/derivation/stratum.ts +15 -19
  28. package/src/derivation/tiers.ts +28 -7
  29. package/src/index-module.ts +25 -3
  30. package/src/managers/actions.ts +104 -12
  31. package/src/managers/context.ts +9 -0
  32. package/src/managers/index.ts +2 -0
  33. package/src/managers/nft.ts +28 -0
  34. package/src/nft/atomicassets.ts +124 -1
  35. package/src/nft/buildImmutableData.ts +316 -0
  36. package/src/nft/description.ts +1 -3
  37. package/src/nft/index.ts +1 -0
  38. package/src/resolution/describe-module.ts +3 -4
  39. package/src/resolution/resolve-item.ts +0 -1
  40. package/src/shipload.ts +5 -0
  41. package/src/types.ts +1 -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, UInt64, Checksum256, UInt32, TimePointSec, Checksum256Type, UInt32Type, NameType, UInt64Type, Action, UInt16, UInt8, Int64, TimePoint, Bytes, Int32, UInt16Type, UInt8Type, Int64Type, TimePointType, Int32Type, Checksum512, APIClient } from '@wharfkit/antelope';
2
+ import { Blob, ABI, Struct, Name, UInt64, Checksum256, UInt32, TimePointSec, Checksum256Type, UInt32Type, NameType, UInt64Type, Action, UInt16, UInt8, Int64, TimePoint, BlockTimestamp, Bytes, Int32, UInt16Type, UInt8Type, Int64Type, TimePointType, Int32Type, Checksum512, 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';
@@ -329,7 +329,6 @@ declare namespace Types {
329
329
  yield: UInt16;
330
330
  drain: UInt16;
331
331
  depth: UInt16;
332
- speed: UInt16;
333
332
  }
334
333
  class hauler_stats extends Struct {
335
334
  capacity: UInt8;
@@ -554,6 +553,7 @@ declare namespace Types {
554
553
  coord_id: UInt64;
555
554
  stratum: UInt16;
556
555
  remaining: UInt32;
556
+ last_block: BlockTimestamp;
557
557
  }
558
558
  class importreserve extends Struct {
559
559
  epoch_scope: UInt32;
@@ -804,6 +804,7 @@ declare namespace Types {
804
804
  class stratum_remaining extends Struct {
805
805
  stratum: UInt16;
806
806
  remaining: UInt32;
807
+ last_block: BlockTimestamp;
807
808
  }
808
809
  class task_results extends Struct {
809
810
  entities: entity_task_info[];
@@ -969,7 +970,6 @@ declare namespace ActionParams {
969
970
  yield: UInt16Type;
970
971
  drain: UInt16Type;
971
972
  depth: UInt16Type;
972
- speed: UInt16Type;
973
973
  }
974
974
  interface warp_stats {
975
975
  range: UInt32Type;
@@ -1006,6 +1006,7 @@ declare namespace ActionParams {
1006
1006
  coord_id: UInt64Type;
1007
1007
  stratum: UInt16Type;
1008
1008
  remaining: UInt32Type;
1009
+ last_block: BlockTimestamp;
1009
1010
  }
1010
1011
  interface state_row {
1011
1012
  enabled: boolean;
@@ -1610,7 +1611,7 @@ interface Distance {
1610
1611
  }
1611
1612
  type ItemType = 'resource' | 'component' | 'module' | 'entity';
1612
1613
  type ResourceCategory = 'ore' | 'crystal' | 'gas' | 'regolith' | 'biomass';
1613
- type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler';
1614
+ type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler' | 'battery';
1614
1615
  declare const RESOURCE_TIER_ADJECTIVES: Record<number, string>;
1615
1616
  declare const COMPONENT_TIER_PREFIXES: Record<number, string>;
1616
1617
  declare const MODULE_TIER_PREFIXES: Record<number, string>;
@@ -1679,16 +1680,16 @@ declare const ITEM_BIOMASS_T7 = 507;
1679
1680
  declare const ITEM_BIOMASS_T8 = 508;
1680
1681
  declare const ITEM_BIOMASS_T9 = 509;
1681
1682
  declare const ITEM_BIOMASS_T10 = 510;
1682
- declare const ITEM_HULL_PLATES = 10001;
1683
- declare const ITEM_CARGO_LINING = 10002;
1684
- declare const ITEM_THRUSTER_CORE = 10003;
1685
- declare const ITEM_POWER_CELL = 10004;
1686
- declare const ITEM_MATTER_CONDUIT = 10005;
1687
- declare const ITEM_SURVEY_PROBE = 10006;
1688
- declare const ITEM_CARGO_ARM = 10007;
1689
- declare const ITEM_TOOL_BIT = 10008;
1690
- declare const ITEM_REACTION_CHAMBER = 10009;
1691
- declare const ITEM_FOCUSING_ARRAY = 10010;
1683
+ declare const ITEM_PLATE = 10001;
1684
+ declare const ITEM_FRAME = 10002;
1685
+ declare const ITEM_PLASMA_CELL = 10003;
1686
+ declare const ITEM_RESONATOR = 10004;
1687
+ declare const ITEM_BEAM = 10005;
1688
+ declare const ITEM_SENSOR = 10006;
1689
+ declare const ITEM_POLYMER = 10007;
1690
+ declare const ITEM_CERAMIC = 10008;
1691
+ declare const ITEM_REACTOR = 10009;
1692
+ declare const ITEM_EMITTER = 10010;
1692
1693
  declare const ITEM_ENGINE_T1 = 10100;
1693
1694
  declare const ITEM_GENERATOR_T1 = 10101;
1694
1695
  declare const ITEM_GATHERER_T1 = 10102;
@@ -1697,13 +1698,14 @@ declare const ITEM_CRAFTER_T1 = 10104;
1697
1698
  declare const ITEM_STORAGE_T1 = 10105;
1698
1699
  declare const ITEM_HAULER_T1 = 10106;
1699
1700
  declare const ITEM_WARP_T1 = 10107;
1701
+ declare const ITEM_BATTERY_T1 = 10108;
1700
1702
  declare const ITEM_CONTAINER_T1_PACKED = 10200;
1701
1703
  declare const ITEM_SHIP_T1_PACKED = 10201;
1702
1704
  declare const ITEM_WAREHOUSE_T1_PACKED = 10202;
1703
1705
  declare const ITEM_EXTRACTOR_T1_PACKED = 10203;
1704
1706
  declare const ITEM_FACTORY_T1_PACKED = 10204;
1705
- declare const ITEM_HULL_PLATES_T2 = 20001;
1706
- declare const ITEM_CARGO_LINING_T2 = 20002;
1707
+ declare const ITEM_PLATE_T2 = 20001;
1708
+ declare const ITEM_FRAME_T2 = 20002;
1707
1709
  declare const ITEM_CONTAINER_T2_PACKED = 20200;
1708
1710
 
1709
1711
  interface RecipeInputItemId {
@@ -2206,6 +2208,9 @@ declare const DEPTH_THRESHOLD_T4 = 12000;
2206
2208
  declare const DEPTH_THRESHOLD_T5 = 22000;
2207
2209
  declare const LOCATION_MIN_DEPTH = 500;
2208
2210
  declare const LOCATION_MAX_DEPTH = 65535;
2211
+ declare const YIELD_FRACTION_SHALLOW = 0.0025;
2212
+ declare const YIELD_FRACTION_DEEP = 0.0005;
2213
+ declare function yieldThresholdAt(stratum: number): number;
2209
2214
  declare const PLANET_SUBTYPE_GAS_GIANT = 0;
2210
2215
  declare const PLANET_SUBTYPE_ROCKY = 1;
2211
2216
  declare const PLANET_SUBTYPE_TERRESTRIAL = 2;
@@ -2231,7 +2236,15 @@ interface TierRange {
2231
2236
  declare const RESERVE_TIERS: Record<ReserveTier, TierRange>;
2232
2237
  declare const TIER_ROLL_MAX = 65536;
2233
2238
  declare function rollTier(tierRoll: number, stratum: number): ReserveTier;
2234
- declare function rollWithinTier(withinRoll: number, range: TierRange): number;
2239
+ declare function rollWithinTier(withinRoll: number, range: TierRange, resourceUnitMass: number): number;
2240
+ declare function tierOfReserve(reserve: number, itemId: number): ReserveTier | null;
2241
+
2242
+ interface EffectiveReserveInput {
2243
+ remaining: UInt32 | number;
2244
+ max_reserve: UInt32 | number;
2245
+ last_block: BlockTimestamp;
2246
+ }
2247
+ declare function getEffectiveReserve(row: EffectiveReserveInput, now: BlockTimestamp, epochSeconds: number): number;
2235
2248
 
2236
2249
  interface StatDefinition {
2237
2250
  key: string;
@@ -2349,15 +2362,25 @@ declare class ActionsManager extends BaseManager {
2349
2362
  deploy(entityId: UInt64Type, ref: ActionParams.Type.cargo_ref): Action;
2350
2363
  addmodule(entityId: UInt64Type, moduleIndex: number, moduleRef: ActionParams.Type.cargo_ref, targetRef?: ActionParams.Type.cargo_ref | null): Action;
2351
2364
  rmmodule(entityId: UInt64Type, moduleIndex: number, targetRef?: ActionParams.Type.cargo_ref | null): Action;
2352
- wrap(owner: NameType, entityId: UInt64Type, nexusId: UInt64Type, cargoId: UInt64Type, quantity: UInt64Type): Action;
2365
+ private buildPairedMintAction;
2366
+ wrap(owner: NameType, entityId: UInt64Type, nexusId: UInt64Type, cargoId: UInt64Type, quantity: UInt64Type): Promise<Action[]>;
2353
2367
  undeploy(hostId: UInt64Type, targetId: UInt64Type): Action;
2354
- wrapEntity(entityId: UInt64Type, nexusId: UInt64Type): Action;
2368
+ wrapEntity(owner: NameType, entityId: UInt64Type, nexusId: UInt64Type): Promise<Action[]>;
2355
2369
  deploynft(owner: NameType, assetId: UInt64Type, targetNexusId: UInt64Type): Action;
2356
2370
  unwrapnft(owner: NameType, assetId: UInt64Type, hostId: UInt64Type): Action;
2357
2371
  demolish(entityId: UInt64Type): Action;
2358
2372
  joinGame(account: NameType, companyName: string): Action[];
2359
2373
  }
2360
2374
 
2375
+ interface NftConfigForItem {
2376
+ templateId: number;
2377
+ schemaName: string;
2378
+ }
2379
+ declare class NftManager extends BaseManager {
2380
+ private cache;
2381
+ getNftConfigForItem(itemId: UInt64Type): Promise<NftConfigForItem | undefined>;
2382
+ }
2383
+
2361
2384
  type EntityInfo = Types.entity_info;
2362
2385
  interface BoundingBox {
2363
2386
  min_x: number;
@@ -2532,6 +2555,7 @@ declare class GameContext {
2532
2555
  private _locations?;
2533
2556
  private _epochs?;
2534
2557
  private _actions?;
2558
+ private _nft?;
2535
2559
  private _subscriptions?;
2536
2560
  private _subscriptionsUrl?;
2537
2561
  private _gameCache?;
@@ -2542,6 +2566,7 @@ declare class GameContext {
2542
2566
  get locations(): LocationsManager;
2543
2567
  get epochs(): EpochsManager;
2544
2568
  get actions(): ActionsManager;
2569
+ get nft(): NftManager;
2545
2570
  setSubscriptionsUrl(url: string): void;
2546
2571
  get subscriptions(): SubscriptionsManager;
2547
2572
  getGame(reload?: boolean): Promise<Types$1.game_row>;
@@ -2590,6 +2615,7 @@ declare class Shipload {
2590
2615
  get locations(): LocationsManager;
2591
2616
  get epochs(): EpochsManager;
2592
2617
  get actions(): ActionsManager;
2618
+ get nft(): NftManager;
2593
2619
  get subscriptions(): SubscriptionsManager;
2594
2620
  getGame(reload?: boolean): Promise<Types$1.game_row>;
2595
2621
  getState(reload?: boolean): Promise<GameState>;
@@ -2888,6 +2914,11 @@ declare function needsRecharge(entity: MovementCapability & EnergyCapability): b
2888
2914
  declare function calcLoadDuration(entity: LoaderCapability, cargoMass: UInt64): UInt32;
2889
2915
 
2890
2916
  declare function calc_gather_duration(gatherer: Types.gatherer_stats, itemMass: number, quantity: number, stratum: number, richness: number): UInt32;
2917
+ declare function calc_gather_rate(gatherer: Types.gatherer_stats, itemMass: number, stratum: number, richness: number): {
2918
+ unitsPerSec: number;
2919
+ unitsPerMin: number;
2920
+ secPerUnit: number;
2921
+ };
2891
2922
  declare function calc_gather_energy(gatherer: Types.gatherer_stats, duration: number): UInt16;
2892
2923
 
2893
2924
  interface CrafterCapability {
@@ -2907,6 +2938,7 @@ declare const MODULE_CRAFTER = 6;
2907
2938
  declare const MODULE_LAUNCHER = 7;
2908
2939
  declare const MODULE_STORAGE = 8;
2909
2940
  declare const MODULE_HAULER = 9;
2941
+ declare const MODULE_BATTERY = 10;
2910
2942
  interface PackedModule {
2911
2943
  itemId: number;
2912
2944
  stats: bigint;
@@ -2982,7 +3014,7 @@ interface SlotConsumer {
2982
3014
  capability: string;
2983
3015
  attribute: string;
2984
3016
  }
2985
- type SlotConsumerKind = 'engine' | 'generator' | 'gatherer' | 'loader' | 'crafter' | 'storage' | 'hauler' | 'warp' | 'ship-t1' | 'container-t1' | 'warehouse-t1' | 'extractor-t1' | 'container-t2';
3017
+ type SlotConsumerKind = 'engine' | 'generator' | 'gatherer' | 'loader' | 'crafter' | 'storage' | 'hauler' | 'warp' | 'battery' | 'ship-t1' | 'container-t1' | 'warehouse-t1' | 'extractor-t1' | 'container-t2';
2986
3018
  declare const SLOT_FORMULAS: Record<SlotConsumerKind, Record<number, SlotConsumer>>;
2987
3019
 
2988
3020
  declare function deriveStatMappings(): StatMapping[];
@@ -3013,7 +3045,6 @@ declare function computeGathererCapabilities(stats: Record<string, number>, tier
3013
3045
  yield: number;
3014
3046
  drain: number;
3015
3047
  depth: number;
3016
- speed: number;
3017
3048
  };
3018
3049
  declare function computeLoaderCapabilities(stats: Record<string, number>): {
3019
3050
  mass: number;
@@ -3056,7 +3087,6 @@ interface ComputedCapabilities {
3056
3087
  yield: number;
3057
3088
  drain: number;
3058
3089
  depth: number;
3059
- speed: number;
3060
3090
  };
3061
3091
  loaders?: {
3062
3092
  mass: number;
@@ -3190,7 +3220,6 @@ declare const computeGeneratorRech: (fin: number) => number;
3190
3220
  declare const computeGathererYield: (str: number) => number;
3191
3221
  declare const computeGathererDrain: (con: number) => number;
3192
3222
  declare const computeGathererDepth: (tol: number, tier: number) => number;
3193
- declare const computeGathererSpeed: (ref: number) => number;
3194
3223
  declare const computeLoaderMass: (ins: number) => number;
3195
3224
  declare const computeLoaderThrust: (pla: number) => number;
3196
3225
  declare const computeCrafterSpeed: (rea: number) => number;
@@ -3213,8 +3242,42 @@ type RawData = Uint8Array | string | number[] | {
3213
3242
  };
3214
3243
  declare function deserializeAtomicData(data: RawData, schema: SchemaField[]): Record<string, unknown>;
3215
3244
 
3245
+ type AtomicAttributeType = 'string' | 'uint8' | 'uint16' | 'uint32' | 'uint64' | 'int32' | 'image' | 'ipfs' | 'UINT16_VEC' | 'UINT64_VEC';
3246
+ interface ImmutableEntry {
3247
+ first: string;
3248
+ second: [AtomicAttributeType, unknown];
3249
+ }
3250
+ interface ImmutableModuleSlot {
3251
+ type?: number | string | bigint;
3252
+ installed?: {
3253
+ item_id: number | string | bigint;
3254
+ stats: number | string | bigint;
3255
+ };
3256
+ }
3257
+ declare function moduleSlotsForImmutable(modules: Types.module_entry[]): ImmutableModuleSlot[];
3258
+ declare function computeNftImageUrl(item: {
3259
+ item_id: number;
3260
+ stats: bigint;
3261
+ modules: ImmutableModuleSlot[];
3262
+ quantity: number;
3263
+ }, originX: number, originY: number): string;
3264
+ declare function buildResourceImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
3265
+ declare function buildComponentImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
3266
+ declare function buildModuleImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
3267
+ declare function buildEntityImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number, modules: ImmutableModuleSlot[]): ImmutableEntry[];
3268
+ declare function buildImmutableData(itemId: number, quantity: number, stats: bigint, originX: number, originY: number, modules?: ImmutableModuleSlot[]): ImmutableEntry[];
3269
+
3216
3270
  declare const ATOMICASSETS_ACCOUNT = "atomicassets";
3217
3271
  declare const SHIPLOAD_COLLECTION = "shipload";
3272
+ interface MintAssetParams {
3273
+ authorizedMinter: NameType;
3274
+ collectionName: NameType;
3275
+ schemaName: NameType;
3276
+ templateId: number;
3277
+ newAssetOwner: NameType;
3278
+ immutableData: ImmutableEntry[];
3279
+ }
3280
+ declare function buildMintAssetAction(params: MintAssetParams): Action;
3218
3281
  interface AtomicAssetRow {
3219
3282
  asset_id: string;
3220
3283
  collection_name: string;
@@ -3269,7 +3332,6 @@ declare const index_computeGeneratorRech: typeof computeGeneratorRech;
3269
3332
  declare const index_computeGathererYield: typeof computeGathererYield;
3270
3333
  declare const index_computeGathererDrain: typeof computeGathererDrain;
3271
3334
  declare const index_computeGathererDepth: typeof computeGathererDepth;
3272
- declare const index_computeGathererSpeed: typeof computeGathererSpeed;
3273
3335
  declare const index_computeLoaderMass: typeof computeLoaderMass;
3274
3336
  declare const index_computeLoaderThrust: typeof computeLoaderThrust;
3275
3337
  declare const index_computeCrafterSpeed: typeof computeCrafterSpeed;
@@ -3287,6 +3349,8 @@ type index_RawData = RawData;
3287
3349
  declare const index_deserializeAtomicData: typeof deserializeAtomicData;
3288
3350
  declare const index_ATOMICASSETS_ACCOUNT: typeof ATOMICASSETS_ACCOUNT;
3289
3351
  declare const index_SHIPLOAD_COLLECTION: typeof SHIPLOAD_COLLECTION;
3352
+ type index_MintAssetParams = MintAssetParams;
3353
+ declare const index_buildMintAssetAction: typeof buildMintAssetAction;
3290
3354
  type index_AtomicAssetRow = AtomicAssetRow;
3291
3355
  type index_AtomicSchemaRow = AtomicSchemaRow;
3292
3356
  type index_FetchAssetsOptions = FetchAssetsOptions;
@@ -3294,6 +3358,16 @@ declare const index_fetchAtomicAssetsForOwner: typeof fetchAtomicAssetsForOwner;
3294
3358
  declare const index_fetchAtomicSchemas: typeof fetchAtomicSchemas;
3295
3359
  type index_DecodedAtomicAsset = DecodedAtomicAsset;
3296
3360
  declare const index_decodeAtomicAsset: typeof decodeAtomicAsset;
3361
+ type index_AtomicAttributeType = AtomicAttributeType;
3362
+ type index_ImmutableEntry = ImmutableEntry;
3363
+ type index_ImmutableModuleSlot = ImmutableModuleSlot;
3364
+ declare const index_moduleSlotsForImmutable: typeof moduleSlotsForImmutable;
3365
+ declare const index_computeNftImageUrl: typeof computeNftImageUrl;
3366
+ declare const index_buildResourceImmutable: typeof buildResourceImmutable;
3367
+ declare const index_buildComponentImmutable: typeof buildComponentImmutable;
3368
+ declare const index_buildModuleImmutable: typeof buildModuleImmutable;
3369
+ declare const index_buildEntityImmutable: typeof buildEntityImmutable;
3370
+ declare const index_buildImmutableData: typeof buildImmutableData;
3297
3371
  declare namespace index {
3298
3372
  export {
3299
3373
  index_NFTInstalledModule as NFTInstalledModule,
@@ -3317,7 +3391,6 @@ declare namespace index {
3317
3391
  index_computeGathererYield as computeGathererYield,
3318
3392
  index_computeGathererDrain as computeGathererDrain,
3319
3393
  index_computeGathererDepth as computeGathererDepth,
3320
- index_computeGathererSpeed as computeGathererSpeed,
3321
3394
  index_computeLoaderMass as computeLoaderMass,
3322
3395
  index_computeLoaderThrust as computeLoaderThrust,
3323
3396
  index_computeCrafterSpeed as computeCrafterSpeed,
@@ -3335,6 +3408,8 @@ declare namespace index {
3335
3408
  index_deserializeAtomicData as deserializeAtomicData,
3336
3409
  index_ATOMICASSETS_ACCOUNT as ATOMICASSETS_ACCOUNT,
3337
3410
  index_SHIPLOAD_COLLECTION as SHIPLOAD_COLLECTION,
3411
+ index_MintAssetParams as MintAssetParams,
3412
+ index_buildMintAssetAction as buildMintAssetAction,
3338
3413
  index_AtomicAssetRow as AtomicAssetRow,
3339
3414
  index_AtomicSchemaRow as AtomicSchemaRow,
3340
3415
  index_FetchAssetsOptions as FetchAssetsOptions,
@@ -3342,6 +3417,16 @@ declare namespace index {
3342
3417
  index_fetchAtomicSchemas as fetchAtomicSchemas,
3343
3418
  index_DecodedAtomicAsset as DecodedAtomicAsset,
3344
3419
  index_decodeAtomicAsset as decodeAtomicAsset,
3420
+ index_AtomicAttributeType as AtomicAttributeType,
3421
+ index_ImmutableEntry as ImmutableEntry,
3422
+ index_ImmutableModuleSlot as ImmutableModuleSlot,
3423
+ index_moduleSlotsForImmutable as moduleSlotsForImmutable,
3424
+ index_computeNftImageUrl as computeNftImageUrl,
3425
+ index_buildResourceImmutable as buildResourceImmutable,
3426
+ index_buildComponentImmutable as buildComponentImmutable,
3427
+ index_buildModuleImmutable as buildModuleImmutable,
3428
+ index_buildEntityImmutable as buildEntityImmutable,
3429
+ index_buildImmutableData as buildImmutableData,
3345
3430
  };
3346
3431
  }
3347
3432
 
@@ -3437,4 +3522,4 @@ type gatherer_stats = Types.gatherer_stats;
3437
3522
  type location_static = Types.location_static;
3438
3523
  type location_derived = Types.location_derived;
3439
3524
 
3440
- export { ALL_ENTITY_TYPES, ATOMICASSETS_ACCOUNT, AckMessage, ActionsManager, AnyEntity, AtomicAssetRow, AtomicSchemaRow, BASE_ORBITAL_MASS, BLEND_INPUTS_MUST_MATCH, BLEND_REQUIRES_MULTIPLE, BLEND_STAT_LESS_NOT_SUPPORTED, BoundingBox, BoundsDeltaMessage, BoundsSubscriptionHandle, 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, CategoryIconShape, CategoryInfo, CategoryStacks, ClientMessage, ComputedCapabilities, ConnectionState, 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, 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, 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, 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_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_CARGO_ARM, ITEM_CARGO_LINING, ITEM_CARGO_LINING_T2, 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_FOCUSING_ARRAY, 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_HULL_PLATES, ITEM_HULL_PLATES_T2, ITEM_LOADER_T1, ITEM_MATTER_CONDUIT, 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_POWER_CELL, ITEM_REACTION_CHAMBER, 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_SHIP_T1_PACKED, ITEM_STORAGE_T1, ITEM_SURVEY_PROBE, ITEM_THRUSTER_CORE, ITEM_TOOL_BIT, ITEM_TYPE_COMPONENT, ITEM_TYPE_ENTITY, ITEM_TYPE_MODULE, ITEM_TYPE_RESOURCE, ITEM_WAREHOUSE_T1_PACKED, ITEM_WARP_T1, InstalledModule, InventoryAccessor, Item, ItemType, KindMeta, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LoadTimeBreakdown, LoaderCapability, Location, LocationStratum, LocationType, LocationsManager, MAX_ORBITAL_ALTITUDE, MIN_ORBITAL_ALTITUDE, MIN_TRANSFER_DISTANCE, MODULE_ANY, 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, ModuleDescription, ModuleEntry, ModuleType, MovementCapability, index as NFT, NFTCargoItem, NFTCommonBase, NFTInstalledModule, NFTModuleSlot, NO_SCHEDULE, NamedStats, Nexus, 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, ProjectableSnapshot, 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, RecipeInputCategory, RecipeInputItemId, RecipeSlotInput, RenderDescriptionOptions, ReserveTier, ResolvedAttributeGroup, 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, STARTER_ALREADY_CLAIMED, ScheduleAccessor, ScheduleCapability, ScheduleData, Scheduleable, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, 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, availableCapacity$1 as availableCapacity, availableCapacityFromMass, blendCargoStacks, blendComponentStacks, blendCrossGroup, blendStacks, buildEntityDescription, calcCargoItemMass, calcCargoMass, calcEnergyUsage, calcLoadDuration, calcStacksMass, calc_acceleration, calc_craft_duration, calc_craft_energy, calc_energyusage, calc_flighttime, calc_gather_duration, calc_gather_energy, 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, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryIconShapes, categoryIcons, categoryLabel, categoryLabelFromIndex, componentIcon, computeBaseCapacity, computeBaseCapacityShip, computeBaseCapacityWarehouse, computeBaseHullmass, computeComponentStats, computeContainerCapabilities, computeContainerT2Capabilities, computeCraftedOutputStats, computeCrafterCapabilities, computeCrafterDrain, computeCrafterSpeed, computeEngineCapabilities, computeEngineDrain, computeEngineThrust, computeEntityCapabilities, computeEntityStats, computeGathererCapabilities, computeGathererDepth, computeGathererDrain, computeGathererSpeed, computeGathererYield, computeGeneratorCap, computeGeneratorCapabilities, computeGeneratorRech, computeHaulPenalty, computeHaulerCapabilities, computeHaulerCapacity, computeHaulerDrain$1 as computeHaulerDrain, computeHaulerEfficiency, computeInputMass, computeLoaderCapabilities, computeLoaderMass, computeLoaderThrust, 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, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, fetchAtomicAssetsForOwner, fetchAtomicSchemas, findItemByCategoryAndTier, findNearbyPlanets, flightSpeedFactor, formatLocation, formatMass, formatMassDelta, formatMassScaled, formatModuleLine, formatTier, gathererDepthForTier, gatherer_stats, getCapabilityAttributes, getCategoryInfo, getComponents, getCurrentEpoch, getDepthThreshold, getDestinationLocation, 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, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lerp, loader_stats, location_derived, location_static, makeEntity, mapEntity, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, needsRecharge, parseWireEntity, projectEntity, projectEntityAt, projectFromCurrentState, projectFromCurrentStateAt, readCommonBase, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveStats, rollTier, rollWithinTier, rotation, schedule, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, task, taskCargoChanges, tierAdjective, tierColors, toLocation, typeLabel, validateSchedule };
3525
+ 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, 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, CategoryIconShape, CategoryInfo, CategoryStacks, ClientMessage, ComputedCapabilities, ConnectionState, 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, 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, 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_EMITTER, 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_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, InstalledModule, InventoryAccessor, Item, ItemType, KindMeta, LOCATION_MAX_DEPTH, LOCATION_MIN_DEPTH, LoadTimeBreakdown, LoaderCapability, Location, LocationStratum, LocationType, LocationsManager, MAX_ORBITAL_ALTITUDE, MIN_ORBITAL_ALTITUDE, MIN_TRANSFER_DISTANCE, 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, 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, ProjectableSnapshot, 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, RecipeInputCategory, RecipeInputItemId, RecipeSlotInput, RenderDescriptionOptions, ReserveTier, ResolvedAttributeGroup, 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, STARTER_ALREADY_CLAIMED, ScheduleAccessor, ScheduleCapability, ScheduleData, Scheduleable, SchemaField, server as ServerContract, ServerMessage, Types as ServerTypes, Ship, ShipEntity, ShipLike, Shipload, SlotConsumer, SlotConsumerKind, SnapshotMessage, 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, availableCapacity$1 as availableCapacity, availableCapacityFromMass, blendCargoStacks, blendComponentStacks, blendCrossGroup, blendStacks, buildComponentImmutable, buildEntityDescription, buildEntityImmutable, buildImmutableData, buildMintAssetAction, buildModuleImmutable, buildResourceImmutable, calcCargoItemMass, calcCargoMass, calcEnergyUsage, calcLoadDuration, 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, capabilityAttributes, capabilityNames, capsHasCrafter, capsHasGatherer, capsHasHauler, capsHasLoaders, capsHasMass, capsHasMovement, capsHasStorage, cargoItem, cargoItemToStack, cargoRef, cargoUtils, cargo_item, categoryColors, categoryFromIndex, categoryIconShapes, categoryIcons, 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, energyPercent, energy_stats, entityDisplayName, entity_row, estimateDealTravelTime, estimateTravelTime, fetchAtomicAssetsForOwner, fetchAtomicSchemas, findItemByCategoryAndTier, 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, isContainer, isCraftedItem, isExtractor, isFactory, isFull$1 as isFull, isFullFromMass, isGatherableLocation, isInvertedAttribute, isLocationBuildable, isModuleItem, isNexus, isRelatedItem, isShip, isSubscriptionsDebugEnabled, isWarehouse, itemAbbreviations, itemCategory, itemIds, itemOffset, itemTier, itemTypeCode, kindCan, lerp, loader_stats, location_derived, location_static, makeEntity, mapEntity, maxTravelDistance, mergeStacks, moduleAccepts, moduleDisplayName, moduleIcon, moduleSlotTypeToCode, movement_stats, needsRecharge, parseWireEntity, projectEntity, projectEntityAt, projectFromCurrentState, projectFromCurrentStateAt, readCommonBase, removeFromStacks, renderDescription, resolveItem, resolveItemCategory, resolveStats, rollTier, rollWithinTier, rotation, schedule, setSubscriptionsDebug, stackKey, stackToCargoItem, stacksEqual, task, taskCargoChanges, tierAdjective, tierColors, tierOfReserve, toLocation, typeLabel, validateSchedule, yieldThresholdAt };