typed-factorio 1.10.0 → 1.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typed-factorio",
3
- "version": "1.10.0",
3
+ "version": "1.10.2",
4
4
  "description": "Featureful typescript definitions for the the Factorio modding lua api.",
5
5
  "keywords": [
6
6
  "factorio",
@@ -1134,11 +1134,11 @@ interface BlueprintEntity {
1134
1134
  readonly bar?: uint16
1135
1135
  /** Cargo wagon inventory configuration */
1136
1136
  readonly inventory?: BlueprintInventory
1137
- /** Used by {@link https://wiki.factorio.com/Prototype/InfinityContainer Prototype/InfinityContainer}. */
1138
- readonly infinity_settings?: BlueprintInfinitySettings
1139
- /** Type of the underground belt or loader. Either "input" or "output". */
1137
+ /** ;Used by {@link https://wiki.factorio.com/Prototype/InfinityContainer Prototype/InfinityContainer}. */
1138
+ readonly infinity_settings?: BlueprintInfinitySettings | InfinityPipeFilter
1139
+ /** ;Type of the underground belt or loader. Either "input" or "output". */
1140
1140
  readonly type?: "input" | "output"
1141
- /** Input priority of the splitter. Either "right" or "left", "none" is omitted. */
1141
+ /** ;Input priority of the splitter. Either "right" or "left", "none" is omitted. */
1142
1142
  readonly input_priority?: "right" | "left"
1143
1143
  /** Output priority of the splitter. Either "right" or "left", "none" is omitted. */
1144
1144
  readonly output_priority?: "right" | "left"
@@ -1230,7 +1230,7 @@ interface BlueprintInfinitySettings {
1230
1230
  interface BlueprintControlBehavior {
1231
1231
  readonly condition?: CircuitCondition
1232
1232
  readonly circuit_condition?: CircuitCondition
1233
- readonly filters?: Signal[]
1233
+ readonly filters?: ConstantCombinatorParameters[]
1234
1234
  readonly is_on?: boolean
1235
1235
  readonly arithmetic_conditions?: ArithmeticCombinatorParameters
1236
1236
  readonly decider_conditions?: DeciderCombinatorParameters
@@ -1320,11 +1320,11 @@ interface BlueprintEntityWrite {
1320
1320
  readonly bar?: uint16
1321
1321
  /** Cargo wagon inventory configuration */
1322
1322
  readonly inventory?: BlueprintInventory
1323
- /** Used by {@link https://wiki.factorio.com/Prototype/InfinityContainer Prototype/InfinityContainer}. */
1324
- readonly infinity_settings?: BlueprintInfinitySettings
1325
- /** Type of the underground belt or loader. Either "input" or "output". */
1323
+ /** ;Used by {@link https://wiki.factorio.com/Prototype/InfinityContainer Prototype/InfinityContainer}. */
1324
+ readonly infinity_settings?: BlueprintInfinitySettings | InfinityPipeFilter
1325
+ /** ;Type of the underground belt or loader. Either "input" or "output". */
1326
1326
  readonly type?: "input" | "output"
1327
- /** Input priority of the splitter. Either "right" or "left", "none" is omitted. */
1327
+ /** ;Input priority of the splitter. Either "right" or "left", "none" is omitted. */
1328
1328
  readonly input_priority?: "right" | "left"
1329
1329
  /** Output priority of the splitter. Either "right" or "left", "none" is omitted. */
1330
1330
  readonly output_priority?: "right" | "left"