zeus-api-types 1.0.63 → 1.0.64
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 +2 -2
- package/package.json +1 -1
package/dist/game-state.d.ts
CHANGED
|
@@ -11,8 +11,8 @@ import { UserMetadata } from "./user-preferences";
|
|
|
11
11
|
export interface Tag {
|
|
12
12
|
/** Unique key identifier (max 64 chars) */
|
|
13
13
|
key: string;
|
|
14
|
-
/** Value as
|
|
15
|
-
value: string
|
|
14
|
+
/** Value as array of strings (max 64 chars per item) */
|
|
15
|
+
value: string[];
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* Base interface for all immutable blocks
|