zeus-api-types 1.0.80 → 1.0.81

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.
@@ -98,6 +98,7 @@ export interface Player extends WorldEntity {
98
98
  name: string;
99
99
  description: string;
100
100
  tone?: string;
101
+ voiceId?: string;
101
102
  }
102
103
  /**
103
104
  * Non-Player Character
@@ -108,6 +109,7 @@ export interface NPC extends WorldEntity {
108
109
  discovered: boolean;
109
110
  playable: boolean;
110
111
  tone?: string;
112
+ voiceId?: string;
111
113
  }
112
114
  export interface NpcExistingOrNewOp {
113
115
  target: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "description": "Shared API types for Wagtales - SSE payloads, error types, and common interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",