@quesmed/types-rn 2.6.18 → 2.6.19

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.
@@ -17,6 +17,7 @@ export interface IMockTestType {
17
17
  }
18
18
  export interface IMockTest {
19
19
  id: Id;
20
+ demo: boolean;
20
21
  createdAt: number | Date;
21
22
  title: string;
22
23
  topicIds: number[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.18",
3
+ "version": "2.6.19",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -5,6 +5,7 @@ const client_1 = require("@apollo/client");
5
5
  exports.MOCK_TEST_FIELDS = (0, client_1.gql) `
6
6
  fragment MockTestFields on MockTest {
7
7
  id
8
+ demo
8
9
  title
9
10
  passingMark
10
11
  correct