@quesmed/types-rn 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/package.json
CHANGED
|
@@ -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
|