@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 +3 -2
- package/models/Job.js +3 -3
- package/package.json +1 -1
- package/resolvers/fragments/job.js +1 -0
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
|
-
|
|
20
|
-
|
|
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"] =
|
|
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