typed-factorio 3.5.0 → 3.6.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,12 +12,12 @@ 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.21/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.22/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
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ModuleEffectValue.html Online documentation}
20
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ModuleEffectValue.html Online documentation}
21
21
  */
22
22
  export type ModuleEffectValue = float
23
23
  /**
@@ -27,7 +27,7 @@ declare module "factorio:runtime" {
27
27
  * speed=-0.15,
28
28
  * productivity=0.06,
29
29
  * pollution=0.075}
30
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ModuleEffects.html Online documentation}
30
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ModuleEffects.html Online documentation}
31
31
  */
32
32
  export interface ModuleEffects {
33
33
  readonly consumption?: ModuleEffectValue
@@ -51,7 +51,7 @@ declare module "factorio:runtime" {
51
51
  * - `"<="`: "lesser than or equal to"
52
52
  * - `"≠"`: "not equal to"
53
53
  * - `"!="`: "not equal to"
54
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ComparatorString.html Online documentation}
54
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ComparatorString.html Online documentation}
55
55
  */
56
56
  export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
57
57
  export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
@@ -82,15 +82,26 @@ declare module "factorio:runtime" {
82
82
  *
83
83
  * The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
84
84
  *
85
- * {@link https://lua-api.factorio.com/2.0.21/concepts/SpritePath.html > The supported types are:}
86
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SpritePath.html Online documentation}
85
+ * {@link https://lua-api.factorio.com/2.0.22/concepts/SpritePath.html > The supported types are:}
86
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SpritePath.html Online documentation}
87
87
  */
88
88
  export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
89
+ /**
90
+ * Identifies a statistics prototype, depending on the statistics type.
91
+ *
92
+ * ## Union members
93
+ * - {@link ItemWithQualityID}: Used with item production statistics.
94
+ * - {@link FluidID}: Used with fluid production statistics.
95
+ * - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
96
+ * - {@link EntityID}: Used with pollution statistics.
97
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/FlowStatisticsID.html Online documentation}
98
+ */
99
+ export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
89
100
  /**
90
101
  * @example
91
102
  * -- Most common collision mask of buildings:
92
103
  * collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
93
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CollisionMask.html Online documentation}
104
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CollisionMask.html Online documentation}
94
105
  */
95
106
  export interface CollisionMask {
96
107
  /**
@@ -218,7 +229,7 @@ declare module "factorio:runtime" {
218
229
  * - `"check-box"`
219
230
  * - `"switch"`
220
231
  * - `"label"`
221
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SimulationWidgetType.html Online documentation}
232
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SimulationWidgetType.html Online documentation}
222
233
  */
223
234
  export type SimulationWidgetType =
224
235
  | "signal-id"
@@ -340,7 +351,7 @@ declare module "factorio:runtime" {
340
351
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
341
352
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
342
353
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
343
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TrainPathRequestType.html Online documentation}
354
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TrainPathRequestType.html Online documentation}
344
355
  */
345
356
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
346
357
  /**
@@ -349,7 +360,7 @@ declare module "factorio:runtime" {
349
360
  * - {@link RailEndGoal}
350
361
  * - {@link LuaRailEnd}
351
362
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
352
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TrainPathFinderGoal.html Online documentation}
363
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TrainPathFinderGoal.html Online documentation}
353
364
  */
354
365
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
355
366
  export interface TrainStopGoal {
@@ -454,7 +465,7 @@ declare module "factorio:runtime" {
454
465
  }
455
466
  /**
456
467
  * A single pipe connection for a given fluidbox.
457
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PipeConnection.html Online documentation}
468
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PipeConnection.html Online documentation}
458
469
  */
459
470
  export interface PipeConnection {
460
471
  readonly flow_direction: "input" | "output" | "input-output"
@@ -517,7 +528,7 @@ declare module "factorio:runtime" {
517
528
  * - {@link LuaEntityDiedEventFilter}
518
529
  * - {@link LuaPreRobotMinedEntityEventFilter}
519
530
  * @see EventFilterWrite
520
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EventFilter.html Online documentation}
531
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EventFilter.html Online documentation}
521
532
  */
522
533
  export type EventFilter =
523
534
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -547,7 +558,7 @@ declare module "factorio:runtime" {
547
558
  | LuaPreRobotMinedEntityEventFilter[]
548
559
  /**
549
560
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
550
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EventFilter.html Online documentation}
561
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EventFilter.html Online documentation}
551
562
  */
552
563
  export type EventFilterWrite =
553
564
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -597,7 +608,7 @@ declare module "factorio:runtime" {
597
608
  * - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
598
609
  * - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
599
610
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
600
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RegistrationTarget.html Online documentation}
611
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RegistrationTarget.html Online documentation}
601
612
  */
602
613
  export type RegistrationTarget =
603
614
  | LuaEntity
@@ -798,7 +809,7 @@ declare module "factorio:runtime" {
798
809
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
799
810
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
800
811
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
801
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/UndoRedoAction.html Online documentation}
812
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/UndoRedoAction.html Online documentation}
802
813
  */
803
814
  export type UndoRedoAction =
804
815
  | BuiltEntityUndoRedoAction
@@ -830,7 +841,7 @@ declare module "factorio:runtime" {
830
841
  * - `"weapon"`
831
842
  * - `"explosion"`
832
843
  * - `"enemy"`
833
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SoundType.html Online documentation}
844
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SoundType.html Online documentation}
834
845
  */
835
846
  export type SoundType =
836
847
  | "game-effect"
@@ -913,7 +924,7 @@ declare module "factorio:runtime" {
913
924
  * - `"controllable-remove"`
914
925
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
915
926
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
916
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SelectionModeFlags.html Online documentation}
927
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SelectionModeFlags.html Online documentation}
917
928
  */
918
929
  export interface SelectionModeFlags {
919
930
  /**
@@ -1032,7 +1043,7 @@ declare module "factorio:runtime" {
1032
1043
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1033
1044
  *
1034
1045
  * By default, none of these flags are set.
1035
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemPrototypeFlags.html Online documentation}
1046
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemPrototypeFlags.html Online documentation}
1036
1047
  */
1037
1048
  export type ItemPrototypeFlags = {
1038
1049
  readonly [T in ItemPrototypeFlag]?: true
@@ -1053,7 +1064,7 @@ declare module "factorio:runtime" {
1053
1064
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1054
1065
  * - `"spoil-result"`
1055
1066
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1056
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemPrototypeFlag.html Online documentation}
1067
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemPrototypeFlag.html Online documentation}
1057
1068
  */
1058
1069
  export type ItemPrototypeFlag =
1059
1070
  | "draw-logistic-overlay"
@@ -1073,7 +1084,7 @@ declare module "factorio:runtime" {
1073
1084
  * - `"none"`
1074
1085
  * - `"whitelist"`
1075
1086
  * - `"blacklist"`
1076
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PrototypeFilterMode.html Online documentation}
1087
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PrototypeFilterMode.html Online documentation}
1077
1088
  */
1078
1089
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1079
1090
  export interface PipeConnectionDefinition {
@@ -1097,7 +1108,7 @@ declare module "factorio:runtime" {
1097
1108
  * The name of a {@link LuaCollisionLayerPrototype}.
1098
1109
  * @example
1099
1110
  * "is_lower_object"
1100
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CollisionLayerID.html Online documentation}
1111
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CollisionLayerID.html Online documentation}
1101
1112
  */
1102
1113
  export type CollisionLayerID = string
1103
1114
  export interface ItemIDFilter {
@@ -1147,7 +1158,7 @@ declare module "factorio:runtime" {
1147
1158
  * - {@link SpaceLocationPrototypeFilter}
1148
1159
  * - {@link FluidPrototypeFilter}
1149
1160
  * @see PrototypeFilterWrite
1150
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PrototypeFilter.html Online documentation}
1161
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PrototypeFilter.html Online documentation}
1151
1162
  */
1152
1163
  export type PrototypeFilter =
1153
1164
  | ModSettingPrototypeFilter[]
@@ -1164,7 +1175,7 @@ declare module "factorio:runtime" {
1164
1175
  | FluidPrototypeFilter[]
1165
1176
  /**
1166
1177
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1167
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PrototypeFilter.html Online documentation}
1178
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PrototypeFilter.html Online documentation}
1168
1179
  */
1169
1180
  export type PrototypeFilterWrite =
1170
1181
  | readonly ModSettingPrototypeFilter[]
@@ -1181,7 +1192,7 @@ declare module "factorio:runtime" {
1181
1192
  | readonly FluidPrototypeFilterWrite[]
1182
1193
  /**
1183
1194
  * @see DisplayPanelMessageDefinitionWrite
1184
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DisplayPanelMessageDefinition.html Online documentation}
1195
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DisplayPanelMessageDefinition.html Online documentation}
1185
1196
  */
1186
1197
  export interface DisplayPanelMessageDefinition {
1187
1198
  /**
@@ -1199,7 +1210,7 @@ declare module "factorio:runtime" {
1199
1210
  }
1200
1211
  /**
1201
1212
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1202
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DisplayPanelMessageDefinition.html Online documentation}
1213
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DisplayPanelMessageDefinition.html Online documentation}
1203
1214
  */
1204
1215
  export interface DisplayPanelMessageDefinitionWrite {
1205
1216
  /**
@@ -1225,7 +1236,7 @@ declare module "factorio:runtime" {
1225
1236
  * - `"space-location"`
1226
1237
  * - `"asteroid-chunk"`
1227
1238
  * - `"quality"`
1228
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SignalIDType.html Online documentation}
1239
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SignalIDType.html Online documentation}
1229
1240
  */
1230
1241
  export type SignalIDType =
1231
1242
  | "item"
@@ -1426,7 +1437,7 @@ declare module "factorio:runtime" {
1426
1437
  * - `"play-next-track"`
1427
1438
  * - `"play-previous-track"`
1428
1439
  * - `"pause-resume-music"`
1429
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LinkedGameControl.html Online documentation}
1440
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LinkedGameControl.html Online documentation}
1430
1441
  */
1431
1442
  export type LinkedGameControl =
1432
1443
  | "move-up"
@@ -1677,7 +1688,7 @@ declare module "factorio:runtime" {
1677
1688
  * - `"create-ghost-on-entity-death"`
1678
1689
  * - `"belt-stack-size-bonus"`
1679
1690
  * - `"vehicle-logistics"`
1680
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ModifierType.html Online documentation}
1691
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ModifierType.html Online documentation}
1681
1692
  */
1682
1693
  export type ModifierType =
1683
1694
  | "inserter-stack-size-bonus"
@@ -1796,7 +1807,7 @@ declare module "factorio:runtime" {
1796
1807
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1797
1808
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1798
1809
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1799
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ResearchTrigger.html Online documentation}
1810
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ResearchTrigger.html Online documentation}
1800
1811
  */
1801
1812
  export type ResearchTrigger =
1802
1813
  | CraftItemResearchTrigger
@@ -1810,7 +1821,7 @@ declare module "factorio:runtime" {
1810
1821
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1811
1822
  *
1812
1823
  * By default, none of these flags are set.
1813
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityPrototypeFlags.html Online documentation}
1824
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityPrototypeFlags.html Online documentation}
1814
1825
  */
1815
1826
  export type EntityPrototypeFlags = {
1816
1827
  readonly [T in EntityPrototypeFlag]?: true
@@ -1845,7 +1856,7 @@ declare module "factorio:runtime" {
1845
1856
  * - `"building-direction-16-way"`
1846
1857
  * - `"snap-to-rail-support-spot"`
1847
1858
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1848
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityPrototypeFlag.html Online documentation}
1859
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityPrototypeFlag.html Online documentation}
1849
1860
  */
1850
1861
  export type EntityPrototypeFlag =
1851
1862
  | "not-rotatable"
@@ -1915,7 +1926,7 @@ declare module "factorio:runtime" {
1915
1926
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1916
1927
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1917
1928
  * - `"global"`: The sound can be heard everywhere.
1918
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1929
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1919
1930
  */
1920
1931
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1921
1932
  /**
@@ -1940,7 +1951,7 @@ declare module "factorio:runtime" {
1940
1951
  * - `"none-to-south"`
1941
1952
  * - `"south-to-none"`
1942
1953
  * - `"none-to-north"`
1943
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CliffOrientation.html Online documentation}
1954
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CliffOrientation.html Online documentation}
1944
1955
  */
1945
1956
  export type CliffOrientation =
1946
1957
  | "west-to-east"
@@ -1966,7 +1977,7 @@ declare module "factorio:runtime" {
1966
1977
  /**
1967
1978
  * Defines an item type that a blueprint entity will request.
1968
1979
  * @see BlueprintInsertPlanWrite
1969
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintInsertPlan.html Online documentation}
1980
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintInsertPlan.html Online documentation}
1970
1981
  */
1971
1982
  export interface BlueprintInsertPlan {
1972
1983
  /**
@@ -1980,7 +1991,7 @@ declare module "factorio:runtime" {
1980
1991
  }
1981
1992
  /**
1982
1993
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
1983
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintInsertPlan.html Online documentation}
1994
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintInsertPlan.html Online documentation}
1984
1995
  */
1985
1996
  export interface BlueprintInsertPlanWrite {
1986
1997
  /**
@@ -2008,7 +2019,7 @@ declare module "factorio:runtime" {
2008
2019
  }
2009
2020
  /**
2010
2021
  * A single offer on a market entity.
2011
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Offer.html Online documentation}
2022
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Offer.html Online documentation}
2012
2023
  */
2013
2024
  export interface Offer {
2014
2025
  /**
@@ -2023,7 +2034,7 @@ declare module "factorio:runtime" {
2023
2034
  /**
2024
2035
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2025
2036
  * @see ItemFilterWrite
2026
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemFilter.html Online documentation}
2037
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemFilter.html Online documentation}
2027
2038
  */
2028
2039
  export type ItemFilter =
2029
2040
  | {
@@ -2043,7 +2054,7 @@ declare module "factorio:runtime" {
2043
2054
  | string
2044
2055
  /**
2045
2056
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2046
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemFilter.html Online documentation}
2057
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemFilter.html Online documentation}
2047
2058
  */
2048
2059
  export type ItemFilterWrite =
2049
2060
  | {
@@ -2063,7 +2074,7 @@ declare module "factorio:runtime" {
2063
2074
  | string
2064
2075
  /**
2065
2076
  * @see ScheduleRecordWrite
2066
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScheduleRecord.html Online documentation}
2077
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScheduleRecord.html Online documentation}
2067
2078
  */
2068
2079
  export interface ScheduleRecord {
2069
2080
  /**
@@ -2086,7 +2097,7 @@ declare module "factorio:runtime" {
2086
2097
  }
2087
2098
  /**
2088
2099
  * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
2089
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScheduleRecord.html Online documentation}
2100
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScheduleRecord.html Online documentation}
2090
2101
  */
2091
2102
  export interface ScheduleRecordWrite {
2092
2103
  /**
@@ -2172,7 +2183,7 @@ declare module "factorio:runtime" {
2172
2183
  * - `"position"`: {@link PositionGuiArrowSpecification}
2173
2184
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2174
2185
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2175
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiArrowSpecification.html Online documentation}
2186
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiArrowSpecification.html Online documentation}
2176
2187
  */
2177
2188
  export type GuiArrowSpecification =
2178
2189
  | EntityGuiArrowSpecification
@@ -2185,7 +2196,7 @@ declare module "factorio:runtime" {
2185
2196
  *
2186
2197
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2187
2198
  * @see Vector3DArray
2188
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Vector3D.html Online documentation}
2199
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Vector3D.html Online documentation}
2189
2200
  */
2190
2201
  export interface Vector3D {
2191
2202
  readonly x: float
@@ -2195,12 +2206,40 @@ declare module "factorio:runtime" {
2195
2206
  /**
2196
2207
  * Array form of {@link Vector3D}.
2197
2208
  * @see Vector3D
2198
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Vector3D.html Online documentation}
2209
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Vector3D.html Online documentation}
2199
2210
  */
2200
2211
  export type Vector3DArray = readonly [float, float, float]
2212
+ export interface ItemWithQualityCounts {
2213
+ /**
2214
+ * Name of the item prototype.
2215
+ */
2216
+ readonly name: string
2217
+ /**
2218
+ * The number of items.
2219
+ */
2220
+ readonly count: uint
2221
+ /**
2222
+ * Name of the item's quality prototype.
2223
+ */
2224
+ readonly quality: string
2225
+ }
2226
+ export interface EquipmentWithQualityCounts {
2227
+ /**
2228
+ * Name of the equipment prototype.
2229
+ */
2230
+ readonly name: string
2231
+ /**
2232
+ * The number of equipment items.
2233
+ */
2234
+ readonly count: uint
2235
+ /**
2236
+ * Name of the equipment's quality prototype.
2237
+ */
2238
+ readonly quality: string
2239
+ }
2201
2240
  /**
2202
2241
  * @see TrainScheduleWrite
2203
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TrainSchedule.html Online documentation}
2242
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TrainSchedule.html Online documentation}
2204
2243
  */
2205
2244
  export interface TrainSchedule {
2206
2245
  /**
@@ -2211,7 +2250,7 @@ declare module "factorio:runtime" {
2211
2250
  }
2212
2251
  /**
2213
2252
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2214
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TrainSchedule.html Online documentation}
2253
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TrainSchedule.html Online documentation}
2215
2254
  */
2216
2255
  export interface TrainScheduleWrite {
2217
2256
  /**
@@ -2222,7 +2261,7 @@ declare module "factorio:runtime" {
2222
2261
  }
2223
2262
  /**
2224
2263
  * @see PlatformScheduleWrite
2225
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PlatformSchedule.html Online documentation}
2264
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PlatformSchedule.html Online documentation}
2226
2265
  */
2227
2266
  export interface PlatformSchedule {
2228
2267
  /**
@@ -2233,7 +2272,7 @@ declare module "factorio:runtime" {
2233
2272
  }
2234
2273
  /**
2235
2274
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2236
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PlatformSchedule.html Online documentation}
2275
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PlatformSchedule.html Online documentation}
2237
2276
  */
2238
2277
  export interface PlatformScheduleWrite {
2239
2278
  /**
@@ -2250,7 +2289,7 @@ declare module "factorio:runtime" {
2250
2289
  }
2251
2290
  /**
2252
2291
  * A recipe prototype with optional quality specification.
2253
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2292
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2254
2293
  */
2255
2294
  export interface RecipeIDAndQualityIDPair {
2256
2295
  /**
@@ -2299,7 +2338,7 @@ declare module "factorio:runtime" {
2299
2338
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2300
2339
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2301
2340
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2302
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ForceID.html Online documentation}
2341
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ForceID.html Online documentation}
2303
2342
  */
2304
2343
  export type ForceID = string | uint8 | LuaForce
2305
2344
  /**
@@ -2309,7 +2348,7 @@ declare module "factorio:runtime" {
2309
2348
  * - `string`: The fluid name.
2310
2349
  * - {@link LuaFluidPrototype}: The fluid prototype.
2311
2350
  * - {@link Fluid}: The fluid.
2312
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/FluidID.html Online documentation}
2351
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/FluidID.html Online documentation}
2313
2352
  */
2314
2353
  export type FluidID = string | LuaFluidPrototype | Fluid
2315
2354
  /**
@@ -2320,12 +2359,12 @@ declare module "factorio:runtime" {
2320
2359
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2321
2360
  * - `string`: The prototype name. Normal quality will be used.
2322
2361
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2323
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityWithQualityID.html Online documentation}
2362
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityWithQualityID.html Online documentation}
2324
2363
  */
2325
2364
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2326
2365
  /**
2327
2366
  * An entity prototype with optional quality specification.
2328
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityIDAndQualityIDPair.html Online documentation}
2367
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityIDAndQualityIDPair.html Online documentation}
2329
2368
  */
2330
2369
  export interface EntityIDAndQualityIDPair {
2331
2370
  /**
@@ -2345,13 +2384,13 @@ declare module "factorio:runtime" {
2345
2384
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2346
2385
  * - `string`: The prototype name. Normal quality will be used.
2347
2386
  * - `ItemIDAndQualityIDPairWrite`: A table of entity prototype and quality.
2348
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemWithQualityID.html Online documentation}
2387
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemWithQualityID.html Online documentation}
2349
2388
  */
2350
2389
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2351
2390
  /**
2352
2391
  * An item prototype with optional quality specification.
2353
2392
  * @see ItemIDAndQualityIDPairWrite
2354
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemIDAndQualityIDPair.html Online documentation}
2393
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemIDAndQualityIDPair.html Online documentation}
2355
2394
  */
2356
2395
  export interface ItemIDAndQualityIDPair {
2357
2396
  /**
@@ -2365,7 +2404,7 @@ declare module "factorio:runtime" {
2365
2404
  }
2366
2405
  /**
2367
2406
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2368
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemIDAndQualityIDPair.html Online documentation}
2407
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemIDAndQualityIDPair.html Online documentation}
2369
2408
  */
2370
2409
  export interface ItemIDAndQualityIDPairWrite {
2371
2410
  /**
@@ -2385,7 +2424,7 @@ declare module "factorio:runtime" {
2385
2424
  * - {@link LuaItemStack}: Non empty item stack.
2386
2425
  * - {@link LuaItem}: The item.
2387
2426
  * - `string`: The prototype name.
2388
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemID.html Online documentation}
2427
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemID.html Online documentation}
2389
2428
  */
2390
2429
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2391
2430
  /**
@@ -2395,7 +2434,7 @@ declare module "factorio:runtime" {
2395
2434
  * - {@link LuaEntityPrototype}: The entity prototype.
2396
2435
  * - {@link LuaEntity}: The entity.
2397
2436
  * - `string`: The prototype name.
2398
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityID.html Online documentation}
2437
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityID.html Online documentation}
2399
2438
  */
2400
2439
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2401
2440
  /**
@@ -2405,7 +2444,7 @@ declare module "factorio:runtime" {
2405
2444
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2406
2445
  * - {@link LuaTechnology}: Instance of the technology.
2407
2446
  * - `string`: The prototype name.
2408
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TechnologyID.html Online documentation}
2447
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TechnologyID.html Online documentation}
2409
2448
  */
2410
2449
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2411
2450
  /**
@@ -2414,7 +2453,7 @@ declare module "factorio:runtime" {
2414
2453
  * ## Union members
2415
2454
  * - {@link LuaParticlePrototype}: The particle prototype.
2416
2455
  * - `string`: The prototype name.
2417
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ParticleID.html Online documentation}
2456
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ParticleID.html Online documentation}
2418
2457
  */
2419
2458
  export type ParticleID = LuaParticlePrototype | string
2420
2459
  /**
@@ -2423,7 +2462,7 @@ declare module "factorio:runtime" {
2423
2462
  * ## Union members
2424
2463
  * - {@link LuaDamagePrototype}: The damage type prototype.
2425
2464
  * - `string`: The prototype name.
2426
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DamageTypeID.html Online documentation}
2465
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DamageTypeID.html Online documentation}
2427
2466
  */
2428
2467
  export type DamageTypeID = LuaDamagePrototype | string
2429
2468
  /**
@@ -2432,7 +2471,7 @@ declare module "factorio:runtime" {
2432
2471
  * ## Union members
2433
2472
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2434
2473
  * - `string`: The prototype name.
2435
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TrivialSmokeID.html Online documentation}
2474
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TrivialSmokeID.html Online documentation}
2436
2475
  */
2437
2476
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2438
2477
  /**
@@ -2444,7 +2483,7 @@ declare module "factorio:runtime" {
2444
2483
  * - `"left"`
2445
2484
  * - `"right"`
2446
2485
  * - `"center"`
2447
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TextAlign.html Online documentation}
2486
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TextAlign.html Online documentation}
2448
2487
  */
2449
2488
  export type TextAlign = "left" | "right" | "center"
2450
2489
  /**
@@ -2457,7 +2496,7 @@ declare module "factorio:runtime" {
2457
2496
  * - `"middle"`
2458
2497
  * - `"baseline"`
2459
2498
  * - `"bottom"`
2460
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/VerticalTextAlign.html Online documentation}
2499
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/VerticalTextAlign.html Online documentation}
2461
2500
  */
2462
2501
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2463
2502
  /**
@@ -2466,7 +2505,7 @@ declare module "factorio:runtime" {
2466
2505
  * ## Union members
2467
2506
  * - {@link LuaQualityPrototype}: The quality prototype.
2468
2507
  * - `string`: The prototype name.
2469
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/QualityID.html Online documentation}
2508
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/QualityID.html Online documentation}
2470
2509
  */
2471
2510
  export type QualityID = LuaQualityPrototype | string
2472
2511
  /**
@@ -2476,7 +2515,7 @@ declare module "factorio:runtime" {
2476
2515
  * - {@link LuaRecipePrototype}: By recipe prototype.
2477
2516
  * - {@link LuaRecipe}: By instance of recipe.
2478
2517
  * - `string`: By name of the recipe prototype.
2479
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RecipeID.html Online documentation}
2518
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RecipeID.html Online documentation}
2480
2519
  */
2481
2520
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2482
2521
  /**
@@ -2486,7 +2525,7 @@ declare module "factorio:runtime" {
2486
2525
  * - {@link LuaTilePrototype}: By tile prototype.
2487
2526
  * - {@link LuaTile}: By instance of tile.
2488
2527
  * - `string`: By name of the tile prototype.
2489
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TileID.html Online documentation}
2528
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TileID.html Online documentation}
2490
2529
  */
2491
2530
  export type TileID = LuaTilePrototype | LuaTile | string
2492
2531
  export interface Fluid {
@@ -2510,7 +2549,7 @@ declare module "factorio:runtime" {
2510
2549
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2511
2550
  * - {@link LuaEquipment}: The equipment.
2512
2551
  * - `string`: The prototype name.
2513
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentID.html Online documentation}
2552
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentID.html Online documentation}
2514
2553
  */
2515
2554
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2516
2555
  /**
@@ -2521,12 +2560,12 @@ declare module "factorio:runtime" {
2521
2560
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2522
2561
  * - `string`: The prototype name. Normal quality will be used.
2523
2562
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2524
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentWithQualityID.html Online documentation}
2563
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentWithQualityID.html Online documentation}
2525
2564
  */
2526
2565
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2527
2566
  /**
2528
2567
  * An equipment prototype with optional quality specification.
2529
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2568
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2530
2569
  */
2531
2570
  export interface EquipmentIDAndQualityIDPair {
2532
2571
  /**
@@ -2547,7 +2586,7 @@ declare module "factorio:runtime" {
2547
2586
  * @example
2548
2587
  * -- Shorthand
2549
2588
  * {{-2, -3}, {5, 8}}
2550
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BoundingBox.html Online documentation}
2589
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BoundingBox.html Online documentation}
2551
2590
  */
2552
2591
  export interface BoundingBox {
2553
2592
  readonly left_top: MapPosition
@@ -2557,7 +2596,7 @@ declare module "factorio:runtime" {
2557
2596
  /**
2558
2597
  * Array form of {@link BoundingBox}.
2559
2598
  * @see BoundingBox
2560
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BoundingBox.html Online documentation}
2599
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BoundingBox.html Online documentation}
2561
2600
  */
2562
2601
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2563
2602
  export interface BoundingBoxWrite {
@@ -2570,7 +2609,7 @@ declare module "factorio:runtime" {
2570
2609
  *
2571
2610
  * ## Union members
2572
2611
  * - {@link LuaSpacePlatform}
2573
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SpacePlatformIdentification.html Online documentation}
2612
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SpacePlatformIdentification.html Online documentation}
2574
2613
  */
2575
2614
  export type SpacePlatformIdentification = LuaSpacePlatform
2576
2615
  /**
@@ -2580,12 +2619,12 @@ declare module "factorio:runtime" {
2580
2619
  * - {@link LuaForce}[]: Array of many forces.
2581
2620
  * - {@link LuaForce}: A single force.
2582
2621
  * @see ForceSetWrite
2583
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ForceSet.html Online documentation}
2622
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ForceSet.html Online documentation}
2584
2623
  */
2585
2624
  export type ForceSet = LuaForce[] | LuaForce
2586
2625
  /**
2587
2626
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2588
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ForceSet.html Online documentation}
2627
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ForceSet.html Online documentation}
2589
2628
  */
2590
2629
  export type ForceSetWrite = readonly ForceID[] | ForceID
2591
2630
  /**
@@ -2594,7 +2633,7 @@ declare module "factorio:runtime" {
2594
2633
  * ## Union members
2595
2634
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2596
2635
  * - `string`: The prototype name.
2597
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DecorativeID.html Online documentation}
2636
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DecorativeID.html Online documentation}
2598
2637
  */
2599
2638
  export type DecorativeID = LuaDecorativePrototype | string
2600
2639
  /**
@@ -2603,7 +2642,7 @@ declare module "factorio:runtime" {
2603
2642
  * ## Union members
2604
2643
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2605
2644
  * - `string`: The prototype name.
2606
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AsteroidChunkID.html Online documentation}
2645
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AsteroidChunkID.html Online documentation}
2607
2646
  */
2608
2647
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2609
2648
  /**
@@ -2612,13 +2651,13 @@ declare module "factorio:runtime" {
2612
2651
  * ## Union members
2613
2652
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2614
2653
  * - `string`: The prototype name.
2615
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SpaceLocationID.html Online documentation}
2654
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SpaceLocationID.html Online documentation}
2616
2655
  */
2617
2656
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2618
2657
  /**
2619
2658
  * 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.
2620
2659
  * @see SignalFilterWrite
2621
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SignalFilter.html Online documentation}
2660
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SignalFilter.html Online documentation}
2622
2661
  */
2623
2662
  export type SignalFilter =
2624
2663
  | {
@@ -2642,7 +2681,7 @@ declare module "factorio:runtime" {
2642
2681
  | string
2643
2682
  /**
2644
2683
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2645
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SignalFilter.html Online documentation}
2684
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SignalFilter.html Online documentation}
2646
2685
  */
2647
2686
  export type SignalFilterWrite =
2648
2687
  | {
@@ -2666,7 +2705,7 @@ declare module "factorio:runtime" {
2666
2705
  | string
2667
2706
  /**
2668
2707
  * @see LogisticFilterWrite
2669
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticFilter.html Online documentation}
2708
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticFilter.html Online documentation}
2670
2709
  */
2671
2710
  export interface LogisticFilter {
2672
2711
  /**
@@ -2692,7 +2731,7 @@ declare module "factorio:runtime" {
2692
2731
  }
2693
2732
  /**
2694
2733
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2695
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticFilter.html Online documentation}
2734
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticFilter.html Online documentation}
2696
2735
  */
2697
2736
  export interface LogisticFilterWrite {
2698
2737
  /**
@@ -2748,23 +2787,23 @@ declare module "factorio:runtime" {
2748
2787
  * ## Union members
2749
2788
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2750
2789
  * - `string`: The prototype name.
2751
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SurfacePropertyID.html Online documentation}
2790
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SurfacePropertyID.html Online documentation}
2752
2791
  */
2753
2792
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2754
2793
  /**
2755
2794
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2756
2795
  * @see ScriptRenderTargetWrite
2757
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptRenderTarget.html Online documentation}
2796
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptRenderTarget.html Online documentation}
2758
2797
  */
2759
2798
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2760
2799
  /**
2761
2800
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2762
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptRenderTarget.html Online documentation}
2801
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptRenderTarget.html Online documentation}
2763
2802
  */
2764
2803
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2765
2804
  /**
2766
2805
  * @see ScriptRenderTargetTableWrite
2767
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptRenderTargetTable.html Online documentation}
2806
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptRenderTargetTable.html Online documentation}
2768
2807
  */
2769
2808
  export interface ScriptRenderTargetTable {
2770
2809
  readonly entity?: LuaEntity
@@ -2779,7 +2818,7 @@ declare module "factorio:runtime" {
2779
2818
  }
2780
2819
  /**
2781
2820
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2782
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptRenderTargetTable.html Online documentation}
2821
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptRenderTargetTable.html Online documentation}
2783
2822
  */
2784
2823
  export interface ScriptRenderTargetTableWrite {
2785
2824
  readonly entity?: LuaEntity
@@ -2794,7 +2833,7 @@ declare module "factorio:runtime" {
2794
2833
  }
2795
2834
  /**
2796
2835
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2797
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/QualityCondition.html Online documentation}
2836
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/QualityCondition.html Online documentation}
2798
2837
  */
2799
2838
  export type QualityCondition =
2800
2839
  | {
@@ -2813,13 +2852,13 @@ declare module "factorio:runtime" {
2813
2852
  * - `"center-to-center"`
2814
2853
  * - `"bounding-box-to-bounding-box"`
2815
2854
  * - `"center-to-bounding-box"`
2816
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RangeMode.html Online documentation}
2855
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RangeMode.html Online documentation}
2817
2856
  */
2818
2857
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2819
2858
  /**
2820
2859
  * 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.
2821
2860
  * @see BlueprintEntityWrite
2822
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintEntity.html Online documentation}
2861
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintEntity.html Online documentation}
2823
2862
  */
2824
2863
  export interface BlueprintEntity {
2825
2864
  /**
@@ -2981,7 +3020,7 @@ declare module "factorio:runtime" {
2981
3020
  /**
2982
3021
  * Used by spidertons.
2983
3022
  */
2984
- readonly vehicle_automatic_targeting_parameters: VehicleAutomaticTargetingParameters
3023
+ readonly vehicle_automatic_targeting_parameters?: VehicleAutomaticTargetingParameters
2985
3024
  /**
2986
3025
  * Used by vehicles.
2987
3026
  */
@@ -3033,7 +3072,7 @@ declare module "factorio:runtime" {
3033
3072
  }
3034
3073
  /**
3035
3074
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3036
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintEntity.html Online documentation}
3075
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintEntity.html Online documentation}
3037
3076
  */
3038
3077
  export interface BlueprintEntityWrite {
3039
3078
  /**
@@ -3195,7 +3234,7 @@ declare module "factorio:runtime" {
3195
3234
  /**
3196
3235
  * Used by spidertons.
3197
3236
  */
3198
- readonly vehicle_automatic_targeting_parameters: VehicleAutomaticTargetingParameters
3237
+ readonly vehicle_automatic_targeting_parameters?: VehicleAutomaticTargetingParameters
3199
3238
  /**
3200
3239
  * Used by vehicles.
3201
3240
  */
@@ -3254,7 +3293,7 @@ declare module "factorio:runtime" {
3254
3293
  }
3255
3294
  /**
3256
3295
  * @see BlueprintEquipmentWrite
3257
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintEquipment.html Online documentation}
3296
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintEquipment.html Online documentation}
3258
3297
  */
3259
3298
  export interface BlueprintEquipment {
3260
3299
  readonly equipment: ItemIDAndQualityIDPair
@@ -3262,7 +3301,7 @@ declare module "factorio:runtime" {
3262
3301
  }
3263
3302
  /**
3264
3303
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3265
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintEquipment.html Online documentation}
3304
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintEquipment.html Online documentation}
3266
3305
  */
3267
3306
  export interface BlueprintEquipmentWrite {
3268
3307
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3270,7 +3309,7 @@ declare module "factorio:runtime" {
3270
3309
  }
3271
3310
  /**
3272
3311
  * @see BlueprintInventoryWrite
3273
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintInventory.html Online documentation}
3312
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintInventory.html Online documentation}
3274
3313
  */
3275
3314
  export interface BlueprintInventory {
3276
3315
  readonly filters?: BlueprintLogisticFilter[]
@@ -3281,7 +3320,7 @@ declare module "factorio:runtime" {
3281
3320
  }
3282
3321
  /**
3283
3322
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3284
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintInventory.html Online documentation}
3323
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintInventory.html Online documentation}
3285
3324
  */
3286
3325
  export interface BlueprintInventoryWrite {
3287
3326
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3302,7 +3341,7 @@ declare module "factorio:runtime" {
3302
3341
  }
3303
3342
  /**
3304
3343
  * @see BlueprintControlBehaviorWrite
3305
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintControlBehavior.html Online documentation}
3344
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintControlBehavior.html Online documentation}
3306
3345
  */
3307
3346
  export interface BlueprintControlBehavior {
3308
3347
  /**
@@ -3331,6 +3370,12 @@ declare module "factorio:runtime" {
3331
3370
  * Does not apply to asteroid collectors, see {@link circuit_read_contents }.
3332
3371
  */
3333
3372
  readonly read_contents?: boolean
3373
+ /**
3374
+ * For assembling machines, whether to include items in crafting for {@link read_contents }.
3375
+ *
3376
+ * Default true.
3377
+ */
3378
+ readonly include_in_crafting?: boolean
3334
3379
  /**
3335
3380
  * If an **asteroid collector** reads its contents to the circuit network. Default false.
3336
3381
  */
@@ -3549,7 +3594,7 @@ declare module "factorio:runtime" {
3549
3594
  }
3550
3595
  /**
3551
3596
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3552
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintControlBehavior.html Online documentation}
3597
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintControlBehavior.html Online documentation}
3553
3598
  */
3554
3599
  export interface BlueprintControlBehaviorWrite {
3555
3600
  /**
@@ -3578,6 +3623,12 @@ declare module "factorio:runtime" {
3578
3623
  * Does not apply to asteroid collectors, see {@link circuit_read_contents }.
3579
3624
  */
3580
3625
  readonly read_contents?: boolean
3626
+ /**
3627
+ * For assembling machines, whether to include items in crafting for {@link read_contents }.
3628
+ *
3629
+ * Default true.
3630
+ */
3631
+ readonly include_in_crafting?: boolean
3581
3632
  /**
3582
3633
  * If an **asteroid collector** reads its contents to the circuit network. Default false.
3583
3634
  */
@@ -3824,7 +3875,7 @@ declare module "factorio:runtime" {
3824
3875
  * "2500 * (L - 3)"
3825
3876
  * @example
3826
3877
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3827
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MathExpression.html Online documentation}
3878
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MathExpression.html Online documentation}
3828
3879
  */
3829
3880
  export type MathExpression = string
3830
3881
  /**
@@ -3846,7 +3897,7 @@ declare module "factorio:runtime" {
3846
3897
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3847
3898
  * -- minimum amount of 1 and a maximum amount of 5
3848
3899
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3849
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Product.html Online documentation}
3900
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Product.html Online documentation}
3850
3901
  */
3851
3902
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
3852
3903
  /**
@@ -3857,7 +3908,7 @@ declare module "factorio:runtime" {
3857
3908
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3858
3909
  * -- minimum amount of 1 and a maximum amount of 5
3859
3910
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3860
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemProduct.html Online documentation}
3911
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemProduct.html Online documentation}
3861
3912
  */
3862
3913
  export interface ItemProduct {
3863
3914
  readonly type: "item"
@@ -3901,7 +3952,7 @@ declare module "factorio:runtime" {
3901
3952
  * {{type="fluid", name="heavy-oil", amount=1},
3902
3953
  * {type="fluid", name="light-oil", amount=4.5},
3903
3954
  * {type="fluid", name="petroleum-gas", amount=5.5}}
3904
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/FluidProduct.html Online documentation}
3955
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/FluidProduct.html Online documentation}
3905
3956
  */
3906
3957
  export interface FluidProduct {
3907
3958
  readonly type: "fluid"
@@ -3949,7 +4000,7 @@ declare module "factorio:runtime" {
3949
4000
  }
3950
4001
  /**
3951
4002
  * @see LogisticSectionsWrite
3952
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticSections.html Online documentation}
4003
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticSections.html Online documentation}
3953
4004
  */
3954
4005
  export interface LogisticSections {
3955
4006
  readonly sections?: LogisticSection[]
@@ -3960,7 +4011,7 @@ declare module "factorio:runtime" {
3960
4011
  }
3961
4012
  /**
3962
4013
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
3963
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticSections.html Online documentation}
4014
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticSections.html Online documentation}
3964
4015
  */
3965
4016
  export interface LogisticSectionsWrite {
3966
4017
  readonly sections?: readonly LogisticSectionWrite[]
@@ -3996,7 +4047,7 @@ declare module "factorio:runtime" {
3996
4047
  }
3997
4048
  /**
3998
4049
  * @see LogisticSectionWrite
3999
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticSection.html Online documentation}
4050
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticSection.html Online documentation}
4000
4051
  */
4001
4052
  export interface LogisticSection {
4002
4053
  readonly index: uint8
@@ -4013,7 +4064,7 @@ declare module "factorio:runtime" {
4013
4064
  }
4014
4065
  /**
4015
4066
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4016
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LogisticSection.html Online documentation}
4067
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LogisticSection.html Online documentation}
4017
4068
  */
4018
4069
  export interface LogisticSectionWrite {
4019
4070
  readonly index: uint8
@@ -4030,7 +4081,7 @@ declare module "factorio:runtime" {
4030
4081
  }
4031
4082
  /**
4032
4083
  * @see BlueprintLogisticFilterWrite
4033
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintLogisticFilter.html Online documentation}
4084
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintLogisticFilter.html Online documentation}
4034
4085
  */
4035
4086
  export interface BlueprintLogisticFilter {
4036
4087
  readonly index: LogisticFilterIndex
@@ -4060,7 +4111,7 @@ declare module "factorio:runtime" {
4060
4111
  }
4061
4112
  /**
4062
4113
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4063
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintLogisticFilter.html Online documentation}
4114
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintLogisticFilter.html Online documentation}
4064
4115
  */
4065
4116
  export interface BlueprintLogisticFilterWrite {
4066
4117
  readonly index: LogisticFilterIndex
@@ -4090,7 +4141,7 @@ declare module "factorio:runtime" {
4090
4141
  }
4091
4142
  /**
4092
4143
  * Specifies how probability and richness are calculated when placing something on the map.
4093
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AutoplaceSpecification.html Online documentation}
4144
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AutoplaceSpecification.html Online documentation}
4094
4145
  */
4095
4146
  export interface AutoplaceSpecification {
4096
4147
  /**
@@ -4107,7 +4158,7 @@ declare module "factorio:runtime" {
4107
4158
  }
4108
4159
  /**
4109
4160
  * @see CliffPlacementSettingsWrite
4110
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CliffPlacementSettings.html Online documentation}
4161
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CliffPlacementSettings.html Online documentation}
4111
4162
  */
4112
4163
  export interface CliffPlacementSettings {
4113
4164
  /**
@@ -4137,7 +4188,7 @@ declare module "factorio:runtime" {
4137
4188
  }
4138
4189
  /**
4139
4190
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4140
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CliffPlacementSettings.html Online documentation}
4191
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CliffPlacementSettings.html Online documentation}
4141
4192
  */
4142
4193
  export interface CliffPlacementSettingsWrite {
4143
4194
  /**
@@ -4167,7 +4218,7 @@ declare module "factorio:runtime" {
4167
4218
  }
4168
4219
  /**
4169
4220
  * @see AutoplaceSettingsWrite
4170
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AutoplaceSettings.html Online documentation}
4221
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AutoplaceSettings.html Online documentation}
4171
4222
  */
4172
4223
  export interface AutoplaceSettings {
4173
4224
  /**
@@ -4181,7 +4232,7 @@ declare module "factorio:runtime" {
4181
4232
  }
4182
4233
  /**
4183
4234
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4184
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AutoplaceSettings.html Online documentation}
4235
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AutoplaceSettings.html Online documentation}
4185
4236
  */
4186
4237
  export interface AutoplaceSettingsWrite {
4187
4238
  /**
@@ -4216,7 +4267,7 @@ declare module "factorio:runtime" {
4216
4267
  * surface.map_gen_settings = mgs
4217
4268
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4218
4269
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4219
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapGenSettings.html Online documentation}
4270
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapGenSettings.html Online documentation}
4220
4271
  */
4221
4272
  export interface MapGenSettings {
4222
4273
  /**
@@ -4271,7 +4322,7 @@ declare module "factorio:runtime" {
4271
4322
  }
4272
4323
  /**
4273
4324
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4274
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapGenSettings.html Online documentation}
4325
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapGenSettings.html Online documentation}
4275
4326
  */
4276
4327
  export interface MapGenSettingsWrite {
4277
4328
  /**
@@ -4330,7 +4381,7 @@ declare module "factorio:runtime" {
4330
4381
  }
4331
4382
  /**
4332
4383
  * These values are for the time frame of one second (60 ticks).
4333
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PollutionMapSettings.html Online documentation}
4384
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PollutionMapSettings.html Online documentation}
4334
4385
  */
4335
4386
  export interface PollutionMapSettings {
4336
4387
  /**
@@ -4384,7 +4435,7 @@ declare module "factorio:runtime" {
4384
4435
  }
4385
4436
  /**
4386
4437
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4387
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EnemyEvolutionMapSettings.html Online documentation}
4438
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EnemyEvolutionMapSettings.html Online documentation}
4388
4439
  */
4389
4440
  export interface EnemyEvolutionMapSettings {
4390
4441
  /**
@@ -4422,7 +4473,7 @@ declare module "factorio:runtime" {
4422
4473
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4423
4474
  * score(chunk) = 1 / (1 + player + base)
4424
4475
  * ```
4425
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EnemyExpansionMapSettings.html Online documentation}
4476
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EnemyExpansionMapSettings.html Online documentation}
4426
4477
  */
4427
4478
  export interface EnemyExpansionMapSettings {
4428
4479
  /**
@@ -4681,17 +4732,17 @@ declare module "factorio:runtime" {
4681
4732
  }
4682
4733
  /**
4683
4734
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4684
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DifficultySettings.html Online documentation}
4735
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DifficultySettings.html Online documentation}
4685
4736
  */
4686
4737
  export interface DifficultySettings {
4687
4738
  /**
4688
4739
  * A value in range [0.001, 1000].
4689
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4740
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4690
4741
  */
4691
4742
  technology_price_multiplier: double
4692
4743
  /**
4693
4744
  * A value in range [0.01, 100].
4694
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4745
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4695
4746
  */
4696
4747
  spoil_time_modifier: double
4697
4748
  }
@@ -4707,7 +4758,7 @@ declare module "factorio:runtime" {
4707
4758
  }
4708
4759
  /**
4709
4760
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4710
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapAndDifficultySettings.html Online documentation}
4761
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapAndDifficultySettings.html Online documentation}
4711
4762
  */
4712
4763
  export interface MapAndDifficultySettings {
4713
4764
  readonly pollution: PollutionMapSettings
@@ -4728,7 +4779,7 @@ declare module "factorio:runtime" {
4728
4779
  * @example
4729
4780
  * -- Increase the number of short paths the pathfinder can cache.
4730
4781
  * game.map_settings.path_finder.short_cache_size = 15
4731
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapSettings.html Online documentation}
4782
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapSettings.html Online documentation}
4732
4783
  */
4733
4784
  export interface MapSettings {
4734
4785
  pollution: PollutionMapSettings
@@ -4740,13 +4791,13 @@ declare module "factorio:runtime" {
4740
4791
  asteroids: AsteroidMapSettings
4741
4792
  /**
4742
4793
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4743
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4794
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4744
4795
  */
4745
4796
  max_failed_behavior_count: uint
4746
4797
  }
4747
4798
  /**
4748
4799
  * @see BlueprintScheduleRecordWrite
4749
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintScheduleRecord.html Online documentation}
4800
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintScheduleRecord.html Online documentation}
4750
4801
  */
4751
4802
  export interface BlueprintScheduleRecord {
4752
4803
  /**
@@ -4763,7 +4814,7 @@ declare module "factorio:runtime" {
4763
4814
  }
4764
4815
  /**
4765
4816
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4766
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintScheduleRecord.html Online documentation}
4817
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintScheduleRecord.html Online documentation}
4767
4818
  */
4768
4819
  export interface BlueprintScheduleRecordWrite {
4769
4820
  /**
@@ -4780,7 +4831,7 @@ declare module "factorio:runtime" {
4780
4831
  }
4781
4832
  /**
4782
4833
  * @see BlueprintScheduleInterruptWrite
4783
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintScheduleInterrupt.html Online documentation}
4834
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintScheduleInterrupt.html Online documentation}
4784
4835
  */
4785
4836
  export interface BlueprintScheduleInterrupt {
4786
4837
  readonly name?: string
@@ -4790,7 +4841,7 @@ declare module "factorio:runtime" {
4790
4841
  }
4791
4842
  /**
4792
4843
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4793
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintScheduleInterrupt.html Online documentation}
4844
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintScheduleInterrupt.html Online documentation}
4794
4845
  */
4795
4846
  export interface BlueprintScheduleInterruptWrite {
4796
4847
  readonly name?: string
@@ -4800,7 +4851,7 @@ declare module "factorio:runtime" {
4800
4851
  }
4801
4852
  /**
4802
4853
  * @see BlueprintScheduleWrite
4803
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintSchedule.html Online documentation}
4854
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintSchedule.html Online documentation}
4804
4855
  */
4805
4856
  export interface BlueprintSchedule {
4806
4857
  readonly records?: BlueprintScheduleRecord[]
@@ -4809,7 +4860,7 @@ declare module "factorio:runtime" {
4809
4860
  }
4810
4861
  /**
4811
4862
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4812
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintSchedule.html Online documentation}
4863
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintSchedule.html Online documentation}
4813
4864
  */
4814
4865
  export interface BlueprintScheduleWrite {
4815
4866
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4818,7 +4869,7 @@ declare module "factorio:runtime" {
4818
4869
  }
4819
4870
  /**
4820
4871
  * @see WaitConditionWrite
4821
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/WaitCondition.html Online documentation}
4872
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/WaitCondition.html Online documentation}
4822
4873
  */
4823
4874
  export interface WaitCondition {
4824
4875
  readonly type: WaitConditionType
@@ -4849,7 +4900,7 @@ declare module "factorio:runtime" {
4849
4900
  }
4850
4901
  /**
4851
4902
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
4852
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/WaitCondition.html Online documentation}
4903
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/WaitCondition.html Online documentation}
4853
4904
  */
4854
4905
  export interface WaitConditionWrite {
4855
4906
  readonly type: WaitConditionType
@@ -4908,7 +4959,7 @@ declare module "factorio:runtime" {
4908
4959
  * - `"at_station"`
4909
4960
  * - `"not_at_station"`
4910
4961
  * - `"damage_taken"`
4911
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/WaitConditionType.html Online documentation}
4962
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/WaitConditionType.html Online documentation}
4912
4963
  */
4913
4964
  export type WaitConditionType =
4914
4965
  | "time"
@@ -4950,7 +5001,7 @@ declare module "factorio:runtime" {
4950
5001
  * - `"blueprint-snap-rectangle"`: Green by default.
4951
5002
  * - `"spidertron-remote-selected"`
4952
5003
  * - `"spidertron-remote-to-be-selected"`
4953
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CursorBoxRenderType.html Online documentation}
5004
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CursorBoxRenderType.html Online documentation}
4954
5005
  */
4955
5006
  export type CursorBoxRenderType =
4956
5007
  | "entity"
@@ -4966,7 +5017,7 @@ declare module "factorio:runtime" {
4966
5017
  | "spidertron-remote-to-be-selected"
4967
5018
  /**
4968
5019
  * What is shown in the map view. If a field is not given, that setting will not be changed.
4969
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapViewSettings.html Online documentation}
5020
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapViewSettings.html Online documentation}
4970
5021
  */
4971
5022
  export interface MapViewSettings {
4972
5023
  readonly "show-logistic-network"?: boolean
@@ -5059,7 +5110,7 @@ declare module "factorio:runtime" {
5059
5110
  * - `"collision-selection-box"`: 189
5060
5111
  * - `"arrow"`: 190
5061
5112
  * - `"cursor"`: 226
5062
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RenderLayer.html Online documentation}
5113
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RenderLayer.html Online documentation}
5063
5114
  */
5064
5115
  export type RenderLayer =
5065
5116
  | `${bigint}`
@@ -5155,7 +5206,7 @@ declare module "factorio:runtime" {
5155
5206
  * - `"entity-with-quality"`
5156
5207
  * - `"recipe-with-quality"`
5157
5208
  * - `"equipment-with-quality"`
5158
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ElemType.html Online documentation}
5209
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ElemType.html Online documentation}
5159
5210
  */
5160
5211
  export type ElemType =
5161
5212
  | "achievement"
@@ -5182,7 +5233,7 @@ declare module "factorio:runtime" {
5182
5233
  * - `"left"`
5183
5234
  * - `"right"`
5184
5235
  * - `"none"`
5185
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SwitchState.html Online documentation}
5236
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SwitchState.html Online documentation}
5186
5237
  */
5187
5238
  export type SwitchState = "left" | "right" | "none"
5188
5239
  export interface ElemID {
@@ -5222,7 +5273,7 @@ declare module "factorio:runtime" {
5222
5273
  * - `"destroy-decoratives"`
5223
5274
  * - `"camera-effect"`
5224
5275
  * - `"activate-impact"`
5225
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TriggerEffectItemType.html Online documentation}
5276
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TriggerEffectItemType.html Online documentation}
5226
5277
  */
5227
5278
  export type TriggerEffectItemType =
5228
5279
  | "damage"
@@ -5258,7 +5309,7 @@ declare module "factorio:runtime" {
5258
5309
  }
5259
5310
  /**
5260
5311
  * A set of trigger target masks.
5261
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TriggerTargetMask.html Online documentation}
5312
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TriggerTargetMask.html Online documentation}
5262
5313
  */
5263
5314
  export type TriggerTargetMask = Record<string, true>
5264
5315
  export interface TriggerItem {
@@ -5325,7 +5376,7 @@ declare module "factorio:runtime" {
5325
5376
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5326
5377
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5327
5378
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5328
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LocalisedString.html Online documentation}
5379
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LocalisedString.html Online documentation}
5329
5380
  */
5330
5381
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5331
5382
  export interface DisplayResolution {
@@ -5336,7 +5387,7 @@ declare module "factorio:runtime" {
5336
5387
  * 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".
5337
5388
  *
5338
5389
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5339
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RealOrientation.html Online documentation}
5390
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RealOrientation.html Online documentation}
5340
5391
  */
5341
5392
  export type RealOrientation = float
5342
5393
  /**
@@ -5351,7 +5402,7 @@ declare module "factorio:runtime" {
5351
5402
  * @example
5352
5403
  * -- Shorthand
5353
5404
  * {1.625, 2.375}
5354
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapPosition.html Online documentation}
5405
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapPosition.html Online documentation}
5355
5406
  */
5356
5407
  export interface MapPosition {
5357
5408
  readonly x: double
@@ -5360,13 +5411,13 @@ declare module "factorio:runtime" {
5360
5411
  /**
5361
5412
  * Array form of {@link MapPosition}.
5362
5413
  * @see MapPosition
5363
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapPosition.html Online documentation}
5414
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapPosition.html Online documentation}
5364
5415
  */
5365
5416
  export type MapPositionArray = readonly [double, double]
5366
5417
  /**
5367
5418
  * 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.
5368
5419
  * @see ChunkPositionArray
5369
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ChunkPosition.html Online documentation}
5420
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ChunkPosition.html Online documentation}
5370
5421
  */
5371
5422
  export interface ChunkPosition {
5372
5423
  readonly x: int
@@ -5375,13 +5426,13 @@ declare module "factorio:runtime" {
5375
5426
  /**
5376
5427
  * Array form of {@link ChunkPosition}.
5377
5428
  * @see ChunkPosition
5378
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ChunkPosition.html Online documentation}
5429
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ChunkPosition.html Online documentation}
5379
5430
  */
5380
5431
  export type ChunkPositionArray = readonly [int, int]
5381
5432
  /**
5382
5433
  * 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.
5383
5434
  * @see TilePositionArray
5384
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TilePosition.html Online documentation}
5435
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TilePosition.html Online documentation}
5385
5436
  */
5386
5437
  export interface TilePosition {
5387
5438
  readonly x: int
@@ -5390,7 +5441,7 @@ declare module "factorio:runtime" {
5390
5441
  /**
5391
5442
  * Array form of {@link TilePosition}.
5392
5443
  * @see TilePosition
5393
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TilePosition.html Online documentation}
5444
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TilePosition.html Online documentation}
5394
5445
  */
5395
5446
  export type TilePositionArray = readonly [int, int]
5396
5447
  /**
@@ -5403,7 +5454,7 @@ declare module "factorio:runtime" {
5403
5454
  * @example
5404
5455
  * -- Shorthand
5405
5456
  * {1, 2}
5406
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentPosition.html Online documentation}
5457
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentPosition.html Online documentation}
5407
5458
  */
5408
5459
  export interface EquipmentPosition {
5409
5460
  readonly x: int
@@ -5412,13 +5463,13 @@ declare module "factorio:runtime" {
5412
5463
  /**
5413
5464
  * Array form of {@link EquipmentPosition}.
5414
5465
  * @see EquipmentPosition
5415
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentPosition.html Online documentation}
5466
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentPosition.html Online documentation}
5416
5467
  */
5417
5468
  export type EquipmentPositionArray = readonly [int, int]
5418
5469
  /**
5419
5470
  * 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.
5420
5471
  * @see GuiLocationArray
5421
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiLocation.html Online documentation}
5472
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiLocation.html Online documentation}
5422
5473
  */
5423
5474
  export interface GuiLocation {
5424
5475
  readonly x: int
@@ -5427,12 +5478,12 @@ declare module "factorio:runtime" {
5427
5478
  /**
5428
5479
  * Array form of {@link GuiLocation}.
5429
5480
  * @see GuiLocation
5430
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiLocation.html Online documentation}
5481
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiLocation.html Online documentation}
5431
5482
  */
5432
5483
  export type GuiLocationArray = readonly [int, int]
5433
5484
  /**
5434
5485
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5435
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ChunkPositionAndArea.html Online documentation}
5486
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ChunkPositionAndArea.html Online documentation}
5436
5487
  */
5437
5488
  export interface ChunkPositionAndArea {
5438
5489
  readonly x: int
@@ -5441,7 +5492,7 @@ declare module "factorio:runtime" {
5441
5492
  }
5442
5493
  /**
5443
5494
  * A table used to define a manual shape for a piece of equipment.
5444
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentPoint.html Online documentation}
5495
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentPoint.html Online documentation}
5445
5496
  */
5446
5497
  export interface EquipmentPoint {
5447
5498
  readonly x: uint
@@ -5477,7 +5528,7 @@ declare module "factorio:runtime" {
5477
5528
  * 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.
5478
5529
  * @example
5479
5530
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5480
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Tags.html Online documentation}
5531
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Tags.html Online documentation}
5481
5532
  */
5482
5533
  export type Tags = Record<string, AnyBasic>
5483
5534
  export interface SurfaceCondition {
@@ -5511,13 +5562,13 @@ declare module "factorio:runtime" {
5511
5562
  * 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.
5512
5563
  * @example
5513
5564
  * right = {1.0, 0.0}
5514
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Vector.html Online documentation}
5565
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Vector.html Online documentation}
5515
5566
  */
5516
5567
  export type Vector = MapPositionArray
5517
5568
  /**
5518
5569
  * An area defined using the map editor.
5519
5570
  * @see ScriptAreaWrite
5520
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptArea.html Online documentation}
5571
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptArea.html Online documentation}
5521
5572
  */
5522
5573
  export interface ScriptArea {
5523
5574
  readonly area: BoundingBox
@@ -5527,7 +5578,7 @@ declare module "factorio:runtime" {
5527
5578
  }
5528
5579
  /**
5529
5580
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5530
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptArea.html Online documentation}
5581
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptArea.html Online documentation}
5531
5582
  */
5532
5583
  export interface ScriptAreaWrite {
5533
5584
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5538,7 +5589,7 @@ declare module "factorio:runtime" {
5538
5589
  /**
5539
5590
  * A position defined using the map editor.
5540
5591
  * @see ScriptPositionWrite
5541
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptPosition.html Online documentation}
5592
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptPosition.html Online documentation}
5542
5593
  */
5543
5594
  export interface ScriptPosition {
5544
5595
  readonly position: MapPosition
@@ -5548,7 +5599,7 @@ declare module "factorio:runtime" {
5548
5599
  }
5549
5600
  /**
5550
5601
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5551
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScriptPosition.html Online documentation}
5602
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScriptPosition.html Online documentation}
5552
5603
  */
5553
5604
  export interface ScriptPositionWrite {
5554
5605
  readonly position: MapPosition | MapPositionArray
@@ -5566,7 +5617,7 @@ declare module "factorio:runtime" {
5566
5617
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5567
5618
  * black = {} -- All channels omitted: black
5568
5619
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5569
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Color.html Online documentation}
5620
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Color.html Online documentation}
5570
5621
  */
5571
5622
  export interface Color {
5572
5623
  readonly r?: float
@@ -5577,13 +5628,13 @@ declare module "factorio:runtime" {
5577
5628
  /**
5578
5629
  * Array form of {@link Color}.
5579
5630
  * @see Color
5580
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Color.html Online documentation}
5631
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Color.html Online documentation}
5581
5632
  */
5582
5633
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5583
5634
  /**
5584
5635
  * 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].
5585
5636
  * @see ColorModifierArray
5586
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ColorModifier.html Online documentation}
5637
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ColorModifier.html Online documentation}
5587
5638
  */
5588
5639
  export interface ColorModifier {
5589
5640
  readonly r?: float
@@ -5594,7 +5645,7 @@ declare module "factorio:runtime" {
5594
5645
  /**
5595
5646
  * Array form of {@link ColorModifier}.
5596
5647
  * @see ColorModifier
5597
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ColorModifier.html Online documentation}
5648
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ColorModifier.html Online documentation}
5598
5649
  */
5599
5650
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5600
5651
  export interface CraftingQueueItem {
@@ -5737,7 +5788,7 @@ declare module "factorio:runtime" {
5737
5788
  }
5738
5789
  /**
5739
5790
  * @see AsteroidChunkWrite
5740
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AsteroidChunk.html Online documentation}
5791
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AsteroidChunk.html Online documentation}
5741
5792
  */
5742
5793
  export interface AsteroidChunk {
5743
5794
  /**
@@ -5749,7 +5800,7 @@ declare module "factorio:runtime" {
5749
5800
  }
5750
5801
  /**
5751
5802
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5752
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AsteroidChunk.html Online documentation}
5803
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AsteroidChunk.html Online documentation}
5753
5804
  */
5754
5805
  export interface AsteroidChunkWrite {
5755
5806
  /**
@@ -5771,7 +5822,7 @@ declare module "factorio:runtime" {
5771
5822
  }
5772
5823
  /**
5773
5824
  * Either `icon`, `text`, or both must be provided.
5774
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ChartTagSpec.html Online documentation}
5825
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ChartTagSpec.html Online documentation}
5775
5826
  */
5776
5827
  export interface ChartTagSpec {
5777
5828
  readonly position: MapPosition | MapPositionArray
@@ -5781,88 +5832,93 @@ declare module "factorio:runtime" {
5781
5832
  }
5782
5833
  /**
5783
5834
  * 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.
5784
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.html Online documentation}
5835
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.html Online documentation}
5785
5836
  */
5786
5837
  export interface GameViewSettings {
5787
5838
  /**
5788
5839
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5789
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5840
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5790
5841
  */
5791
5842
  show_controller_gui: boolean
5792
5843
  /**
5793
5844
  * Show the chart in the upper right-hand corner of the screen.
5794
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_minimap.html Online documentation}
5845
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_minimap.html Online documentation}
5795
5846
  */
5796
5847
  show_minimap: boolean
5797
5848
  /**
5798
5849
  * Show research progress and name in the upper right-hand corner of the screen.
5799
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_research_info.html Online documentation}
5850
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_research_info.html Online documentation}
5800
5851
  */
5801
5852
  show_research_info: boolean
5802
5853
  /**
5803
5854
  * Show overlay icons on entities. Also known as "alt-mode".
5804
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_entity_info.html Online documentation}
5855
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_entity_info.html Online documentation}
5805
5856
  */
5806
5857
  show_entity_info: boolean
5807
5858
  /**
5808
5859
  * Show the flashing alert icons next to the player's toolbar.
5809
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5860
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5810
5861
  */
5811
5862
  show_alert_gui: boolean
5812
5863
  /**
5813
5864
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
5814
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5865
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5815
5866
  */
5816
5867
  update_entity_selection: boolean
5817
5868
  /**
5818
5869
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
5819
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5870
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5820
5871
  */
5821
5872
  show_rail_block_visualisation: boolean
5822
5873
  /**
5823
5874
  * Shows or hides the buttons row.
5824
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_side_menu.html Online documentation}
5875
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_side_menu.html Online documentation}
5825
5876
  */
5826
5877
  show_side_menu: boolean
5827
5878
  /**
5828
5879
  * Shows or hides the view options when map is opened.
5829
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5880
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5830
5881
  */
5831
5882
  show_map_view_options: boolean
5832
5883
  /**
5833
5884
  * Shows or hides the tooltip that is displayed when selecting an entity.
5834
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5885
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5835
5886
  */
5836
5887
  show_entity_tooltip: boolean
5837
5888
  /**
5838
5889
  * Shows or hides quickbar of shortcuts.
5839
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_quickbar.html Online documentation}
5890
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_quickbar.html Online documentation}
5840
5891
  */
5841
5892
  show_quickbar: boolean
5842
5893
  /**
5843
5894
  * Shows or hides the shortcut bar.
5844
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5895
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5845
5896
  */
5846
5897
  show_shortcut_bar: boolean
5847
5898
  /**
5848
5899
  * Shows or hides the crafting queue.
5849
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5900
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5850
5901
  */
5851
5902
  show_crafting_queue: boolean
5852
5903
  /**
5853
5904
  * Shows or hides the tool window with the weapons and armor.
5854
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5905
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5855
5906
  */
5856
5907
  show_tool_bar: boolean
5857
5908
  /**
5858
- * hows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5859
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5909
+ * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5910
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5860
5911
  */
5861
5912
  show_hotkey_suggestions: boolean
5913
+ /**
5914
+ * Shows or hides the surface list while in Remote View.
5915
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GameViewSettings.show_surface_list.html Online documentation}
5916
+ */
5917
+ show_surface_list: boolean
5862
5918
  }
5863
5919
  /**
5864
5920
  * The data that can be extracted from a map exchange string, as a plain table.
5865
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapExchangeStringData.html Online documentation}
5921
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapExchangeStringData.html Online documentation}
5866
5922
  */
5867
5923
  export interface MapExchangeStringData {
5868
5924
  readonly map_settings: MapAndDifficultySettings
@@ -5895,12 +5951,12 @@ declare module "factorio:runtime" {
5895
5951
  * - `target_entity_number`
5896
5952
  *
5897
5953
  * - `target_wire_connector_id`
5898
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/BlueprintWire.html Online documentation}
5954
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/BlueprintWire.html Online documentation}
5899
5955
  */
5900
5956
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
5901
5957
  /**
5902
5958
  * @see TileWrite
5903
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Tile.html Online documentation}
5959
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Tile.html Online documentation}
5904
5960
  */
5905
5961
  export interface Tile {
5906
5962
  /**
@@ -5914,7 +5970,7 @@ declare module "factorio:runtime" {
5914
5970
  }
5915
5971
  /**
5916
5972
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
5917
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Tile.html Online documentation}
5973
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Tile.html Online documentation}
5918
5974
  */
5919
5975
  export interface TileWrite {
5920
5976
  /**
@@ -5969,7 +6025,7 @@ declare module "factorio:runtime" {
5969
6025
  *
5970
6026
  * Other attributes may be specified depending on `type`:
5971
6027
  * - `"fluid"`: {@link FluidIngredient}
5972
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Ingredient.html Online documentation}
6028
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Ingredient.html Online documentation}
5973
6029
  */
5974
6030
  export type Ingredient = FluidIngredient | OtherIngredient
5975
6031
  export interface Loot {
@@ -6135,7 +6191,7 @@ declare module "factorio:runtime" {
6135
6191
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6136
6192
  * - `"nothing"`: {@link NothingTechnologyModifier}
6137
6193
  * - Other types: {@link OtherTechnologyModifier}
6138
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TechnologyModifier.html Online documentation}
6194
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TechnologyModifier.html Online documentation}
6139
6195
  */
6140
6196
  export type TechnologyModifier =
6141
6197
  | GunSpeedTechnologyModifier
@@ -6147,7 +6203,7 @@ declare module "factorio:runtime" {
6147
6203
  | OtherTechnologyModifier
6148
6204
  /**
6149
6205
  * 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}.
6150
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/NoiseExpression.html Online documentation}
6206
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/NoiseExpression.html Online documentation}
6151
6207
  */
6152
6208
  export interface NoiseExpression {
6153
6209
  /**
@@ -6200,7 +6256,7 @@ declare module "factorio:runtime" {
6200
6256
  * - `"very-high"`: equivalent to `2`.
6201
6257
  * - `"very-big"`: equivalent to `2`.
6202
6258
  * - `"very-good"`: equivalent to `2`.
6203
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MapGenSize.html Online documentation}
6259
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MapGenSize.html Online documentation}
6204
6260
  */
6205
6261
  export type MapGenSize =
6206
6262
  | float
@@ -6222,7 +6278,7 @@ declare module "factorio:runtime" {
6222
6278
  | "very-good"
6223
6279
  /**
6224
6280
  * @see AutoplaceControlWrite
6225
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AutoplaceControl.html Online documentation}
6281
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AutoplaceControl.html Online documentation}
6226
6282
  */
6227
6283
  export interface AutoplaceControl {
6228
6284
  /**
@@ -6240,7 +6296,7 @@ declare module "factorio:runtime" {
6240
6296
  }
6241
6297
  /**
6242
6298
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6243
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AutoplaceControl.html Online documentation}
6299
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AutoplaceControl.html Online documentation}
6244
6300
  */
6245
6301
  export interface AutoplaceControlWrite {
6246
6302
  /**
@@ -6259,10 +6315,10 @@ declare module "factorio:runtime" {
6259
6315
  /**
6260
6316
  * 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}`.
6261
6317
  *
6262
- * {@link https://lua-api.factorio.com/2.0.21/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:}
6318
+ * {@link https://lua-api.factorio.com/2.0.22/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:}
6263
6319
  *
6264
- * {@link https://lua-api.factorio.com/2.0.21/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:}
6265
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PropertyExpressionNames.html Online documentation}
6320
+ * {@link https://lua-api.factorio.com/2.0.22/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:}
6321
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PropertyExpressionNames.html Online documentation}
6266
6322
  */
6267
6323
  export type PropertyExpressionNames = Record<string, string>
6268
6324
  export interface AdvancedMapGenSettings {
@@ -6295,7 +6351,7 @@ declare module "factorio:runtime" {
6295
6351
  }
6296
6352
  /**
6297
6353
  * An actual signal transmitted by the network.
6298
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Signal.html Online documentation}
6354
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Signal.html Online documentation}
6299
6355
  */
6300
6356
  export interface Signal {
6301
6357
  /**
@@ -6309,7 +6365,7 @@ declare module "factorio:runtime" {
6309
6365
  }
6310
6366
  /**
6311
6367
  * @see UpgradeMapperSourceWrite
6312
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/UpgradeMapperSource.html Online documentation}
6368
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/UpgradeMapperSource.html Online documentation}
6313
6369
  */
6314
6370
  export interface UpgradeMapperSource {
6315
6371
  readonly type: "item" | "entity"
@@ -6328,7 +6384,7 @@ declare module "factorio:runtime" {
6328
6384
  }
6329
6385
  /**
6330
6386
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6331
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/UpgradeMapperSource.html Online documentation}
6387
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/UpgradeMapperSource.html Online documentation}
6332
6388
  */
6333
6389
  export interface UpgradeMapperSourceWrite {
6334
6390
  readonly type: "item" | "entity"
@@ -6365,7 +6421,7 @@ declare module "factorio:runtime" {
6365
6421
  }
6366
6422
  /**
6367
6423
  * A single filter used by an infinity-filters instance.
6368
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/InfinityInventoryFilter.html Online documentation}
6424
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/InfinityInventoryFilter.html Online documentation}
6369
6425
  */
6370
6426
  export interface InfinityInventoryFilter {
6371
6427
  /**
@@ -6387,7 +6443,7 @@ declare module "factorio:runtime" {
6387
6443
  }
6388
6444
  /**
6389
6445
  * A single filter used by an infinity-pipe type entity.
6390
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/InfinityPipeFilter.html Online documentation}
6446
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/InfinityPipeFilter.html Online documentation}
6391
6447
  */
6392
6448
  export interface InfinityPipeFilter {
6393
6449
  /**
@@ -6441,7 +6497,7 @@ declare module "factorio:runtime" {
6441
6497
  }
6442
6498
  /**
6443
6499
  * The settings used by a heat-interface type entity.
6444
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/HeatSetting.html Online documentation}
6500
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/HeatSetting.html Online documentation}
6445
6501
  */
6446
6502
  export interface HeatSetting {
6447
6503
  /**
@@ -6523,7 +6579,7 @@ declare module "factorio:runtime" {
6523
6579
  }
6524
6580
  /**
6525
6581
  * @see CircuitConditionWrite
6526
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CircuitCondition.html Online documentation}
6582
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CircuitCondition.html Online documentation}
6527
6583
  */
6528
6584
  export interface CircuitCondition {
6529
6585
  /**
@@ -6545,7 +6601,7 @@ declare module "factorio:runtime" {
6545
6601
  }
6546
6602
  /**
6547
6603
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6548
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CircuitCondition.html Online documentation}
6604
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CircuitCondition.html Online documentation}
6549
6605
  */
6550
6606
  export interface CircuitConditionWrite {
6551
6607
  /**
@@ -6567,7 +6623,7 @@ declare module "factorio:runtime" {
6567
6623
  }
6568
6624
  /**
6569
6625
  * @see CircuitConditionDefinitionWrite
6570
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CircuitConditionDefinition.html Online documentation}
6626
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CircuitConditionDefinition.html Online documentation}
6571
6627
  */
6572
6628
  export interface CircuitConditionDefinition {
6573
6629
  /**
@@ -6581,7 +6637,7 @@ declare module "factorio:runtime" {
6581
6637
  }
6582
6638
  /**
6583
6639
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6584
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CircuitConditionDefinition.html Online documentation}
6640
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CircuitConditionDefinition.html Online documentation}
6585
6641
  */
6586
6642
  export interface CircuitConditionDefinitionWrite {
6587
6643
  /**
@@ -6618,20 +6674,6 @@ declare module "factorio:runtime" {
6618
6674
  readonly condition_size: uint
6619
6675
  readonly condition: CollisionMask
6620
6676
  }
6621
- export interface ItemCountWithQuality {
6622
- /**
6623
- * The name of the item prototype.
6624
- */
6625
- readonly name: string
6626
- /**
6627
- * The number of items.
6628
- */
6629
- readonly count: uint
6630
- /**
6631
- * The quality level of the items.
6632
- */
6633
- readonly quality: LuaQualityPrototype
6634
- }
6635
6677
  export interface BaseCommand {
6636
6678
  /**
6637
6679
  * Type of command. The remaining fields depend on the value of this field.
@@ -6870,7 +6912,7 @@ declare module "factorio:runtime" {
6870
6912
  * - {@link defines.command.stop}: {@link StopCommand}
6871
6913
  * - {@link defines.command.flee}: {@link FleeCommand}
6872
6914
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
6873
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Command.html Online documentation}
6915
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Command.html Online documentation}
6874
6916
  */
6875
6917
  export type Command =
6876
6918
  | AttackCommand
@@ -6884,7 +6926,7 @@ declare module "factorio:runtime" {
6884
6926
  | BuildBaseCommand
6885
6927
  /**
6886
6928
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
6887
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Command.html Online documentation}
6929
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Command.html Online documentation}
6888
6930
  */
6889
6931
  export type CommandWrite =
6890
6932
  | AttackCommand
@@ -6969,7 +7011,7 @@ declare module "factorio:runtime" {
6969
7011
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
6970
7012
  * "iron-plate"
6971
7013
  * {name="iron-plate", count=100}
6972
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SimpleItemStack.html Online documentation}
7014
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SimpleItemStack.html Online documentation}
6973
7015
  */
6974
7016
  export type SimpleItemStack = string | ItemStackDefinition
6975
7017
  /**
@@ -6979,7 +7021,7 @@ declare module "factorio:runtime" {
6979
7021
  * - 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.
6980
7022
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
6981
7023
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
6982
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SurfaceIdentification.html Online documentation}
7024
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SurfaceIdentification.html Online documentation}
6983
7025
  */
6984
7026
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
6985
7027
  /**
@@ -6989,7 +7031,7 @@ declare module "factorio:runtime" {
6989
7031
  * - PlayerIndex: The player index.
6990
7032
  * - `string`: The player name.
6991
7033
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
6992
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/PlayerIdentification.html Online documentation}
7034
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/PlayerIdentification.html Online documentation}
6993
7035
  */
6994
7036
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
6995
7037
  /**
@@ -6998,7 +7040,7 @@ declare module "factorio:runtime" {
6998
7040
  * ## Union members
6999
7041
  * - {@link SimpleItemStack}
7000
7042
  * - {@link LuaItemStack}
7001
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemStackIdentification.html Online documentation}
7043
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemStackIdentification.html Online documentation}
7002
7044
  */
7003
7045
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7004
7046
  /**
@@ -7008,7 +7050,7 @@ declare module "factorio:runtime" {
7008
7050
  * - `"entity"`: Fires at an entity.
7009
7051
  * - `"position"`: Fires directly at a position.
7010
7052
  * - `"direction"`: Fires in a direction.
7011
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TargetType.html Online documentation}
7053
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TargetType.html Online documentation}
7012
7054
  */
7013
7055
  export type TargetType = "entity" | "position" | "direction"
7014
7056
  export interface BeamTarget {
@@ -7045,8 +7087,8 @@ declare module "factorio:runtime" {
7045
7087
  *
7046
7088
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7047
7089
  *
7048
- * {@link https://lua-api.factorio.com/2.0.21/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7049
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SoundPath.html Online documentation}
7090
+ * {@link https://lua-api.factorio.com/2.0.22/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7091
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SoundPath.html Online documentation}
7050
7092
  */
7051
7093
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7052
7094
  export interface CircularParticleCreationSpecification {
@@ -7178,7 +7220,7 @@ declare module "factorio:runtime" {
7178
7220
  * Other attributes may be specified depending on `type`:
7179
7221
  * - `"projectile"`: {@link ProjectileAttackParameters}
7180
7222
  * - `"stream"`: {@link StreamAttackParameters}
7181
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AttackParameters.html Online documentation}
7223
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AttackParameters.html Online documentation}
7182
7224
  */
7183
7225
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7184
7226
  export interface GunShift4Way {
@@ -7244,7 +7286,7 @@ declare module "factorio:runtime" {
7244
7286
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7245
7287
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7246
7288
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7247
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/CapsuleAction.html Online documentation}
7289
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/CapsuleAction.html Online documentation}
7248
7290
  */
7249
7291
  export type CapsuleAction =
7250
7292
  | ThrowCapsuleAction
@@ -7284,12 +7326,12 @@ declare module "factorio:runtime" {
7284
7326
  }
7285
7327
  /**
7286
7328
  * Any basic type (string, number, boolean) or table.
7287
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AnyBasic.html Online documentation}
7329
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AnyBasic.html Online documentation}
7288
7330
  */
7289
7331
  export type AnyBasic = string | boolean | number | table
7290
7332
  /**
7291
7333
  * Any basic type (string, number, boolean), table, or LuaObject.
7292
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Any.html Online documentation}
7334
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Any.html Online documentation}
7293
7335
  */
7294
7336
  export type Any = string | boolean | number | table | LuaObject
7295
7337
  export interface ProgrammableSpeakerParameters {
@@ -7327,7 +7369,7 @@ declare module "factorio:runtime" {
7327
7369
  * - `"top-right"`
7328
7370
  * - `"right"`: The same as `"middle-right"`
7329
7371
  * - `"bottom-right"`
7330
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/Alignment.html Online documentation}
7372
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/Alignment.html Online documentation}
7331
7373
  */
7332
7374
  export type Alignment =
7333
7375
  | "top-left"
@@ -7360,8 +7402,8 @@ declare module "factorio:runtime" {
7360
7402
  _customEventIdBrand: any
7361
7403
  }
7362
7404
  /**
7363
- * 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.21/events.html the list of Factorio events} for more information on these.
7364
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EventData.html Online documentation}
7405
+ * 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.22/events.html the list of Factorio events} for more information on these.
7406
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EventData.html Online documentation}
7365
7407
  */
7366
7408
  export interface EventData {
7367
7409
  /**
@@ -7450,6 +7492,10 @@ declare module "factorio:runtime" {
7450
7492
  * The `name` of the prototype. E.g. `"tree-05"`.
7451
7493
  */
7452
7494
  readonly name: string
7495
+ /**
7496
+ * The `name` of the quality prototype if any. E.g. `"normal"`.
7497
+ */
7498
+ readonly quality?: string
7453
7499
  }
7454
7500
  /**
7455
7501
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
@@ -7466,7 +7512,7 @@ declare module "factorio:runtime" {
7466
7512
  * - `"button-7"`
7467
7513
  * - `"button-8"`
7468
7514
  * - `"button-9"`
7469
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/MouseButtonFlags.html Online documentation}
7515
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/MouseButtonFlags.html Online documentation}
7470
7516
  */
7471
7517
  export interface MouseButtonFlags {
7472
7518
  readonly left?: true
@@ -7489,7 +7535,7 @@ declare module "factorio:runtime" {
7489
7535
  * - `"not-friend"`: Forces which are not friends pass.
7490
7536
  * - `"same"`: The same force pass.
7491
7537
  * - `"not-same"`: The non-same forces pass.
7492
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ForceCondition.html Online documentation}
7538
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ForceCondition.html Online documentation}
7493
7539
  */
7494
7540
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7495
7541
  export interface ItemStackLocation {
@@ -7527,7 +7573,7 @@ declare module "factorio:runtime" {
7527
7573
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7528
7574
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7529
7575
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7530
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiElementType.html Online documentation}
7576
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiElementType.html Online documentation}
7531
7577
  */
7532
7578
  export type GuiElementType =
7533
7579
  | "button"
@@ -7567,7 +7613,7 @@ declare module "factorio:runtime" {
7567
7613
  * - `"position"`
7568
7614
  * - `"crafting_queue"`
7569
7615
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7570
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiArrowType.html Online documentation}
7616
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiArrowType.html Online documentation}
7571
7617
  */
7572
7618
  export type GuiArrowType =
7573
7619
  | "nowhere"
@@ -7584,7 +7630,7 @@ declare module "factorio:runtime" {
7584
7630
  * ## Union members
7585
7631
  * - `"horizontal"`
7586
7632
  * - `"vertical"`
7587
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/GuiDirection.html Online documentation}
7633
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/GuiDirection.html Online documentation}
7588
7634
  */
7589
7635
  export type GuiDirection = "horizontal" | "vertical"
7590
7636
  /**
@@ -7596,7 +7642,7 @@ declare module "factorio:runtime" {
7596
7642
  * - `"always"`
7597
7643
  * - `"auto"`
7598
7644
  * - `"auto-and-reserve-space"`
7599
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ScrollPolicy.html Online documentation}
7645
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ScrollPolicy.html Online documentation}
7600
7646
  */
7601
7647
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7602
7648
  export interface RailLocation {
@@ -7613,71 +7659,71 @@ declare module "factorio:runtime" {
7613
7659
  }
7614
7660
  /**
7615
7661
  * 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.
7616
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/float.html Online documentation}
7662
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/float.html Online documentation}
7617
7663
  */
7618
7664
  export type float = number
7619
7665
  /**
7620
7666
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7621
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/double.html Online documentation}
7667
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/double.html Online documentation}
7622
7668
  */
7623
7669
  export type double = number
7624
7670
  /**
7625
7671
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7626
7672
  *
7627
7673
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7628
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/int.html Online documentation}
7674
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/int.html Online documentation}
7629
7675
  */
7630
7676
  export type int = number
7631
7677
  /**
7632
7678
  * 8-bit signed integer. Possible values are `-128` to `127`.
7633
7679
  *
7634
7680
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7635
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/int8.html Online documentation}
7681
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/int8.html Online documentation}
7636
7682
  */
7637
7683
  export type int8 = number
7638
7684
  /**
7639
7685
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7640
7686
  *
7641
7687
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7642
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/uint.html Online documentation}
7688
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/uint.html Online documentation}
7643
7689
  */
7644
7690
  export type uint = number
7645
7691
  /**
7646
7692
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7647
7693
  *
7648
7694
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7649
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/uint8.html Online documentation}
7695
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/uint8.html Online documentation}
7650
7696
  */
7651
7697
  export type uint8 = number
7652
7698
  /**
7653
7699
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7654
7700
  *
7655
7701
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7656
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/uint16.html Online documentation}
7702
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/uint16.html Online documentation}
7657
7703
  */
7658
7704
  export type uint16 = number
7659
7705
  /**
7660
7706
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7661
7707
  *
7662
7708
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7663
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/uint64.html Online documentation}
7709
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/uint64.html Online documentation}
7664
7710
  */
7665
7711
  export type uint64 = number
7666
7712
  /**
7667
7713
  * 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.
7668
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/nil.html Online documentation}
7714
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/nil.html Online documentation}
7669
7715
  */
7670
7716
  export type nil = undefined
7671
7717
  /**
7672
7718
  * Tables are enclosed in curly brackets, like this `{}`.
7673
7719
  *
7674
7720
  * 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.
7675
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/table.html Online documentation}
7721
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/table.html Online documentation}
7676
7722
  */
7677
7723
  export type table = object
7678
7724
  /**
7679
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.21/classes.html Classes} page.
7680
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaObject.html Online documentation}
7725
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.22/classes.html Classes} page.
7726
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaObject.html Online documentation}
7681
7727
  */
7682
7728
  export interface LuaObject {
7683
7729
  readonly object_name: string
@@ -7736,7 +7782,7 @@ declare module "factorio:runtime" {
7736
7782
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
7737
7783
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
7738
7784
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
7739
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ModSettingPrototypeFilter.html Online documentation}
7785
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ModSettingPrototypeFilter.html Online documentation}
7740
7786
  */
7741
7787
  export type ModSettingPrototypeFilter =
7742
7788
  | TypeModSettingPrototypeFilter
@@ -7881,7 +7927,7 @@ declare module "factorio:runtime" {
7881
7927
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
7882
7928
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
7883
7929
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
7884
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TilePrototypeFilter.html Online documentation}
7930
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TilePrototypeFilter.html Online documentation}
7885
7931
  */
7886
7932
  export type TilePrototypeFilter =
7887
7933
  | CollisionMaskTilePrototypeFilter
@@ -7892,7 +7938,7 @@ declare module "factorio:runtime" {
7892
7938
  | OtherTilePrototypeFilter
7893
7939
  /**
7894
7940
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
7895
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TilePrototypeFilter.html Online documentation}
7941
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TilePrototypeFilter.html Online documentation}
7896
7942
  */
7897
7943
  export type TilePrototypeFilterWrite =
7898
7944
  | CollisionMaskTilePrototypeFilter
@@ -7943,7 +7989,7 @@ declare module "factorio:runtime" {
7943
7989
  *
7944
7990
  * Other attributes may be specified depending on `filter`:
7945
7991
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
7946
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/DecorativePrototypeFilter.html Online documentation}
7992
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/DecorativePrototypeFilter.html Online documentation}
7947
7993
  */
7948
7994
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
7949
7995
  /**
@@ -8197,7 +8243,7 @@ declare module "factorio:runtime" {
8197
8243
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8198
8244
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8199
8245
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8200
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RecipePrototypeFilter.html Online documentation}
8246
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RecipePrototypeFilter.html Online documentation}
8201
8247
  */
8202
8248
  export type RecipePrototypeFilter =
8203
8249
  | HasIngredientItemRecipePrototypeFilter
@@ -8213,7 +8259,7 @@ declare module "factorio:runtime" {
8213
8259
  | OtherRecipePrototypeFilter
8214
8260
  /**
8215
8261
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8216
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/RecipePrototypeFilter.html Online documentation}
8262
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/RecipePrototypeFilter.html Online documentation}
8217
8263
  */
8218
8264
  export type RecipePrototypeFilterWrite =
8219
8265
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8265,7 +8311,7 @@ declare module "factorio:runtime" {
8265
8311
  *
8266
8312
  * Other attributes may be specified depending on `filter`:
8267
8313
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8268
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/AchievementPrototypeFilter.html Online documentation}
8314
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/AchievementPrototypeFilter.html Online documentation}
8269
8315
  */
8270
8316
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8271
8317
  /**
@@ -8388,7 +8434,7 @@ declare module "factorio:runtime" {
8388
8434
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8389
8435
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8390
8436
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8391
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TechnologyPrototypeFilter.html Online documentation}
8437
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TechnologyPrototypeFilter.html Online documentation}
8392
8438
  */
8393
8439
  export type TechnologyPrototypeFilter =
8394
8440
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8399,7 +8445,7 @@ declare module "factorio:runtime" {
8399
8445
  | OtherTechnologyPrototypeFilter
8400
8446
  /**
8401
8447
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8402
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/TechnologyPrototypeFilter.html Online documentation}
8448
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/TechnologyPrototypeFilter.html Online documentation}
8403
8449
  */
8404
8450
  export type TechnologyPrototypeFilterWrite =
8405
8451
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8716,7 +8762,7 @@ declare module "factorio:runtime" {
8716
8762
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8717
8763
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8718
8764
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8719
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemPrototypeFilter.html Online documentation}
8765
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemPrototypeFilter.html Online documentation}
8720
8766
  */
8721
8767
  export type ItemPrototypeFilter =
8722
8768
  | PlaceResultItemPrototypeFilter
@@ -8736,7 +8782,7 @@ declare module "factorio:runtime" {
8736
8782
  | OtherItemPrototypeFilter
8737
8783
  /**
8738
8784
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8739
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/ItemPrototypeFilter.html Online documentation}
8785
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/ItemPrototypeFilter.html Online documentation}
8740
8786
  */
8741
8787
  export type ItemPrototypeFilterWrite =
8742
8788
  | PlaceResultItemPrototypeFilterWrite
@@ -8792,7 +8838,7 @@ declare module "factorio:runtime" {
8792
8838
  *
8793
8839
  * Other attributes may be specified depending on `filter`:
8794
8840
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
8795
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EquipmentPrototypeFilter.html Online documentation}
8841
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EquipmentPrototypeFilter.html Online documentation}
8796
8842
  */
8797
8843
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
8798
8844
  /**
@@ -9023,7 +9069,7 @@ declare module "factorio:runtime" {
9023
9069
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9024
9070
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9025
9071
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9026
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityPrototypeFilter.html Online documentation}
9072
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityPrototypeFilter.html Online documentation}
9027
9073
  */
9028
9074
  export type EntityPrototypeFilter =
9029
9075
  | NameEntityPrototypeFilter
@@ -9037,7 +9083,7 @@ declare module "factorio:runtime" {
9037
9083
  | OtherEntityPrototypeFilter
9038
9084
  /**
9039
9085
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9040
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/EntityPrototypeFilter.html Online documentation}
9086
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/EntityPrototypeFilter.html Online documentation}
9041
9087
  */
9042
9088
  export type EntityPrototypeFilterWrite =
9043
9089
  | NameEntityPrototypeFilter
@@ -9107,7 +9153,7 @@ declare module "factorio:runtime" {
9107
9153
  * Other attributes may be specified depending on `filter`:
9108
9154
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9109
9155
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9110
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9156
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9111
9157
  */
9112
9158
  export type SpaceLocationPrototypeFilter =
9113
9159
  | TypeSpaceLocationPrototypeFilter
@@ -9115,7 +9161,7 @@ declare module "factorio:runtime" {
9115
9161
  | OtherSpaceLocationPrototypeFilter
9116
9162
  /**
9117
9163
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9118
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9164
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9119
9165
  */
9120
9166
  export type SpaceLocationPrototypeFilterWrite =
9121
9167
  | TypeSpaceLocationPrototypeFilter
@@ -9303,7 +9349,7 @@ declare module "factorio:runtime" {
9303
9349
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9304
9350
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9305
9351
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9306
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/FluidPrototypeFilter.html Online documentation}
9352
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/FluidPrototypeFilter.html Online documentation}
9307
9353
  */
9308
9354
  export type FluidPrototypeFilter =
9309
9355
  | NameFluidPrototypeFilter
@@ -9317,7 +9363,7 @@ declare module "factorio:runtime" {
9317
9363
  | OtherFluidPrototypeFilter
9318
9364
  /**
9319
9365
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9320
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/FluidPrototypeFilter.html Online documentation}
9366
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/FluidPrototypeFilter.html Online documentation}
9321
9367
  */
9322
9368
  export type FluidPrototypeFilterWrite =
9323
9369
  | NameFluidPrototypeFilter
@@ -9426,7 +9472,7 @@ declare module "factorio:runtime" {
9426
9472
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9427
9473
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9428
9474
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9429
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9475
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9430
9476
  */
9431
9477
  export type LuaPrePlatformMinedEntityEventFilter =
9432
9478
  | TypePrePlatformMinedEntityEventFilter
@@ -9531,7 +9577,7 @@ declare module "factorio:runtime" {
9531
9577
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9532
9578
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9533
9579
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9534
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9580
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9535
9581
  */
9536
9582
  export type LuaRobotMinedEntityEventFilter =
9537
9583
  | TypeRobotMinedEntityEventFilter
@@ -9636,7 +9682,7 @@ declare module "factorio:runtime" {
9636
9682
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9637
9683
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9638
9684
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9639
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9685
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9640
9686
  */
9641
9687
  export type LuaEntityMarkedForUpgradeEventFilter =
9642
9688
  | TypeEntityMarkedForUpgradeEventFilter
@@ -9741,7 +9787,7 @@ declare module "factorio:runtime" {
9741
9787
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
9742
9788
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
9743
9789
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
9744
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9790
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9745
9791
  */
9746
9792
  export type LuaPreGhostUpgradedEventFilter =
9747
9793
  | TypePreGhostUpgradedEventFilter
@@ -9846,7 +9892,7 @@ declare module "factorio:runtime" {
9846
9892
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
9847
9893
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
9848
9894
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
9849
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
9895
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
9850
9896
  */
9851
9897
  export type LuaPlatformMinedEntityEventFilter =
9852
9898
  | TypePlatformMinedEntityEventFilter
@@ -9951,7 +9997,7 @@ declare module "factorio:runtime" {
9951
9997
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
9952
9998
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
9953
9999
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
9954
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10000
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
9955
10001
  */
9956
10002
  export type LuaScriptRaisedDestroyEventFilter =
9957
10003
  | TypeScriptRaisedDestroyEventFilter
@@ -10068,7 +10114,7 @@ declare module "factorio:runtime" {
10068
10114
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10069
10115
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10070
10116
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10071
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10117
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10072
10118
  */
10073
10119
  export type LuaPlayerBuiltEntityEventFilter =
10074
10120
  | TypePlayerBuiltEntityEventFilter
@@ -10186,7 +10232,7 @@ declare module "factorio:runtime" {
10186
10232
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10187
10233
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10188
10234
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10189
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10235
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10190
10236
  */
10191
10237
  export type LuaPlatformBuiltEntityEventFilter =
10192
10238
  | TypePlatformBuiltEntityEventFilter
@@ -10292,7 +10338,7 @@ declare module "factorio:runtime" {
10292
10338
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10293
10339
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10294
10340
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10295
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10341
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10296
10342
  */
10297
10343
  export type LuaPreGhostDeconstructedEventFilter =
10298
10344
  | TypePreGhostDeconstructedEventFilter
@@ -10397,7 +10443,7 @@ declare module "factorio:runtime" {
10397
10443
  * - `"name"`: {@link NameEntityClonedEventFilter}
10398
10444
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10399
10445
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10400
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityClonedEventFilter.html Online documentation}
10446
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityClonedEventFilter.html Online documentation}
10401
10447
  */
10402
10448
  export type LuaEntityClonedEventFilter =
10403
10449
  | TypeEntityClonedEventFilter
@@ -10502,7 +10548,7 @@ declare module "factorio:runtime" {
10502
10548
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10503
10549
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10504
10550
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10505
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10551
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10506
10552
  */
10507
10553
  export type LuaScriptRaisedTeleportedEventFilter =
10508
10554
  | TypeScriptRaisedTeleportedEventFilter
@@ -10609,7 +10655,7 @@ declare module "factorio:runtime" {
10609
10655
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10610
10656
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10611
10657
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10612
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10658
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10613
10659
  */
10614
10660
  export type LuaEntityDeconstructionCancelledEventFilter =
10615
10661
  | TypeEntityDeconstructionCancelledEventFilter
@@ -10726,7 +10772,7 @@ declare module "factorio:runtime" {
10726
10772
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
10727
10773
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
10728
10774
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
10729
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10775
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10730
10776
  */
10731
10777
  export type LuaRobotBuiltEntityEventFilter =
10732
10778
  | TypeRobotBuiltEntityEventFilter
@@ -10832,7 +10878,7 @@ declare module "factorio:runtime" {
10832
10878
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
10833
10879
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
10834
10880
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
10835
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
10881
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
10836
10882
  */
10837
10883
  export type LuaScriptRaisedBuiltEventFilter =
10838
10884
  | TypeScriptRaisedBuiltEventFilter
@@ -10937,7 +10983,7 @@ declare module "factorio:runtime" {
10937
10983
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
10938
10984
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
10939
10985
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
10940
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
10986
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
10941
10987
  */
10942
10988
  export type LuaPrePlayerMinedEntityEventFilter =
10943
10989
  | TypePrePlayerMinedEntityEventFilter
@@ -11042,7 +11088,7 @@ declare module "factorio:runtime" {
11042
11088
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11043
11089
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11044
11090
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11045
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11091
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11046
11092
  */
11047
11093
  export type LuaPlayerRepairedEntityEventFilter =
11048
11094
  | TypePlayerRepairedEntityEventFilter
@@ -11147,7 +11193,7 @@ declare module "factorio:runtime" {
11147
11193
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11148
11194
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11149
11195
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11150
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11196
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11151
11197
  */
11152
11198
  export type LuaUpgradeCancelledEventFilter =
11153
11199
  | TypeUpgradeCancelledEventFilter
@@ -11252,7 +11298,7 @@ declare module "factorio:runtime" {
11252
11298
  * - `"name"`: {@link NameSectorScannedEventFilter}
11253
11299
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11254
11300
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11255
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaSectorScannedEventFilter.html Online documentation}
11301
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaSectorScannedEventFilter.html Online documentation}
11256
11302
  */
11257
11303
  export type LuaSectorScannedEventFilter =
11258
11304
  | TypeSectorScannedEventFilter
@@ -11298,7 +11344,7 @@ declare module "factorio:runtime" {
11298
11344
  *
11299
11345
  * Other attributes may be specified depending on `filter`:
11300
11346
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11301
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11347
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11302
11348
  */
11303
11349
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11304
11350
  /**
@@ -11400,7 +11446,7 @@ declare module "factorio:runtime" {
11400
11446
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11401
11447
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11402
11448
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11403
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11449
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11404
11450
  */
11405
11451
  export type LuaEntityMarkedForDeconstructionEventFilter =
11406
11452
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11505,7 +11551,7 @@ declare module "factorio:runtime" {
11505
11551
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11506
11552
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11507
11553
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11508
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11554
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11509
11555
  */
11510
11556
  export type LuaPlayerMinedEntityEventFilter =
11511
11557
  | TypePlayerMinedEntityEventFilter
@@ -11685,7 +11731,7 @@ declare module "factorio:runtime" {
11685
11731
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11686
11732
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11687
11733
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11688
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11734
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11689
11735
  */
11690
11736
  export type LuaEntityDamagedEventFilter =
11691
11737
  | TypeEntityDamagedEventFilter
@@ -11699,7 +11745,7 @@ declare module "factorio:runtime" {
11699
11745
  | OtherEntityDamagedEventFilter
11700
11746
  /**
11701
11747
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11702
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11748
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11703
11749
  */
11704
11750
  export type LuaEntityDamagedEventFilterWrite =
11705
11751
  | TypeEntityDamagedEventFilter
@@ -11808,7 +11854,7 @@ declare module "factorio:runtime" {
11808
11854
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
11809
11855
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
11810
11856
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
11811
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
11857
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
11812
11858
  */
11813
11859
  export type LuaScriptRaisedReviveEventFilter =
11814
11860
  | TypeScriptRaisedReviveEventFilter
@@ -11913,7 +11959,7 @@ declare module "factorio:runtime" {
11913
11959
  * - `"name"`: {@link NameEntityDiedEventFilter}
11914
11960
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
11915
11961
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
11916
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaEntityDiedEventFilter.html Online documentation}
11962
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaEntityDiedEventFilter.html Online documentation}
11917
11963
  */
11918
11964
  export type LuaEntityDiedEventFilter =
11919
11965
  | TypeEntityDiedEventFilter
@@ -12018,7 +12064,7 @@ declare module "factorio:runtime" {
12018
12064
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12019
12065
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12020
12066
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12021
- * @see {@link https://lua-api.factorio.com/2.0.21/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12067
+ * @see {@link https://lua-api.factorio.com/2.0.22/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12022
12068
  */
12023
12069
  export type LuaPreRobotMinedEntityEventFilter =
12024
12070
  | TypePreRobotMinedEntityEventFilter