tachyon-protocol 1.18.1 → 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.1",
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.1";
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.1";
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.1",
3
+ "version": "1.19.0",
4
4
  "schema": {
5
5
  "actors": {
6
6
  "server": {
package/dist/types.d.cts CHANGED
@@ -50,14 +50,18 @@ type ClanUpdatedEventData = ClanUpdateableBaseData & {
50
50
  description?: string;
51
51
  };
52
52
  type ClanViewResponse = ClanViewOkResponse | ClanViewFailResponse;
53
- type ClanViewOkResponseData = ClanId & ClanUpdateableData & {
53
+ type ClanViewOkResponseData = {
54
+ clanId: ClanId;
55
+ } & ClanUpdateableData & {
54
56
  members: ClanMember[];
55
57
  };
56
58
  type ClanUpdateableData = ClanUpdateableBaseData & {
57
59
  description?: string;
58
60
  };
59
61
  type ClanViewListResponse = ClanViewListOkResponse | ClanViewListFailResponse;
60
- type ClanBaseData = ClanId & ClanUpdateableBaseData;
62
+ type ClanBaseData = {
63
+ clanId: ClanId;
64
+ } & ClanUpdateableBaseData;
61
65
  type FriendAcceptRequestResponse = FriendAcceptRequestOkResponse | FriendAcceptRequestFailResponse;
62
66
  type FriendCancelRequestResponse = FriendCancelRequestOkResponse | FriendCancelRequestFailResponse;
63
67
  type FriendListResponse = FriendListOkResponse | FriendListFailResponse;
@@ -1265,6 +1269,8 @@ interface LobbyCreateOkResponseData {
1265
1269
  allyTeam: string;
1266
1270
  team: string;
1267
1271
  player: string;
1272
+ isReady: boolean;
1273
+ assetStatus: "missing" | "downloading" | "complete";
1268
1274
  };
1269
1275
  };
1270
1276
  spectators: {
@@ -1401,6 +1407,8 @@ interface LobbyJoinOkResponseData {
1401
1407
  allyTeam: string;
1402
1408
  team: string;
1403
1409
  player: string;
1410
+ isReady: boolean;
1411
+ assetStatus: "missing" | "downloading" | "complete";
1404
1412
  };
1405
1413
  };
1406
1414
  spectators: {
@@ -1781,7 +1789,7 @@ interface LobbyUpdateClientStatusRequest {
1781
1789
  }
1782
1790
  interface LobbyUpdateClientStatusRequestData {
1783
1791
  isReady?: boolean;
1784
- assetStatus?: "missing" | "downloading" | "ready";
1792
+ assetStatus?: "missing" | "downloading" | "complete";
1785
1793
  }
1786
1794
  interface LobbyUpdateClientStatusOkResponse {
1787
1795
  type: "response";
@@ -1839,7 +1847,7 @@ interface LobbyUpdatedEventData {
1839
1847
  team?: string;
1840
1848
  player?: string;
1841
1849
  isReady?: boolean;
1842
- assetStatus?: "missing" | "downloading" | "ready";
1850
+ assetStatus?: "missing" | "downloading" | "complete";
1843
1851
  } | null;
1844
1852
  };
1845
1853
  spectators?: {
package/dist/types.d.ts CHANGED
@@ -50,14 +50,18 @@ type ClanUpdatedEventData = ClanUpdateableBaseData & {
50
50
  description?: string;
51
51
  };
52
52
  type ClanViewResponse = ClanViewOkResponse | ClanViewFailResponse;
53
- type ClanViewOkResponseData = ClanId & ClanUpdateableData & {
53
+ type ClanViewOkResponseData = {
54
+ clanId: ClanId;
55
+ } & ClanUpdateableData & {
54
56
  members: ClanMember[];
55
57
  };
56
58
  type ClanUpdateableData = ClanUpdateableBaseData & {
57
59
  description?: string;
58
60
  };
59
61
  type ClanViewListResponse = ClanViewListOkResponse | ClanViewListFailResponse;
60
- type ClanBaseData = ClanId & ClanUpdateableBaseData;
62
+ type ClanBaseData = {
63
+ clanId: ClanId;
64
+ } & ClanUpdateableBaseData;
61
65
  type FriendAcceptRequestResponse = FriendAcceptRequestOkResponse | FriendAcceptRequestFailResponse;
62
66
  type FriendCancelRequestResponse = FriendCancelRequestOkResponse | FriendCancelRequestFailResponse;
63
67
  type FriendListResponse = FriendListOkResponse | FriendListFailResponse;
@@ -1265,6 +1269,8 @@ interface LobbyCreateOkResponseData {
1265
1269
  allyTeam: string;
1266
1270
  team: string;
1267
1271
  player: string;
1272
+ isReady: boolean;
1273
+ assetStatus: "missing" | "downloading" | "complete";
1268
1274
  };
1269
1275
  };
1270
1276
  spectators: {
@@ -1401,6 +1407,8 @@ interface LobbyJoinOkResponseData {
1401
1407
  allyTeam: string;
1402
1408
  team: string;
1403
1409
  player: string;
1410
+ isReady: boolean;
1411
+ assetStatus: "missing" | "downloading" | "complete";
1404
1412
  };
1405
1413
  };
1406
1414
  spectators: {
@@ -1781,7 +1789,7 @@ interface LobbyUpdateClientStatusRequest {
1781
1789
  }
1782
1790
  interface LobbyUpdateClientStatusRequestData {
1783
1791
  isReady?: boolean;
1784
- assetStatus?: "missing" | "downloading" | "ready";
1792
+ assetStatus?: "missing" | "downloading" | "complete";
1785
1793
  }
1786
1794
  interface LobbyUpdateClientStatusOkResponse {
1787
1795
  type: "response";
@@ -1839,7 +1847,7 @@ interface LobbyUpdatedEventData {
1839
1847
  team?: string;
1840
1848
  player?: string;
1841
1849
  isReady?: boolean;
1842
- assetStatus?: "missing" | "downloading" | "ready";
1850
+ assetStatus?: "missing" | "downloading" | "complete";
1843
1851
  } | null;
1844
1852
  };
1845
1853
  spectators?: {