@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.112",
3
+ "version": "2.6.114",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -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
@@ -79,6 +79,11 @@ exports.QUESTION_TOPICS = (0, client_1.gql) `
79
79
  totalQuestions
80
80
  correctQuestions
81
81
  incorrectQuestions
82
+ entitlement {
83
+ id
84
+ index
85
+ name
86
+ }
82
87
  }
83
88
  }
84
89
  }