@quesmed/types-rn 2.5.71 → 2.5.73
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/MockTest.d.ts
CHANGED
package/models/MockTest.js
CHANGED
|
@@ -9,4 +9,5 @@ var EMockTestType;
|
|
|
9
9
|
EMockTestType[EMockTestType["MISCELLANEOUS"] = 3] = "MISCELLANEOUS";
|
|
10
10
|
EMockTestType[EMockTestType["UNIVERSITY_SPECIFIC"] = 4] = "UNIVERSITY_SPECIFIC";
|
|
11
11
|
EMockTestType[EMockTestType["ANATOMY_SPOTTER"] = 5] = "ANATOMY_SPOTTER";
|
|
12
|
+
EMockTestType[EMockTestType["UKMLA"] = 6] = "UKMLA";
|
|
12
13
|
})(EMockTestType = exports.EMockTestType || (exports.EMockTestType = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { IUser } from '../../../models';
|
|
2
2
|
import { graphqlNormalize, RestrictedData } from '../../types';
|
|
3
|
-
export type IUserVar =
|
|
3
|
+
export type IUserVar = {
|
|
4
|
+
active?: boolean;
|
|
5
|
+
};
|
|
4
6
|
export type IUserData = RestrictedData<graphqlNormalize & IUser, 'user'>;
|
|
5
7
|
export declare const USER: import("@apollo/client").DocumentNode;
|
|
6
8
|
export declare const REFERRALS: import("@apollo/client").DocumentNode;
|