zeus-api-types 1.0.65 → 1.0.66

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.
@@ -82,9 +82,7 @@ export interface WorldEntity {
82
82
  */
83
83
  export interface Player extends WorldEntity {
84
84
  name: string;
85
- motivation?: string;
86
- role?: string;
87
- backstory?: string;
85
+ description: string;
88
86
  tone?: string;
89
87
  }
90
88
  /**
@@ -94,10 +92,7 @@ export interface Player extends WorldEntity {
94
92
  export interface NPC extends WorldEntity {
95
93
  name: string;
96
94
  discovered: boolean;
97
- playable?: boolean;
98
- motivation?: string;
99
- role?: string;
100
- backstory?: string;
95
+ playable: boolean;
101
96
  tone?: string;
102
97
  }
103
98
  export interface NpcExistingOrNewOp {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeus-api-types",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
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",