typed-factorio 2.6.0 → 2.7.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.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 Benjamin Ye
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Benjamin Ye
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/common/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /** @noResolution */
2
2
  declare module "factorio:common" {
3
3
  import { ModSetting } from "factorio:runtime"
4
- import { PrototypeMap as PrototypePrototypeMap } from "factorio:prototype"
4
+ import { Data } from "factorio:prototype"
5
5
  import { PrototypeMap as SettingsPrototypeMap } from "factorio:settings"
6
6
  /**
7
7
  * A type map of type name -> prototype type.
@@ -16,21 +16,23 @@ declare module "factorio:common" {
16
16
  readonly name: string
17
17
  }
18
18
 
19
+ /**
20
+ * See {@link Data} for documentation.
21
+ */
19
22
  export interface DataGlobal<M = GlobalPrototypeMap> {
20
23
  /**
21
24
  * A table of the already added prototypes.
22
25
  * Indexed by prototype type, then by prototype name.
23
26
  */
24
27
  readonly raw: {
25
- readonly [T in keyof M]: {
26
- readonly [name in string]?: M[T]
28
+ readonly [type in keyof M]: {
29
+ readonly [name in string]?: M[type]
27
30
  }
28
31
  }
29
32
 
30
- /**
31
- * Add additional prototypes.
32
- */
33
33
  extend<P extends AnyPrototype<M>>(prototypes: readonly P[]): void
34
+
35
+ is_demo: boolean
34
36
  }
35
37
 
36
38
  export interface SettingsGlobal {
@@ -57,7 +59,7 @@ declare module "factorio:common" {
57
59
  * data.extend(...)
58
60
  * ```
59
61
  */
60
- export type PrototypeData = DataGlobal<PrototypePrototypeMap>
62
+ export type PrototypeData = Data
61
63
 
62
64
  /**
63
65
  * Represents a `data` global variable for the settings stage.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typed-factorio",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Featureful typescript definitions for the Factorio modding api.",
5
5
  "keywords": [
6
6
  "factorio",