tachyon-protocol 1.18.2 → 1.19.0

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.cjs CHANGED
@@ -24,7 +24,7 @@ __export(dist_exports, {
24
24
  });
25
25
  module.exports = __toCommonJS(dist_exports);
26
26
  var tachyonMeta = {
27
- "version": "1.18.2",
27
+ "version": "1.19.0",
28
28
  "schema": {
29
29
  "actors": {
30
30
  "server": {
package/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { TachyonCommand } from './types.cjs';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.18.2";
4
+ readonly version: "1.19.0";
5
5
  readonly schema: {
6
6
  readonly actors: {
7
7
  readonly server: {
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { TachyonCommand } from './types.js';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.18.2";
4
+ readonly version: "1.19.0";
5
5
  readonly schema: {
6
6
  readonly actors: {
7
7
  readonly server: {
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // dist/index.ts
2
2
  var tachyonMeta = {
3
- "version": "1.18.2",
3
+ "version": "1.19.0",
4
4
  "schema": {
5
5
  "actors": {
6
6
  "server": {
package/dist/types.d.cts CHANGED
@@ -1269,6 +1269,8 @@ interface LobbyCreateOkResponseData {
1269
1269
  allyTeam: string;
1270
1270
  team: string;
1271
1271
  player: string;
1272
+ isReady: boolean;
1273
+ assetStatus: "missing" | "downloading" | "complete";
1272
1274
  };
1273
1275
  };
1274
1276
  spectators: {
@@ -1405,6 +1407,8 @@ interface LobbyJoinOkResponseData {
1405
1407
  allyTeam: string;
1406
1408
  team: string;
1407
1409
  player: string;
1410
+ isReady: boolean;
1411
+ assetStatus: "missing" | "downloading" | "complete";
1408
1412
  };
1409
1413
  };
1410
1414
  spectators: {
@@ -1785,7 +1789,7 @@ interface LobbyUpdateClientStatusRequest {
1785
1789
  }
1786
1790
  interface LobbyUpdateClientStatusRequestData {
1787
1791
  isReady?: boolean;
1788
- assetStatus?: "missing" | "downloading" | "ready";
1792
+ assetStatus?: "missing" | "downloading" | "complete";
1789
1793
  }
1790
1794
  interface LobbyUpdateClientStatusOkResponse {
1791
1795
  type: "response";
@@ -1843,7 +1847,7 @@ interface LobbyUpdatedEventData {
1843
1847
  team?: string;
1844
1848
  player?: string;
1845
1849
  isReady?: boolean;
1846
- assetStatus?: "missing" | "downloading" | "ready";
1850
+ assetStatus?: "missing" | "downloading" | "complete";
1847
1851
  } | null;
1848
1852
  };
1849
1853
  spectators?: {
package/dist/types.d.ts CHANGED
@@ -1269,6 +1269,8 @@ interface LobbyCreateOkResponseData {
1269
1269
  allyTeam: string;
1270
1270
  team: string;
1271
1271
  player: string;
1272
+ isReady: boolean;
1273
+ assetStatus: "missing" | "downloading" | "complete";
1272
1274
  };
1273
1275
  };
1274
1276
  spectators: {
@@ -1405,6 +1407,8 @@ interface LobbyJoinOkResponseData {
1405
1407
  allyTeam: string;
1406
1408
  team: string;
1407
1409
  player: string;
1410
+ isReady: boolean;
1411
+ assetStatus: "missing" | "downloading" | "complete";
1408
1412
  };
1409
1413
  };
1410
1414
  spectators: {
@@ -1785,7 +1789,7 @@ interface LobbyUpdateClientStatusRequest {
1785
1789
  }
1786
1790
  interface LobbyUpdateClientStatusRequestData {
1787
1791
  isReady?: boolean;
1788
- assetStatus?: "missing" | "downloading" | "ready";
1792
+ assetStatus?: "missing" | "downloading" | "complete";
1789
1793
  }
1790
1794
  interface LobbyUpdateClientStatusOkResponse {
1791
1795
  type: "response";
@@ -1843,7 +1847,7 @@ interface LobbyUpdatedEventData {
1843
1847
  team?: string;
1844
1848
  player?: string;
1845
1849
  isReady?: boolean;
1846
- assetStatus?: "missing" | "downloading" | "ready";
1850
+ assetStatus?: "missing" | "downloading" | "complete";
1847
1851
  } | null;
1848
1852
  };
1849
1853
  spectators?: {