tachyon-protocol 1.14.0 → 1.14.1
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/types.d.mts +3 -0
- package/dist/types.d.ts +3 -0
- package/dist/validators.js +1 -1
- package/dist/validators.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/dist/types.d.mts
CHANGED
|
@@ -818,6 +818,7 @@ interface LobbyCreateOkResponse {
|
|
|
818
818
|
*/
|
|
819
819
|
interface LobbyCreateOkResponseData {
|
|
820
820
|
id: string;
|
|
821
|
+
name: string;
|
|
821
822
|
mapName: string;
|
|
822
823
|
engineVersion: string;
|
|
823
824
|
gameVersion: string;
|
|
@@ -891,6 +892,7 @@ interface LobbyJoinOkResponse {
|
|
|
891
892
|
*/
|
|
892
893
|
interface LobbyJoinOkResponseData {
|
|
893
894
|
id: string;
|
|
895
|
+
name: string;
|
|
894
896
|
mapName: string;
|
|
895
897
|
engineVersion: string;
|
|
896
898
|
gameVersion: string;
|
|
@@ -1084,6 +1086,7 @@ interface LobbyUpdatedEvent {
|
|
|
1084
1086
|
}
|
|
1085
1087
|
interface LobbyUpdatedEventData {
|
|
1086
1088
|
id: string;
|
|
1089
|
+
name?: string;
|
|
1087
1090
|
mapName?: string;
|
|
1088
1091
|
engineVersion?: string;
|
|
1089
1092
|
gameVersion?: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -818,6 +818,7 @@ interface LobbyCreateOkResponse {
|
|
|
818
818
|
*/
|
|
819
819
|
interface LobbyCreateOkResponseData {
|
|
820
820
|
id: string;
|
|
821
|
+
name: string;
|
|
821
822
|
mapName: string;
|
|
822
823
|
engineVersion: string;
|
|
823
824
|
gameVersion: string;
|
|
@@ -891,6 +892,7 @@ interface LobbyJoinOkResponse {
|
|
|
891
892
|
*/
|
|
892
893
|
interface LobbyJoinOkResponseData {
|
|
893
894
|
id: string;
|
|
895
|
+
name: string;
|
|
894
896
|
mapName: string;
|
|
895
897
|
engineVersion: string;
|
|
896
898
|
gameVersion: string;
|
|
@@ -1084,6 +1086,7 @@ interface LobbyUpdatedEvent {
|
|
|
1084
1086
|
}
|
|
1085
1087
|
interface LobbyUpdatedEventData {
|
|
1086
1088
|
id: string;
|
|
1089
|
+
name?: string;
|
|
1087
1090
|
mapName?: string;
|
|
1088
1091
|
engineVersion?: string;
|
|
1089
1092
|
gameVersion?: string;
|