s2cfgtojson 5.1.0 → 5.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "5.1.0",
3
+ "version": "5.1.2",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -8715,7 +8715,9 @@ export type QuestNodePrototypeAudioLocalizedAssetsToLoadItem = GetStructType<
8715
8715
  >;
8716
8716
 
8717
8717
  export type QuestNodePrototypeConditions = GetStructType<
8718
- (EConditionCheckType | QuestNodePrototypeConditionsItem)[]
8718
+ (EConditionCheckType | QuestNodePrototypeConditionsItem)[] & {
8719
+ ConditionCheckType: EConditionCheckType;
8720
+ }
8719
8721
  >;
8720
8722
 
8721
8723
  export type QuestNodePrototypeConditionsItem = GetStructType<
@@ -9795,7 +9797,7 @@ export type SpawnActorPrototype = GetStructType<{
9795
9797
  SignalReceivers: SpawnActorPrototypeSignalReceivers;
9796
9798
  SignalSenders: SpawnActorPrototypeSignalSenders;
9797
9799
  SimplifiedOverlap: boolean;
9798
- SpawnedGenericMembers: string;
9800
+ SpawnedGenericMembers: SpawnActorPrototypeSpawnedGenericMembers;
9799
9801
  SpawnedPrototypeSID: string;
9800
9802
  SpawnedSquadMembersCount: number;
9801
9803
  SpawnInRadius: number;