@uniteverses/shared 1.0.32 → 1.0.33
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.
|
@@ -42,11 +42,20 @@ export interface User {
|
|
|
42
42
|
username: string;
|
|
43
43
|
createdAt: string | Date;
|
|
44
44
|
}
|
|
45
|
+
export interface CreateUserInput {
|
|
46
|
+
id: string;
|
|
47
|
+
firstName: string;
|
|
48
|
+
lastName: string;
|
|
49
|
+
username: string;
|
|
50
|
+
}
|
|
45
51
|
export interface UpdateUserInput {
|
|
46
52
|
firstName?: string;
|
|
47
53
|
lastName?: string;
|
|
48
54
|
username?: string;
|
|
49
55
|
}
|
|
56
|
+
export interface CheckUsernameResult {
|
|
57
|
+
available: boolean;
|
|
58
|
+
}
|
|
50
59
|
export interface CheckProfileResult {
|
|
51
60
|
exists: boolean;
|
|
52
61
|
}
|