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 +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 +12 -4
- package/dist/types.d.ts +12 -4
- 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
|
@@ -50,14 +50,18 @@ type ClanUpdatedEventData = ClanUpdateableBaseData & {
|
|
|
50
50
|
description?: string;
|
|
51
51
|
};
|
|
52
52
|
type ClanViewResponse = ClanViewOkResponse | ClanViewFailResponse;
|
|
53
|
-
type ClanViewOkResponseData =
|
|
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 =
|
|
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" | "
|
|
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" | "
|
|
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 =
|
|
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 =
|
|
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" | "
|
|
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" | "
|
|
1850
|
+
assetStatus?: "missing" | "downloading" | "complete";
|
|
1843
1851
|
} | null;
|
|
1844
1852
|
};
|
|
1845
1853
|
spectators?: {
|