@quesmed/types-rn 2.6.168 → 2.6.169

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/Job.d.ts CHANGED
@@ -16,8 +16,8 @@ export declare enum EJobStatus {
16
16
  REJECTED = 4,
17
17
  APPROVED = 5,
18
18
  TESTING = 6,
19
- PUBLISHED = 7,
20
- PARTIAL_TRIALING = 8,
19
+ PARTIAL_TRIALING = 7,
20
+ PUBLISHED = 8,
21
21
  CLOSED = 9
22
22
  }
23
23
  export declare enum EJobType {
@@ -93,6 +93,7 @@ export interface IJobAsset {
93
93
  export interface IJobRecordQuestion {
94
94
  question: string;
95
95
  stem?: string | null;
96
+ stemFromRecordId?: IJobRecord['id'] | null;
96
97
  conceptId?: number | null;
97
98
  explanation?: string | null;
98
99
  learningPoint?: string | null;
package/models/Job.js CHANGED
@@ -22,10 +22,10 @@ var EJobStatus;
22
22
  EJobStatus[EJobStatus["APPROVED"] = 5] = "APPROVED";
23
23
  //In QA, testing, or limited release
24
24
  EJobStatus[EJobStatus["TESTING"] = 6] = "TESTING";
25
- // Final version is live and visible
26
- EJobStatus[EJobStatus["PUBLISHED"] = 7] = "PUBLISHED";
27
25
  //Partial batch, some content is live
28
- EJobStatus[EJobStatus["PARTIAL_TRIALING"] = 8] = "PARTIAL_TRIALING";
26
+ EJobStatus[EJobStatus["PARTIAL_TRIALING"] = 7] = "PARTIAL_TRIALING";
27
+ // Final version is live and visible
28
+ EJobStatus[EJobStatus["PUBLISHED"] = 8] = "PUBLISHED";
29
29
  //Closed, revision not allowed
30
30
  EJobStatus[EJobStatus["CLOSED"] = 9] = "CLOSED";
31
31
  })(EJobStatus = exports.EJobStatus || (exports.EJobStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.168",
3
+ "version": "2.6.169",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -81,6 +81,7 @@ exports.JOB_RECORD_QUESTION_FRAGMENT = (0, client_1.gql) `
81
81
  fragment JobRecordQuestion on JobRecordQuestion {
82
82
  question
83
83
  stem
84
+ stemFromRecordId
84
85
  conceptId
85
86
  typeId
86
87
  answer