@airbreather/mod-nodejs-types 0.0.5 → 0.0.7

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.
@@ -101,6 +101,7 @@ declare global {
101
101
  readonly talentTreePoints: number[];
102
102
  readonly completedAchievementsCount: number;
103
103
  readonly completedAchievementsCountExcludingFeatsOfStrength: number;
104
+ readonly currentQuestIds: number[];
104
105
 
105
106
  static byGuid(guid: ObjectGuid): Player | undefined;
106
107
  static byName(name: string): Player | undefined;
package/hooks/world.d.ts CHANGED
@@ -2,6 +2,8 @@ declare global {
2
2
  interface Hooks {
3
3
  ['world:startup']: object;
4
4
  ['world:shutdown']: object;
5
+ ['world:update-early']: object;
6
+ ['world:update-late']: object;
5
7
  }
6
8
  }
7
9
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airbreather/mod-nodejs-types",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Type declarations (only) for the mod-nodejs AzerothCore module.",
5
5
  "repository": {
6
6
  "type": "git",