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.
- package/dist/game-state.d.ts +3 -0
- package/package.json +1 -1
package/dist/game-state.d.ts
CHANGED
|
@@ -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;
|