@quesmed/types-rn 2.6.162 → 2.6.164
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
|
@@ -97,11 +97,12 @@ export interface IJobRecordQuestion {
|
|
|
97
97
|
explanation?: string | null;
|
|
98
98
|
learningPoint?: string | null;
|
|
99
99
|
answer: Exclude<IQuestionAnswer, 'string'>;
|
|
100
|
-
|
|
100
|
+
themeIds?: number[];
|
|
101
101
|
entitlementIds?: EEntitlementType[];
|
|
102
102
|
conditionIds?: number[];
|
|
103
103
|
presentationIds?: number[];
|
|
104
104
|
typeId: EQuestionType;
|
|
105
|
+
subTypeId?: string | null;
|
|
105
106
|
choices: Array<Pick<IQuestionChoice, 'label' | 'name' | 'answer'> & {
|
|
106
107
|
explanation?: IQuestionChoice['explanation'];
|
|
107
108
|
}>;
|
package/package.json
CHANGED
|
@@ -358,9 +358,19 @@ exports.USER_CANCELLATION_REASONS = (0, client_1.gql) `
|
|
|
358
358
|
}
|
|
359
359
|
`;
|
|
360
360
|
exports.DROPDOWN_OPTIONS = (0, client_1.gql) `
|
|
361
|
-
query DropdownOptions(
|
|
361
|
+
query DropdownOptions(
|
|
362
|
+
$table: String
|
|
363
|
+
$search: String
|
|
364
|
+
$force: Boolean!
|
|
365
|
+
$entitlementIds: [Int!]
|
|
366
|
+
) {
|
|
362
367
|
admin {
|
|
363
|
-
dropdownOptions(
|
|
368
|
+
dropdownOptions(
|
|
369
|
+
force: $force
|
|
370
|
+
search: $search
|
|
371
|
+
table: $table
|
|
372
|
+
entitlementIds: $entitlementIds
|
|
373
|
+
) {
|
|
364
374
|
key
|
|
365
375
|
value
|
|
366
376
|
description
|