tachyon-protocol 0.1.1 → 0.1.3

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 +2 -2
@@ -1,58 +1,58 @@
1
- {
2
- "$id": "account/recover/response",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "anyOf": [
6
- {
7
- "type": "object",
8
- "properties": {
9
- "command": {
10
- "const": "account/recover/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": "account/recover/response",
28
- "type": "string"
29
- },
30
- "status": {
31
- "const": "failed",
32
- "type": "string"
33
- },
34
- "reason": {
35
- "anyOf": [
36
- {
37
- "const": "internal_error",
38
- "type": "string"
39
- },
40
- {
41
- "const": "unauthorized",
42
- "type": "string"
43
- },
44
- {
45
- "const": "invalid_command",
46
- "type": "string"
47
- }
48
- ]
49
- }
50
- },
51
- "required": [
52
- "command",
53
- "status",
54
- "reason"
55
- ]
56
- }
57
- ]
1
+ {
2
+ "$id": "account/recover/response",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "anyOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "command": {
10
+ "const": "account/recover/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": "account/recover/response",
28
+ "type": "string"
29
+ },
30
+ "status": {
31
+ "const": "failed",
32
+ "type": "string"
33
+ },
34
+ "reason": {
35
+ "anyOf": [
36
+ {
37
+ "const": "internal_error",
38
+ "type": "string"
39
+ },
40
+ {
41
+ "const": "unauthorized",
42
+ "type": "string"
43
+ },
44
+ {
45
+ "const": "invalid_command",
46
+ "type": "string"
47
+ }
48
+ ]
49
+ }
50
+ },
51
+ "required": [
52
+ "command",
53
+ "status",
54
+ "reason"
55
+ ]
56
+ }
57
+ ]
58
58
  }
@@ -1,52 +1,52 @@
1
- {
2
- "$id": "account/register/request",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "type": "object",
6
- "properties": {
7
- "command": {
8
- "const": "account/register/request",
9
- "type": "string"
10
- },
11
- "data": {
12
- "examples": [
13
- {
14
- "email": "bob@test.com",
15
- "username": "bob",
16
- "hashedPassword": "1b311ff1a6af12fba8720bd2ce02c960"
17
- }
18
- ],
19
- "type": "object",
20
- "properties": {
21
- "email": {
22
- "format": "email",
23
- "examples": [
24
- "bob@test.com"
25
- ],
26
- "type": "string"
27
- },
28
- "username": {
29
- "minLength": 3,
30
- "maxLength": 20,
31
- "pattern": "^[A-Za-z0-9_-]+$",
32
- "examples": [
33
- "Bob"
34
- ],
35
- "type": "string"
36
- },
37
- "hashedPassword": {
38
- "type": "string"
39
- }
40
- },
41
- "required": [
42
- "email",
43
- "username",
44
- "hashedPassword"
45
- ]
46
- }
47
- },
48
- "required": [
49
- "command",
50
- "data"
51
- ]
1
+ {
2
+ "$id": "account/register/request",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "type": "object",
6
+ "properties": {
7
+ "command": {
8
+ "const": "account/register/request",
9
+ "type": "string"
10
+ },
11
+ "data": {
12
+ "examples": [
13
+ {
14
+ "email": "bob@test.com",
15
+ "username": "bob",
16
+ "hashedPassword": "1b311ff1a6af12fba8720bd2ce02c960"
17
+ }
18
+ ],
19
+ "type": "object",
20
+ "properties": {
21
+ "email": {
22
+ "format": "email",
23
+ "examples": [
24
+ "bob@test.com"
25
+ ],
26
+ "type": "string"
27
+ },
28
+ "username": {
29
+ "minLength": 3,
30
+ "maxLength": 20,
31
+ "pattern": "^[A-Za-z0-9_-]+$",
32
+ "examples": [
33
+ "Bob"
34
+ ],
35
+ "type": "string"
36
+ },
37
+ "hashedPassword": {
38
+ "type": "string"
39
+ }
40
+ },
41
+ "required": [
42
+ "email",
43
+ "username",
44
+ "hashedPassword"
45
+ ]
46
+ }
47
+ },
48
+ "required": [
49
+ "command",
50
+ "data"
51
+ ]
52
52
  }
@@ -1,78 +1,78 @@
1
- {
2
- "$id": "account/register/response",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "anyOf": [
6
- {
7
- "type": "object",
8
- "properties": {
9
- "command": {
10
- "const": "account/register/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": "account/register/response",
28
- "type": "string"
29
- },
30
- "status": {
31
- "const": "failed",
32
- "type": "string"
33
- },
34
- "reason": {
35
- "anyOf": [
36
- {
37
- "const": "email_taken",
38
- "type": "string"
39
- },
40
- {
41
- "const": "username_taken",
42
- "type": "string"
43
- },
44
- {
45
- "const": "invalid_email",
46
- "type": "string"
47
- },
48
- {
49
- "const": "weak_password",
50
- "type": "string"
51
- },
52
- {
53
- "const": "username_profanity",
54
- "type": "string"
55
- },
56
- {
57
- "const": "internal_error",
58
- "type": "string"
59
- },
60
- {
61
- "const": "unauthorized",
62
- "type": "string"
63
- },
64
- {
65
- "const": "invalid_command",
66
- "type": "string"
67
- }
68
- ]
69
- }
70
- },
71
- "required": [
72
- "command",
73
- "status",
74
- "reason"
75
- ]
76
- }
77
- ]
1
+ {
2
+ "$id": "account/register/response",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "anyOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "command": {
10
+ "const": "account/register/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": "account/register/response",
28
+ "type": "string"
29
+ },
30
+ "status": {
31
+ "const": "failed",
32
+ "type": "string"
33
+ },
34
+ "reason": {
35
+ "anyOf": [
36
+ {
37
+ "const": "email_taken",
38
+ "type": "string"
39
+ },
40
+ {
41
+ "const": "username_taken",
42
+ "type": "string"
43
+ },
44
+ {
45
+ "const": "invalid_email",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "const": "weak_password",
50
+ "type": "string"
51
+ },
52
+ {
53
+ "const": "username_profanity",
54
+ "type": "string"
55
+ },
56
+ {
57
+ "const": "internal_error",
58
+ "type": "string"
59
+ },
60
+ {
61
+ "const": "unauthorized",
62
+ "type": "string"
63
+ },
64
+ {
65
+ "const": "invalid_command",
66
+ "type": "string"
67
+ }
68
+ ]
69
+ }
70
+ },
71
+ "required": [
72
+ "command",
73
+ "status",
74
+ "reason"
75
+ ]
76
+ }
77
+ ]
78
78
  }
@@ -1,33 +1,33 @@
1
- {
2
- "$id": "account/rename/request",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "type": "object",
6
- "properties": {
7
- "command": {
8
- "const": "account/rename/request",
9
- "type": "string"
10
- },
11
- "data": {
12
- "type": "object",
13
- "properties": {
14
- "newUsername": {
15
- "minLength": 3,
16
- "maxLength": 20,
17
- "pattern": "^[A-Za-z0-9_-]+$",
18
- "examples": [
19
- "Bob"
20
- ],
21
- "type": "string"
22
- }
23
- },
24
- "required": [
25
- "newUsername"
26
- ]
27
- }
28
- },
29
- "required": [
30
- "command",
31
- "data"
32
- ]
1
+ {
2
+ "$id": "account/rename/request",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "type": "object",
6
+ "properties": {
7
+ "command": {
8
+ "const": "account/rename/request",
9
+ "type": "string"
10
+ },
11
+ "data": {
12
+ "type": "object",
13
+ "properties": {
14
+ "newUsername": {
15
+ "minLength": 3,
16
+ "maxLength": 20,
17
+ "pattern": "^[A-Za-z0-9_-]+$",
18
+ "examples": [
19
+ "Bob"
20
+ ],
21
+ "type": "string"
22
+ }
23
+ },
24
+ "required": [
25
+ "newUsername"
26
+ ]
27
+ }
28
+ },
29
+ "required": [
30
+ "command",
31
+ "data"
32
+ ]
33
33
  }
@@ -1,66 +1,66 @@
1
- {
2
- "$id": "account/rename/response",
3
- "requiresLogin": false,
4
- "requiresRole": false,
5
- "anyOf": [
6
- {
7
- "type": "object",
8
- "properties": {
9
- "command": {
10
- "const": "account/rename/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": "account/rename/response",
28
- "type": "string"
29
- },
30
- "status": {
31
- "const": "failed",
32
- "type": "string"
33
- },
34
- "reason": {
35
- "anyOf": [
36
- {
37
- "const": "username_taken",
38
- "type": "string"
39
- },
40
- {
41
- "const": "username_profanity",
42
- "type": "string"
43
- },
44
- {
45
- "const": "internal_error",
46
- "type": "string"
47
- },
48
- {
49
- "const": "unauthorized",
50
- "type": "string"
51
- },
52
- {
53
- "const": "invalid_command",
54
- "type": "string"
55
- }
56
- ]
57
- }
58
- },
59
- "required": [
60
- "command",
61
- "status",
62
- "reason"
63
- ]
64
- }
65
- ]
1
+ {
2
+ "$id": "account/rename/response",
3
+ "requiresLogin": false,
4
+ "requiresRole": false,
5
+ "anyOf": [
6
+ {
7
+ "type": "object",
8
+ "properties": {
9
+ "command": {
10
+ "const": "account/rename/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": "account/rename/response",
28
+ "type": "string"
29
+ },
30
+ "status": {
31
+ "const": "failed",
32
+ "type": "string"
33
+ },
34
+ "reason": {
35
+ "anyOf": [
36
+ {
37
+ "const": "username_taken",
38
+ "type": "string"
39
+ },
40
+ {
41
+ "const": "username_profanity",
42
+ "type": "string"
43
+ },
44
+ {
45
+ "const": "internal_error",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "const": "unauthorized",
50
+ "type": "string"
51
+ },
52
+ {
53
+ "const": "invalid_command",
54
+ "type": "string"
55
+ }
56
+ ]
57
+ }
58
+ },
59
+ "required": [
60
+ "command",
61
+ "status",
62
+ "reason"
63
+ ]
64
+ }
65
+ ]
66
66
  }
@@ -1,29 +1,29 @@
1
- {
2
- "$id": "bot/slave/request",
3
- "requiresLogin": false,
4
- "requiresRole": true,
5
- "type": "object",
6
- "properties": {
7
- "command": {
8
- "const": "bot/slave/request",
9
- "type": "string"
10
- },
11
- "data": {
12
- "type": "object",
13
- "properties": {
14
- "maxBattles": {
15
- "minimum": 1,
16
- "default": 4,
17
- "type": "integer"
18
- }
19
- },
20
- "required": [
21
- "maxBattles"
22
- ]
23
- }
24
- },
25
- "required": [
26
- "command",
27
- "data"
28
- ]
1
+ {
2
+ "$id": "bot/slave/request",
3
+ "requiresLogin": false,
4
+ "requiresRole": true,
5
+ "type": "object",
6
+ "properties": {
7
+ "command": {
8
+ "const": "bot/slave/request",
9
+ "type": "string"
10
+ },
11
+ "data": {
12
+ "type": "object",
13
+ "properties": {
14
+ "maxBattles": {
15
+ "minimum": 1,
16
+ "default": 4,
17
+ "type": "integer"
18
+ }
19
+ },
20
+ "required": [
21
+ "maxBattles"
22
+ ]
23
+ }
24
+ },
25
+ "required": [
26
+ "command",
27
+ "data"
28
+ ]
29
29
  }