@quesmed/types-rn 2.6.153 → 2.6.154
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/package.json +1 -1
- package/resolvers/mutation/admin/ai.d.ts +22 -0
- package/resolvers/mutation/admin/ai.js +18 -0
- package/resolvers/mutation/admin/index.d.ts +1 -0
- package/resolvers/mutation/admin/index.js +1 -0
- package/resolvers/mutation/admin/question.d.ts +2 -0
- package/resolvers/query/admin/dashboard.d.ts +4 -0
- package/resolvers/query/admin/dashboard.js +4 -0
- package/resolvers/query/admin/question.js +18 -0
package/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Id } from '../../../models';
|
|
2
|
+
import { AdminData, graphqlNormalize } from '../../types';
|
|
3
|
+
export interface AISettings {
|
|
4
|
+
maxTokens?: number;
|
|
5
|
+
temperature?: number;
|
|
6
|
+
systemPrompt?: string;
|
|
7
|
+
userPrompt?: string;
|
|
8
|
+
apiKey: string;
|
|
9
|
+
model?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface IHighYieldVar {
|
|
12
|
+
chapterIds: Id[];
|
|
13
|
+
settings: AISettings;
|
|
14
|
+
}
|
|
15
|
+
export type IHighYieldData = AdminData<graphqlNormalize & string, 'highYield'>;
|
|
16
|
+
export declare const HIGH_YIELD: import("@apollo/client").DocumentNode;
|
|
17
|
+
export interface IDownloadBatchVar {
|
|
18
|
+
batchId: string;
|
|
19
|
+
apiKey: string;
|
|
20
|
+
}
|
|
21
|
+
export type IDownloadBatchData = AdminData<graphqlNormalize & string, 'downloadBatch'>;
|
|
22
|
+
export declare const DOWNLOAD_BATCH: import("@apollo/client").DocumentNode;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DOWNLOAD_BATCH = exports.HIGH_YIELD = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
exports.HIGH_YIELD = (0, client_1.gql) `
|
|
6
|
+
mutation HighYield($chapterIds: [Int!]!, $settings: AISettingsInput!) {
|
|
7
|
+
admin {
|
|
8
|
+
highYield(chapterIds: $chapterIds, settings: $settings)
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
`;
|
|
12
|
+
exports.DOWNLOAD_BATCH = (0, client_1.gql) `
|
|
13
|
+
mutation downloadBatch($batchId: String!, $apiKey: String!) {
|
|
14
|
+
admin {
|
|
15
|
+
downloadBatch(batchId: $batchId, apiKey: $apiKey)
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ai"), exports);
|
|
17
18
|
__exportStar(require("./algoliaSync"), exports);
|
|
18
19
|
__exportStar(require("./content"), exports);
|
|
19
20
|
__exportStar(require("./database"), exports);
|
|
@@ -10,6 +10,8 @@ export interface IUpdateQuestionVar {
|
|
|
10
10
|
typeId?: number;
|
|
11
11
|
answer?: string;
|
|
12
12
|
choices?: Partial<IQuestionChoice>[];
|
|
13
|
+
conditionIds?: number[];
|
|
14
|
+
presentationIds?: number[];
|
|
13
15
|
cases?: Partial<IQuestionCase>[];
|
|
14
16
|
explanation?: string;
|
|
15
17
|
learningPoint?: string;
|
|
@@ -194,5 +194,9 @@ export type IDropdownOptionsVar = {
|
|
|
194
194
|
export type IDropdownOptionsData = AdminData<Array<{
|
|
195
195
|
key: string;
|
|
196
196
|
value: string | number;
|
|
197
|
+
metaData: {
|
|
198
|
+
key: string;
|
|
199
|
+
value: string;
|
|
200
|
+
};
|
|
197
201
|
}>, 'dropdownOptions'>;
|
|
198
202
|
export declare const DROPDOWN_OPTIONS: import("@apollo/client").DocumentNode;
|
|
@@ -31,6 +31,24 @@ exports.ADMIN_QUESTION = (0, client_1.gql) `
|
|
|
31
31
|
likes
|
|
32
32
|
dislikes
|
|
33
33
|
totalVotes
|
|
34
|
+
presentations {
|
|
35
|
+
id
|
|
36
|
+
name
|
|
37
|
+
topicId
|
|
38
|
+
topic {
|
|
39
|
+
id
|
|
40
|
+
name
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
conditions {
|
|
44
|
+
id
|
|
45
|
+
name
|
|
46
|
+
topicId
|
|
47
|
+
topic {
|
|
48
|
+
id
|
|
49
|
+
name
|
|
50
|
+
}
|
|
51
|
+
}
|
|
34
52
|
entitlements {
|
|
35
53
|
id
|
|
36
54
|
entitlementId
|