@quesmed/types-rn 2.4.38 → 2.4.39

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.4.38",
3
+ "version": "2.4.39",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -20,6 +20,7 @@ export interface IUserInput {
20
20
  examDate?: number | Date;
21
21
  dailyFeedResetTime?: number;
22
22
  dailyFeedMax?: number;
23
+ referral?: string;
23
24
  }
24
25
  export declare const UPDATE_USER: import("@apollo/client").DocumentNode;
25
26
  export interface IUpdateUserVar {
@@ -8,16 +8,16 @@ export interface ILoginUserVar {
8
8
  export type ILoginUserData = RootData<string, 'loginUser'>;
9
9
  export declare const REGISTER_USER: import("@apollo/client").DocumentNode;
10
10
  export interface RegisterUserInput {
11
- displayName: string;
11
+ displayName?: string;
12
12
  username: string;
13
- firstName: string;
14
- lastName: string;
13
+ firstName?: string;
14
+ lastName?: string;
15
15
  password: string;
16
- classYear: string;
17
- graduationYear: number;
18
- universityId: number;
19
- newsletter: boolean;
20
- referral: string | null;
16
+ classYear?: string;
17
+ graduationYear?: number;
18
+ universityId?: number;
19
+ newsletter?: boolean;
20
+ referral?: string | null;
21
21
  }
22
22
  export interface IRegisterUserVar {
23
23
  userData: RegisterUserInput;