@thegeem/protocol 0.1.11 → 0.1.12

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/index.d.cts CHANGED
@@ -589,6 +589,10 @@ type ServerMsg = {
589
589
  effects: Effect[];
590
590
  } | {
591
591
  t: 'reported';
592
+ } | {
593
+ t: 'serverNotice';
594
+ message: string;
595
+ restartInSec?: number;
592
596
  } | {
593
597
  t: 'error';
594
598
  code: string;
package/dist/index.d.ts CHANGED
@@ -589,6 +589,10 @@ type ServerMsg = {
589
589
  effects: Effect[];
590
590
  } | {
591
591
  t: 'reported';
592
+ } | {
593
+ t: 'serverNotice';
594
+ message: string;
595
+ restartInSec?: number;
592
596
  } | {
593
597
  t: 'error';
594
598
  code: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thegeem/protocol",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Geem's wire protocol — shared zod schemas + TypeScript types for talking to the Geem game server over Socket.IO. The source of truth all clients implement against.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://geem.tv",