@shipload/sdk 1.0.0-next.13 → 1.0.0-next.15

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 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;
@@ -1443,7 +1512,9 @@ interface Distance {
1443
1512
  type ItemType = 'resource' | 'component' | 'module' | 'entity';
1444
1513
  type ResourceCategory = 'ore' | 'crystal' | 'gas' | 'regolith' | 'biomass';
1445
1514
  type ModuleType = 'any' | 'engine' | 'generator' | 'gatherer' | 'loader' | 'warp' | 'crafter' | 'launcher' | 'storage' | 'hauler';
1446
- declare const TIER_ADJECTIVES: Record<number, string>;
1515
+ declare const RESOURCE_TIER_ADJECTIVES: Record<number, string>;
1516
+ declare const COMPONENT_TIER_PREFIXES: Record<number, string>;
1517
+ declare const MODULE_TIER_PREFIXES: Record<number, string>;
1447
1518
  declare const CATEGORY_LABELS: Record<ResourceCategory, string>;
1448
1519
  interface Item {
1449
1520
  id: number;
@@ -1592,6 +1663,7 @@ interface TemplateMeta {
1592
1663
  kind: Name;
1593
1664
  displayLabel: string;
1594
1665
  }
1666
+ declare const ALL_ENTITY_TYPES: readonly EntityTypeName[];
1595
1667
  declare function getKindMeta(kind: NameType | EntityTypeName): KindMeta | undefined;
1596
1668
  declare function getTemplateMeta(itemId: number): TemplateMeta | undefined;
1597
1669
  declare function getPackedEntityType(itemId: number): Name | null;
@@ -3040,6 +3112,41 @@ type RawData = Uint8Array | string | number[] | {
3040
3112
  };
3041
3113
  declare function deserializeAtomicData(data: RawData, schema: SchemaField[]): Record<string, unknown>;
3042
3114
 
3115
+ declare const ATOMICASSETS_ACCOUNT = "atomicassets";
3116
+ declare const SHIPLOAD_COLLECTION = "shipload";
3117
+ interface AtomicAssetRow {
3118
+ asset_id: string;
3119
+ collection_name: string;
3120
+ schema_name: string;
3121
+ template_id: number;
3122
+ ram_payer?: string;
3123
+ backed_tokens?: string[];
3124
+ immutable_serialized_data: string | number[];
3125
+ mutable_serialized_data?: string | number[];
3126
+ }
3127
+ interface AtomicSchemaRow {
3128
+ schema_name: string;
3129
+ format: SchemaField[];
3130
+ }
3131
+ interface FetchAssetsOptions {
3132
+ collection?: NameType;
3133
+ pageSize?: number;
3134
+ }
3135
+ declare function fetchAtomicAssetsForOwner(client: APIClient, owner: NameType, opts?: FetchAssetsOptions): Promise<AtomicAssetRow[]>;
3136
+ declare function fetchAtomicSchemas(client: APIClient, collection: NameType): Promise<AtomicSchemaRow[]>;
3137
+ interface DecodedAtomicAsset {
3138
+ asset_id: bigint;
3139
+ schema_name: string;
3140
+ template_id: number;
3141
+ item_id: number;
3142
+ quantity: number;
3143
+ stats: string;
3144
+ origin_x: bigint;
3145
+ origin_y: bigint;
3146
+ modules?: NFTModuleSlot[];
3147
+ }
3148
+ declare function decodeAtomicAsset(asset: AtomicAssetRow, schemaFormat: SchemaField[], itemId: number): DecodedAtomicAsset;
3149
+
3043
3150
  type index_NFTInstalledModule = NFTInstalledModule;
3044
3151
  type index_NFTModuleSlot = NFTModuleSlot;
3045
3152
  type index_NFTCargoItem = NFTCargoItem;
@@ -3077,6 +3184,15 @@ declare const index_buildEntityDescription: typeof buildEntityDescription;
3077
3184
  type index_SchemaField = SchemaField;
3078
3185
  type index_RawData = RawData;
3079
3186
  declare const index_deserializeAtomicData: typeof deserializeAtomicData;
3187
+ declare const index_ATOMICASSETS_ACCOUNT: typeof ATOMICASSETS_ACCOUNT;
3188
+ declare const index_SHIPLOAD_COLLECTION: typeof SHIPLOAD_COLLECTION;
3189
+ type index_AtomicAssetRow = AtomicAssetRow;
3190
+ type index_AtomicSchemaRow = AtomicSchemaRow;
3191
+ type index_FetchAssetsOptions = FetchAssetsOptions;
3192
+ declare const index_fetchAtomicAssetsForOwner: typeof fetchAtomicAssetsForOwner;
3193
+ declare const index_fetchAtomicSchemas: typeof fetchAtomicSchemas;
3194
+ type index_DecodedAtomicAsset = DecodedAtomicAsset;
3195
+ declare const index_decodeAtomicAsset: typeof decodeAtomicAsset;
3080
3196
  declare namespace index {
3081
3197
  export {
3082
3198
  index_NFTInstalledModule as NFTInstalledModule,
@@ -3116,19 +3232,37 @@ declare namespace index {
3116
3232
  index_SchemaField as SchemaField,
3117
3233
  index_RawData as RawData,
3118
3234
  index_deserializeAtomicData as deserializeAtomicData,
3235
+ index_ATOMICASSETS_ACCOUNT as ATOMICASSETS_ACCOUNT,
3236
+ index_SHIPLOAD_COLLECTION as SHIPLOAD_COLLECTION,
3237
+ index_AtomicAssetRow as AtomicAssetRow,
3238
+ index_AtomicSchemaRow as AtomicSchemaRow,
3239
+ index_FetchAssetsOptions as FetchAssetsOptions,
3240
+ index_fetchAtomicAssetsForOwner as fetchAtomicAssetsForOwner,
3241
+ index_fetchAtomicSchemas as fetchAtomicSchemas,
3242
+ index_DecodedAtomicAsset as DecodedAtomicAsset,
3243
+ index_decodeAtomicAsset as decodeAtomicAsset,
3119
3244
  };
3120
3245
  }
3121
3246
 
3122
3247
  declare function formatMass(kg: number): string;
3123
3248
  declare function formatMassDelta(kg: number): string;
3249
+ declare function formatLocation(loc: {
3250
+ x: number;
3251
+ y: number;
3252
+ }): string;
3253
+ declare function formatMassScaled(kg: number): string;
3124
3254
 
3125
- interface DisplayNameInput {
3126
- itemType: 'resource' | 'component' | 'module' | 'entity' | string;
3255
+ interface DisplayNameInputCommon {
3127
3256
  tier: number;
3128
3257
  category?: ResourceCategory;
3129
3258
  name: string;
3130
3259
  }
3131
- declare function displayName(resolved: DisplayNameInput): string;
3260
+ type DisplayNameInput = (DisplayNameInputCommon & {
3261
+ itemType: 'resource' | 'component' | 'module' | 'entity' | string;
3262
+ }) | (DisplayNameInputCommon & {
3263
+ type: string;
3264
+ });
3265
+ declare function displayName(item: DisplayNameInput): string;
3132
3266
  interface DescribeOptions {
3133
3267
  translate?: (key: string) => string;
3134
3268
  formatNumber?: (n: number) => string;
@@ -3202,4 +3336,4 @@ type gatherer_stats = Types.gatherer_stats;
3202
3336
  type location_static = Types.location_static;
3203
3337
  type location_derived = Types.location_derived;
3204
3338
 
3205
- 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, 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, 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, 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, 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, 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 };
3339
+ 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 };