@nativewrappers/redm 0.0.137 → 0.0.139
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/common/BaseScript.d.ts +2 -0
- package/common/BaseScript.js +10 -0
- package/common/Command.js +6 -4
- package/common/GlobalData.d.ts +1 -0
- package/common/GlobalData.js +3 -0
- package/common/decors/Events.js +2 -2
- package/common/decors/Resources.d.ts +29 -2
- package/common/decors/Resources.js +40 -10
- package/common/net/NetworkedMap.d.ts +2 -2
- package/common/net/NetworkedMap.js +13 -1
- package/common-game/entities/CommonBaseEntityBone.d.ts +4 -4
- package/common-game/entities/CommonBaseEntityBone.js +11 -7
- package/common-game/entities/CommonEntityBone.d.ts +1 -1
- package/common-game/entities/CommonEntityBone.js +2 -2
- package/common-game/entities/CommonPedBone.d.ts +1 -1
- package/common-game/entities/CommonPedBone.js +2 -2
- package/entities/Ped.d.ts +3 -3
- package/entities/Ped.js +2 -1
- package/entities/bones/PedBoneCollection.d.ts +6 -0
- package/entities/bones/PedBoneCollection.js +15 -0
- package/enums/PedBones.d.ts +723 -0
- package/enums/PedBones.js +727 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export * from "./enums/Entity";
|
|
|
32
32
|
export * from "./enums/FiringPatterns";
|
|
33
33
|
export * from "./enums/Keys";
|
|
34
34
|
export * from "./enums/Ped";
|
|
35
|
+
export * from "./enums/PedBones";
|
|
35
36
|
export * from "./enums/RawKeys";
|
|
36
37
|
export * from "./enums/Relationship";
|
|
37
38
|
export * from "./enums/VehicleSeat";
|
|
@@ -44,6 +45,7 @@ export * from "./entities/Pickup";
|
|
|
44
45
|
export * from "./entities/Player";
|
|
45
46
|
export * from "./entities/Prop";
|
|
46
47
|
export * from "./entities/Vehicle";
|
|
48
|
+
export * from "./entities/bones/PedBoneCollection";
|
|
47
49
|
export * from "./definitions/Citizen.d";
|
|
48
50
|
export * from "./definitions/index.d";
|
|
49
51
|
export * from "./definitions/redm.d";
|
|
@@ -71,6 +73,7 @@ export * from "./common-game/definitions/index.d";
|
|
|
71
73
|
export * from "./common-game/definitions/redm.d";
|
|
72
74
|
export * from "./common-game/cfx/StateBagChangeHandler";
|
|
73
75
|
export * from "./common-game/cfx/cfx";
|
|
76
|
+
export * from "./common/BaseScript";
|
|
74
77
|
export * from "./common/Command";
|
|
75
78
|
export * from "./common/Convar";
|
|
76
79
|
export * from "./common/GlobalData";
|
package/index.js
CHANGED
|
@@ -32,6 +32,7 @@ export * from "./enums/Entity";
|
|
|
32
32
|
export * from "./enums/FiringPatterns";
|
|
33
33
|
export * from "./enums/Keys";
|
|
34
34
|
export * from "./enums/Ped";
|
|
35
|
+
export * from "./enums/PedBones";
|
|
35
36
|
export * from "./enums/RawKeys";
|
|
36
37
|
export * from "./enums/Relationship";
|
|
37
38
|
export * from "./enums/VehicleSeat";
|
|
@@ -44,6 +45,7 @@ export * from "./entities/Pickup";
|
|
|
44
45
|
export * from "./entities/Player";
|
|
45
46
|
export * from "./entities/Prop";
|
|
46
47
|
export * from "./entities/Vehicle";
|
|
48
|
+
export * from "./entities/bones/PedBoneCollection";
|
|
47
49
|
export * from "./definitions/Citizen.d";
|
|
48
50
|
export * from "./definitions/index.d";
|
|
49
51
|
export * from "./definitions/redm.d";
|
|
@@ -71,6 +73,7 @@ export * from "./common-game/definitions/index.d";
|
|
|
71
73
|
export * from "./common-game/definitions/redm.d";
|
|
72
74
|
export * from "./common-game/cfx/StateBagChangeHandler";
|
|
73
75
|
export * from "./common-game/cfx/cfx";
|
|
76
|
+
export * from "./common/BaseScript";
|
|
74
77
|
export * from "./common/Command";
|
|
75
78
|
export * from "./common/Convar";
|
|
76
79
|
export * from "./common/GlobalData";
|