@quesmed/types-rn 2.6.238 → 2.6.240

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/models/User.d.ts CHANGED
@@ -129,8 +129,10 @@ export interface IUserSettings {
129
129
  productSettings: {
130
130
  examDate: number | Date | null;
131
131
  nextFeedbackDate: number | Date;
132
+ ucatMockAccessArrangement?: UcatMockAccessArrangement | null;
132
133
  };
133
134
  }
135
+ export type UcatMockAccessArrangement = 'UCAT' | 'UCATSA' | 'UCATSEN' | 'UCATSENSA' | 'UCATSEN50' | 'UCATSEN50SA';
134
136
  export interface IProductFeedback {
135
137
  id: Id;
136
138
  userId: Id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.238",
3
+ "version": "2.6.240",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -58,6 +58,7 @@ exports.USER_SETTINGS_FIELDS = (0, client_1.gql) `
58
58
  productSettings {
59
59
  examDate
60
60
  nextFeedbackDate
61
+ ucatMockAccessArrangement
61
62
  }
62
63
  }
63
64
  `;