zeus-api-types 1.0.79 → 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.
@@ -88,6 +88,7 @@ export interface WorldEntity {
88
88
  description?: string;
89
89
  discovered?: boolean;
90
90
  image?: string;
91
+ customDataShape?: MetadataCustomDataShape;
91
92
  [key: string]: unknown;
92
93
  }
93
94
  /**
@@ -97,6 +98,7 @@ export interface Player extends WorldEntity {
97
98
  name: string;
98
99
  description: string;
99
100
  tone?: string;
101
+ voiceId?: string;
100
102
  }
101
103
  /**
102
104
  * Non-Player Character
@@ -107,6 +109,7 @@ export interface NPC extends WorldEntity {
107
109
  discovered: boolean;
108
110
  playable: boolean;
109
111
  tone?: string;
112
+ voiceId?: string;
110
113
  }
111
114
  export interface NpcExistingOrNewOp {
112
115
  target: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.79",
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",