@quesmed/types-rn 2.6.204 → 2.6.206
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
|
@@ -257,11 +257,13 @@ export interface IJob {
|
|
|
257
257
|
totalRecords: number;
|
|
258
258
|
createdBy: IUser['id'];
|
|
259
259
|
productId: EProductType;
|
|
260
|
+
trial: boolean;
|
|
260
261
|
metadata: IJobMetaData;
|
|
261
262
|
dueDate: Date | number;
|
|
262
263
|
createdAt: Date | number;
|
|
263
264
|
updatedAt: Date | number;
|
|
264
265
|
recordCount: number;
|
|
266
|
+
setCount: number;
|
|
265
267
|
remarkCount: number;
|
|
266
268
|
resolvedCount: number;
|
|
267
269
|
memberCount: number;
|
package/package.json
CHANGED
|
@@ -114,6 +114,7 @@ exports.LIST_JOB_FRAGMENT = (0, client_1.gql) `
|
|
|
114
114
|
${exports.JOB_MEMBER_FRAGMENT}
|
|
115
115
|
fragment Job on Job {
|
|
116
116
|
id
|
|
117
|
+
trial
|
|
117
118
|
updatedAt
|
|
118
119
|
createdAt
|
|
119
120
|
recordCount
|
|
@@ -161,7 +162,9 @@ exports.FULL_JOB_FRAGMENT = (0, client_1.gql) `
|
|
|
161
162
|
id
|
|
162
163
|
updatedAt
|
|
163
164
|
createdAt
|
|
165
|
+
trial
|
|
164
166
|
recordCount
|
|
167
|
+
setCount
|
|
165
168
|
publishedCount
|
|
166
169
|
resolvedCount
|
|
167
170
|
remarkCount
|