@quesmed/types 2.6.112 → 2.6.114
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/dist/cjs/resolvers/query/admin/dashboard.d.ts +12 -0
- package/dist/cjs/resolvers/query/admin/dashboard.js +12 -0
- package/dist/cjs/resolvers/query/restricted/topics.js +5 -0
- package/dist/mjs/resolvers/query/admin/dashboard.d.ts +12 -0
- package/dist/mjs/resolvers/query/admin/dashboard.js +12 -0
- package/dist/mjs/resolvers/query/restricted/topics.js +5 -0
- package/package.json +1 -1
|
@@ -93,6 +93,18 @@ export type IUserFeedbackVar = {
|
|
|
93
93
|
export type IUserFeedbackData = AdminData<IUserFeedback, 'userFeedbacks'>;
|
|
94
94
|
export declare const QUESTION_STATS: import("@apollo/client").DocumentNode;
|
|
95
95
|
export interface IQuestionStats {
|
|
96
|
+
totalQuestions: number;
|
|
97
|
+
totalMockQuestions: number;
|
|
98
|
+
mockTests: Array<{
|
|
99
|
+
id: number;
|
|
100
|
+
name: string;
|
|
101
|
+
count: number;
|
|
102
|
+
}>;
|
|
103
|
+
mockCategories: Array<{
|
|
104
|
+
id: number;
|
|
105
|
+
name: string;
|
|
106
|
+
count: number;
|
|
107
|
+
}>;
|
|
96
108
|
entitlements: Array<{
|
|
97
109
|
id: number;
|
|
98
110
|
name: string;
|
|
@@ -132,6 +132,18 @@ exports.QUESTION_STATS = (0, client_1.gql) `
|
|
|
132
132
|
to: $to
|
|
133
133
|
productId: $productId
|
|
134
134
|
) {
|
|
135
|
+
totalQuestions
|
|
136
|
+
totalMockQuestions
|
|
137
|
+
mockTests {
|
|
138
|
+
id
|
|
139
|
+
name
|
|
140
|
+
count
|
|
141
|
+
}
|
|
142
|
+
mockCategories {
|
|
143
|
+
id
|
|
144
|
+
name
|
|
145
|
+
count
|
|
146
|
+
}
|
|
135
147
|
entitlements {
|
|
136
148
|
id
|
|
137
149
|
name
|
|
@@ -93,6 +93,18 @@ export type IUserFeedbackVar = {
|
|
|
93
93
|
export type IUserFeedbackData = AdminData<IUserFeedback, 'userFeedbacks'>;
|
|
94
94
|
export declare const QUESTION_STATS: import("@apollo/client").DocumentNode;
|
|
95
95
|
export interface IQuestionStats {
|
|
96
|
+
totalQuestions: number;
|
|
97
|
+
totalMockQuestions: number;
|
|
98
|
+
mockTests: Array<{
|
|
99
|
+
id: number;
|
|
100
|
+
name: string;
|
|
101
|
+
count: number;
|
|
102
|
+
}>;
|
|
103
|
+
mockCategories: Array<{
|
|
104
|
+
id: number;
|
|
105
|
+
name: string;
|
|
106
|
+
count: number;
|
|
107
|
+
}>;
|
|
96
108
|
entitlements: Array<{
|
|
97
109
|
id: number;
|
|
98
110
|
name: string;
|
|
@@ -129,6 +129,18 @@ export const QUESTION_STATS = gql `
|
|
|
129
129
|
to: $to
|
|
130
130
|
productId: $productId
|
|
131
131
|
) {
|
|
132
|
+
totalQuestions
|
|
133
|
+
totalMockQuestions
|
|
134
|
+
mockTests {
|
|
135
|
+
id
|
|
136
|
+
name
|
|
137
|
+
count
|
|
138
|
+
}
|
|
139
|
+
mockCategories {
|
|
140
|
+
id
|
|
141
|
+
name
|
|
142
|
+
count
|
|
143
|
+
}
|
|
132
144
|
entitlements {
|
|
133
145
|
id
|
|
134
146
|
name
|