factorio-types 0.0.44 → 0.0.45

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/dist/classes.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/runtime-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace runtime {
@@ -3197,6 +3197,15 @@ interface LuaEntity extends LuaControl {
3197
3197
  */
3198
3198
  readonly belt_neighbours: {[key: string]: LuaEntity[]}
3199
3199
 
3200
+ /**
3201
+ * Gives what is the current shape of a transport-belt.
3202
+ * @remarks
3203
+ * Can also be used on entity ghost if it contains transport-belt
3204
+ * Applies to subclasses: TransportBelt
3205
+ *
3206
+ */
3207
+ readonly belt_shape: 'straight' | 'left' | 'right'
3208
+
3200
3209
  /**
3201
3210
  * Whether this underground belt goes into or out of the ground.
3202
3211
  * @remarks
@@ -3616,6 +3625,11 @@ interface LuaEntity extends LuaControl {
3616
3625
  */
3617
3626
  readonly ghost_unit_number?: number
3618
3627
 
3628
+ /**
3629
+ * Returns a {@link rich text | https://wiki.factorio.com/Rich_text} string containing this entity's position and surface name as a gps tag. Printing it will ping the location of the entity.
3630
+ */
3631
+ readonly gps_tag: string
3632
+
3619
3633
  /**
3620
3634
  * The graphics variation for this entity. `nil` if this entity doesn't use graphics variations.
3621
3635
  */
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/runtime-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace runtime {
package/dist/defines.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/runtime-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace defines {
package/dist/events.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/runtime-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace runtime {
package/dist/global.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/runtime-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  /**
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/prototype-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace prototype {
package/dist/types.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Factorio API reference https://lua-api.factorio.com/latest/index.html
3
3
  // Generated from JSON source https://lua-api.factorio.com/latest/prototype-api.json
4
4
  // Definition source https://github.com/sguest/factorio-types
5
- // Factorio version 1.1.96
5
+ // Factorio version 1.1.100
6
6
  // API version 4
7
7
 
8
8
  declare namespace prototype {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "factorio-types",
3
- "version": "0.0.44",
3
+ "version": "0.0.45",
4
4
  "description": "Typescript declarations for the factorio mod API",
5
5
  "main": "index.d.ts",
6
6
  "repository": "https://github.com/sguest/factorio-types.git",
@@ -24,5 +24,5 @@
24
24
  "index.d.ts",
25
25
  "dist/**/*.d.ts"
26
26
  ],
27
- "factorioVersion": "1.1.96"
27
+ "factorioVersion": "1.1.100"
28
28
  }