@shipload/sdk 1.0.0-next.16 → 1.0.0-next.17
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 +95 -24
- package/lib/shipload.js +3277 -2803
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +3255 -2791
- package/lib/shipload.m.js.map +1 -1
- package/lib/testing.d.ts +0 -1
- package/lib/testing.js +35 -26
- package/lib/testing.js.map +1 -1
- package/lib/testing.m.js +35 -26
- package/lib/testing.m.js.map +1 -1
- package/package.json +1 -1
- package/src/capabilities/gathering.ts +15 -6
- package/src/capabilities/modules.ts +6 -0
- package/src/contracts/server.ts +0 -3
- package/src/data/capabilities.ts +6 -1
- package/src/data/capability-formulas.ts +7 -1
- package/src/data/colors.ts +12 -12
- package/src/data/item-ids.ts +13 -12
- package/src/data/items.json +7 -0
- package/src/data/metadata.ts +36 -23
- package/src/data/recipes.json +49 -0
- package/src/derivation/capabilities.ts +18 -7
- package/src/derivation/capability-mappings.ts +2 -0
- package/src/derivation/stratum.ts +5 -9
- package/src/index-module.ts +18 -2
- package/src/managers/actions.ts +104 -12
- package/src/managers/context.ts +9 -0
- package/src/managers/index.ts +2 -0
- package/src/managers/nft.ts +28 -0
- package/src/nft/atomicassets.ts +124 -1
- package/src/nft/buildImmutableData.ts +316 -0
- package/src/nft/description.ts +1 -3
- package/src/nft/index.ts +1 -0
- package/src/resolution/describe-module.ts +3 -4
- package/src/resolution/resolve-item.ts +0 -1
- package/src/shipload.ts +5 -0
- package/src/types.ts +1 -0
package/lib/shipload.d.ts
CHANGED
|
@@ -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;
|
|
@@ -969,7 +968,6 @@ declare namespace ActionParams {
|
|
|
969
968
|
yield: UInt16Type;
|
|
970
969
|
drain: UInt16Type;
|
|
971
970
|
depth: UInt16Type;
|
|
972
|
-
speed: UInt16Type;
|
|
973
971
|
}
|
|
974
972
|
interface warp_stats {
|
|
975
973
|
range: UInt32Type;
|
|
@@ -1610,7 +1608,7 @@ interface Distance {
|
|
|
1610
1608
|
}
|
|
1611
1609
|
type ItemType = 'resource' | 'component' | 'module' | 'entity';
|
|
1612
1610
|
type ResourceCategory = 'ore' | 'crystal' | 'gas' | 'regolith' | 'biomass';
|
|
1613
|
-
type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler';
|
|
1611
|
+
type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler' | 'battery';
|
|
1614
1612
|
declare const RESOURCE_TIER_ADJECTIVES: Record<number, string>;
|
|
1615
1613
|
declare const COMPONENT_TIER_PREFIXES: Record<number, string>;
|
|
1616
1614
|
declare const MODULE_TIER_PREFIXES: Record<number, string>;
|
|
@@ -1679,16 +1677,16 @@ declare const ITEM_BIOMASS_T7 = 507;
|
|
|
1679
1677
|
declare const ITEM_BIOMASS_T8 = 508;
|
|
1680
1678
|
declare const ITEM_BIOMASS_T9 = 509;
|
|
1681
1679
|
declare const ITEM_BIOMASS_T10 = 510;
|
|
1682
|
-
declare const
|
|
1683
|
-
declare const
|
|
1684
|
-
declare const
|
|
1685
|
-
declare const
|
|
1686
|
-
declare const
|
|
1687
|
-
declare const
|
|
1688
|
-
declare const
|
|
1689
|
-
declare const
|
|
1690
|
-
declare const
|
|
1691
|
-
declare const
|
|
1680
|
+
declare const ITEM_PLATE = 10001;
|
|
1681
|
+
declare const ITEM_FRAME = 10002;
|
|
1682
|
+
declare const ITEM_PLASMA_CELL = 10003;
|
|
1683
|
+
declare const ITEM_RESONATOR = 10004;
|
|
1684
|
+
declare const ITEM_BEAM = 10005;
|
|
1685
|
+
declare const ITEM_SENSOR = 10006;
|
|
1686
|
+
declare const ITEM_POLYMER = 10007;
|
|
1687
|
+
declare const ITEM_CERAMIC = 10008;
|
|
1688
|
+
declare const ITEM_REACTOR = 10009;
|
|
1689
|
+
declare const ITEM_EMITTER = 10010;
|
|
1692
1690
|
declare const ITEM_ENGINE_T1 = 10100;
|
|
1693
1691
|
declare const ITEM_GENERATOR_T1 = 10101;
|
|
1694
1692
|
declare const ITEM_GATHERER_T1 = 10102;
|
|
@@ -1697,13 +1695,14 @@ declare const ITEM_CRAFTER_T1 = 10104;
|
|
|
1697
1695
|
declare const ITEM_STORAGE_T1 = 10105;
|
|
1698
1696
|
declare const ITEM_HAULER_T1 = 10106;
|
|
1699
1697
|
declare const ITEM_WARP_T1 = 10107;
|
|
1698
|
+
declare const ITEM_BATTERY_T1 = 10108;
|
|
1700
1699
|
declare const ITEM_CONTAINER_T1_PACKED = 10200;
|
|
1701
1700
|
declare const ITEM_SHIP_T1_PACKED = 10201;
|
|
1702
1701
|
declare const ITEM_WAREHOUSE_T1_PACKED = 10202;
|
|
1703
1702
|
declare const ITEM_EXTRACTOR_T1_PACKED = 10203;
|
|
1704
1703
|
declare const ITEM_FACTORY_T1_PACKED = 10204;
|
|
1705
|
-
declare const
|
|
1706
|
-
declare const
|
|
1704
|
+
declare const ITEM_PLATE_T2 = 20001;
|
|
1705
|
+
declare const ITEM_FRAME_T2 = 20002;
|
|
1707
1706
|
declare const ITEM_CONTAINER_T2_PACKED = 20200;
|
|
1708
1707
|
|
|
1709
1708
|
interface RecipeInputItemId {
|
|
@@ -2349,15 +2348,25 @@ declare class ActionsManager extends BaseManager {
|
|
|
2349
2348
|
deploy(entityId: UInt64Type, ref: ActionParams.Type.cargo_ref): Action;
|
|
2350
2349
|
addmodule(entityId: UInt64Type, moduleIndex: number, moduleRef: ActionParams.Type.cargo_ref, targetRef?: ActionParams.Type.cargo_ref | null): Action;
|
|
2351
2350
|
rmmodule(entityId: UInt64Type, moduleIndex: number, targetRef?: ActionParams.Type.cargo_ref | null): Action;
|
|
2352
|
-
|
|
2351
|
+
private buildPairedMintAction;
|
|
2352
|
+
wrap(owner: NameType, entityId: UInt64Type, nexusId: UInt64Type, cargoId: UInt64Type, quantity: UInt64Type): Promise<Action[]>;
|
|
2353
2353
|
undeploy(hostId: UInt64Type, targetId: UInt64Type): Action;
|
|
2354
|
-
wrapEntity(entityId: UInt64Type, nexusId: UInt64Type): Action
|
|
2354
|
+
wrapEntity(owner: NameType, entityId: UInt64Type, nexusId: UInt64Type): Promise<Action[]>;
|
|
2355
2355
|
deploynft(owner: NameType, assetId: UInt64Type, targetNexusId: UInt64Type): Action;
|
|
2356
2356
|
unwrapnft(owner: NameType, assetId: UInt64Type, hostId: UInt64Type): Action;
|
|
2357
2357
|
demolish(entityId: UInt64Type): Action;
|
|
2358
2358
|
joinGame(account: NameType, companyName: string): Action[];
|
|
2359
2359
|
}
|
|
2360
2360
|
|
|
2361
|
+
interface NftConfigForItem {
|
|
2362
|
+
templateId: number;
|
|
2363
|
+
schemaName: string;
|
|
2364
|
+
}
|
|
2365
|
+
declare class NftManager extends BaseManager {
|
|
2366
|
+
private cache;
|
|
2367
|
+
getNftConfigForItem(itemId: UInt64Type): Promise<NftConfigForItem | undefined>;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2361
2370
|
type EntityInfo = Types.entity_info;
|
|
2362
2371
|
interface BoundingBox {
|
|
2363
2372
|
min_x: number;
|
|
@@ -2532,6 +2541,7 @@ declare class GameContext {
|
|
|
2532
2541
|
private _locations?;
|
|
2533
2542
|
private _epochs?;
|
|
2534
2543
|
private _actions?;
|
|
2544
|
+
private _nft?;
|
|
2535
2545
|
private _subscriptions?;
|
|
2536
2546
|
private _subscriptionsUrl?;
|
|
2537
2547
|
private _gameCache?;
|
|
@@ -2542,6 +2552,7 @@ declare class GameContext {
|
|
|
2542
2552
|
get locations(): LocationsManager;
|
|
2543
2553
|
get epochs(): EpochsManager;
|
|
2544
2554
|
get actions(): ActionsManager;
|
|
2555
|
+
get nft(): NftManager;
|
|
2545
2556
|
setSubscriptionsUrl(url: string): void;
|
|
2546
2557
|
get subscriptions(): SubscriptionsManager;
|
|
2547
2558
|
getGame(reload?: boolean): Promise<Types$1.game_row>;
|
|
@@ -2590,6 +2601,7 @@ declare class Shipload {
|
|
|
2590
2601
|
get locations(): LocationsManager;
|
|
2591
2602
|
get epochs(): EpochsManager;
|
|
2592
2603
|
get actions(): ActionsManager;
|
|
2604
|
+
get nft(): NftManager;
|
|
2593
2605
|
get subscriptions(): SubscriptionsManager;
|
|
2594
2606
|
getGame(reload?: boolean): Promise<Types$1.game_row>;
|
|
2595
2607
|
getState(reload?: boolean): Promise<GameState>;
|
|
@@ -2888,6 +2900,11 @@ declare function needsRecharge(entity: MovementCapability & EnergyCapability): b
|
|
|
2888
2900
|
declare function calcLoadDuration(entity: LoaderCapability, cargoMass: UInt64): UInt32;
|
|
2889
2901
|
|
|
2890
2902
|
declare function calc_gather_duration(gatherer: Types.gatherer_stats, itemMass: number, quantity: number, stratum: number, richness: number): UInt32;
|
|
2903
|
+
declare function calc_gather_rate(gatherer: Types.gatherer_stats, itemMass: number, stratum: number, richness: number): {
|
|
2904
|
+
unitsPerSec: number;
|
|
2905
|
+
unitsPerMin: number;
|
|
2906
|
+
secPerUnit: number;
|
|
2907
|
+
};
|
|
2891
2908
|
declare function calc_gather_energy(gatherer: Types.gatherer_stats, duration: number): UInt16;
|
|
2892
2909
|
|
|
2893
2910
|
interface CrafterCapability {
|
|
@@ -2907,6 +2924,7 @@ declare const MODULE_CRAFTER = 6;
|
|
|
2907
2924
|
declare const MODULE_LAUNCHER = 7;
|
|
2908
2925
|
declare const MODULE_STORAGE = 8;
|
|
2909
2926
|
declare const MODULE_HAULER = 9;
|
|
2927
|
+
declare const MODULE_BATTERY = 10;
|
|
2910
2928
|
interface PackedModule {
|
|
2911
2929
|
itemId: number;
|
|
2912
2930
|
stats: bigint;
|
|
@@ -2982,7 +3000,7 @@ interface SlotConsumer {
|
|
|
2982
3000
|
capability: string;
|
|
2983
3001
|
attribute: string;
|
|
2984
3002
|
}
|
|
2985
|
-
type SlotConsumerKind = 'engine' | 'generator' | 'gatherer' | 'loader' | 'crafter' | 'storage' | 'hauler' | 'warp' | 'ship-t1' | 'container-t1' | 'warehouse-t1' | 'extractor-t1' | 'container-t2';
|
|
3003
|
+
type SlotConsumerKind = 'engine' | 'generator' | 'gatherer' | 'loader' | 'crafter' | 'storage' | 'hauler' | 'warp' | 'battery' | 'ship-t1' | 'container-t1' | 'warehouse-t1' | 'extractor-t1' | 'container-t2';
|
|
2986
3004
|
declare const SLOT_FORMULAS: Record<SlotConsumerKind, Record<number, SlotConsumer>>;
|
|
2987
3005
|
|
|
2988
3006
|
declare function deriveStatMappings(): StatMapping[];
|
|
@@ -3013,7 +3031,6 @@ declare function computeGathererCapabilities(stats: Record<string, number>, tier
|
|
|
3013
3031
|
yield: number;
|
|
3014
3032
|
drain: number;
|
|
3015
3033
|
depth: number;
|
|
3016
|
-
speed: number;
|
|
3017
3034
|
};
|
|
3018
3035
|
declare function computeLoaderCapabilities(stats: Record<string, number>): {
|
|
3019
3036
|
mass: number;
|
|
@@ -3056,7 +3073,6 @@ interface ComputedCapabilities {
|
|
|
3056
3073
|
yield: number;
|
|
3057
3074
|
drain: number;
|
|
3058
3075
|
depth: number;
|
|
3059
|
-
speed: number;
|
|
3060
3076
|
};
|
|
3061
3077
|
loaders?: {
|
|
3062
3078
|
mass: number;
|
|
@@ -3190,7 +3206,6 @@ declare const computeGeneratorRech: (fin: number) => number;
|
|
|
3190
3206
|
declare const computeGathererYield: (str: number) => number;
|
|
3191
3207
|
declare const computeGathererDrain: (con: number) => number;
|
|
3192
3208
|
declare const computeGathererDepth: (tol: number, tier: number) => number;
|
|
3193
|
-
declare const computeGathererSpeed: (ref: number) => number;
|
|
3194
3209
|
declare const computeLoaderMass: (ins: number) => number;
|
|
3195
3210
|
declare const computeLoaderThrust: (pla: number) => number;
|
|
3196
3211
|
declare const computeCrafterSpeed: (rea: number) => number;
|
|
@@ -3213,8 +3228,42 @@ type RawData = Uint8Array | string | number[] | {
|
|
|
3213
3228
|
};
|
|
3214
3229
|
declare function deserializeAtomicData(data: RawData, schema: SchemaField[]): Record<string, unknown>;
|
|
3215
3230
|
|
|
3231
|
+
type AtomicAttributeType = 'string' | 'uint8' | 'uint16' | 'uint32' | 'uint64' | 'int32' | 'image' | 'ipfs' | 'UINT16_VEC' | 'UINT64_VEC';
|
|
3232
|
+
interface ImmutableEntry {
|
|
3233
|
+
first: string;
|
|
3234
|
+
second: [AtomicAttributeType, unknown];
|
|
3235
|
+
}
|
|
3236
|
+
interface ImmutableModuleSlot {
|
|
3237
|
+
type?: number | string | bigint;
|
|
3238
|
+
installed?: {
|
|
3239
|
+
item_id: number | string | bigint;
|
|
3240
|
+
stats: number | string | bigint;
|
|
3241
|
+
};
|
|
3242
|
+
}
|
|
3243
|
+
declare function moduleSlotsForImmutable(modules: Types.module_entry[]): ImmutableModuleSlot[];
|
|
3244
|
+
declare function computeNftImageUrl(item: {
|
|
3245
|
+
item_id: number;
|
|
3246
|
+
stats: bigint;
|
|
3247
|
+
modules: ImmutableModuleSlot[];
|
|
3248
|
+
quantity: number;
|
|
3249
|
+
}, originX: number, originY: number): string;
|
|
3250
|
+
declare function buildResourceImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
|
|
3251
|
+
declare function buildComponentImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
|
|
3252
|
+
declare function buildModuleImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number): ImmutableEntry[];
|
|
3253
|
+
declare function buildEntityImmutable(itemId: number, quantity: number, stats: bigint, originX: number, originY: number, modules: ImmutableModuleSlot[]): ImmutableEntry[];
|
|
3254
|
+
declare function buildImmutableData(itemId: number, quantity: number, stats: bigint, originX: number, originY: number, modules?: ImmutableModuleSlot[]): ImmutableEntry[];
|
|
3255
|
+
|
|
3216
3256
|
declare const ATOMICASSETS_ACCOUNT = "atomicassets";
|
|
3217
3257
|
declare const SHIPLOAD_COLLECTION = "shipload";
|
|
3258
|
+
interface MintAssetParams {
|
|
3259
|
+
authorizedMinter: NameType;
|
|
3260
|
+
collectionName: NameType;
|
|
3261
|
+
schemaName: NameType;
|
|
3262
|
+
templateId: number;
|
|
3263
|
+
newAssetOwner: NameType;
|
|
3264
|
+
immutableData: ImmutableEntry[];
|
|
3265
|
+
}
|
|
3266
|
+
declare function buildMintAssetAction(params: MintAssetParams): Action;
|
|
3218
3267
|
interface AtomicAssetRow {
|
|
3219
3268
|
asset_id: string;
|
|
3220
3269
|
collection_name: string;
|
|
@@ -3269,7 +3318,6 @@ declare const index_computeGeneratorRech: typeof computeGeneratorRech;
|
|
|
3269
3318
|
declare const index_computeGathererYield: typeof computeGathererYield;
|
|
3270
3319
|
declare const index_computeGathererDrain: typeof computeGathererDrain;
|
|
3271
3320
|
declare const index_computeGathererDepth: typeof computeGathererDepth;
|
|
3272
|
-
declare const index_computeGathererSpeed: typeof computeGathererSpeed;
|
|
3273
3321
|
declare const index_computeLoaderMass: typeof computeLoaderMass;
|
|
3274
3322
|
declare const index_computeLoaderThrust: typeof computeLoaderThrust;
|
|
3275
3323
|
declare const index_computeCrafterSpeed: typeof computeCrafterSpeed;
|
|
@@ -3287,6 +3335,8 @@ type index_RawData = RawData;
|
|
|
3287
3335
|
declare const index_deserializeAtomicData: typeof deserializeAtomicData;
|
|
3288
3336
|
declare const index_ATOMICASSETS_ACCOUNT: typeof ATOMICASSETS_ACCOUNT;
|
|
3289
3337
|
declare const index_SHIPLOAD_COLLECTION: typeof SHIPLOAD_COLLECTION;
|
|
3338
|
+
type index_MintAssetParams = MintAssetParams;
|
|
3339
|
+
declare const index_buildMintAssetAction: typeof buildMintAssetAction;
|
|
3290
3340
|
type index_AtomicAssetRow = AtomicAssetRow;
|
|
3291
3341
|
type index_AtomicSchemaRow = AtomicSchemaRow;
|
|
3292
3342
|
type index_FetchAssetsOptions = FetchAssetsOptions;
|
|
@@ -3294,6 +3344,16 @@ declare const index_fetchAtomicAssetsForOwner: typeof fetchAtomicAssetsForOwner;
|
|
|
3294
3344
|
declare const index_fetchAtomicSchemas: typeof fetchAtomicSchemas;
|
|
3295
3345
|
type index_DecodedAtomicAsset = DecodedAtomicAsset;
|
|
3296
3346
|
declare const index_decodeAtomicAsset: typeof decodeAtomicAsset;
|
|
3347
|
+
type index_AtomicAttributeType = AtomicAttributeType;
|
|
3348
|
+
type index_ImmutableEntry = ImmutableEntry;
|
|
3349
|
+
type index_ImmutableModuleSlot = ImmutableModuleSlot;
|
|
3350
|
+
declare const index_moduleSlotsForImmutable: typeof moduleSlotsForImmutable;
|
|
3351
|
+
declare const index_computeNftImageUrl: typeof computeNftImageUrl;
|
|
3352
|
+
declare const index_buildResourceImmutable: typeof buildResourceImmutable;
|
|
3353
|
+
declare const index_buildComponentImmutable: typeof buildComponentImmutable;
|
|
3354
|
+
declare const index_buildModuleImmutable: typeof buildModuleImmutable;
|
|
3355
|
+
declare const index_buildEntityImmutable: typeof buildEntityImmutable;
|
|
3356
|
+
declare const index_buildImmutableData: typeof buildImmutableData;
|
|
3297
3357
|
declare namespace index {
|
|
3298
3358
|
export {
|
|
3299
3359
|
index_NFTInstalledModule as NFTInstalledModule,
|
|
@@ -3317,7 +3377,6 @@ declare namespace index {
|
|
|
3317
3377
|
index_computeGathererYield as computeGathererYield,
|
|
3318
3378
|
index_computeGathererDrain as computeGathererDrain,
|
|
3319
3379
|
index_computeGathererDepth as computeGathererDepth,
|
|
3320
|
-
index_computeGathererSpeed as computeGathererSpeed,
|
|
3321
3380
|
index_computeLoaderMass as computeLoaderMass,
|
|
3322
3381
|
index_computeLoaderThrust as computeLoaderThrust,
|
|
3323
3382
|
index_computeCrafterSpeed as computeCrafterSpeed,
|
|
@@ -3335,6 +3394,8 @@ declare namespace index {
|
|
|
3335
3394
|
index_deserializeAtomicData as deserializeAtomicData,
|
|
3336
3395
|
index_ATOMICASSETS_ACCOUNT as ATOMICASSETS_ACCOUNT,
|
|
3337
3396
|
index_SHIPLOAD_COLLECTION as SHIPLOAD_COLLECTION,
|
|
3397
|
+
index_MintAssetParams as MintAssetParams,
|
|
3398
|
+
index_buildMintAssetAction as buildMintAssetAction,
|
|
3338
3399
|
index_AtomicAssetRow as AtomicAssetRow,
|
|
3339
3400
|
index_AtomicSchemaRow as AtomicSchemaRow,
|
|
3340
3401
|
index_FetchAssetsOptions as FetchAssetsOptions,
|
|
@@ -3342,6 +3403,16 @@ declare namespace index {
|
|
|
3342
3403
|
index_fetchAtomicSchemas as fetchAtomicSchemas,
|
|
3343
3404
|
index_DecodedAtomicAsset as DecodedAtomicAsset,
|
|
3344
3405
|
index_decodeAtomicAsset as decodeAtomicAsset,
|
|
3406
|
+
index_AtomicAttributeType as AtomicAttributeType,
|
|
3407
|
+
index_ImmutableEntry as ImmutableEntry,
|
|
3408
|
+
index_ImmutableModuleSlot as ImmutableModuleSlot,
|
|
3409
|
+
index_moduleSlotsForImmutable as moduleSlotsForImmutable,
|
|
3410
|
+
index_computeNftImageUrl as computeNftImageUrl,
|
|
3411
|
+
index_buildResourceImmutable as buildResourceImmutable,
|
|
3412
|
+
index_buildComponentImmutable as buildComponentImmutable,
|
|
3413
|
+
index_buildModuleImmutable as buildModuleImmutable,
|
|
3414
|
+
index_buildEntityImmutable as buildEntityImmutable,
|
|
3415
|
+
index_buildImmutableData as buildImmutableData,
|
|
3345
3416
|
};
|
|
3346
3417
|
}
|
|
3347
3418
|
|
|
@@ -3437,4 +3508,4 @@ type gatherer_stats = Types.gatherer_stats;
|
|
|
3437
3508
|
type location_static = Types.location_static;
|
|
3438
3509
|
type location_derived = Types.location_derived;
|
|
3439
3510
|
|
|
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 };
|
|
3511
|
+
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, 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, 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, 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 };
|