typed-factorio 3.12.0 → 3.13.0

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.
@@ -12,21 +12,21 @@ import type { VersionString } from "factorio:common"
12
12
  declare module "factorio:runtime" {
13
13
  /**
14
14
  * `math.huge` represents the maximum possible tick.
15
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapTick.html Online documentation}
16
16
  */
17
17
  export type MapTick = uint64
18
18
  /**
19
19
  * The percentual increase of the attribute. A value of `0.6` means a 60% increase.
20
20
  *
21
21
  * Quality values are divided by 10 internally, allowing for one more decimal of precision.
22
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModuleEffectValue.html Online documentation}
23
23
  */
24
24
  export type ModuleEffectValue = float
25
25
  /**
26
26
  * @example
27
27
  * -- These are the effects of the vanilla Speed Module 3
28
28
  * {speed = 0.5, consumption = 0.7, quality = -0.25}
29
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModuleEffects.html Online documentation}
30
30
  */
31
31
  export interface ModuleEffects {
32
32
  readonly consumption?: ModuleEffectValue
@@ -50,7 +50,7 @@ declare module "factorio:runtime" {
50
50
  * - `"<="`: "lesser than or equal to"
51
51
  * - `"≠"`: "not equal to"
52
52
  * - `"!="`: "not equal to"
53
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ComparatorString.html Online documentation}
54
54
  */
55
55
  export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
56
56
  export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
@@ -81,8 +81,8 @@ declare module "factorio:runtime" {
81
81
  *
82
82
  * The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
83
83
  *
84
- * {@link https://lua-api.factorio.com/2.0.31/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpritePath.html Online documentation}
84
+ * {@link https://lua-api.factorio.com/2.0.32/concepts/SpritePath.html > The supported types are:}
85
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpritePath.html Online documentation}
86
86
  */
87
87
  export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
88
88
  /**
@@ -93,14 +93,14 @@ declare module "factorio:runtime" {
93
93
  * - {@link FluidID}: Used with fluid production statistics.
94
94
  * - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
95
95
  * - {@link EntityID}: Used with pollution statistics.
96
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FlowStatisticsID.html Online documentation}
97
97
  */
98
98
  export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
99
99
  /**
100
100
  * @example
101
101
  * -- Most common collision mask of buildings:
102
102
  * collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
103
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CollisionMask.html Online documentation}
104
104
  */
105
105
  export interface CollisionMask {
106
106
  /**
@@ -228,7 +228,7 @@ declare module "factorio:runtime" {
228
228
  * - `"check-box"`
229
229
  * - `"switch"`
230
230
  * - `"label"`
231
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SimulationWidgetType.html Online documentation}
232
232
  */
233
233
  export type SimulationWidgetType =
234
234
  | "signal-id"
@@ -350,7 +350,7 @@ declare module "factorio:runtime" {
350
350
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
351
351
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
352
352
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
353
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainPathRequestType.html Online documentation}
353
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainPathRequestType.html Online documentation}
354
354
  */
355
355
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
356
356
  /**
@@ -359,7 +359,7 @@ declare module "factorio:runtime" {
359
359
  * - {@link RailEndGoal}
360
360
  * - {@link LuaRailEnd}
361
361
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
362
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainPathFinderGoal.html Online documentation}
362
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainPathFinderGoal.html Online documentation}
363
363
  */
364
364
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
365
365
  export interface TrainStopGoal {
@@ -464,7 +464,7 @@ declare module "factorio:runtime" {
464
464
  }
465
465
  /**
466
466
  * A single pipe connection for a given fluidbox.
467
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PipeConnection.html Online documentation}
467
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PipeConnection.html Online documentation}
468
468
  */
469
469
  export interface PipeConnection {
470
470
  readonly flow_direction: "input" | "output" | "input-output"
@@ -527,7 +527,7 @@ declare module "factorio:runtime" {
527
527
  * - {@link LuaEntityDiedEventFilter}
528
528
  * - {@link LuaPreRobotMinedEntityEventFilter}
529
529
  * @see EventFilterWrite
530
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventFilter.html Online documentation}
530
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventFilter.html Online documentation}
531
531
  */
532
532
  export type EventFilter =
533
533
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -557,7 +557,7 @@ declare module "factorio:runtime" {
557
557
  | LuaPreRobotMinedEntityEventFilter[]
558
558
  /**
559
559
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
560
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventFilter.html Online documentation}
560
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventFilter.html Online documentation}
561
561
  */
562
562
  export type EventFilterWrite =
563
563
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -607,7 +607,7 @@ declare module "factorio:runtime" {
607
607
  * - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
608
608
  * - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
609
609
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
610
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RegistrationTarget.html Online documentation}
610
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RegistrationTarget.html Online documentation}
611
611
  */
612
612
  export type RegistrationTarget =
613
613
  | LuaEntity
@@ -808,7 +808,7 @@ declare module "factorio:runtime" {
808
808
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
809
809
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
810
810
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
811
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UndoRedoAction.html Online documentation}
811
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UndoRedoAction.html Online documentation}
812
812
  */
813
813
  export type UndoRedoAction =
814
814
  | BuiltEntityUndoRedoAction
@@ -840,7 +840,7 @@ declare module "factorio:runtime" {
840
840
  * - `"weapon"`
841
841
  * - `"explosion"`
842
842
  * - `"enemy"`
843
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SoundType.html Online documentation}
843
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SoundType.html Online documentation}
844
844
  */
845
845
  export type SoundType =
846
846
  | "game-effect"
@@ -923,7 +923,7 @@ declare module "factorio:runtime" {
923
923
  * - `"controllable-remove"`
924
924
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
925
925
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
926
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectionModeFlags.html Online documentation}
926
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectionModeFlags.html Online documentation}
927
927
  */
928
928
  export interface SelectionModeFlags {
929
929
  /**
@@ -1042,7 +1042,7 @@ declare module "factorio:runtime" {
1042
1042
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1043
1043
  *
1044
1044
  * By default, none of these flags are set.
1045
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFlags.html Online documentation}
1045
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFlags.html Online documentation}
1046
1046
  */
1047
1047
  export type ItemPrototypeFlags = {
1048
1048
  readonly [T in ItemPrototypeFlag]?: true
@@ -1063,7 +1063,7 @@ declare module "factorio:runtime" {
1063
1063
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1064
1064
  * - `"spoil-result"`
1065
1065
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1066
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFlag.html Online documentation}
1066
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFlag.html Online documentation}
1067
1067
  */
1068
1068
  export type ItemPrototypeFlag =
1069
1069
  | "draw-logistic-overlay"
@@ -1083,7 +1083,7 @@ declare module "factorio:runtime" {
1083
1083
  * - `"none"`
1084
1084
  * - `"whitelist"`
1085
1085
  * - `"blacklist"`
1086
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilterMode.html Online documentation}
1086
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilterMode.html Online documentation}
1087
1087
  */
1088
1088
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1089
1089
  export interface PipeConnectionDefinition {
@@ -1098,6 +1098,7 @@ declare module "factorio:runtime" {
1098
1098
  readonly max_underground_distance?: uint
1099
1099
  readonly flow_direction: "input-output" | "input" | "output"
1100
1100
  readonly direction: defines.direction
1101
+ readonly connection_category: string[]
1101
1102
  /**
1102
1103
  * Only supplied if `connection_type` is `"linked"`.
1103
1104
  */
@@ -1107,7 +1108,7 @@ declare module "factorio:runtime" {
1107
1108
  * The name of a {@link LuaCollisionLayerPrototype}.
1108
1109
  * @example
1109
1110
  * "is_lower_object"
1110
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CollisionLayerID.html Online documentation}
1111
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CollisionLayerID.html Online documentation}
1111
1112
  */
1112
1113
  export type CollisionLayerID = string
1113
1114
  export interface ItemIDFilter {
@@ -1157,7 +1158,7 @@ declare module "factorio:runtime" {
1157
1158
  * - {@link SpaceLocationPrototypeFilter}
1158
1159
  * - {@link FluidPrototypeFilter}
1159
1160
  * @see PrototypeFilterWrite
1160
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilter.html Online documentation}
1161
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilter.html Online documentation}
1161
1162
  */
1162
1163
  export type PrototypeFilter =
1163
1164
  | ModSettingPrototypeFilter[]
@@ -1174,7 +1175,7 @@ declare module "factorio:runtime" {
1174
1175
  | FluidPrototypeFilter[]
1175
1176
  /**
1176
1177
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1177
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilter.html Online documentation}
1178
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilter.html Online documentation}
1178
1179
  */
1179
1180
  export type PrototypeFilterWrite =
1180
1181
  | readonly ModSettingPrototypeFilter[]
@@ -1191,7 +1192,7 @@ declare module "factorio:runtime" {
1191
1192
  | readonly FluidPrototypeFilterWrite[]
1192
1193
  /**
1193
1194
  * @see DisplayPanelMessageDefinitionWrite
1194
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DisplayPanelMessageDefinition.html Online documentation}
1195
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DisplayPanelMessageDefinition.html Online documentation}
1195
1196
  */
1196
1197
  export interface DisplayPanelMessageDefinition {
1197
1198
  /**
@@ -1209,7 +1210,7 @@ declare module "factorio:runtime" {
1209
1210
  }
1210
1211
  /**
1211
1212
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1212
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DisplayPanelMessageDefinition.html Online documentation}
1213
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DisplayPanelMessageDefinition.html Online documentation}
1213
1214
  */
1214
1215
  export interface DisplayPanelMessageDefinitionWrite {
1215
1216
  /**
@@ -1235,7 +1236,7 @@ declare module "factorio:runtime" {
1235
1236
  * - `"space-location"`
1236
1237
  * - `"asteroid-chunk"`
1237
1238
  * - `"quality"`
1238
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalIDType.html Online documentation}
1239
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalIDType.html Online documentation}
1239
1240
  */
1240
1241
  export type SignalIDType =
1241
1242
  | "item"
@@ -1248,7 +1249,7 @@ declare module "factorio:runtime" {
1248
1249
  | "quality"
1249
1250
  /**
1250
1251
  * @see SignalIDWrite
1251
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalID.html Online documentation}
1252
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalID.html Online documentation}
1252
1253
  */
1253
1254
  export interface SignalID {
1254
1255
  /**
@@ -1266,7 +1267,7 @@ declare module "factorio:runtime" {
1266
1267
  }
1267
1268
  /**
1268
1269
  * Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
1269
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalID.html Online documentation}
1270
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalID.html Online documentation}
1270
1271
  */
1271
1272
  export interface SignalIDWrite {
1272
1273
  /**
@@ -1472,7 +1473,7 @@ declare module "factorio:runtime" {
1472
1473
  * - `"play-next-track"`
1473
1474
  * - `"play-previous-track"`
1474
1475
  * - `"pause-resume-music"`
1475
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LinkedGameControl.html Online documentation}
1476
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LinkedGameControl.html Online documentation}
1476
1477
  */
1477
1478
  export type LinkedGameControl =
1478
1479
  | "move-up"
@@ -1723,7 +1724,7 @@ declare module "factorio:runtime" {
1723
1724
  * - `"create-ghost-on-entity-death"`
1724
1725
  * - `"belt-stack-size-bonus"`
1725
1726
  * - `"vehicle-logistics"`
1726
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModifierType.html Online documentation}
1727
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModifierType.html Online documentation}
1727
1728
  */
1728
1729
  export type ModifierType =
1729
1730
  | "inserter-stack-size-bonus"
@@ -1842,7 +1843,7 @@ declare module "factorio:runtime" {
1842
1843
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1843
1844
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1844
1845
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1845
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ResearchTrigger.html Online documentation}
1846
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ResearchTrigger.html Online documentation}
1846
1847
  */
1847
1848
  export type ResearchTrigger =
1848
1849
  | CraftItemResearchTrigger
@@ -1856,7 +1857,7 @@ declare module "factorio:runtime" {
1856
1857
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1857
1858
  *
1858
1859
  * By default, none of these flags are set.
1859
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFlags.html Online documentation}
1860
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFlags.html Online documentation}
1860
1861
  */
1861
1862
  export type EntityPrototypeFlags = {
1862
1863
  readonly [T in EntityPrototypeFlag]?: true
@@ -1891,7 +1892,7 @@ declare module "factorio:runtime" {
1891
1892
  * - `"building-direction-16-way"`
1892
1893
  * - `"snap-to-rail-support-spot"`
1893
1894
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1894
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFlag.html Online documentation}
1895
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFlag.html Online documentation}
1895
1896
  */
1896
1897
  export type EntityPrototypeFlag =
1897
1898
  | "not-rotatable"
@@ -1961,7 +1962,7 @@ declare module "factorio:runtime" {
1961
1962
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1962
1963
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1963
1964
  * - `"global"`: The sound can be heard everywhere.
1964
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1965
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1965
1966
  */
1966
1967
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1967
1968
  /**
@@ -1986,7 +1987,7 @@ declare module "factorio:runtime" {
1986
1987
  * - `"none-to-south"`
1987
1988
  * - `"south-to-none"`
1988
1989
  * - `"none-to-north"`
1989
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffOrientation.html Online documentation}
1990
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffOrientation.html Online documentation}
1990
1991
  */
1991
1992
  export type CliffOrientation =
1992
1993
  | "west-to-east"
@@ -2012,7 +2013,7 @@ declare module "factorio:runtime" {
2012
2013
  /**
2013
2014
  * Defines an item type that a blueprint entity will request.
2014
2015
  * @see BlueprintInsertPlanWrite
2015
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInsertPlan.html Online documentation}
2016
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInsertPlan.html Online documentation}
2016
2017
  */
2017
2018
  export interface BlueprintInsertPlan {
2018
2019
  /**
@@ -2026,7 +2027,7 @@ declare module "factorio:runtime" {
2026
2027
  }
2027
2028
  /**
2028
2029
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
2029
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInsertPlan.html Online documentation}
2030
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInsertPlan.html Online documentation}
2030
2031
  */
2031
2032
  export interface BlueprintInsertPlanWrite {
2032
2033
  /**
@@ -2054,7 +2055,7 @@ declare module "factorio:runtime" {
2054
2055
  }
2055
2056
  /**
2056
2057
  * A single offer on a market entity.
2057
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Offer.html Online documentation}
2058
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Offer.html Online documentation}
2058
2059
  */
2059
2060
  export interface Offer {
2060
2061
  /**
@@ -2069,7 +2070,7 @@ declare module "factorio:runtime" {
2069
2070
  /**
2070
2071
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2071
2072
  * @see ItemFilterWrite
2072
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemFilter.html Online documentation}
2073
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemFilter.html Online documentation}
2073
2074
  */
2074
2075
  export type ItemFilter =
2075
2076
  | {
@@ -2089,7 +2090,7 @@ declare module "factorio:runtime" {
2089
2090
  | string
2090
2091
  /**
2091
2092
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2092
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemFilter.html Online documentation}
2093
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemFilter.html Online documentation}
2093
2094
  */
2094
2095
  export type ItemFilterWrite =
2095
2096
  | {
@@ -2109,7 +2110,7 @@ declare module "factorio:runtime" {
2109
2110
  | string
2110
2111
  /**
2111
2112
  * @see ScheduleRecordWrite
2112
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScheduleRecord.html Online documentation}
2113
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScheduleRecord.html Online documentation}
2113
2114
  */
2114
2115
  export interface ScheduleRecord {
2115
2116
  /**
@@ -2132,7 +2133,7 @@ declare module "factorio:runtime" {
2132
2133
  }
2133
2134
  /**
2134
2135
  * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
2135
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScheduleRecord.html Online documentation}
2136
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScheduleRecord.html Online documentation}
2136
2137
  */
2137
2138
  export interface ScheduleRecordWrite {
2138
2139
  /**
@@ -2218,7 +2219,7 @@ declare module "factorio:runtime" {
2218
2219
  * - `"position"`: {@link PositionGuiArrowSpecification}
2219
2220
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2220
2221
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2221
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiArrowSpecification.html Online documentation}
2222
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiArrowSpecification.html Online documentation}
2222
2223
  */
2223
2224
  export type GuiArrowSpecification =
2224
2225
  | EntityGuiArrowSpecification
@@ -2231,7 +2232,7 @@ declare module "factorio:runtime" {
2231
2232
  *
2232
2233
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2233
2234
  * @see Vector3DArray
2234
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector3D.html Online documentation}
2235
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector3D.html Online documentation}
2235
2236
  */
2236
2237
  export interface Vector3D {
2237
2238
  readonly x: float
@@ -2241,7 +2242,7 @@ declare module "factorio:runtime" {
2241
2242
  /**
2242
2243
  * Array form of {@link Vector3D}.
2243
2244
  * @see Vector3D
2244
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector3D.html Online documentation}
2245
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector3D.html Online documentation}
2245
2246
  */
2246
2247
  export type Vector3DArray = readonly [float, float, float]
2247
2248
  export interface ItemWithQualityCounts {
@@ -2274,7 +2275,7 @@ declare module "factorio:runtime" {
2274
2275
  }
2275
2276
  /**
2276
2277
  * @see TrainScheduleWrite
2277
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainSchedule.html Online documentation}
2278
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainSchedule.html Online documentation}
2278
2279
  */
2279
2280
  export interface TrainSchedule {
2280
2281
  /**
@@ -2285,7 +2286,7 @@ declare module "factorio:runtime" {
2285
2286
  }
2286
2287
  /**
2287
2288
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2288
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainSchedule.html Online documentation}
2289
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainSchedule.html Online documentation}
2289
2290
  */
2290
2291
  export interface TrainScheduleWrite {
2291
2292
  /**
@@ -2296,7 +2297,7 @@ declare module "factorio:runtime" {
2296
2297
  }
2297
2298
  /**
2298
2299
  * @see PlatformScheduleWrite
2299
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlatformSchedule.html Online documentation}
2300
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlatformSchedule.html Online documentation}
2300
2301
  */
2301
2302
  export interface PlatformSchedule {
2302
2303
  /**
@@ -2307,7 +2308,7 @@ declare module "factorio:runtime" {
2307
2308
  }
2308
2309
  /**
2309
2310
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2310
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlatformSchedule.html Online documentation}
2311
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlatformSchedule.html Online documentation}
2311
2312
  */
2312
2313
  export interface PlatformScheduleWrite {
2313
2314
  /**
@@ -2324,7 +2325,7 @@ declare module "factorio:runtime" {
2324
2325
  }
2325
2326
  /**
2326
2327
  * A recipe prototype with optional quality specification.
2327
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2328
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2328
2329
  */
2329
2330
  export interface RecipeIDAndQualityIDPair {
2330
2331
  /**
@@ -2373,7 +2374,7 @@ declare module "factorio:runtime" {
2373
2374
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2374
2375
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2375
2376
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2376
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceID.html Online documentation}
2377
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceID.html Online documentation}
2377
2378
  */
2378
2379
  export type ForceID = string | uint8 | LuaForce
2379
2380
  /**
@@ -2383,7 +2384,7 @@ declare module "factorio:runtime" {
2383
2384
  * - `string`: The fluid name.
2384
2385
  * - {@link LuaFluidPrototype}: The fluid prototype.
2385
2386
  * - {@link Fluid}: The fluid.
2386
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidID.html Online documentation}
2387
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidID.html Online documentation}
2387
2388
  */
2388
2389
  export type FluidID = string | LuaFluidPrototype | Fluid
2389
2390
  /**
@@ -2394,12 +2395,12 @@ declare module "factorio:runtime" {
2394
2395
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2395
2396
  * - `string`: The prototype name. Normal quality will be used.
2396
2397
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2397
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityWithQualityID.html Online documentation}
2398
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityWithQualityID.html Online documentation}
2398
2399
  */
2399
2400
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2400
2401
  /**
2401
2402
  * An entity prototype with optional quality specification.
2402
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityIDAndQualityIDPair.html Online documentation}
2403
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityIDAndQualityIDPair.html Online documentation}
2403
2404
  */
2404
2405
  export interface EntityIDAndQualityIDPair {
2405
2406
  /**
@@ -2419,13 +2420,13 @@ declare module "factorio:runtime" {
2419
2420
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2420
2421
  * - `string`: The prototype name. Normal quality will be used.
2421
2422
  * - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
2422
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemWithQualityID.html Online documentation}
2423
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemWithQualityID.html Online documentation}
2423
2424
  */
2424
2425
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2425
2426
  /**
2426
2427
  * An item prototype with optional quality specification.
2427
2428
  * @see ItemIDAndQualityIDPairWrite
2428
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemIDAndQualityIDPair.html Online documentation}
2429
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemIDAndQualityIDPair.html Online documentation}
2429
2430
  */
2430
2431
  export interface ItemIDAndQualityIDPair {
2431
2432
  /**
@@ -2439,7 +2440,7 @@ declare module "factorio:runtime" {
2439
2440
  }
2440
2441
  /**
2441
2442
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2442
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemIDAndQualityIDPair.html Online documentation}
2443
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemIDAndQualityIDPair.html Online documentation}
2443
2444
  */
2444
2445
  export interface ItemIDAndQualityIDPairWrite {
2445
2446
  /**
@@ -2459,7 +2460,7 @@ declare module "factorio:runtime" {
2459
2460
  * - {@link LuaItemStack}: Non empty item stack.
2460
2461
  * - {@link LuaItem}: The item.
2461
2462
  * - `string`: The prototype name.
2462
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemID.html Online documentation}
2463
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemID.html Online documentation}
2463
2464
  */
2464
2465
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2465
2466
  /**
@@ -2469,7 +2470,7 @@ declare module "factorio:runtime" {
2469
2470
  * - {@link LuaEntityPrototype}: The entity prototype.
2470
2471
  * - {@link LuaEntity}: The entity.
2471
2472
  * - `string`: The prototype name.
2472
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityID.html Online documentation}
2473
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityID.html Online documentation}
2473
2474
  */
2474
2475
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2475
2476
  /**
@@ -2479,7 +2480,7 @@ declare module "factorio:runtime" {
2479
2480
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2480
2481
  * - {@link LuaTechnology}: Instance of the technology.
2481
2482
  * - `string`: The prototype name.
2482
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyID.html Online documentation}
2483
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyID.html Online documentation}
2483
2484
  */
2484
2485
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2485
2486
  /**
@@ -2488,7 +2489,7 @@ declare module "factorio:runtime" {
2488
2489
  * ## Union members
2489
2490
  * - {@link LuaParticlePrototype}: The particle prototype.
2490
2491
  * - `string`: The prototype name.
2491
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ParticleID.html Online documentation}
2492
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ParticleID.html Online documentation}
2492
2493
  */
2493
2494
  export type ParticleID = LuaParticlePrototype | string
2494
2495
  /**
@@ -2497,7 +2498,7 @@ declare module "factorio:runtime" {
2497
2498
  * ## Union members
2498
2499
  * - {@link LuaDamagePrototype}: The damage type prototype.
2499
2500
  * - `string`: The prototype name.
2500
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DamageTypeID.html Online documentation}
2501
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DamageTypeID.html Online documentation}
2501
2502
  */
2502
2503
  export type DamageTypeID = LuaDamagePrototype | string
2503
2504
  /**
@@ -2506,7 +2507,7 @@ declare module "factorio:runtime" {
2506
2507
  * ## Union members
2507
2508
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2508
2509
  * - `string`: The prototype name.
2509
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrivialSmokeID.html Online documentation}
2510
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrivialSmokeID.html Online documentation}
2510
2511
  */
2511
2512
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2512
2513
  /**
@@ -2518,7 +2519,7 @@ declare module "factorio:runtime" {
2518
2519
  * - `"left"`
2519
2520
  * - `"right"`
2520
2521
  * - `"center"`
2521
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TextAlign.html Online documentation}
2522
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TextAlign.html Online documentation}
2522
2523
  */
2523
2524
  export type TextAlign = "left" | "right" | "center"
2524
2525
  /**
@@ -2531,7 +2532,7 @@ declare module "factorio:runtime" {
2531
2532
  * - `"middle"`
2532
2533
  * - `"baseline"`
2533
2534
  * - `"bottom"`
2534
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/VerticalTextAlign.html Online documentation}
2535
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/VerticalTextAlign.html Online documentation}
2535
2536
  */
2536
2537
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2537
2538
  /**
@@ -2540,7 +2541,7 @@ declare module "factorio:runtime" {
2540
2541
  * ## Union members
2541
2542
  * - {@link LuaQualityPrototype}: The quality prototype.
2542
2543
  * - `string`: The prototype name.
2543
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/QualityID.html Online documentation}
2544
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/QualityID.html Online documentation}
2544
2545
  */
2545
2546
  export type QualityID = LuaQualityPrototype | string
2546
2547
  /**
@@ -2550,7 +2551,7 @@ declare module "factorio:runtime" {
2550
2551
  * - {@link LuaRecipePrototype}: By recipe prototype.
2551
2552
  * - {@link LuaRecipe}: By instance of recipe.
2552
2553
  * - `string`: By name of the recipe prototype.
2553
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipeID.html Online documentation}
2554
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipeID.html Online documentation}
2554
2555
  */
2555
2556
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2556
2557
  /**
@@ -2560,7 +2561,7 @@ declare module "factorio:runtime" {
2560
2561
  * - {@link LuaTilePrototype}: By tile prototype.
2561
2562
  * - {@link LuaTile}: By instance of tile.
2562
2563
  * - `string`: By name of the tile prototype.
2563
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TileID.html Online documentation}
2564
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TileID.html Online documentation}
2564
2565
  */
2565
2566
  export type TileID = LuaTilePrototype | LuaTile | string
2566
2567
  export interface Fluid {
@@ -2584,7 +2585,7 @@ declare module "factorio:runtime" {
2584
2585
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2585
2586
  * - {@link LuaEquipment}: The equipment.
2586
2587
  * - `string`: The prototype name.
2587
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentID.html Online documentation}
2588
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentID.html Online documentation}
2588
2589
  */
2589
2590
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2590
2591
  /**
@@ -2595,12 +2596,12 @@ declare module "factorio:runtime" {
2595
2596
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2596
2597
  * - `string`: The prototype name. Normal quality will be used.
2597
2598
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2598
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentWithQualityID.html Online documentation}
2599
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentWithQualityID.html Online documentation}
2599
2600
  */
2600
2601
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2601
2602
  /**
2602
2603
  * An equipment prototype with optional quality specification.
2603
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2604
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2604
2605
  */
2605
2606
  export interface EquipmentIDAndQualityIDPair {
2606
2607
  /**
@@ -2621,7 +2622,7 @@ declare module "factorio:runtime" {
2621
2622
  * @example
2622
2623
  * -- Shorthand
2623
2624
  * {{-2, -3}, {5, 8}}
2624
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BoundingBox.html Online documentation}
2625
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BoundingBox.html Online documentation}
2625
2626
  */
2626
2627
  export interface BoundingBox {
2627
2628
  readonly left_top: MapPosition
@@ -2631,7 +2632,7 @@ declare module "factorio:runtime" {
2631
2632
  /**
2632
2633
  * Array form of {@link BoundingBox}.
2633
2634
  * @see BoundingBox
2634
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BoundingBox.html Online documentation}
2635
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BoundingBox.html Online documentation}
2635
2636
  */
2636
2637
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2637
2638
  export interface BoundingBoxWrite {
@@ -2644,7 +2645,7 @@ declare module "factorio:runtime" {
2644
2645
  *
2645
2646
  * ## Union members
2646
2647
  * - {@link LuaSpacePlatform}
2647
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpacePlatformIdentification.html Online documentation}
2648
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpacePlatformIdentification.html Online documentation}
2648
2649
  */
2649
2650
  export type SpacePlatformIdentification = LuaSpacePlatform
2650
2651
  /**
@@ -2654,12 +2655,12 @@ declare module "factorio:runtime" {
2654
2655
  * - {@link LuaForce}[]: Array of many forces.
2655
2656
  * - {@link LuaForce}: A single force.
2656
2657
  * @see ForceSetWrite
2657
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceSet.html Online documentation}
2658
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceSet.html Online documentation}
2658
2659
  */
2659
2660
  export type ForceSet = LuaForce[] | LuaForce
2660
2661
  /**
2661
2662
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2662
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceSet.html Online documentation}
2663
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceSet.html Online documentation}
2663
2664
  */
2664
2665
  export type ForceSetWrite = readonly ForceID[] | ForceID
2665
2666
  /**
@@ -2668,7 +2669,7 @@ declare module "factorio:runtime" {
2668
2669
  * ## Union members
2669
2670
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2670
2671
  * - `string`: The prototype name.
2671
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DecorativeID.html Online documentation}
2672
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DecorativeID.html Online documentation}
2672
2673
  */
2673
2674
  export type DecorativeID = LuaDecorativePrototype | string
2674
2675
  /**
@@ -2677,7 +2678,7 @@ declare module "factorio:runtime" {
2677
2678
  * ## Union members
2678
2679
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2679
2680
  * - `string`: The prototype name.
2680
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunkID.html Online documentation}
2681
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunkID.html Online documentation}
2681
2682
  */
2682
2683
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2683
2684
  /**
@@ -2686,13 +2687,13 @@ declare module "factorio:runtime" {
2686
2687
  * ## Union members
2687
2688
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2688
2689
  * - `string`: The prototype name.
2689
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationID.html Online documentation}
2690
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationID.html Online documentation}
2690
2691
  */
2691
2692
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2692
2693
  /**
2693
2694
  * A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
2694
2695
  * @see SignalFilterWrite
2695
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalFilter.html Online documentation}
2696
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalFilter.html Online documentation}
2696
2697
  */
2697
2698
  export type SignalFilter =
2698
2699
  | {
@@ -2716,7 +2717,7 @@ declare module "factorio:runtime" {
2716
2717
  | string
2717
2718
  /**
2718
2719
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2719
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalFilter.html Online documentation}
2720
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalFilter.html Online documentation}
2720
2721
  */
2721
2722
  export type SignalFilterWrite =
2722
2723
  | {
@@ -2740,7 +2741,7 @@ declare module "factorio:runtime" {
2740
2741
  | string
2741
2742
  /**
2742
2743
  * @see LogisticFilterWrite
2743
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticFilter.html Online documentation}
2744
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticFilter.html Online documentation}
2744
2745
  */
2745
2746
  export interface LogisticFilter {
2746
2747
  /**
@@ -2766,7 +2767,7 @@ declare module "factorio:runtime" {
2766
2767
  }
2767
2768
  /**
2768
2769
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2769
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticFilter.html Online documentation}
2770
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticFilter.html Online documentation}
2770
2771
  */
2771
2772
  export interface LogisticFilterWrite {
2772
2773
  /**
@@ -2822,23 +2823,23 @@ declare module "factorio:runtime" {
2822
2823
  * ## Union members
2823
2824
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2824
2825
  * - `string`: The prototype name.
2825
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SurfacePropertyID.html Online documentation}
2826
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SurfacePropertyID.html Online documentation}
2826
2827
  */
2827
2828
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2828
2829
  /**
2829
2830
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2830
2831
  * @see ScriptRenderTargetWrite
2831
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTarget.html Online documentation}
2832
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTarget.html Online documentation}
2832
2833
  */
2833
2834
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2834
2835
  /**
2835
2836
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2836
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTarget.html Online documentation}
2837
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTarget.html Online documentation}
2837
2838
  */
2838
2839
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2839
2840
  /**
2840
2841
  * @see ScriptRenderTargetTableWrite
2841
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTargetTable.html Online documentation}
2842
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTargetTable.html Online documentation}
2842
2843
  */
2843
2844
  export interface ScriptRenderTargetTable {
2844
2845
  readonly entity?: LuaEntity
@@ -2853,7 +2854,7 @@ declare module "factorio:runtime" {
2853
2854
  }
2854
2855
  /**
2855
2856
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2856
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTargetTable.html Online documentation}
2857
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTargetTable.html Online documentation}
2857
2858
  */
2858
2859
  export interface ScriptRenderTargetTableWrite {
2859
2860
  readonly entity?: LuaEntity
@@ -2868,7 +2869,7 @@ declare module "factorio:runtime" {
2868
2869
  }
2869
2870
  /**
2870
2871
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2871
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/QualityCondition.html Online documentation}
2872
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/QualityCondition.html Online documentation}
2872
2873
  */
2873
2874
  export type QualityCondition =
2874
2875
  | {
@@ -2890,7 +2891,7 @@ declare module "factorio:runtime" {
2890
2891
  * - {@link LuaCustomInputPrototype}: Custom input prototype.
2891
2892
  * - {@link defines.events}: Event identifier.
2892
2893
  * - `string`: Name of the event.
2893
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEventType.html Online documentation}
2894
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEventType.html Online documentation}
2894
2895
  */
2895
2896
  export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
2896
2897
  /**
@@ -2898,13 +2899,13 @@ declare module "factorio:runtime" {
2898
2899
  * - `"center-to-center"`
2899
2900
  * - `"bounding-box-to-bounding-box"`
2900
2901
  * - `"center-to-bounding-box"`
2901
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RangeMode.html Online documentation}
2902
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RangeMode.html Online documentation}
2902
2903
  */
2903
2904
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2904
2905
  /**
2905
2906
  * The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
2906
2907
  * @see BlueprintEntityWrite
2907
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEntity.html Online documentation}
2908
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEntity.html Online documentation}
2908
2909
  */
2909
2910
  export interface BlueprintEntity {
2910
2911
  /**
@@ -3118,7 +3119,7 @@ declare module "factorio:runtime" {
3118
3119
  }
3119
3120
  /**
3120
3121
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3121
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEntity.html Online documentation}
3122
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEntity.html Online documentation}
3122
3123
  */
3123
3124
  export interface BlueprintEntityWrite {
3124
3125
  /**
@@ -3339,7 +3340,7 @@ declare module "factorio:runtime" {
3339
3340
  }
3340
3341
  /**
3341
3342
  * @see BlueprintEquipmentWrite
3342
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEquipment.html Online documentation}
3343
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEquipment.html Online documentation}
3343
3344
  */
3344
3345
  export interface BlueprintEquipment {
3345
3346
  readonly equipment: ItemIDAndQualityIDPair
@@ -3347,7 +3348,7 @@ declare module "factorio:runtime" {
3347
3348
  }
3348
3349
  /**
3349
3350
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3350
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEquipment.html Online documentation}
3351
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEquipment.html Online documentation}
3351
3352
  */
3352
3353
  export interface BlueprintEquipmentWrite {
3353
3354
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3355,7 +3356,7 @@ declare module "factorio:runtime" {
3355
3356
  }
3356
3357
  /**
3357
3358
  * @see BlueprintInventoryWrite
3358
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInventory.html Online documentation}
3359
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInventory.html Online documentation}
3359
3360
  */
3360
3361
  export interface BlueprintInventory {
3361
3362
  readonly filters?: BlueprintLogisticFilter[]
@@ -3366,7 +3367,7 @@ declare module "factorio:runtime" {
3366
3367
  }
3367
3368
  /**
3368
3369
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3369
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInventory.html Online documentation}
3370
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInventory.html Online documentation}
3370
3371
  */
3371
3372
  export interface BlueprintInventoryWrite {
3372
3373
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3387,7 +3388,7 @@ declare module "factorio:runtime" {
3387
3388
  }
3388
3389
  /**
3389
3390
  * @see BlueprintControlBehaviorWrite
3390
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintControlBehavior.html Online documentation}
3391
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintControlBehavior.html Online documentation}
3391
3392
  */
3392
3393
  export interface BlueprintControlBehavior {
3393
3394
  /**
@@ -3640,7 +3641,7 @@ declare module "factorio:runtime" {
3640
3641
  }
3641
3642
  /**
3642
3643
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3643
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintControlBehavior.html Online documentation}
3644
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintControlBehavior.html Online documentation}
3644
3645
  */
3645
3646
  export interface BlueprintControlBehaviorWrite {
3646
3647
  /**
@@ -3921,7 +3922,7 @@ declare module "factorio:runtime" {
3921
3922
  * "2500 * (L - 3)"
3922
3923
  * @example
3923
3924
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3924
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MathExpression.html Online documentation}
3925
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MathExpression.html Online documentation}
3925
3926
  */
3926
3927
  export type MathExpression = string
3927
3928
  /**
@@ -3943,7 +3944,7 @@ declare module "factorio:runtime" {
3943
3944
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3944
3945
  * -- minimum amount of 1 and a maximum amount of 5
3945
3946
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3946
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Product.html Online documentation}
3947
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Product.html Online documentation}
3947
3948
  */
3948
3949
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
3949
3950
  /**
@@ -3954,7 +3955,7 @@ declare module "factorio:runtime" {
3954
3955
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3955
3956
  * -- minimum amount of 1 and a maximum amount of 5
3956
3957
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3957
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemProduct.html Online documentation}
3958
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemProduct.html Online documentation}
3958
3959
  */
3959
3960
  export interface ItemProduct {
3960
3961
  readonly type: "item"
@@ -3998,7 +3999,7 @@ declare module "factorio:runtime" {
3998
3999
  * {{type="fluid", name="heavy-oil", amount=1},
3999
4000
  * {type="fluid", name="light-oil", amount=4.5},
4000
4001
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4001
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidProduct.html Online documentation}
4002
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidProduct.html Online documentation}
4002
4003
  */
4003
4004
  export interface FluidProduct {
4004
4005
  readonly type: "fluid"
@@ -4046,7 +4047,7 @@ declare module "factorio:runtime" {
4046
4047
  }
4047
4048
  /**
4048
4049
  * @see LogisticSectionsWrite
4049
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSections.html Online documentation}
4050
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSections.html Online documentation}
4050
4051
  */
4051
4052
  export interface LogisticSections {
4052
4053
  readonly sections?: LogisticSection[]
@@ -4057,7 +4058,7 @@ declare module "factorio:runtime" {
4057
4058
  }
4058
4059
  /**
4059
4060
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4060
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSections.html Online documentation}
4061
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSections.html Online documentation}
4061
4062
  */
4062
4063
  export interface LogisticSectionsWrite {
4063
4064
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4093,7 +4094,7 @@ declare module "factorio:runtime" {
4093
4094
  }
4094
4095
  /**
4095
4096
  * @see LogisticSectionWrite
4096
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSection.html Online documentation}
4097
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSection.html Online documentation}
4097
4098
  */
4098
4099
  export interface LogisticSection {
4099
4100
  readonly index: uint8
@@ -4110,7 +4111,7 @@ declare module "factorio:runtime" {
4110
4111
  }
4111
4112
  /**
4112
4113
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4113
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSection.html Online documentation}
4114
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSection.html Online documentation}
4114
4115
  */
4115
4116
  export interface LogisticSectionWrite {
4116
4117
  readonly index: uint8
@@ -4127,7 +4128,7 @@ declare module "factorio:runtime" {
4127
4128
  }
4128
4129
  /**
4129
4130
  * @see BlueprintLogisticFilterWrite
4130
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintLogisticFilter.html Online documentation}
4131
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintLogisticFilter.html Online documentation}
4131
4132
  */
4132
4133
  export interface BlueprintLogisticFilter {
4133
4134
  readonly index: LogisticFilterIndex
@@ -4157,7 +4158,7 @@ declare module "factorio:runtime" {
4157
4158
  }
4158
4159
  /**
4159
4160
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4160
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintLogisticFilter.html Online documentation}
4161
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintLogisticFilter.html Online documentation}
4161
4162
  */
4162
4163
  export interface BlueprintLogisticFilterWrite {
4163
4164
  readonly index: LogisticFilterIndex
@@ -4187,7 +4188,7 @@ declare module "factorio:runtime" {
4187
4188
  }
4188
4189
  /**
4189
4190
  * Specifies how probability and richness are calculated when placing something on the map.
4190
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSpecification.html Online documentation}
4191
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSpecification.html Online documentation}
4191
4192
  */
4192
4193
  export interface AutoplaceSpecification {
4193
4194
  /**
@@ -4204,7 +4205,7 @@ declare module "factorio:runtime" {
4204
4205
  }
4205
4206
  /**
4206
4207
  * @see CliffPlacementSettingsWrite
4207
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffPlacementSettings.html Online documentation}
4208
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffPlacementSettings.html Online documentation}
4208
4209
  */
4209
4210
  export interface CliffPlacementSettings {
4210
4211
  /**
@@ -4234,7 +4235,7 @@ declare module "factorio:runtime" {
4234
4235
  }
4235
4236
  /**
4236
4237
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4237
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffPlacementSettings.html Online documentation}
4238
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffPlacementSettings.html Online documentation}
4238
4239
  */
4239
4240
  export interface CliffPlacementSettingsWrite {
4240
4241
  /**
@@ -4264,7 +4265,7 @@ declare module "factorio:runtime" {
4264
4265
  }
4265
4266
  /**
4266
4267
  * @see AutoplaceSettingsWrite
4267
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSettings.html Online documentation}
4268
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSettings.html Online documentation}
4268
4269
  */
4269
4270
  export interface AutoplaceSettings {
4270
4271
  /**
@@ -4278,7 +4279,7 @@ declare module "factorio:runtime" {
4278
4279
  }
4279
4280
  /**
4280
4281
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4281
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSettings.html Online documentation}
4282
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSettings.html Online documentation}
4282
4283
  */
4283
4284
  export interface AutoplaceSettingsWrite {
4284
4285
  /**
@@ -4313,7 +4314,7 @@ declare module "factorio:runtime" {
4313
4314
  * surface.map_gen_settings = mgs
4314
4315
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4315
4316
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4316
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSettings.html Online documentation}
4317
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSettings.html Online documentation}
4317
4318
  */
4318
4319
  export interface MapGenSettings {
4319
4320
  /**
@@ -4368,7 +4369,7 @@ declare module "factorio:runtime" {
4368
4369
  }
4369
4370
  /**
4370
4371
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4371
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSettings.html Online documentation}
4372
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSettings.html Online documentation}
4372
4373
  */
4373
4374
  export interface MapGenSettingsWrite {
4374
4375
  /**
@@ -4427,7 +4428,7 @@ declare module "factorio:runtime" {
4427
4428
  }
4428
4429
  /**
4429
4430
  * These values are for the time frame of one second (60 ticks).
4430
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PollutionMapSettings.html Online documentation}
4431
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PollutionMapSettings.html Online documentation}
4431
4432
  */
4432
4433
  export interface PollutionMapSettings {
4433
4434
  /**
@@ -4481,7 +4482,7 @@ declare module "factorio:runtime" {
4481
4482
  }
4482
4483
  /**
4483
4484
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4484
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EnemyEvolutionMapSettings.html Online documentation}
4485
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EnemyEvolutionMapSettings.html Online documentation}
4485
4486
  */
4486
4487
  export interface EnemyEvolutionMapSettings {
4487
4488
  /**
@@ -4519,7 +4520,7 @@ declare module "factorio:runtime" {
4519
4520
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4520
4521
  * score(chunk) = 1 / (1 + player + base)
4521
4522
  * ```
4522
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EnemyExpansionMapSettings.html Online documentation}
4523
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EnemyExpansionMapSettings.html Online documentation}
4523
4524
  */
4524
4525
  export interface EnemyExpansionMapSettings {
4525
4526
  /**
@@ -4778,17 +4779,17 @@ declare module "factorio:runtime" {
4778
4779
  }
4779
4780
  /**
4780
4781
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4781
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.html Online documentation}
4782
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.html Online documentation}
4782
4783
  */
4783
4784
  export interface DifficultySettings {
4784
4785
  /**
4785
4786
  * A value in range [0.001, 1000].
4786
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4787
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4787
4788
  */
4788
4789
  technology_price_multiplier: double
4789
4790
  /**
4790
4791
  * A value in range [0.01, 100].
4791
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4792
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4792
4793
  */
4793
4794
  spoil_time_modifier: double
4794
4795
  }
@@ -4804,7 +4805,7 @@ declare module "factorio:runtime" {
4804
4805
  }
4805
4806
  /**
4806
4807
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4807
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapAndDifficultySettings.html Online documentation}
4808
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapAndDifficultySettings.html Online documentation}
4808
4809
  */
4809
4810
  export interface MapAndDifficultySettings {
4810
4811
  readonly pollution: PollutionMapSettings
@@ -4825,7 +4826,7 @@ declare module "factorio:runtime" {
4825
4826
  * @example
4826
4827
  * -- Increase the number of short paths the pathfinder can cache.
4827
4828
  * game.map_settings.path_finder.short_cache_size = 15
4828
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapSettings.html Online documentation}
4829
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapSettings.html Online documentation}
4829
4830
  */
4830
4831
  export interface MapSettings {
4831
4832
  pollution: PollutionMapSettings
@@ -4837,13 +4838,13 @@ declare module "factorio:runtime" {
4837
4838
  asteroids: AsteroidMapSettings
4838
4839
  /**
4839
4840
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4840
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4841
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4841
4842
  */
4842
4843
  max_failed_behavior_count: uint
4843
4844
  }
4844
4845
  /**
4845
4846
  * @see BlueprintScheduleRecordWrite
4846
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleRecord.html Online documentation}
4847
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleRecord.html Online documentation}
4847
4848
  */
4848
4849
  export interface BlueprintScheduleRecord {
4849
4850
  /**
@@ -4860,7 +4861,7 @@ declare module "factorio:runtime" {
4860
4861
  }
4861
4862
  /**
4862
4863
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4863
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleRecord.html Online documentation}
4864
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleRecord.html Online documentation}
4864
4865
  */
4865
4866
  export interface BlueprintScheduleRecordWrite {
4866
4867
  /**
@@ -4877,7 +4878,7 @@ declare module "factorio:runtime" {
4877
4878
  }
4878
4879
  /**
4879
4880
  * @see BlueprintScheduleInterruptWrite
4880
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleInterrupt.html Online documentation}
4881
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleInterrupt.html Online documentation}
4881
4882
  */
4882
4883
  export interface BlueprintScheduleInterrupt {
4883
4884
  readonly name?: string
@@ -4887,7 +4888,7 @@ declare module "factorio:runtime" {
4887
4888
  }
4888
4889
  /**
4889
4890
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4890
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleInterrupt.html Online documentation}
4891
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleInterrupt.html Online documentation}
4891
4892
  */
4892
4893
  export interface BlueprintScheduleInterruptWrite {
4893
4894
  readonly name?: string
@@ -4897,7 +4898,7 @@ declare module "factorio:runtime" {
4897
4898
  }
4898
4899
  /**
4899
4900
  * @see BlueprintScheduleWrite
4900
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSchedule.html Online documentation}
4901
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSchedule.html Online documentation}
4901
4902
  */
4902
4903
  export interface BlueprintSchedule {
4903
4904
  readonly records?: BlueprintScheduleRecord[]
@@ -4906,7 +4907,7 @@ declare module "factorio:runtime" {
4906
4907
  }
4907
4908
  /**
4908
4909
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4909
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSchedule.html Online documentation}
4910
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSchedule.html Online documentation}
4910
4911
  */
4911
4912
  export interface BlueprintScheduleWrite {
4912
4913
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4915,7 +4916,7 @@ declare module "factorio:runtime" {
4915
4916
  }
4916
4917
  /**
4917
4918
  * @see WaitConditionWrite
4918
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitCondition.html Online documentation}
4919
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitCondition.html Online documentation}
4919
4920
  */
4920
4921
  export interface WaitCondition {
4921
4922
  readonly type: WaitConditionType
@@ -4946,7 +4947,7 @@ declare module "factorio:runtime" {
4946
4947
  }
4947
4948
  /**
4948
4949
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
4949
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitCondition.html Online documentation}
4950
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitCondition.html Online documentation}
4950
4951
  */
4951
4952
  export interface WaitConditionWrite {
4952
4953
  readonly type: WaitConditionType
@@ -5005,7 +5006,7 @@ declare module "factorio:runtime" {
5005
5006
  * - `"at_station"`
5006
5007
  * - `"not_at_station"`
5007
5008
  * - `"damage_taken"`
5008
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitConditionType.html Online documentation}
5009
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitConditionType.html Online documentation}
5009
5010
  */
5010
5011
  export type WaitConditionType =
5011
5012
  | "time"
@@ -5047,7 +5048,7 @@ declare module "factorio:runtime" {
5047
5048
  * - `"blueprint-snap-rectangle"`: Green by default.
5048
5049
  * - `"spidertron-remote-selected"`
5049
5050
  * - `"spidertron-remote-to-be-selected"`
5050
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CursorBoxRenderType.html Online documentation}
5051
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CursorBoxRenderType.html Online documentation}
5051
5052
  */
5052
5053
  export type CursorBoxRenderType =
5053
5054
  | "entity"
@@ -5063,7 +5064,7 @@ declare module "factorio:runtime" {
5063
5064
  | "spidertron-remote-to-be-selected"
5064
5065
  /**
5065
5066
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5066
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapViewSettings.html Online documentation}
5067
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapViewSettings.html Online documentation}
5067
5068
  */
5068
5069
  export interface MapViewSettings {
5069
5070
  readonly "show-logistic-network"?: boolean
@@ -5156,7 +5157,7 @@ declare module "factorio:runtime" {
5156
5157
  * - `"collision-selection-box"`: 189
5157
5158
  * - `"arrow"`: 190
5158
5159
  * - `"cursor"`: 226
5159
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RenderLayer.html Online documentation}
5160
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RenderLayer.html Online documentation}
5160
5161
  */
5161
5162
  export type RenderLayer =
5162
5163
  | `${bigint}`
@@ -5266,7 +5267,7 @@ declare module "factorio:runtime" {
5266
5267
  * - `"entity-with-quality"`
5267
5268
  * - `"recipe-with-quality"`
5268
5269
  * - `"equipment-with-quality"`
5269
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ElemType.html Online documentation}
5270
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ElemType.html Online documentation}
5270
5271
  */
5271
5272
  export type ElemType =
5272
5273
  | "achievement"
@@ -5293,7 +5294,7 @@ declare module "factorio:runtime" {
5293
5294
  * - `"left"`
5294
5295
  * - `"right"`
5295
5296
  * - `"none"`
5296
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SwitchState.html Online documentation}
5297
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SwitchState.html Online documentation}
5297
5298
  */
5298
5299
  export type SwitchState = "left" | "right" | "none"
5299
5300
  export interface ElemID {
@@ -5334,7 +5335,7 @@ declare module "factorio:runtime" {
5334
5335
  * - `"destroy-decoratives"`
5335
5336
  * - `"camera-effect"`
5336
5337
  * - `"activate-impact"`
5337
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TriggerEffectItemType.html Online documentation}
5338
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TriggerEffectItemType.html Online documentation}
5338
5339
  */
5339
5340
  export type TriggerEffectItemType =
5340
5341
  | "damage"
@@ -5371,7 +5372,7 @@ declare module "factorio:runtime" {
5371
5372
  }
5372
5373
  /**
5373
5374
  * A set of trigger target masks.
5374
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TriggerTargetMask.html Online documentation}
5375
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TriggerTargetMask.html Online documentation}
5375
5376
  */
5376
5377
  export type TriggerTargetMask = Record<string, true>
5377
5378
  export interface TriggerItem {
@@ -5438,7 +5439,7 @@ declare module "factorio:runtime" {
5438
5439
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5439
5440
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5440
5441
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5441
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LocalisedString.html Online documentation}
5442
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LocalisedString.html Online documentation}
5442
5443
  */
5443
5444
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5444
5445
  export interface DisplayResolution {
@@ -5449,7 +5450,7 @@ declare module "factorio:runtime" {
5449
5450
  * The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
5450
5451
  *
5451
5452
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5452
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RealOrientation.html Online documentation}
5453
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RealOrientation.html Online documentation}
5453
5454
  */
5454
5455
  export type RealOrientation = float
5455
5456
  /**
@@ -5464,7 +5465,7 @@ declare module "factorio:runtime" {
5464
5465
  * @example
5465
5466
  * -- Shorthand
5466
5467
  * {1.625, 2.375}
5467
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapPosition.html Online documentation}
5468
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapPosition.html Online documentation}
5468
5469
  */
5469
5470
  export interface MapPosition {
5470
5471
  readonly x: double
@@ -5473,13 +5474,13 @@ declare module "factorio:runtime" {
5473
5474
  /**
5474
5475
  * Array form of {@link MapPosition}.
5475
5476
  * @see MapPosition
5476
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapPosition.html Online documentation}
5477
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapPosition.html Online documentation}
5477
5478
  */
5478
5479
  export type MapPositionArray = readonly [double, double]
5479
5480
  /**
5480
5481
  * Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
5481
5482
  * @see ChunkPositionArray
5482
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPosition.html Online documentation}
5483
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPosition.html Online documentation}
5483
5484
  */
5484
5485
  export interface ChunkPosition {
5485
5486
  readonly x: int
@@ -5488,13 +5489,13 @@ declare module "factorio:runtime" {
5488
5489
  /**
5489
5490
  * Array form of {@link ChunkPosition}.
5490
5491
  * @see ChunkPosition
5491
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPosition.html Online documentation}
5492
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPosition.html Online documentation}
5492
5493
  */
5493
5494
  export type ChunkPositionArray = readonly [int, int]
5494
5495
  /**
5495
5496
  * Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
5496
5497
  * @see TilePositionArray
5497
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePosition.html Online documentation}
5498
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePosition.html Online documentation}
5498
5499
  */
5499
5500
  export interface TilePosition {
5500
5501
  readonly x: int
@@ -5503,7 +5504,7 @@ declare module "factorio:runtime" {
5503
5504
  /**
5504
5505
  * Array form of {@link TilePosition}.
5505
5506
  * @see TilePosition
5506
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePosition.html Online documentation}
5507
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePosition.html Online documentation}
5507
5508
  */
5508
5509
  export type TilePositionArray = readonly [int, int]
5509
5510
  /**
@@ -5516,7 +5517,7 @@ declare module "factorio:runtime" {
5516
5517
  * @example
5517
5518
  * -- Shorthand
5518
5519
  * {1, 2}
5519
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPosition.html Online documentation}
5520
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPosition.html Online documentation}
5520
5521
  */
5521
5522
  export interface EquipmentPosition {
5522
5523
  readonly x: int
@@ -5525,13 +5526,13 @@ declare module "factorio:runtime" {
5525
5526
  /**
5526
5527
  * Array form of {@link EquipmentPosition}.
5527
5528
  * @see EquipmentPosition
5528
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPosition.html Online documentation}
5529
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPosition.html Online documentation}
5529
5530
  */
5530
5531
  export type EquipmentPositionArray = readonly [int, int]
5531
5532
  /**
5532
5533
  * Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
5533
5534
  * @see GuiLocationArray
5534
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiLocation.html Online documentation}
5535
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiLocation.html Online documentation}
5535
5536
  */
5536
5537
  export interface GuiLocation {
5537
5538
  readonly x: int
@@ -5540,12 +5541,12 @@ declare module "factorio:runtime" {
5540
5541
  /**
5541
5542
  * Array form of {@link GuiLocation}.
5542
5543
  * @see GuiLocation
5543
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiLocation.html Online documentation}
5544
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiLocation.html Online documentation}
5544
5545
  */
5545
5546
  export type GuiLocationArray = readonly [int, int]
5546
5547
  /**
5547
5548
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5548
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPositionAndArea.html Online documentation}
5549
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPositionAndArea.html Online documentation}
5549
5550
  */
5550
5551
  export interface ChunkPositionAndArea {
5551
5552
  readonly x: int
@@ -5554,7 +5555,7 @@ declare module "factorio:runtime" {
5554
5555
  }
5555
5556
  /**
5556
5557
  * A table used to define a manual shape for a piece of equipment.
5557
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPoint.html Online documentation}
5558
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPoint.html Online documentation}
5558
5559
  */
5559
5560
  export interface EquipmentPoint {
5560
5561
  readonly x: uint
@@ -5590,7 +5591,7 @@ declare module "factorio:runtime" {
5590
5591
  * Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
5591
5592
  * @example
5592
5593
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5593
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tags.html Online documentation}
5594
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tags.html Online documentation}
5594
5595
  */
5595
5596
  export type Tags = Record<string, AnyBasic>
5596
5597
  export interface SurfaceCondition {
@@ -5624,13 +5625,13 @@ declare module "factorio:runtime" {
5624
5625
  * A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
5625
5626
  * @example
5626
5627
  * right = {1.0, 0.0}
5627
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector.html Online documentation}
5628
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector.html Online documentation}
5628
5629
  */
5629
5630
  export type Vector = MapPositionArray
5630
5631
  /**
5631
5632
  * An area defined using the map editor.
5632
5633
  * @see ScriptAreaWrite
5633
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptArea.html Online documentation}
5634
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptArea.html Online documentation}
5634
5635
  */
5635
5636
  export interface ScriptArea {
5636
5637
  readonly area: BoundingBox
@@ -5640,7 +5641,7 @@ declare module "factorio:runtime" {
5640
5641
  }
5641
5642
  /**
5642
5643
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5643
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptArea.html Online documentation}
5644
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptArea.html Online documentation}
5644
5645
  */
5645
5646
  export interface ScriptAreaWrite {
5646
5647
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5651,7 +5652,7 @@ declare module "factorio:runtime" {
5651
5652
  /**
5652
5653
  * A position defined using the map editor.
5653
5654
  * @see ScriptPositionWrite
5654
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptPosition.html Online documentation}
5655
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptPosition.html Online documentation}
5655
5656
  */
5656
5657
  export interface ScriptPosition {
5657
5658
  readonly position: MapPosition
@@ -5661,7 +5662,7 @@ declare module "factorio:runtime" {
5661
5662
  }
5662
5663
  /**
5663
5664
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5664
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptPosition.html Online documentation}
5665
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptPosition.html Online documentation}
5665
5666
  */
5666
5667
  export interface ScriptPositionWrite {
5667
5668
  readonly position: MapPosition | MapPositionArray
@@ -5679,7 +5680,7 @@ declare module "factorio:runtime" {
5679
5680
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5680
5681
  * black = {} -- All channels omitted: black
5681
5682
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5682
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Color.html Online documentation}
5683
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Color.html Online documentation}
5683
5684
  */
5684
5685
  export interface Color {
5685
5686
  readonly r?: float
@@ -5690,13 +5691,13 @@ declare module "factorio:runtime" {
5690
5691
  /**
5691
5692
  * Array form of {@link Color}.
5692
5693
  * @see Color
5693
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Color.html Online documentation}
5694
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Color.html Online documentation}
5694
5695
  */
5695
5696
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5696
5697
  /**
5697
5698
  * Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
5698
5699
  * @see ColorModifierArray
5699
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ColorModifier.html Online documentation}
5700
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ColorModifier.html Online documentation}
5700
5701
  */
5701
5702
  export interface ColorModifier {
5702
5703
  readonly r?: float
@@ -5707,7 +5708,7 @@ declare module "factorio:runtime" {
5707
5708
  /**
5708
5709
  * Array form of {@link ColorModifier}.
5709
5710
  * @see ColorModifier
5710
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ColorModifier.html Online documentation}
5711
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ColorModifier.html Online documentation}
5711
5712
  */
5712
5713
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5713
5714
  export interface CraftingQueueItem {
@@ -5850,7 +5851,7 @@ declare module "factorio:runtime" {
5850
5851
  }
5851
5852
  /**
5852
5853
  * @see AsteroidChunkWrite
5853
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunk.html Online documentation}
5854
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunk.html Online documentation}
5854
5855
  */
5855
5856
  export interface AsteroidChunk {
5856
5857
  /**
@@ -5862,7 +5863,7 @@ declare module "factorio:runtime" {
5862
5863
  }
5863
5864
  /**
5864
5865
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5865
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunk.html Online documentation}
5866
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunk.html Online documentation}
5866
5867
  */
5867
5868
  export interface AsteroidChunkWrite {
5868
5869
  /**
@@ -5884,7 +5885,7 @@ declare module "factorio:runtime" {
5884
5885
  }
5885
5886
  /**
5886
5887
  * Either `icon`, `text`, or both must be provided.
5887
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChartTagSpec.html Online documentation}
5888
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChartTagSpec.html Online documentation}
5888
5889
  */
5889
5890
  export interface ChartTagSpec {
5890
5891
  readonly position: MapPosition | MapPositionArray
@@ -5894,93 +5895,93 @@ declare module "factorio:runtime" {
5894
5895
  }
5895
5896
  /**
5896
5897
  * Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
5897
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.html Online documentation}
5898
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.html Online documentation}
5898
5899
  */
5899
5900
  export interface GameViewSettings {
5900
5901
  /**
5901
5902
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5902
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5903
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5903
5904
  */
5904
5905
  show_controller_gui: boolean
5905
5906
  /**
5906
5907
  * Show the chart in the upper right-hand corner of the screen.
5907
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_minimap.html Online documentation}
5908
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_minimap.html Online documentation}
5908
5909
  */
5909
5910
  show_minimap: boolean
5910
5911
  /**
5911
5912
  * Show research progress and name in the upper right-hand corner of the screen.
5912
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_research_info.html Online documentation}
5913
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_research_info.html Online documentation}
5913
5914
  */
5914
5915
  show_research_info: boolean
5915
5916
  /**
5916
5917
  * Show overlay icons on entities. Also known as "alt-mode".
5917
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_entity_info.html Online documentation}
5918
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_entity_info.html Online documentation}
5918
5919
  */
5919
5920
  show_entity_info: boolean
5920
5921
  /**
5921
5922
  * Show the flashing alert icons next to the player's toolbar.
5922
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5923
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5923
5924
  */
5924
5925
  show_alert_gui: boolean
5925
5926
  /**
5926
5927
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
5927
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5928
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5928
5929
  */
5929
5930
  update_entity_selection: boolean
5930
5931
  /**
5931
5932
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
5932
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5933
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5933
5934
  */
5934
5935
  show_rail_block_visualisation: boolean
5935
5936
  /**
5936
5937
  * Shows or hides the buttons row.
5937
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_side_menu.html Online documentation}
5938
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_side_menu.html Online documentation}
5938
5939
  */
5939
5940
  show_side_menu: boolean
5940
5941
  /**
5941
5942
  * Shows or hides the view options when map is opened.
5942
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5943
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5943
5944
  */
5944
5945
  show_map_view_options: boolean
5945
5946
  /**
5946
5947
  * Shows or hides the tooltip that is displayed when selecting an entity.
5947
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5948
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5948
5949
  */
5949
5950
  show_entity_tooltip: boolean
5950
5951
  /**
5951
5952
  * Shows or hides quickbar of shortcuts.
5952
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_quickbar.html Online documentation}
5953
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_quickbar.html Online documentation}
5953
5954
  */
5954
5955
  show_quickbar: boolean
5955
5956
  /**
5956
5957
  * Shows or hides the shortcut bar.
5957
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5958
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5958
5959
  */
5959
5960
  show_shortcut_bar: boolean
5960
5961
  /**
5961
5962
  * Shows or hides the crafting queue.
5962
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5963
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5963
5964
  */
5964
5965
  show_crafting_queue: boolean
5965
5966
  /**
5966
5967
  * Shows or hides the tool window with the weapons and armor.
5967
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5968
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5968
5969
  */
5969
5970
  show_tool_bar: boolean
5970
5971
  /**
5971
5972
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5972
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5973
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5973
5974
  */
5974
5975
  show_hotkey_suggestions: boolean
5975
5976
  /**
5976
5977
  * Shows or hides the surface list while in Remote View.
5977
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_surface_list.html Online documentation}
5978
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_surface_list.html Online documentation}
5978
5979
  */
5979
5980
  show_surface_list: boolean
5980
5981
  }
5981
5982
  /**
5982
5983
  * The data that can be extracted from a map exchange string, as a plain table.
5983
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapExchangeStringData.html Online documentation}
5984
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapExchangeStringData.html Online documentation}
5984
5985
  */
5985
5986
  export interface MapExchangeStringData {
5986
5987
  readonly map_settings: MapAndDifficultySettings
@@ -5988,7 +5989,7 @@ declare module "factorio:runtime" {
5988
5989
  }
5989
5990
  /**
5990
5991
  * @see BlueprintSignalIconWrite
5991
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSignalIcon.html Online documentation}
5992
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSignalIcon.html Online documentation}
5992
5993
  */
5993
5994
  export interface BlueprintSignalIcon {
5994
5995
  /**
@@ -6002,7 +6003,7 @@ declare module "factorio:runtime" {
6002
6003
  }
6003
6004
  /**
6004
6005
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
6005
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSignalIcon.html Online documentation}
6006
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSignalIcon.html Online documentation}
6006
6007
  */
6007
6008
  export interface BlueprintSignalIconWrite {
6008
6009
  /**
@@ -6031,12 +6032,12 @@ declare module "factorio:runtime" {
6031
6032
  * - `target_entity_number`
6032
6033
  *
6033
6034
  * - `target_wire_connector_id`
6034
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintWire.html Online documentation}
6035
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintWire.html Online documentation}
6035
6036
  */
6036
6037
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6037
6038
  /**
6038
6039
  * @see TileWrite
6039
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tile.html Online documentation}
6040
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tile.html Online documentation}
6040
6041
  */
6041
6042
  export interface Tile {
6042
6043
  /**
@@ -6050,7 +6051,7 @@ declare module "factorio:runtime" {
6050
6051
  }
6051
6052
  /**
6052
6053
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6053
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tile.html Online documentation}
6054
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tile.html Online documentation}
6054
6055
  */
6055
6056
  export interface TileWrite {
6056
6057
  /**
@@ -6105,7 +6106,7 @@ declare module "factorio:runtime" {
6105
6106
  *
6106
6107
  * Other attributes may be specified depending on `type`:
6107
6108
  * - `"fluid"`: {@link FluidIngredient}
6108
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Ingredient.html Online documentation}
6109
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Ingredient.html Online documentation}
6109
6110
  */
6110
6111
  export type Ingredient = FluidIngredient | OtherIngredient
6111
6112
  export interface Loot {
@@ -6271,7 +6272,7 @@ declare module "factorio:runtime" {
6271
6272
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6272
6273
  * - `"nothing"`: {@link NothingTechnologyModifier}
6273
6274
  * - Other types: {@link OtherTechnologyModifier}
6274
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyModifier.html Online documentation}
6275
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyModifier.html Online documentation}
6275
6276
  */
6276
6277
  export type TechnologyModifier =
6277
6278
  | GunSpeedTechnologyModifier
@@ -6283,7 +6284,7 @@ declare module "factorio:runtime" {
6283
6284
  | OtherTechnologyModifier
6284
6285
  /**
6285
6286
  * A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
6286
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/NoiseExpression.html Online documentation}
6287
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/NoiseExpression.html Online documentation}
6287
6288
  */
6288
6289
  export interface NoiseExpression {
6289
6290
  /**
@@ -6336,7 +6337,7 @@ declare module "factorio:runtime" {
6336
6337
  * - `"very-high"`: equivalent to `2`.
6337
6338
  * - `"very-big"`: equivalent to `2`.
6338
6339
  * - `"very-good"`: equivalent to `2`.
6339
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSize.html Online documentation}
6340
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSize.html Online documentation}
6340
6341
  */
6341
6342
  export type MapGenSize =
6342
6343
  | float
@@ -6358,7 +6359,7 @@ declare module "factorio:runtime" {
6358
6359
  | "very-good"
6359
6360
  /**
6360
6361
  * @see AutoplaceControlWrite
6361
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceControl.html Online documentation}
6362
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceControl.html Online documentation}
6362
6363
  */
6363
6364
  export interface AutoplaceControl {
6364
6365
  /**
@@ -6376,7 +6377,7 @@ declare module "factorio:runtime" {
6376
6377
  }
6377
6378
  /**
6378
6379
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6379
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceControl.html Online documentation}
6380
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceControl.html Online documentation}
6380
6381
  */
6381
6382
  export interface AutoplaceControlWrite {
6382
6383
  /**
@@ -6395,10 +6396,10 @@ declare module "factorio:runtime" {
6395
6396
  /**
6396
6397
  * All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
6397
6398
  *
6398
- * {@link https://lua-api.factorio.com/2.0.31/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6399
+ * {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6399
6400
  *
6400
- * {@link https://lua-api.factorio.com/2.0.31/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
6401
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PropertyExpressionNames.html Online documentation}
6401
+ * {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
6402
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html Online documentation}
6402
6403
  */
6403
6404
  export type PropertyExpressionNames = Record<string, string>
6404
6405
  export interface AdvancedMapGenSettings {
@@ -6421,7 +6422,7 @@ declare module "factorio:runtime" {
6421
6422
  }
6422
6423
  /**
6423
6424
  * An actual signal transmitted by the network.
6424
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Signal.html Online documentation}
6425
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Signal.html Online documentation}
6425
6426
  */
6426
6427
  export interface Signal {
6427
6428
  /**
@@ -6435,7 +6436,7 @@ declare module "factorio:runtime" {
6435
6436
  }
6436
6437
  /**
6437
6438
  * @see UpgradeMapperSourceWrite
6438
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UpgradeMapperSource.html Online documentation}
6439
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UpgradeMapperSource.html Online documentation}
6439
6440
  */
6440
6441
  export interface UpgradeMapperSource {
6441
6442
  readonly type: "item" | "entity"
@@ -6454,7 +6455,7 @@ declare module "factorio:runtime" {
6454
6455
  }
6455
6456
  /**
6456
6457
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6457
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UpgradeMapperSource.html Online documentation}
6458
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UpgradeMapperSource.html Online documentation}
6458
6459
  */
6459
6460
  export interface UpgradeMapperSourceWrite {
6460
6461
  readonly type: "item" | "entity"
@@ -6491,7 +6492,7 @@ declare module "factorio:runtime" {
6491
6492
  }
6492
6493
  /**
6493
6494
  * A single filter used by an infinity-filters instance.
6494
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/InfinityInventoryFilter.html Online documentation}
6495
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/InfinityInventoryFilter.html Online documentation}
6495
6496
  */
6496
6497
  export interface InfinityInventoryFilter {
6497
6498
  /**
@@ -6513,7 +6514,7 @@ declare module "factorio:runtime" {
6513
6514
  }
6514
6515
  /**
6515
6516
  * A single filter used by an infinity-pipe type entity.
6516
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/InfinityPipeFilter.html Online documentation}
6517
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/InfinityPipeFilter.html Online documentation}
6517
6518
  */
6518
6519
  export interface InfinityPipeFilter {
6519
6520
  /**
@@ -6567,7 +6568,7 @@ declare module "factorio:runtime" {
6567
6568
  }
6568
6569
  /**
6569
6570
  * The settings used by a heat-interface type entity.
6570
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/HeatSetting.html Online documentation}
6571
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/HeatSetting.html Online documentation}
6571
6572
  */
6572
6573
  export interface HeatSetting {
6573
6574
  /**
@@ -6585,7 +6586,7 @@ declare module "factorio:runtime" {
6585
6586
  }
6586
6587
  /**
6587
6588
  * @see ArithmeticCombinatorParametersWrite
6588
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ArithmeticCombinatorParameters.html Online documentation}
6589
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ArithmeticCombinatorParameters.html Online documentation}
6589
6590
  */
6590
6591
  export interface ArithmeticCombinatorParameters {
6591
6592
  /**
@@ -6615,7 +6616,7 @@ declare module "factorio:runtime" {
6615
6616
  }
6616
6617
  /**
6617
6618
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6618
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ArithmeticCombinatorParameters.html Online documentation}
6619
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ArithmeticCombinatorParameters.html Online documentation}
6619
6620
  */
6620
6621
  export interface ArithmeticCombinatorParametersWrite {
6621
6622
  /**
@@ -6645,7 +6646,7 @@ declare module "factorio:runtime" {
6645
6646
  }
6646
6647
  /**
6647
6648
  * @see SelectorCombinatorParametersWrite
6648
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectorCombinatorParameters.html Online documentation}
6649
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectorCombinatorParameters.html Online documentation}
6649
6650
  */
6650
6651
  export interface SelectorCombinatorParameters {
6651
6652
  /**
@@ -6671,7 +6672,7 @@ declare module "factorio:runtime" {
6671
6672
  }
6672
6673
  /**
6673
6674
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6674
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectorCombinatorParameters.html Online documentation}
6675
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectorCombinatorParameters.html Online documentation}
6675
6676
  */
6676
6677
  export interface SelectorCombinatorParametersWrite {
6677
6678
  /**
@@ -6713,7 +6714,7 @@ declare module "factorio:runtime" {
6713
6714
  }
6714
6715
  /**
6715
6716
  * @see CircuitConditionWrite
6716
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitCondition.html Online documentation}
6717
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitCondition.html Online documentation}
6717
6718
  */
6718
6719
  export interface CircuitCondition {
6719
6720
  /**
@@ -6735,7 +6736,7 @@ declare module "factorio:runtime" {
6735
6736
  }
6736
6737
  /**
6737
6738
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6738
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitCondition.html Online documentation}
6739
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitCondition.html Online documentation}
6739
6740
  */
6740
6741
  export interface CircuitConditionWrite {
6741
6742
  /**
@@ -6757,7 +6758,7 @@ declare module "factorio:runtime" {
6757
6758
  }
6758
6759
  /**
6759
6760
  * @see CircuitConditionDefinitionWrite
6760
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitConditionDefinition.html Online documentation}
6761
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitConditionDefinition.html Online documentation}
6761
6762
  */
6762
6763
  export interface CircuitConditionDefinition {
6763
6764
  /**
@@ -6771,7 +6772,7 @@ declare module "factorio:runtime" {
6771
6772
  }
6772
6773
  /**
6773
6774
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6774
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitConditionDefinition.html Online documentation}
6775
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitConditionDefinition.html Online documentation}
6775
6776
  */
6776
6777
  export interface CircuitConditionDefinitionWrite {
6777
6778
  /**
@@ -7046,7 +7047,7 @@ declare module "factorio:runtime" {
7046
7047
  * - {@link defines.command.stop}: {@link StopCommand}
7047
7048
  * - {@link defines.command.flee}: {@link FleeCommand}
7048
7049
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7049
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Command.html Online documentation}
7050
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Command.html Online documentation}
7050
7051
  */
7051
7052
  export type Command =
7052
7053
  | AttackCommand
@@ -7060,7 +7061,7 @@ declare module "factorio:runtime" {
7060
7061
  | BuildBaseCommand
7061
7062
  /**
7062
7063
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7063
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Command.html Online documentation}
7064
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Command.html Online documentation}
7064
7065
  */
7065
7066
  export type CommandWrite =
7066
7067
  | AttackCommand
@@ -7145,7 +7146,7 @@ declare module "factorio:runtime" {
7145
7146
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7146
7147
  * "iron-plate"
7147
7148
  * {name="iron-plate", count=100}
7148
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SimpleItemStack.html Online documentation}
7149
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SimpleItemStack.html Online documentation}
7149
7150
  */
7150
7151
  export type SimpleItemStack = string | ItemStackDefinition
7151
7152
  /**
@@ -7155,7 +7156,7 @@ declare module "factorio:runtime" {
7155
7156
  * - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
7156
7157
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7157
7158
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7158
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SurfaceIdentification.html Online documentation}
7159
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SurfaceIdentification.html Online documentation}
7159
7160
  */
7160
7161
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7161
7162
  /**
@@ -7165,7 +7166,7 @@ declare module "factorio:runtime" {
7165
7166
  * - PlayerIndex: The player index.
7166
7167
  * - `string`: The player name.
7167
7168
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7168
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlayerIdentification.html Online documentation}
7169
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlayerIdentification.html Online documentation}
7169
7170
  */
7170
7171
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7171
7172
  /**
@@ -7174,7 +7175,7 @@ declare module "factorio:runtime" {
7174
7175
  * ## Union members
7175
7176
  * - {@link SimpleItemStack}
7176
7177
  * - {@link LuaItemStack}
7177
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemStackIdentification.html Online documentation}
7178
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemStackIdentification.html Online documentation}
7178
7179
  */
7179
7180
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7180
7181
  /**
@@ -7184,7 +7185,7 @@ declare module "factorio:runtime" {
7184
7185
  * - `"entity"`: Fires at an entity.
7185
7186
  * - `"position"`: Fires directly at a position.
7186
7187
  * - `"direction"`: Fires in a direction.
7187
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TargetType.html Online documentation}
7188
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TargetType.html Online documentation}
7188
7189
  */
7189
7190
  export type TargetType = "entity" | "position" | "direction"
7190
7191
  export interface BeamTarget {
@@ -7221,8 +7222,8 @@ declare module "factorio:runtime" {
7221
7222
  *
7222
7223
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7223
7224
  *
7224
- * {@link https://lua-api.factorio.com/2.0.31/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7225
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SoundPath.html Online documentation}
7225
+ * {@link https://lua-api.factorio.com/2.0.32/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7226
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SoundPath.html Online documentation}
7226
7227
  */
7227
7228
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7228
7229
  export interface CircularParticleCreationSpecification {
@@ -7354,7 +7355,7 @@ declare module "factorio:runtime" {
7354
7355
  * Other attributes may be specified depending on `type`:
7355
7356
  * - `"projectile"`: {@link ProjectileAttackParameters}
7356
7357
  * - `"stream"`: {@link StreamAttackParameters}
7357
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AttackParameters.html Online documentation}
7358
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AttackParameters.html Online documentation}
7358
7359
  */
7359
7360
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7360
7361
  export interface GunShift4Way {
@@ -7420,7 +7421,7 @@ declare module "factorio:runtime" {
7420
7421
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7421
7422
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7422
7423
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7423
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CapsuleAction.html Online documentation}
7424
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CapsuleAction.html Online documentation}
7424
7425
  */
7425
7426
  export type CapsuleAction =
7426
7427
  | ThrowCapsuleAction
@@ -7460,12 +7461,12 @@ declare module "factorio:runtime" {
7460
7461
  }
7461
7462
  /**
7462
7463
  * Any basic type (string, number, boolean) or table.
7463
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AnyBasic.html Online documentation}
7464
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AnyBasic.html Online documentation}
7464
7465
  */
7465
7466
  export type AnyBasic = string | boolean | number | table
7466
7467
  /**
7467
7468
  * Any basic type (string, number, boolean), table, or LuaObject.
7468
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Any.html Online documentation}
7469
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Any.html Online documentation}
7469
7470
  */
7470
7471
  export type Any = string | boolean | number | table | LuaObject
7471
7472
  export interface ProgrammableSpeakerParameters {
@@ -7475,7 +7476,7 @@ declare module "factorio:runtime" {
7475
7476
  }
7476
7477
  /**
7477
7478
  * @see ProgrammableSpeakerAlertParametersWrite
7478
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7479
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7479
7480
  */
7480
7481
  export interface ProgrammableSpeakerAlertParameters {
7481
7482
  readonly show_alert: boolean
@@ -7485,7 +7486,7 @@ declare module "factorio:runtime" {
7485
7486
  }
7486
7487
  /**
7487
7488
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7488
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7489
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7489
7490
  */
7490
7491
  export interface ProgrammableSpeakerAlertParametersWrite {
7491
7492
  readonly show_alert: boolean
@@ -7517,7 +7518,7 @@ declare module "factorio:runtime" {
7517
7518
  * - `"top-right"`
7518
7519
  * - `"right"`: The same as `"middle-right"`
7519
7520
  * - `"bottom-right"`
7520
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Alignment.html Online documentation}
7521
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Alignment.html Online documentation}
7521
7522
  */
7522
7523
  export type Alignment =
7523
7524
  | "top-left"
@@ -7550,8 +7551,8 @@ declare module "factorio:runtime" {
7550
7551
  _customEventIdBrand: any
7551
7552
  }
7552
7553
  /**
7553
- * Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.31/events.html the list of Factorio events} for more information on these.
7554
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventData.html Online documentation}
7554
+ * Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.32/events.html the list of Factorio events} for more information on these.
7555
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventData.html Online documentation}
7555
7556
  */
7556
7557
  export interface EventData {
7557
7558
  /**
@@ -7660,7 +7661,7 @@ declare module "factorio:runtime" {
7660
7661
  * - `"button-7"`
7661
7662
  * - `"button-8"`
7662
7663
  * - `"button-9"`
7663
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MouseButtonFlags.html Online documentation}
7664
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MouseButtonFlags.html Online documentation}
7664
7665
  */
7665
7666
  export interface MouseButtonFlags {
7666
7667
  readonly left?: true
@@ -7683,7 +7684,7 @@ declare module "factorio:runtime" {
7683
7684
  * - `"not-friend"`: Forces which are not friends pass.
7684
7685
  * - `"same"`: The same force pass.
7685
7686
  * - `"not-same"`: The non-same forces pass.
7686
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceCondition.html Online documentation}
7687
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceCondition.html Online documentation}
7687
7688
  */
7688
7689
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7689
7690
  export interface ItemStackLocation {
@@ -7721,7 +7722,7 @@ declare module "factorio:runtime" {
7721
7722
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7722
7723
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7723
7724
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7724
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiElementType.html Online documentation}
7725
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiElementType.html Online documentation}
7725
7726
  */
7726
7727
  export type GuiElementType =
7727
7728
  | "button"
@@ -7761,7 +7762,7 @@ declare module "factorio:runtime" {
7761
7762
  * - `"position"`
7762
7763
  * - `"crafting_queue"`
7763
7764
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7764
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiArrowType.html Online documentation}
7765
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiArrowType.html Online documentation}
7765
7766
  */
7766
7767
  export type GuiArrowType =
7767
7768
  | "nowhere"
@@ -7778,7 +7779,7 @@ declare module "factorio:runtime" {
7778
7779
  * ## Union members
7779
7780
  * - `"horizontal"`
7780
7781
  * - `"vertical"`
7781
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiDirection.html Online documentation}
7782
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiDirection.html Online documentation}
7782
7783
  */
7783
7784
  export type GuiDirection = "horizontal" | "vertical"
7784
7785
  /**
@@ -7790,7 +7791,7 @@ declare module "factorio:runtime" {
7790
7791
  * - `"always"`
7791
7792
  * - `"auto"`
7792
7793
  * - `"auto-and-reserve-space"`
7793
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScrollPolicy.html Online documentation}
7794
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScrollPolicy.html Online documentation}
7794
7795
  */
7795
7796
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7796
7797
  export interface RailLocation {
@@ -7807,71 +7808,71 @@ declare module "factorio:runtime" {
7807
7808
  }
7808
7809
  /**
7809
7810
  * A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
7810
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/float.html Online documentation}
7811
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/float.html Online documentation}
7811
7812
  */
7812
7813
  export type float = number
7813
7814
  /**
7814
7815
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7815
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/double.html Online documentation}
7816
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/double.html Online documentation}
7816
7817
  */
7817
7818
  export type double = number
7818
7819
  /**
7819
7820
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7820
7821
  *
7821
7822
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7822
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/int.html Online documentation}
7823
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/int.html Online documentation}
7823
7824
  */
7824
7825
  export type int = number
7825
7826
  /**
7826
7827
  * 8-bit signed integer. Possible values are `-128` to `127`.
7827
7828
  *
7828
7829
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7829
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/int8.html Online documentation}
7830
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/int8.html Online documentation}
7830
7831
  */
7831
7832
  export type int8 = number
7832
7833
  /**
7833
7834
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7834
7835
  *
7835
7836
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7836
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint.html Online documentation}
7837
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint.html Online documentation}
7837
7838
  */
7838
7839
  export type uint = number
7839
7840
  /**
7840
7841
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7841
7842
  *
7842
7843
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7843
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint8.html Online documentation}
7844
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint8.html Online documentation}
7844
7845
  */
7845
7846
  export type uint8 = number
7846
7847
  /**
7847
7848
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7848
7849
  *
7849
7850
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7850
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint16.html Online documentation}
7851
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint16.html Online documentation}
7851
7852
  */
7852
7853
  export type uint16 = number
7853
7854
  /**
7854
7855
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7855
7856
  *
7856
7857
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7857
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint64.html Online documentation}
7858
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint64.html Online documentation}
7858
7859
  */
7859
7860
  export type uint64 = number
7860
7861
  /**
7861
7862
  * Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
7862
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/nil.html Online documentation}
7863
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/nil.html Online documentation}
7863
7864
  */
7864
7865
  export type nil = undefined
7865
7866
  /**
7866
7867
  * Tables are enclosed in curly brackets, like this `{}`.
7867
7868
  *
7868
7869
  * Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
7869
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/table.html Online documentation}
7870
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/table.html Online documentation}
7870
7871
  */
7871
7872
  export type table = object
7872
7873
  /**
7873
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.31/classes.html Classes} page.
7874
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaObject.html Online documentation}
7874
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.32/classes.html Classes} page.
7875
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaObject.html Online documentation}
7875
7876
  */
7876
7877
  export interface LuaObject {
7877
7878
  readonly object_name: string
@@ -7930,7 +7931,7 @@ declare module "factorio:runtime" {
7930
7931
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
7931
7932
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
7932
7933
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
7933
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModSettingPrototypeFilter.html Online documentation}
7934
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModSettingPrototypeFilter.html Online documentation}
7934
7935
  */
7935
7936
  export type ModSettingPrototypeFilter =
7936
7937
  | TypeModSettingPrototypeFilter
@@ -8075,7 +8076,7 @@ declare module "factorio:runtime" {
8075
8076
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8076
8077
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8077
8078
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8078
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePrototypeFilter.html Online documentation}
8079
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePrototypeFilter.html Online documentation}
8079
8080
  */
8080
8081
  export type TilePrototypeFilter =
8081
8082
  | CollisionMaskTilePrototypeFilter
@@ -8086,7 +8087,7 @@ declare module "factorio:runtime" {
8086
8087
  | OtherTilePrototypeFilter
8087
8088
  /**
8088
8089
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8089
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePrototypeFilter.html Online documentation}
8090
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePrototypeFilter.html Online documentation}
8090
8091
  */
8091
8092
  export type TilePrototypeFilterWrite =
8092
8093
  | CollisionMaskTilePrototypeFilter
@@ -8137,7 +8138,7 @@ declare module "factorio:runtime" {
8137
8138
  *
8138
8139
  * Other attributes may be specified depending on `filter`:
8139
8140
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8140
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DecorativePrototypeFilter.html Online documentation}
8141
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DecorativePrototypeFilter.html Online documentation}
8141
8142
  */
8142
8143
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8143
8144
  /**
@@ -8391,7 +8392,7 @@ declare module "factorio:runtime" {
8391
8392
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8392
8393
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8393
8394
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8394
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipePrototypeFilter.html Online documentation}
8395
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipePrototypeFilter.html Online documentation}
8395
8396
  */
8396
8397
  export type RecipePrototypeFilter =
8397
8398
  | HasIngredientItemRecipePrototypeFilter
@@ -8407,7 +8408,7 @@ declare module "factorio:runtime" {
8407
8408
  | OtherRecipePrototypeFilter
8408
8409
  /**
8409
8410
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8410
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipePrototypeFilter.html Online documentation}
8411
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipePrototypeFilter.html Online documentation}
8411
8412
  */
8412
8413
  export type RecipePrototypeFilterWrite =
8413
8414
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8459,7 +8460,7 @@ declare module "factorio:runtime" {
8459
8460
  *
8460
8461
  * Other attributes may be specified depending on `filter`:
8461
8462
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8462
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AchievementPrototypeFilter.html Online documentation}
8463
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AchievementPrototypeFilter.html Online documentation}
8463
8464
  */
8464
8465
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8465
8466
  /**
@@ -8582,7 +8583,7 @@ declare module "factorio:runtime" {
8582
8583
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8583
8584
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8584
8585
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8585
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyPrototypeFilter.html Online documentation}
8586
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyPrototypeFilter.html Online documentation}
8586
8587
  */
8587
8588
  export type TechnologyPrototypeFilter =
8588
8589
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8593,7 +8594,7 @@ declare module "factorio:runtime" {
8593
8594
  | OtherTechnologyPrototypeFilter
8594
8595
  /**
8595
8596
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8596
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyPrototypeFilter.html Online documentation}
8597
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyPrototypeFilter.html Online documentation}
8597
8598
  */
8598
8599
  export type TechnologyPrototypeFilterWrite =
8599
8600
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8910,7 +8911,7 @@ declare module "factorio:runtime" {
8910
8911
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8911
8912
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8912
8913
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8913
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFilter.html Online documentation}
8914
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFilter.html Online documentation}
8914
8915
  */
8915
8916
  export type ItemPrototypeFilter =
8916
8917
  | PlaceResultItemPrototypeFilter
@@ -8930,7 +8931,7 @@ declare module "factorio:runtime" {
8930
8931
  | OtherItemPrototypeFilter
8931
8932
  /**
8932
8933
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8933
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFilter.html Online documentation}
8934
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFilter.html Online documentation}
8934
8935
  */
8935
8936
  export type ItemPrototypeFilterWrite =
8936
8937
  | PlaceResultItemPrototypeFilterWrite
@@ -8986,7 +8987,7 @@ declare module "factorio:runtime" {
8986
8987
  *
8987
8988
  * Other attributes may be specified depending on `filter`:
8988
8989
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
8989
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPrototypeFilter.html Online documentation}
8990
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPrototypeFilter.html Online documentation}
8990
8991
  */
8991
8992
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
8992
8993
  /**
@@ -9217,7 +9218,7 @@ declare module "factorio:runtime" {
9217
9218
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9218
9219
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9219
9220
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9220
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFilter.html Online documentation}
9221
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFilter.html Online documentation}
9221
9222
  */
9222
9223
  export type EntityPrototypeFilter =
9223
9224
  | NameEntityPrototypeFilter
@@ -9231,7 +9232,7 @@ declare module "factorio:runtime" {
9231
9232
  | OtherEntityPrototypeFilter
9232
9233
  /**
9233
9234
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9234
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFilter.html Online documentation}
9235
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFilter.html Online documentation}
9235
9236
  */
9236
9237
  export type EntityPrototypeFilterWrite =
9237
9238
  | NameEntityPrototypeFilter
@@ -9301,7 +9302,7 @@ declare module "factorio:runtime" {
9301
9302
  * Other attributes may be specified depending on `filter`:
9302
9303
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9303
9304
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9304
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9305
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9305
9306
  */
9306
9307
  export type SpaceLocationPrototypeFilter =
9307
9308
  | TypeSpaceLocationPrototypeFilter
@@ -9309,7 +9310,7 @@ declare module "factorio:runtime" {
9309
9310
  | OtherSpaceLocationPrototypeFilter
9310
9311
  /**
9311
9312
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9312
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9313
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9313
9314
  */
9314
9315
  export type SpaceLocationPrototypeFilterWrite =
9315
9316
  | TypeSpaceLocationPrototypeFilter
@@ -9497,7 +9498,7 @@ declare module "factorio:runtime" {
9497
9498
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9498
9499
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9499
9500
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9500
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidPrototypeFilter.html Online documentation}
9501
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidPrototypeFilter.html Online documentation}
9501
9502
  */
9502
9503
  export type FluidPrototypeFilter =
9503
9504
  | NameFluidPrototypeFilter
@@ -9511,7 +9512,7 @@ declare module "factorio:runtime" {
9511
9512
  | OtherFluidPrototypeFilter
9512
9513
  /**
9513
9514
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9514
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidPrototypeFilter.html Online documentation}
9515
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidPrototypeFilter.html Online documentation}
9515
9516
  */
9516
9517
  export type FluidPrototypeFilterWrite =
9517
9518
  | NameFluidPrototypeFilter
@@ -9620,7 +9621,7 @@ declare module "factorio:runtime" {
9620
9621
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9621
9622
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9622
9623
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9623
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9624
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9624
9625
  */
9625
9626
  export type LuaPrePlatformMinedEntityEventFilter =
9626
9627
  | TypePrePlatformMinedEntityEventFilter
@@ -9725,7 +9726,7 @@ declare module "factorio:runtime" {
9725
9726
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9726
9727
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9727
9728
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9728
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9729
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9729
9730
  */
9730
9731
  export type LuaRobotMinedEntityEventFilter =
9731
9732
  | TypeRobotMinedEntityEventFilter
@@ -9830,7 +9831,7 @@ declare module "factorio:runtime" {
9830
9831
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9831
9832
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9832
9833
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9833
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9834
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9834
9835
  */
9835
9836
  export type LuaEntityMarkedForUpgradeEventFilter =
9836
9837
  | TypeEntityMarkedForUpgradeEventFilter
@@ -9935,7 +9936,7 @@ declare module "factorio:runtime" {
9935
9936
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
9936
9937
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
9937
9938
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
9938
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9939
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9939
9940
  */
9940
9941
  export type LuaPreGhostUpgradedEventFilter =
9941
9942
  | TypePreGhostUpgradedEventFilter
@@ -10040,7 +10041,7 @@ declare module "factorio:runtime" {
10040
10041
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10041
10042
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10042
10043
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10043
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10044
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10044
10045
  */
10045
10046
  export type LuaPlatformMinedEntityEventFilter =
10046
10047
  | TypePlatformMinedEntityEventFilter
@@ -10145,7 +10146,7 @@ declare module "factorio:runtime" {
10145
10146
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10146
10147
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10147
10148
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10148
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10149
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10149
10150
  */
10150
10151
  export type LuaScriptRaisedDestroyEventFilter =
10151
10152
  | TypeScriptRaisedDestroyEventFilter
@@ -10262,7 +10263,7 @@ declare module "factorio:runtime" {
10262
10263
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10263
10264
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10264
10265
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10265
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10266
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10266
10267
  */
10267
10268
  export type LuaPlayerBuiltEntityEventFilter =
10268
10269
  | TypePlayerBuiltEntityEventFilter
@@ -10380,7 +10381,7 @@ declare module "factorio:runtime" {
10380
10381
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10381
10382
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10382
10383
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10383
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10384
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10384
10385
  */
10385
10386
  export type LuaPlatformBuiltEntityEventFilter =
10386
10387
  | TypePlatformBuiltEntityEventFilter
@@ -10486,7 +10487,7 @@ declare module "factorio:runtime" {
10486
10487
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10487
10488
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10488
10489
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10489
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10490
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10490
10491
  */
10491
10492
  export type LuaPreGhostDeconstructedEventFilter =
10492
10493
  | TypePreGhostDeconstructedEventFilter
@@ -10591,7 +10592,7 @@ declare module "factorio:runtime" {
10591
10592
  * - `"name"`: {@link NameEntityClonedEventFilter}
10592
10593
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10593
10594
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10594
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityClonedEventFilter.html Online documentation}
10595
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityClonedEventFilter.html Online documentation}
10595
10596
  */
10596
10597
  export type LuaEntityClonedEventFilter =
10597
10598
  | TypeEntityClonedEventFilter
@@ -10696,7 +10697,7 @@ declare module "factorio:runtime" {
10696
10697
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10697
10698
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10698
10699
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10699
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10700
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10700
10701
  */
10701
10702
  export type LuaScriptRaisedTeleportedEventFilter =
10702
10703
  | TypeScriptRaisedTeleportedEventFilter
@@ -10803,7 +10804,7 @@ declare module "factorio:runtime" {
10803
10804
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10804
10805
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10805
10806
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10806
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10807
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10807
10808
  */
10808
10809
  export type LuaEntityDeconstructionCancelledEventFilter =
10809
10810
  | TypeEntityDeconstructionCancelledEventFilter
@@ -10920,7 +10921,7 @@ declare module "factorio:runtime" {
10920
10921
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
10921
10922
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
10922
10923
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
10923
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10924
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10924
10925
  */
10925
10926
  export type LuaRobotBuiltEntityEventFilter =
10926
10927
  | TypeRobotBuiltEntityEventFilter
@@ -11026,7 +11027,7 @@ declare module "factorio:runtime" {
11026
11027
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11027
11028
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11028
11029
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11029
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11030
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11030
11031
  */
11031
11032
  export type LuaScriptRaisedBuiltEventFilter =
11032
11033
  | TypeScriptRaisedBuiltEventFilter
@@ -11131,7 +11132,7 @@ declare module "factorio:runtime" {
11131
11132
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11132
11133
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11133
11134
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11134
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11135
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11135
11136
  */
11136
11137
  export type LuaPrePlayerMinedEntityEventFilter =
11137
11138
  | TypePrePlayerMinedEntityEventFilter
@@ -11236,7 +11237,7 @@ declare module "factorio:runtime" {
11236
11237
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11237
11238
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11238
11239
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11239
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11240
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11240
11241
  */
11241
11242
  export type LuaPlayerRepairedEntityEventFilter =
11242
11243
  | TypePlayerRepairedEntityEventFilter
@@ -11341,7 +11342,7 @@ declare module "factorio:runtime" {
11341
11342
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11342
11343
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11343
11344
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11344
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11345
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11345
11346
  */
11346
11347
  export type LuaUpgradeCancelledEventFilter =
11347
11348
  | TypeUpgradeCancelledEventFilter
@@ -11446,7 +11447,7 @@ declare module "factorio:runtime" {
11446
11447
  * - `"name"`: {@link NameSectorScannedEventFilter}
11447
11448
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11448
11449
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11449
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaSectorScannedEventFilter.html Online documentation}
11450
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaSectorScannedEventFilter.html Online documentation}
11450
11451
  */
11451
11452
  export type LuaSectorScannedEventFilter =
11452
11453
  | TypeSectorScannedEventFilter
@@ -11492,7 +11493,7 @@ declare module "factorio:runtime" {
11492
11493
  *
11493
11494
  * Other attributes may be specified depending on `filter`:
11494
11495
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11495
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11496
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11496
11497
  */
11497
11498
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11498
11499
  /**
@@ -11594,7 +11595,7 @@ declare module "factorio:runtime" {
11594
11595
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11595
11596
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11596
11597
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11597
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11598
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11598
11599
  */
11599
11600
  export type LuaEntityMarkedForDeconstructionEventFilter =
11600
11601
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11699,7 +11700,7 @@ declare module "factorio:runtime" {
11699
11700
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11700
11701
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11701
11702
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11702
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11703
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11703
11704
  */
11704
11705
  export type LuaPlayerMinedEntityEventFilter =
11705
11706
  | TypePlayerMinedEntityEventFilter
@@ -11879,7 +11880,7 @@ declare module "factorio:runtime" {
11879
11880
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11880
11881
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11881
11882
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11882
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11883
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11883
11884
  */
11884
11885
  export type LuaEntityDamagedEventFilter =
11885
11886
  | TypeEntityDamagedEventFilter
@@ -11893,7 +11894,7 @@ declare module "factorio:runtime" {
11893
11894
  | OtherEntityDamagedEventFilter
11894
11895
  /**
11895
11896
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11896
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11897
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11897
11898
  */
11898
11899
  export type LuaEntityDamagedEventFilterWrite =
11899
11900
  | TypeEntityDamagedEventFilter
@@ -12002,7 +12003,7 @@ declare module "factorio:runtime" {
12002
12003
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
12003
12004
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
12004
12005
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
12005
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12006
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12006
12007
  */
12007
12008
  export type LuaScriptRaisedReviveEventFilter =
12008
12009
  | TypeScriptRaisedReviveEventFilter
@@ -12107,7 +12108,7 @@ declare module "factorio:runtime" {
12107
12108
  * - `"name"`: {@link NameEntityDiedEventFilter}
12108
12109
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12109
12110
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12110
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDiedEventFilter.html Online documentation}
12111
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDiedEventFilter.html Online documentation}
12111
12112
  */
12112
12113
  export type LuaEntityDiedEventFilter =
12113
12114
  | TypeEntityDiedEventFilter
@@ -12212,7 +12213,7 @@ declare module "factorio:runtime" {
12212
12213
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12213
12214
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12214
12215
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12215
- * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12216
+ * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12216
12217
  */
12217
12218
  export type LuaPreRobotMinedEntityEventFilter =
12218
12219
  | TypePreRobotMinedEntityEventFilter