tachyon-protocol 1.5.2 → 1.5.4
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/validators.d.mts +49 -3
- package/dist/validators.d.ts +49 -3
- package/dist/validators.mjs +1 -1
- package/package.json +18 -17
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/dist/validators.d.mts
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
-
import type { ValidateFunction } from "ajv"
|
|
2
|
-
declare const
|
|
3
|
-
|
|
1
|
+
import type { ValidateFunction } from "ajv"
|
|
2
|
+
declare const autohost_slave_request: ValidateFunction;
|
|
3
|
+
declare const autohost_slave_response: ValidateFunction;
|
|
4
|
+
declare const autohost_unslave_request: ValidateFunction;
|
|
5
|
+
declare const autohost_unslave_response: ValidateFunction;
|
|
6
|
+
declare const game_launch_response: ValidateFunction;
|
|
7
|
+
declare const lobby_close_request: ValidateFunction;
|
|
8
|
+
declare const lobby_close_response: ValidateFunction;
|
|
9
|
+
declare const lobby_create_request: ValidateFunction;
|
|
10
|
+
declare const lobby_create_response: ValidateFunction;
|
|
11
|
+
declare const lobby_join_request: ValidateFunction;
|
|
12
|
+
declare const lobby_join_response: ValidateFunction;
|
|
13
|
+
declare const lobby_joined_response: ValidateFunction;
|
|
14
|
+
declare const lobby_leave_request: ValidateFunction;
|
|
15
|
+
declare const lobby_leave_response: ValidateFunction;
|
|
16
|
+
declare const lobby_left_response: ValidateFunction;
|
|
17
|
+
declare const lobby_list_request: ValidateFunction;
|
|
18
|
+
declare const lobby_list_response: ValidateFunction;
|
|
19
|
+
declare const lobby_receiveMessage_response: ValidateFunction;
|
|
20
|
+
declare const lobby_sendMessage_request: ValidateFunction;
|
|
21
|
+
declare const lobby_sendMessage_response: ValidateFunction;
|
|
22
|
+
declare const lobby_subscribe_request: ValidateFunction;
|
|
23
|
+
declare const lobby_subscribe_response: ValidateFunction;
|
|
24
|
+
declare const lobby_unsubscribe_request: ValidateFunction;
|
|
25
|
+
declare const lobby_unsubscribe_response: ValidateFunction;
|
|
26
|
+
declare const lobby_updated_response: ValidateFunction;
|
|
27
|
+
declare const matchmaking_cancel_request: ValidateFunction;
|
|
28
|
+
declare const matchmaking_cancel_response: ValidateFunction;
|
|
29
|
+
declare const matchmaking_found_response: ValidateFunction;
|
|
30
|
+
declare const matchmaking_list_request: ValidateFunction;
|
|
31
|
+
declare const matchmaking_list_response: ValidateFunction;
|
|
32
|
+
declare const matchmaking_lost_response: ValidateFunction;
|
|
33
|
+
declare const matchmaking_queue_request: ValidateFunction;
|
|
34
|
+
declare const matchmaking_queue_response: ValidateFunction;
|
|
35
|
+
declare const matchmaking_queueUpdate_response: ValidateFunction;
|
|
36
|
+
declare const matchmaking_ready_request: ValidateFunction;
|
|
37
|
+
declare const matchmaking_ready_response: ValidateFunction;
|
|
38
|
+
declare const matchmaking_readyUpdate_response: ValidateFunction;
|
|
39
|
+
declare const system_connected_response: ValidateFunction;
|
|
40
|
+
declare const system_disconnect_request: ValidateFunction;
|
|
41
|
+
declare const system_disconnect_response: ValidateFunction;
|
|
42
|
+
declare const system_serverStats_request: ValidateFunction;
|
|
43
|
+
declare const system_serverStats_response: ValidateFunction;
|
|
44
|
+
declare const user_subscribe_request: ValidateFunction;
|
|
45
|
+
declare const user_subscribe_response: ValidateFunction;
|
|
46
|
+
declare const user_unsubscribe_request: ValidateFunction;
|
|
47
|
+
declare const user_unsubscribe_response: ValidateFunction;
|
|
48
|
+
declare const user_updated_response: ValidateFunction;
|
|
49
|
+
export { autohost_slave_request, autohost_slave_response, autohost_unslave_request, autohost_unslave_response, game_launch_response, lobby_close_request, lobby_close_response, lobby_create_request, lobby_create_response, lobby_join_request, lobby_join_response, lobby_joined_response, lobby_leave_request, lobby_leave_response, lobby_left_response, lobby_list_request, lobby_list_response, lobby_receiveMessage_response, lobby_sendMessage_request, lobby_sendMessage_response, lobby_subscribe_request, lobby_subscribe_response, lobby_unsubscribe_request, lobby_unsubscribe_response, lobby_updated_response, matchmaking_cancel_request, matchmaking_cancel_response, matchmaking_found_response, matchmaking_list_request, matchmaking_list_response, matchmaking_lost_response, matchmaking_queue_request, matchmaking_queue_response, matchmaking_queueUpdate_response, matchmaking_ready_request, matchmaking_ready_response, matchmaking_readyUpdate_response, system_connected_response, system_disconnect_request, system_disconnect_response, system_serverStats_request, system_serverStats_response, user_subscribe_request, user_subscribe_response, user_unsubscribe_request, user_unsubscribe_response, user_updated_response };
|
package/dist/validators.d.ts
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
-
import type { ValidateFunction } from "ajv"
|
|
2
|
-
declare const
|
|
3
|
-
|
|
1
|
+
import type { ValidateFunction } from "ajv"
|
|
2
|
+
declare const autohost_slave_request: ValidateFunction;
|
|
3
|
+
declare const autohost_slave_response: ValidateFunction;
|
|
4
|
+
declare const autohost_unslave_request: ValidateFunction;
|
|
5
|
+
declare const autohost_unslave_response: ValidateFunction;
|
|
6
|
+
declare const game_launch_response: ValidateFunction;
|
|
7
|
+
declare const lobby_close_request: ValidateFunction;
|
|
8
|
+
declare const lobby_close_response: ValidateFunction;
|
|
9
|
+
declare const lobby_create_request: ValidateFunction;
|
|
10
|
+
declare const lobby_create_response: ValidateFunction;
|
|
11
|
+
declare const lobby_join_request: ValidateFunction;
|
|
12
|
+
declare const lobby_join_response: ValidateFunction;
|
|
13
|
+
declare const lobby_joined_response: ValidateFunction;
|
|
14
|
+
declare const lobby_leave_request: ValidateFunction;
|
|
15
|
+
declare const lobby_leave_response: ValidateFunction;
|
|
16
|
+
declare const lobby_left_response: ValidateFunction;
|
|
17
|
+
declare const lobby_list_request: ValidateFunction;
|
|
18
|
+
declare const lobby_list_response: ValidateFunction;
|
|
19
|
+
declare const lobby_receiveMessage_response: ValidateFunction;
|
|
20
|
+
declare const lobby_sendMessage_request: ValidateFunction;
|
|
21
|
+
declare const lobby_sendMessage_response: ValidateFunction;
|
|
22
|
+
declare const lobby_subscribe_request: ValidateFunction;
|
|
23
|
+
declare const lobby_subscribe_response: ValidateFunction;
|
|
24
|
+
declare const lobby_unsubscribe_request: ValidateFunction;
|
|
25
|
+
declare const lobby_unsubscribe_response: ValidateFunction;
|
|
26
|
+
declare const lobby_updated_response: ValidateFunction;
|
|
27
|
+
declare const matchmaking_cancel_request: ValidateFunction;
|
|
28
|
+
declare const matchmaking_cancel_response: ValidateFunction;
|
|
29
|
+
declare const matchmaking_found_response: ValidateFunction;
|
|
30
|
+
declare const matchmaking_list_request: ValidateFunction;
|
|
31
|
+
declare const matchmaking_list_response: ValidateFunction;
|
|
32
|
+
declare const matchmaking_lost_response: ValidateFunction;
|
|
33
|
+
declare const matchmaking_queue_request: ValidateFunction;
|
|
34
|
+
declare const matchmaking_queue_response: ValidateFunction;
|
|
35
|
+
declare const matchmaking_queueUpdate_response: ValidateFunction;
|
|
36
|
+
declare const matchmaking_ready_request: ValidateFunction;
|
|
37
|
+
declare const matchmaking_ready_response: ValidateFunction;
|
|
38
|
+
declare const matchmaking_readyUpdate_response: ValidateFunction;
|
|
39
|
+
declare const system_connected_response: ValidateFunction;
|
|
40
|
+
declare const system_disconnect_request: ValidateFunction;
|
|
41
|
+
declare const system_disconnect_response: ValidateFunction;
|
|
42
|
+
declare const system_serverStats_request: ValidateFunction;
|
|
43
|
+
declare const system_serverStats_response: ValidateFunction;
|
|
44
|
+
declare const user_subscribe_request: ValidateFunction;
|
|
45
|
+
declare const user_subscribe_response: ValidateFunction;
|
|
46
|
+
declare const user_unsubscribe_request: ValidateFunction;
|
|
47
|
+
declare const user_unsubscribe_response: ValidateFunction;
|
|
48
|
+
declare const user_updated_response: ValidateFunction;
|
|
49
|
+
export { autohost_slave_request, autohost_slave_response, autohost_unslave_request, autohost_unslave_response, game_launch_response, lobby_close_request, lobby_close_response, lobby_create_request, lobby_create_response, lobby_join_request, lobby_join_response, lobby_joined_response, lobby_leave_request, lobby_leave_response, lobby_left_response, lobby_list_request, lobby_list_response, lobby_receiveMessage_response, lobby_sendMessage_request, lobby_sendMessage_response, lobby_subscribe_request, lobby_subscribe_response, lobby_unsubscribe_request, lobby_unsubscribe_response, lobby_updated_response, matchmaking_cancel_request, matchmaking_cancel_response, matchmaking_found_response, matchmaking_list_request, matchmaking_list_response, matchmaking_lost_response, matchmaking_queue_request, matchmaking_queue_response, matchmaking_queueUpdate_response, matchmaking_ready_request, matchmaking_ready_response, matchmaking_readyUpdate_response, system_connected_response, system_disconnect_request, system_disconnect_response, system_serverStats_request, system_serverStats_response, user_subscribe_request, user_subscribe_response, user_unsubscribe_request, user_unsubscribe_response, user_updated_response };
|