s2cfgtojson 7.0.12 → 7.0.13

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +5 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "7.0.12",
3
+ "version": "7.0.13",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -2381,13 +2381,7 @@ export type CharacterWeaponSettingsPrototype = GetStructType<{
2381
2381
  export type CharacterWeaponSettingsPrototypeCombatSynchronizationScore =
2382
2382
  GetStructType<NPCWeaponSettingsPrototypeCombatSynchronizationScoreItem[]>;
2383
2383
 
2384
- export type CluePrototype = GetStructType<{
2385
- DefaultValue: string;
2386
- Description: string;
2387
- ID: number;
2388
- SID: string;
2389
- Type: EGlobalVariableType;
2390
- }>;
2384
+ export type CluePrototype = GlobalVariablePrototype;
2391
2385
 
2392
2386
  export type CombatSynchronizationPrototype = GetStructType<
2393
2387
  { [k in Rank]: CombatSynchronizationPrototypeMaster } & {
@@ -11306,8 +11300,10 @@ export type SpawnActorPrototypeVolumetricCoverRestrictions = GetStructType<{
11306
11300
 
11307
11301
  export type SpawnActorPrototypeWeather = GetStructType<EWeather[]>;
11308
11302
 
11309
- export type SQ95_GlobalVariablePrototype = GetStructType<{
11310
- DefaultValue: string;
11303
+ export type GlobalVariablePrototype = GetStructType<{
11304
+ DefaultValue: VariableValue;
11305
+ Description: string;
11306
+ ID: number;
11311
11307
  SID: string;
11312
11308
  Type: EGlobalVariableType;
11313
11309
  }>;