tachyon-protocol 0.1.0 → 0.1.2

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.
Files changed (48) hide show
  1. package/dist/account/getToken/request.json +72 -72
  2. package/dist/account/getToken/response.json +90 -90
  3. package/dist/account/login/request.json +31 -31
  4. package/dist/account/login/response.json +299 -299
  5. package/dist/account/recover/request.json +14 -14
  6. package/dist/account/recover/response.json +57 -57
  7. package/dist/account/register/request.json +51 -51
  8. package/dist/account/register/response.json +77 -77
  9. package/dist/account/rename/request.json +32 -32
  10. package/dist/account/rename/response.json +65 -65
  11. package/dist/bot/slave/request.json +28 -28
  12. package/dist/bot/slave/response.json +57 -57
  13. package/dist/bot/unslave/request.json +14 -14
  14. package/dist/bot/unslave/response.json +57 -57
  15. package/dist/game/launch/response.json +69 -69
  16. package/dist/index.d.ts +926 -923
  17. package/dist/lobby/close/request.json +14 -14
  18. package/dist/lobby/close/response.json +57 -57
  19. package/dist/lobby/create/request.json +51 -51
  20. package/dist/lobby/create/response.json +65 -65
  21. package/dist/lobby/join/request.json +35 -35
  22. package/dist/lobby/join/response.json +85 -85
  23. package/dist/lobby/joined/response.json +255 -255
  24. package/dist/lobby/leave/request.json +14 -14
  25. package/dist/lobby/leave/response.json +61 -61
  26. package/dist/lobby/left/response.json +57 -57
  27. package/dist/lobby/list/request.json +14 -14
  28. package/dist/lobby/list/response.json +266 -266
  29. package/dist/lobby/receiveMessage/response.json +79 -79
  30. package/dist/lobby/sendMessage/request.json +32 -32
  31. package/dist/lobby/sendMessage/response.json +65 -65
  32. package/dist/lobby/updated/response.json +211 -211
  33. package/dist/matchmaking/cancel/request.json +14 -14
  34. package/dist/matchmaking/cancel/response.json +61 -61
  35. package/dist/matchmaking/found/response.json +69 -69
  36. package/dist/matchmaking/list/request.json +14 -14
  37. package/dist/matchmaking/list/response.json +104 -104
  38. package/dist/matchmaking/lost/response.json +57 -57
  39. package/dist/matchmaking/queue/request.json +30 -30
  40. package/dist/matchmaking/queue/response.json +65 -65
  41. package/dist/matchmaking/queueUpdate/response.json +69 -69
  42. package/dist/matchmaking/ready/request.json +14 -14
  43. package/dist/matchmaking/ready/response.json +61 -61
  44. package/dist/matchmaking/readyUpdate/response.json +73 -73
  45. package/dist/system/disconnect/request.json +14 -14
  46. package/dist/system/disconnected/response.json +57 -57
  47. package/dist/system/version/response.json +95 -70
  48. package/package.json +3 -3
@@ -1,212 +1,212 @@
1
- {
2
- "$id": "lobby/updated/response",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "anyOf": [
6
- {
7
- "type": "object",
8
- "properties": {
9
- "command": {
10
- "const": "lobby/updated/response",
11
- "type": "string"
12
- },
13
- "status": {
14
- "const": "success",
15
- "type": "string"
16
- },
17
- "data": {
18
- "examples": [
19
- {
20
- "name": "3v3 | Newbies only",
21
- "limits": {
22
- "minTeamsize": 3,
23
- "maxTeamsize": 3,
24
- "minRating": null,
25
- "maxRating": 25
26
- }
27
- }
28
- ],
29
- "type": "object",
30
- "properties": {
31
- "id": {
32
- "type": "integer"
33
- },
34
- "name": {
35
- "type": "string"
36
- },
37
- "founderId": {
38
- "type": "integer"
39
- },
40
- "locked": {
41
- "type": "boolean"
42
- },
43
- "passworded": {
44
- "type": "boolean"
45
- },
46
- "playerIds": {
47
- "type": "array",
48
- "items": {
49
- "type": "integer"
50
- }
51
- },
52
- "spectatorIds": {
53
- "type": "array",
54
- "items": {
55
- "type": "integer"
56
- }
57
- },
58
- "engine": {
59
- "type": "string"
60
- },
61
- "game": {
62
- "type": "string"
63
- },
64
- "map": {
65
- "type": "string"
66
- },
67
- "startAreas": {
68
- "default": {
69
- "0": {
70
- "x": 0,
71
- "y": 0,
72
- "width": 1,
73
- "height": 0.3
74
- },
75
- "1": {
76
- "x": 0,
77
- "y": 0.7,
78
- "width": 1,
79
- "height": 0.3
80
- }
81
- },
82
- "type": "object",
83
- "patternProperties": {
84
- "^(0|[1-9][0-9]*)$": {
85
- "examples": [
86
- {
87
- "x": 0,
88
- "y": 0,
89
- "width": 1,
90
- "height": 0.3
91
- }
92
- ],
93
- "type": "object",
94
- "properties": {
95
- "x": {
96
- "type": "number"
97
- },
98
- "y": {
99
- "type": "number"
100
- },
101
- "width": {
102
- "type": "number"
103
- },
104
- "height": {
105
- "type": "number"
106
- }
107
- },
108
- "required": [
109
- "x",
110
- "y",
111
- "width",
112
- "height"
113
- ]
114
- }
115
- }
116
- },
117
- "limits": {
118
- "type": "object",
119
- "properties": {
120
- "minTeamsize": {
121
- "anyOf": [
122
- {
123
- "type": "integer"
124
- },
125
- {
126
- "type": "null"
127
- }
128
- ]
129
- },
130
- "maxTeamsize": {
131
- "anyOf": [
132
- {
133
- "type": "integer"
134
- },
135
- {
136
- "type": "null"
137
- }
138
- ]
139
- },
140
- "minRating": {
141
- "anyOf": [
142
- {
143
- "type": "integer"
144
- },
145
- {
146
- "type": "null"
147
- }
148
- ]
149
- },
150
- "maxRating": {
151
- "anyOf": [
152
- {
153
- "type": "integer"
154
- },
155
- {
156
- "type": "null"
157
- }
158
- ]
159
- }
160
- },
161
- "required": [
162
- "minTeamsize",
163
- "maxTeamsize",
164
- "minRating",
165
- "maxRating"
166
- ]
167
- }
168
- }
169
- }
170
- },
171
- "required": [
172
- "command",
173
- "status",
174
- "data"
175
- ]
176
- },
177
- {
178
- "type": "object",
179
- "properties": {
180
- "command": {
181
- "const": "lobby/updated/response",
182
- "type": "string"
183
- },
184
- "status": {
185
- "const": "failed",
186
- "type": "string"
187
- },
188
- "reason": {
189
- "anyOf": [
190
- {
191
- "const": "internal_error",
192
- "type": "string"
193
- },
194
- {
195
- "const": "unauthorized",
196
- "type": "string"
197
- },
198
- {
199
- "const": "invalid_command",
200
- "type": "string"
201
- }
202
- ]
203
- }
204
- },
205
- "required": [
206
- "command",
207
- "status",
208
- "reason"
209
- ]
210
- }
211
- ]
1
+ {
2
+ "$id": "lobby/updated/response",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "anyOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "command": {
10
+ "const": "lobby/updated/response",
11
+ "type": "string"
12
+ },
13
+ "status": {
14
+ "const": "success",
15
+ "type": "string"
16
+ },
17
+ "data": {
18
+ "examples": [
19
+ {
20
+ "name": "3v3 | Newbies only",
21
+ "limits": {
22
+ "minTeamsize": 3,
23
+ "maxTeamsize": 3,
24
+ "minRating": null,
25
+ "maxRating": 25
26
+ }
27
+ }
28
+ ],
29
+ "type": "object",
30
+ "properties": {
31
+ "id": {
32
+ "type": "integer"
33
+ },
34
+ "name": {
35
+ "type": "string"
36
+ },
37
+ "founderId": {
38
+ "type": "integer"
39
+ },
40
+ "locked": {
41
+ "type": "boolean"
42
+ },
43
+ "passworded": {
44
+ "type": "boolean"
45
+ },
46
+ "playerIds": {
47
+ "type": "array",
48
+ "items": {
49
+ "type": "integer"
50
+ }
51
+ },
52
+ "spectatorIds": {
53
+ "type": "array",
54
+ "items": {
55
+ "type": "integer"
56
+ }
57
+ },
58
+ "engine": {
59
+ "type": "string"
60
+ },
61
+ "game": {
62
+ "type": "string"
63
+ },
64
+ "map": {
65
+ "type": "string"
66
+ },
67
+ "startAreas": {
68
+ "default": {
69
+ "0": {
70
+ "x": 0,
71
+ "y": 0,
72
+ "width": 1,
73
+ "height": 0.3
74
+ },
75
+ "1": {
76
+ "x": 0,
77
+ "y": 0.7,
78
+ "width": 1,
79
+ "height": 0.3
80
+ }
81
+ },
82
+ "type": "object",
83
+ "patternProperties": {
84
+ "^(0|[1-9][0-9]*)$": {
85
+ "examples": [
86
+ {
87
+ "x": 0,
88
+ "y": 0,
89
+ "width": 1,
90
+ "height": 0.3
91
+ }
92
+ ],
93
+ "type": "object",
94
+ "properties": {
95
+ "x": {
96
+ "type": "number"
97
+ },
98
+ "y": {
99
+ "type": "number"
100
+ },
101
+ "width": {
102
+ "type": "number"
103
+ },
104
+ "height": {
105
+ "type": "number"
106
+ }
107
+ },
108
+ "required": [
109
+ "x",
110
+ "y",
111
+ "width",
112
+ "height"
113
+ ]
114
+ }
115
+ }
116
+ },
117
+ "limits": {
118
+ "type": "object",
119
+ "properties": {
120
+ "minTeamsize": {
121
+ "anyOf": [
122
+ {
123
+ "type": "integer"
124
+ },
125
+ {
126
+ "type": "null"
127
+ }
128
+ ]
129
+ },
130
+ "maxTeamsize": {
131
+ "anyOf": [
132
+ {
133
+ "type": "integer"
134
+ },
135
+ {
136
+ "type": "null"
137
+ }
138
+ ]
139
+ },
140
+ "minRating": {
141
+ "anyOf": [
142
+ {
143
+ "type": "integer"
144
+ },
145
+ {
146
+ "type": "null"
147
+ }
148
+ ]
149
+ },
150
+ "maxRating": {
151
+ "anyOf": [
152
+ {
153
+ "type": "integer"
154
+ },
155
+ {
156
+ "type": "null"
157
+ }
158
+ ]
159
+ }
160
+ },
161
+ "required": [
162
+ "minTeamsize",
163
+ "maxTeamsize",
164
+ "minRating",
165
+ "maxRating"
166
+ ]
167
+ }
168
+ }
169
+ }
170
+ },
171
+ "required": [
172
+ "command",
173
+ "status",
174
+ "data"
175
+ ]
176
+ },
177
+ {
178
+ "type": "object",
179
+ "properties": {
180
+ "command": {
181
+ "const": "lobby/updated/response",
182
+ "type": "string"
183
+ },
184
+ "status": {
185
+ "const": "failed",
186
+ "type": "string"
187
+ },
188
+ "reason": {
189
+ "anyOf": [
190
+ {
191
+ "const": "internal_error",
192
+ "type": "string"
193
+ },
194
+ {
195
+ "const": "unauthorized",
196
+ "type": "string"
197
+ },
198
+ {
199
+ "const": "invalid_command",
200
+ "type": "string"
201
+ }
202
+ ]
203
+ }
204
+ },
205
+ "required": [
206
+ "command",
207
+ "status",
208
+ "reason"
209
+ ]
210
+ }
211
+ ]
212
212
  }
@@ -1,15 +1,15 @@
1
- {
2
- "$id": "matchmaking/cancel/request",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "type": "object",
6
- "properties": {
7
- "command": {
8
- "const": "matchmaking/cancel/request",
9
- "type": "string"
10
- }
11
- },
12
- "required": [
13
- "command"
14
- ]
1
+ {
2
+ "$id": "matchmaking/cancel/request",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "type": "object",
6
+ "properties": {
7
+ "command": {
8
+ "const": "matchmaking/cancel/request",
9
+ "type": "string"
10
+ }
11
+ },
12
+ "required": [
13
+ "command"
14
+ ]
15
15
  }
@@ -1,62 +1,62 @@
1
- {
2
- "$id": "matchmaking/cancel/response",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "anyOf": [
6
- {
7
- "type": "object",
8
- "properties": {
9
- "command": {
10
- "const": "matchmaking/cancel/response",
11
- "type": "string"
12
- },
13
- "status": {
14
- "const": "success",
15
- "type": "string"
16
- }
17
- },
18
- "required": [
19
- "command",
20
- "status"
21
- ]
22
- },
23
- {
24
- "type": "object",
25
- "properties": {
26
- "command": {
27
- "const": "matchmaking/cancel/response",
28
- "type": "string"
29
- },
30
- "status": {
31
- "const": "failed",
32
- "type": "string"
33
- },
34
- "reason": {
35
- "anyOf": [
36
- {
37
- "const": "not_queued",
38
- "type": "string"
39
- },
40
- {
41
- "const": "internal_error",
42
- "type": "string"
43
- },
44
- {
45
- "const": "unauthorized",
46
- "type": "string"
47
- },
48
- {
49
- "const": "invalid_command",
50
- "type": "string"
51
- }
52
- ]
53
- }
54
- },
55
- "required": [
56
- "command",
57
- "status",
58
- "reason"
59
- ]
60
- }
61
- ]
1
+ {
2
+ "$id": "matchmaking/cancel/response",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "anyOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "command": {
10
+ "const": "matchmaking/cancel/response",
11
+ "type": "string"
12
+ },
13
+ "status": {
14
+ "const": "success",
15
+ "type": "string"
16
+ }
17
+ },
18
+ "required": [
19
+ "command",
20
+ "status"
21
+ ]
22
+ },
23
+ {
24
+ "type": "object",
25
+ "properties": {
26
+ "command": {
27
+ "const": "matchmaking/cancel/response",
28
+ "type": "string"
29
+ },
30
+ "status": {
31
+ "const": "failed",
32
+ "type": "string"
33
+ },
34
+ "reason": {
35
+ "anyOf": [
36
+ {
37
+ "const": "not_queued",
38
+ "type": "string"
39
+ },
40
+ {
41
+ "const": "internal_error",
42
+ "type": "string"
43
+ },
44
+ {
45
+ "const": "unauthorized",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "const": "invalid_command",
50
+ "type": "string"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ "required": [
56
+ "command",
57
+ "status",
58
+ "reason"
59
+ ]
60
+ }
61
+ ]
62
62
  }