@oxyfoo/whymeet-types 0.0.24 → 0.0.25

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.
@@ -26,6 +26,7 @@ export type HTTPResponse_Enter = {
26
26
  wsToken: string;
27
27
  newSessionToken: string;
28
28
  user: Profile;
29
+ email: string;
29
30
  } | {
30
31
  status: 'wait-mail';
31
32
  message: string;
@@ -39,6 +40,7 @@ export type HTTPResponse_GoogleSignIn = {
39
40
  wsToken: string;
40
41
  newSessionToken: string;
41
42
  user: Profile;
43
+ email: string;
42
44
  } | {
43
45
  status: 'no-account';
44
46
  email: string;
@@ -52,6 +54,7 @@ export type HTTPResponse_AppleSignIn = {
52
54
  wsToken: string;
53
55
  newSessionToken: string;
54
56
  user: Profile;
57
+ email: string;
55
58
  } | {
56
59
  status: 'no-account';
57
60
  email: string;
@@ -68,6 +71,7 @@ export interface HTTPResponse_RefreshWSToken {
68
71
  wsToken: string;
69
72
  newSessionToken: string;
70
73
  user: Profile;
74
+ email: string;
71
75
  }
72
76
  export interface HTTPResponse_DeviceStatus {
73
77
  status: 'pending' | 'active';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyfoo/whymeet-types",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "WhyMeet Types - Shared TypeScript types for the WhyMeet project.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",