@quesmed/types-rn 2.6.185 → 2.6.186
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
|
@@ -13,7 +13,8 @@ export declare enum EJobAttemptType {
|
|
|
13
13
|
ALL = 0,
|
|
14
14
|
FIRST_ATTEMPT = 1,
|
|
15
15
|
LATEST_ATTEMPT = 2,
|
|
16
|
-
|
|
16
|
+
VOTE_ATTEMPT = 3,
|
|
17
|
+
SINCE_LAST_MODIFICATION = 4
|
|
17
18
|
}
|
|
18
19
|
export declare enum EJobStatus {
|
|
19
20
|
ALL = 0,
|
|
@@ -145,6 +146,7 @@ export interface IJobRecordMockTest {
|
|
|
145
146
|
}>;
|
|
146
147
|
}
|
|
147
148
|
export interface IJobRecordMetricsSummary {
|
|
149
|
+
id: string;
|
|
148
150
|
total: number;
|
|
149
151
|
correct: number;
|
|
150
152
|
incorrect: number;
|
package/models/Job.js
CHANGED
|
@@ -12,7 +12,8 @@ var EJobAttemptType;
|
|
|
12
12
|
EJobAttemptType[EJobAttemptType["ALL"] = 0] = "ALL";
|
|
13
13
|
EJobAttemptType[EJobAttemptType["FIRST_ATTEMPT"] = 1] = "FIRST_ATTEMPT";
|
|
14
14
|
EJobAttemptType[EJobAttemptType["LATEST_ATTEMPT"] = 2] = "LATEST_ATTEMPT";
|
|
15
|
-
EJobAttemptType[EJobAttemptType["
|
|
15
|
+
EJobAttemptType[EJobAttemptType["VOTE_ATTEMPT"] = 3] = "VOTE_ATTEMPT";
|
|
16
|
+
EJobAttemptType[EJobAttemptType["SINCE_LAST_MODIFICATION"] = 4] = "SINCE_LAST_MODIFICATION";
|
|
16
17
|
})(EJobAttemptType = exports.EJobAttemptType || (exports.EJobAttemptType = {}));
|
|
17
18
|
var EJobStatus;
|
|
18
19
|
(function (EJobStatus) {
|
package/package.json
CHANGED