@shipload/sdk 1.0.0-next.12 → 1.0.0-next.14
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 +129 -24
- package/lib/shipload.js +270 -139
- package/lib/shipload.js.map +1 -1
- package/lib/shipload.m.js +263 -137
- package/lib/shipload.m.js.map +1 -1
- package/lib/testing.d.ts +762 -0
- package/lib/testing.js +3212 -0
- package/lib/testing.js.map +1 -0
- package/lib/testing.m.js +3206 -0
- package/lib/testing.m.js.map +1 -0
- package/package.json +14 -1
- package/src/contracts/server.ts +106 -1
- package/src/data/recipes.json +4 -4
- package/src/derivation/capabilities.ts +8 -8
- package/src/format.ts +26 -4
- package/src/index-module.ts +16 -9
- package/src/nft/atomicassets.ts +108 -0
- package/src/nft/index.ts +1 -0
- package/src/resolution/display-name.ts +4 -0
package/lib/shipload.d.ts
CHANGED
|
@@ -457,6 +457,8 @@ declare namespace Types {
|
|
|
457
457
|
coords: coordinates;
|
|
458
458
|
stratum: UInt16;
|
|
459
459
|
}
|
|
460
|
+
class getentcls extends Struct {
|
|
461
|
+
}
|
|
460
462
|
class getentities extends Struct {
|
|
461
463
|
owner: Name;
|
|
462
464
|
entity_type?: Name;
|
|
@@ -472,6 +474,8 @@ declare namespace Types {
|
|
|
472
474
|
}
|
|
473
475
|
class getitemtypes extends Struct {
|
|
474
476
|
}
|
|
477
|
+
class getkindmeta extends Struct {
|
|
478
|
+
}
|
|
475
479
|
class getlocation extends Struct {
|
|
476
480
|
x: Int64;
|
|
477
481
|
y: Int64;
|
|
@@ -493,6 +497,10 @@ declare namespace Types {
|
|
|
493
497
|
class getplayer extends Struct {
|
|
494
498
|
account: Name;
|
|
495
499
|
}
|
|
500
|
+
class getprojstate extends Struct {
|
|
501
|
+
entity_id: UInt64;
|
|
502
|
+
task_count?: UInt8;
|
|
503
|
+
}
|
|
496
504
|
class getrecipe extends Struct {
|
|
497
505
|
output_item_id: UInt16;
|
|
498
506
|
}
|
|
@@ -580,6 +588,22 @@ declare namespace Types {
|
|
|
580
588
|
class join extends Struct {
|
|
581
589
|
account: Name;
|
|
582
590
|
}
|
|
591
|
+
class kind_meta_row extends Struct {
|
|
592
|
+
kind: Name;
|
|
593
|
+
classification: UInt8;
|
|
594
|
+
capability_flags: UInt8;
|
|
595
|
+
z_coord: UInt32;
|
|
596
|
+
default_label: string;
|
|
597
|
+
}
|
|
598
|
+
class template_meta_row extends Struct {
|
|
599
|
+
item_id: UInt16;
|
|
600
|
+
kind: Name;
|
|
601
|
+
display_label: string;
|
|
602
|
+
}
|
|
603
|
+
class kind_meta_result extends Struct {
|
|
604
|
+
kinds: kind_meta_row[];
|
|
605
|
+
templates: template_meta_row[];
|
|
606
|
+
}
|
|
583
607
|
class location_static extends Struct {
|
|
584
608
|
coords: coordinates;
|
|
585
609
|
type: UInt8;
|
|
@@ -617,6 +641,10 @@ declare namespace Types {
|
|
|
617
641
|
max_energy: UInt16;
|
|
618
642
|
systems: nearby_system[];
|
|
619
643
|
}
|
|
644
|
+
class nft_item_payload extends Struct {
|
|
645
|
+
item: cargo_item;
|
|
646
|
+
location?: coordinates;
|
|
647
|
+
}
|
|
620
648
|
class schema_field extends Struct {
|
|
621
649
|
name: string;
|
|
622
650
|
field_type: string;
|
|
@@ -634,6 +662,10 @@ declare namespace Types {
|
|
|
634
662
|
template_id: Int32;
|
|
635
663
|
schema_name: Name;
|
|
636
664
|
}
|
|
665
|
+
class nftimgurl extends Struct {
|
|
666
|
+
item: cargo_item;
|
|
667
|
+
location?: coordinates;
|
|
668
|
+
}
|
|
637
669
|
class nftinfo_result extends Struct {
|
|
638
670
|
schemas: nft_schema_def[];
|
|
639
671
|
templates: nft_template_def[];
|
|
@@ -660,6 +692,22 @@ declare namespace Types {
|
|
|
660
692
|
class player_row extends Struct {
|
|
661
693
|
owner: Name;
|
|
662
694
|
}
|
|
695
|
+
class projected_state extends Struct {
|
|
696
|
+
owner: Name;
|
|
697
|
+
coordinates: coordinates;
|
|
698
|
+
energy?: UInt16;
|
|
699
|
+
cargomass: UInt32;
|
|
700
|
+
cargo: cargo_view[];
|
|
701
|
+
hullmass?: UInt32;
|
|
702
|
+
engines?: movement_stats;
|
|
703
|
+
loaders?: loader_stats;
|
|
704
|
+
generator?: energy_stats;
|
|
705
|
+
capacity?: UInt32;
|
|
706
|
+
gatherer?: gatherer_stats;
|
|
707
|
+
hauler?: hauler_stats;
|
|
708
|
+
warp?: warp_stats;
|
|
709
|
+
crafter?: crafter_stats;
|
|
710
|
+
}
|
|
663
711
|
class recharge extends Struct {
|
|
664
712
|
id: UInt64;
|
|
665
713
|
}
|
|
@@ -775,6 +823,7 @@ declare namespace Types {
|
|
|
775
823
|
entity_summary_type: entity_summary;
|
|
776
824
|
game_config_type: game_config;
|
|
777
825
|
stratum_remaining_type: stratum_remaining;
|
|
826
|
+
nft_item_payload_type: nft_item_payload;
|
|
778
827
|
}
|
|
779
828
|
class undeploy extends Struct {
|
|
780
829
|
host_id: UInt64;
|
|
@@ -975,6 +1024,8 @@ declare namespace ActionParams {
|
|
|
975
1024
|
coords: Type.coordinates;
|
|
976
1025
|
stratum: UInt16Type;
|
|
977
1026
|
}
|
|
1027
|
+
interface getentcls {
|
|
1028
|
+
}
|
|
978
1029
|
interface getentities {
|
|
979
1030
|
owner: NameType;
|
|
980
1031
|
entity_type?: NameType;
|
|
@@ -990,6 +1041,8 @@ declare namespace ActionParams {
|
|
|
990
1041
|
}
|
|
991
1042
|
interface getitemtypes {
|
|
992
1043
|
}
|
|
1044
|
+
interface getkindmeta {
|
|
1045
|
+
}
|
|
993
1046
|
interface getlocation {
|
|
994
1047
|
x: Int64Type;
|
|
995
1048
|
y: Int64Type;
|
|
@@ -1011,6 +1064,10 @@ declare namespace ActionParams {
|
|
|
1011
1064
|
interface getplayer {
|
|
1012
1065
|
account: NameType;
|
|
1013
1066
|
}
|
|
1067
|
+
interface getprojstate {
|
|
1068
|
+
entity_id: UInt64Type;
|
|
1069
|
+
task_count?: UInt8Type;
|
|
1070
|
+
}
|
|
1014
1071
|
interface getrecipe {
|
|
1015
1072
|
output_item_id: UInt16Type;
|
|
1016
1073
|
}
|
|
@@ -1055,6 +1112,10 @@ declare namespace ActionParams {
|
|
|
1055
1112
|
interface join {
|
|
1056
1113
|
account: NameType;
|
|
1057
1114
|
}
|
|
1115
|
+
interface nftimgurl {
|
|
1116
|
+
item: Type.cargo_item;
|
|
1117
|
+
location?: Type.coordinates;
|
|
1118
|
+
}
|
|
1058
1119
|
interface notify {
|
|
1059
1120
|
event: Type.task_event;
|
|
1060
1121
|
}
|
|
@@ -1158,12 +1219,14 @@ interface ActionNameParams {
|
|
|
1158
1219
|
gather: ActionParams.gather;
|
|
1159
1220
|
getconfig: ActionParams.getconfig;
|
|
1160
1221
|
geteligible: ActionParams.geteligible;
|
|
1222
|
+
getentcls: ActionParams.getentcls;
|
|
1161
1223
|
getentities: ActionParams.getentities;
|
|
1162
1224
|
getentity: ActionParams.getentity;
|
|
1163
1225
|
getitemdata: ActionParams.getitemdata;
|
|
1164
1226
|
getitemids: ActionParams.getitemids;
|
|
1165
1227
|
getitems: ActionParams.getitems;
|
|
1166
1228
|
getitemtypes: ActionParams.getitemtypes;
|
|
1229
|
+
getkindmeta: ActionParams.getkindmeta;
|
|
1167
1230
|
getlocation: ActionParams.getlocation;
|
|
1168
1231
|
getlocdata: ActionParams.getlocdata;
|
|
1169
1232
|
getmodtypes: ActionParams.getmodtypes;
|
|
@@ -1171,6 +1234,7 @@ interface ActionNameParams {
|
|
|
1171
1234
|
getnearby: ActionParams.getnearby;
|
|
1172
1235
|
getnftinfo: ActionParams.getnftinfo;
|
|
1173
1236
|
getplayer: ActionParams.getplayer;
|
|
1237
|
+
getprojstate: ActionParams.getprojstate;
|
|
1174
1238
|
getrecipe: ActionParams.getrecipe;
|
|
1175
1239
|
getrecipes: ActionParams.getrecipes;
|
|
1176
1240
|
getrescats: ActionParams.getrescats;
|
|
@@ -1184,6 +1248,7 @@ interface ActionNameParams {
|
|
|
1184
1248
|
hash512: ActionParams.hash512;
|
|
1185
1249
|
initialize: ActionParams.initialize;
|
|
1186
1250
|
join: ActionParams.join;
|
|
1251
|
+
nftimgurl: ActionParams.nftimgurl;
|
|
1187
1252
|
notify: ActionParams.notify;
|
|
1188
1253
|
recharge: ActionParams.recharge;
|
|
1189
1254
|
refrshentity: ActionParams.refrshentity;
|
|
@@ -1214,12 +1279,14 @@ interface ActionReturnValues {
|
|
|
1214
1279
|
gather: Types.task_results;
|
|
1215
1280
|
getconfig: Types.game_config;
|
|
1216
1281
|
geteligible: UInt16[];
|
|
1282
|
+
getentcls: Types.enum_result;
|
|
1217
1283
|
getentities: Types.entity_info[];
|
|
1218
1284
|
getentity: Types.entity_info;
|
|
1219
1285
|
getitemdata: Types.itemdata_result;
|
|
1220
1286
|
getitemids: Types.item_ids_result;
|
|
1221
1287
|
getitems: Types.items_info;
|
|
1222
1288
|
getitemtypes: Types.enum_result;
|
|
1289
|
+
getkindmeta: Types.kind_meta_result;
|
|
1223
1290
|
getlocation: Types.location_info;
|
|
1224
1291
|
getlocdata: Types.location_derived;
|
|
1225
1292
|
getmodtypes: Types.enum_result;
|
|
@@ -1227,6 +1294,7 @@ interface ActionReturnValues {
|
|
|
1227
1294
|
getnearby: Types.nearby_info;
|
|
1228
1295
|
getnftinfo: Types.nftinfo_result;
|
|
1229
1296
|
getplayer: Types.player_info;
|
|
1297
|
+
getprojstate: Types.projected_state;
|
|
1230
1298
|
getrecipe: Types.recipes_result;
|
|
1231
1299
|
getrecipes: Types.recipes_result;
|
|
1232
1300
|
getrescats: Types.enum_result;
|
|
@@ -1238,6 +1306,7 @@ interface ActionReturnValues {
|
|
|
1238
1306
|
grouptravel: Types.task_results;
|
|
1239
1307
|
hash: Checksum256;
|
|
1240
1308
|
hash512: Checksum512;
|
|
1309
|
+
nftimgurl: string;
|
|
1241
1310
|
recharge: Types.task_results;
|
|
1242
1311
|
resolve: Types.resolve_results;
|
|
1243
1312
|
transfer: Types.task_results;
|
|
@@ -3040,6 +3109,41 @@ type RawData = Uint8Array | string | number[] | {
|
|
|
3040
3109
|
};
|
|
3041
3110
|
declare function deserializeAtomicData(data: RawData, schema: SchemaField[]): Record<string, unknown>;
|
|
3042
3111
|
|
|
3112
|
+
declare const ATOMICASSETS_ACCOUNT = "atomicassets";
|
|
3113
|
+
declare const SHIPLOAD_COLLECTION = "shipload";
|
|
3114
|
+
interface AtomicAssetRow {
|
|
3115
|
+
asset_id: string;
|
|
3116
|
+
collection_name: string;
|
|
3117
|
+
schema_name: string;
|
|
3118
|
+
template_id: number;
|
|
3119
|
+
ram_payer?: string;
|
|
3120
|
+
backed_tokens?: string[];
|
|
3121
|
+
immutable_serialized_data: string | number[];
|
|
3122
|
+
mutable_serialized_data?: string | number[];
|
|
3123
|
+
}
|
|
3124
|
+
interface AtomicSchemaRow {
|
|
3125
|
+
schema_name: string;
|
|
3126
|
+
format: SchemaField[];
|
|
3127
|
+
}
|
|
3128
|
+
interface FetchAssetsOptions {
|
|
3129
|
+
collection?: NameType;
|
|
3130
|
+
pageSize?: number;
|
|
3131
|
+
}
|
|
3132
|
+
declare function fetchAtomicAssetsForOwner(client: APIClient, owner: NameType, opts?: FetchAssetsOptions): Promise<AtomicAssetRow[]>;
|
|
3133
|
+
declare function fetchAtomicSchemas(client: APIClient, collection: NameType): Promise<AtomicSchemaRow[]>;
|
|
3134
|
+
interface DecodedAtomicAsset {
|
|
3135
|
+
asset_id: bigint;
|
|
3136
|
+
schema_name: string;
|
|
3137
|
+
template_id: number;
|
|
3138
|
+
item_id: number;
|
|
3139
|
+
quantity: number;
|
|
3140
|
+
stats: string;
|
|
3141
|
+
origin_x: bigint;
|
|
3142
|
+
origin_y: bigint;
|
|
3143
|
+
modules?: NFTModuleSlot[];
|
|
3144
|
+
}
|
|
3145
|
+
declare function decodeAtomicAsset(asset: AtomicAssetRow, schemaFormat: SchemaField[], itemId: number): DecodedAtomicAsset;
|
|
3146
|
+
|
|
3043
3147
|
type index_NFTInstalledModule = NFTInstalledModule;
|
|
3044
3148
|
type index_NFTModuleSlot = NFTModuleSlot;
|
|
3045
3149
|
type index_NFTCargoItem = NFTCargoItem;
|
|
@@ -3077,6 +3181,15 @@ declare const index_buildEntityDescription: typeof buildEntityDescription;
|
|
|
3077
3181
|
type index_SchemaField = SchemaField;
|
|
3078
3182
|
type index_RawData = RawData;
|
|
3079
3183
|
declare const index_deserializeAtomicData: typeof deserializeAtomicData;
|
|
3184
|
+
declare const index_ATOMICASSETS_ACCOUNT: typeof ATOMICASSETS_ACCOUNT;
|
|
3185
|
+
declare const index_SHIPLOAD_COLLECTION: typeof SHIPLOAD_COLLECTION;
|
|
3186
|
+
type index_AtomicAssetRow = AtomicAssetRow;
|
|
3187
|
+
type index_AtomicSchemaRow = AtomicSchemaRow;
|
|
3188
|
+
type index_FetchAssetsOptions = FetchAssetsOptions;
|
|
3189
|
+
declare const index_fetchAtomicAssetsForOwner: typeof fetchAtomicAssetsForOwner;
|
|
3190
|
+
declare const index_fetchAtomicSchemas: typeof fetchAtomicSchemas;
|
|
3191
|
+
type index_DecodedAtomicAsset = DecodedAtomicAsset;
|
|
3192
|
+
declare const index_decodeAtomicAsset: typeof decodeAtomicAsset;
|
|
3080
3193
|
declare namespace index {
|
|
3081
3194
|
export {
|
|
3082
3195
|
index_NFTInstalledModule as NFTInstalledModule,
|
|
@@ -3116,11 +3229,25 @@ declare namespace index {
|
|
|
3116
3229
|
index_SchemaField as SchemaField,
|
|
3117
3230
|
index_RawData as RawData,
|
|
3118
3231
|
index_deserializeAtomicData as deserializeAtomicData,
|
|
3232
|
+
index_ATOMICASSETS_ACCOUNT as ATOMICASSETS_ACCOUNT,
|
|
3233
|
+
index_SHIPLOAD_COLLECTION as SHIPLOAD_COLLECTION,
|
|
3234
|
+
index_AtomicAssetRow as AtomicAssetRow,
|
|
3235
|
+
index_AtomicSchemaRow as AtomicSchemaRow,
|
|
3236
|
+
index_FetchAssetsOptions as FetchAssetsOptions,
|
|
3237
|
+
index_fetchAtomicAssetsForOwner as fetchAtomicAssetsForOwner,
|
|
3238
|
+
index_fetchAtomicSchemas as fetchAtomicSchemas,
|
|
3239
|
+
index_DecodedAtomicAsset as DecodedAtomicAsset,
|
|
3240
|
+
index_decodeAtomicAsset as decodeAtomicAsset,
|
|
3119
3241
|
};
|
|
3120
3242
|
}
|
|
3121
3243
|
|
|
3122
3244
|
declare function formatMass(kg: number): string;
|
|
3123
3245
|
declare function formatMassDelta(kg: number): string;
|
|
3246
|
+
declare function formatLocation(loc: {
|
|
3247
|
+
x: number;
|
|
3248
|
+
y: number;
|
|
3249
|
+
}): string;
|
|
3250
|
+
declare function formatMassScaled(kg: number): string;
|
|
3124
3251
|
|
|
3125
3252
|
interface DisplayNameInput {
|
|
3126
3253
|
itemType: 'resource' | 'component' | 'module' | 'entity' | string;
|
|
@@ -3129,6 +3256,7 @@ interface DisplayNameInput {
|
|
|
3129
3256
|
name: string;
|
|
3130
3257
|
}
|
|
3131
3258
|
declare function displayName(resolved: DisplayNameInput): string;
|
|
3259
|
+
declare function displayNameWithTier(resolved: DisplayNameInput): string;
|
|
3132
3260
|
interface DescribeOptions {
|
|
3133
3261
|
translate?: (key: string) => string;
|
|
3134
3262
|
formatNumber?: (n: number) => string;
|
|
@@ -3185,29 +3313,6 @@ declare function parseWireEntity(raw: WireEntity): Types.entity_info;
|
|
|
3185
3313
|
declare function setSubscriptionsDebug(on: boolean): void;
|
|
3186
3314
|
declare function isSubscriptionsDebugEnabled(): boolean;
|
|
3187
3315
|
|
|
3188
|
-
interface ContractProjectedState {
|
|
3189
|
-
owner: {
|
|
3190
|
-
toString(): string;
|
|
3191
|
-
};
|
|
3192
|
-
coordinates: Types.coordinates;
|
|
3193
|
-
energy?: UInt16;
|
|
3194
|
-
cargomass: UInt32;
|
|
3195
|
-
cargo: Types.cargo_view[];
|
|
3196
|
-
hullmass?: UInt32;
|
|
3197
|
-
capacity?: UInt32;
|
|
3198
|
-
engines?: Types.movement_stats;
|
|
3199
|
-
loaders?: Types.loader_stats;
|
|
3200
|
-
generator?: Types.energy_stats;
|
|
3201
|
-
hauler?: Types.hauler_stats;
|
|
3202
|
-
}
|
|
3203
|
-
interface ProjectionComparisonOptions {
|
|
3204
|
-
step?: number;
|
|
3205
|
-
}
|
|
3206
|
-
declare function assertProjectionEquals(contract: ContractProjectedState, sdk: ProjectedEntity, options?: ProjectionComparisonOptions): void;
|
|
3207
|
-
|
|
3208
|
-
declare const CATALOG_FILES_REL: readonly ["items.json", "recipes.json", "entities.json", "kind-registry.json", "item-ids.ts"];
|
|
3209
|
-
declare function computeCatalogHash(filePaths: ReadonlyArray<string>): string;
|
|
3210
|
-
|
|
3211
3316
|
type Ship = Entity$1;
|
|
3212
3317
|
type Warehouse = Entity$1;
|
|
3213
3318
|
type Container = Entity$1;
|
|
@@ -3225,4 +3330,4 @@ type gatherer_stats = Types.gatherer_stats;
|
|
|
3225
3330
|
type location_static = Types.location_static;
|
|
3226
3331
|
type location_derived = Types.location_derived;
|
|
3227
3332
|
|
|
3228
|
-
export { AckMessage, ActionsManager, AnyEntity, 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, CATALOG_FILES_REL, CATEGORY_LABELS, COMMIT_ALREADY_SET, COMMIT_CANNOT_MATCH, COMMIT_NOT_SET, COMPANY_NOT_FOUND, 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, ContractProjectedState, 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, 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, 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_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, ProjectionComparisonOptions, 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, RawData, Recipe, RecipeInput, RecipeInputCategory, RecipeInputItemId, RecipeSlotInput, RenderDescriptionOptions, ReserveTier, ResolvedAttributeGroup, ResolvedItem, ResolvedItemStat, ResolvedItemType, ResolvedModuleSlot, ResourceCategory, ResourceStats, 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_ADJECTIVES, 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, assertProjectionEquals, 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, computeCatalogHash, 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, 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, findItemByCategoryAndTier, findNearbyPlanets, flightSpeedFactor, formatMass, formatMassDelta, 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 };
|
|
3333
|
+
export { 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, 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_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, 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_ADJECTIVES, 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, displayNameWithTier, 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 };
|