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 +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/types.d.cts +6 -2
- package/dist/types.d.ts +6 -2
- package/dist/validators.cjs +1 -1
- package/dist/validators.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
1850
|
+
assetStatus?: "missing" | "downloading" | "complete";
|
|
1847
1851
|
} | null;
|
|
1848
1852
|
};
|
|
1849
1853
|
spectators?: {
|