tachyon-protocol 0.1.11 → 0.1.12

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.
@@ -271,6 +271,10 @@
271
271
  "const": "expired_token",
272
272
  "type": "string"
273
273
  },
274
+ {
275
+ "const": "unvalidated",
276
+ "type": "string"
277
+ },
274
278
  {
275
279
  "const": "banned",
276
280
  "type": "string"
package/dist/index.d.ts CHANGED
@@ -67,7 +67,14 @@ export type AccountLoginResponse =
67
67
  | {
68
68
  command: "account/login/response";
69
69
  status: "failed";
70
- reason: "invalid_token" | "expired_token" | "banned" | "internal_error" | "unauthorized" | "invalid_command";
70
+ reason:
71
+ | "invalid_token"
72
+ | "expired_token"
73
+ | "unvalidated"
74
+ | "banned"
75
+ | "internal_error"
76
+ | "unauthorized"
77
+ | "invalid_command";
71
78
  };
72
79
  export type AccountRecoverResponse =
73
80
  | {
@@ -458,7 +465,7 @@ export type SystemVersionResponse =
458
465
  command: "system/version/response";
459
466
  status: "success";
460
467
  data: {
461
- tachyonVersion: "0.1.11";
468
+ tachyonVersion: "0.1.12";
462
469
  versionParity: "major_mismatch" | "minor_mismatch" | "patch_mismatch" | "match" | "unknown";
463
470
  };
464
471
  }
package/dist/meta.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.11",
2
+ "version": "0.1.12",
3
3
  "ids": {
4
4
  "account": {
5
5
  "getToken": [
@@ -18,7 +18,7 @@
18
18
  "type": "object",
19
19
  "properties": {
20
20
  "tachyonVersion": {
21
- "const": "0.1.11",
21
+ "const": "0.1.12",
22
22
  "type": "string"
23
23
  },
24
24
  "versionParity": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tachyon-protocol",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "dev": "nodemon --watch src/** --ext ts --exec npm run build",