@quesmed/types-rn 2.2.18 → 2.2.21

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.
@@ -11,6 +11,7 @@ export interface IMarksheetsVar {
11
11
  limit: number;
12
12
  date?: string;
13
13
  offset?: number;
14
+ solo?: boolean;
14
15
  };
15
16
  }
16
17
  export declare type IMarksheetsData = RestrictedData<(graphqlNormalize & IMarksheet)[], 'marksheets'>;
@@ -10,7 +10,6 @@ exports.MARKSHEET = (0, client_1.gql) `
10
10
  topicConceptData
11
11
  currentMarkId
12
12
  solo
13
- lastQuestionChoiceId
14
13
  state
15
14
  users {
16
15
  id
@@ -54,16 +54,17 @@ export interface IOnMarksheetDataModificationVar {
54
54
  marksheetId: Id;
55
55
  }
56
56
  export interface IMarksheetDataModification {
57
+ action?: EMarksheetAction;
58
+ isAnswered?: boolean;
59
+ mark?: IMarksheetMarkJSONB;
57
60
  markId?: Id;
58
- updatedAt?: Date;
61
+ markIndex?: number;
59
62
  marksheetId: Id;
60
63
  questionChoiceId?: Id;
61
64
  questionId?: Id;
62
65
  timeTaken?: number;
63
- mark?: IMarksheetMarkJSONB;
64
- action?: EMarksheetAction;
66
+ updatedAt?: Date;
65
67
  user: IUser;
66
- isAnswered?: boolean;
67
68
  }
68
69
  export declare type IOnMarksheetDataModificationData = RootData<IMarksheetDataModification, 'onMarksheetDataModification'>;
69
70
  export declare const ON_MARKSHEET_DATA_MODIFICATION_KEY = "ON_MARKSHEET_DATA_MODIFICATION";
@@ -61,6 +61,8 @@ exports.ON_MARKSHEET_DATA_MODIFICATION = (0, client_1.gql) `
61
61
  updatedAt
62
62
  marksheetId
63
63
  questionId
64
+ markIndex
65
+ mark
64
66
  questionChoiceId
65
67
  isAnswered
66
68
  timeTaken