@quesmed/types-rn 2.2.28 → 2.2.31
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
|
@@ -12,6 +12,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
12
12
|
startedAt
|
|
13
13
|
endedAt
|
|
14
14
|
topicIds
|
|
15
|
+
completed
|
|
15
16
|
solo
|
|
16
17
|
state
|
|
17
18
|
currentMarkId
|
|
@@ -1125,6 +1126,7 @@ exports.SAVE_MARKSHEET = (0, client_1.gql) `
|
|
|
1125
1126
|
id
|
|
1126
1127
|
createdAt
|
|
1127
1128
|
startedAt
|
|
1129
|
+
completed
|
|
1128
1130
|
endedAt
|
|
1129
1131
|
marks {
|
|
1130
1132
|
id
|
|
@@ -1269,6 +1271,7 @@ exports.MODIFY_MARKSHEET_INFO = (0, client_1.gql) `
|
|
|
1269
1271
|
state
|
|
1270
1272
|
solo
|
|
1271
1273
|
agoraId
|
|
1274
|
+
completed
|
|
1272
1275
|
currentMarkId
|
|
1273
1276
|
topicConceptData
|
|
1274
1277
|
builderConfig {
|
|
@@ -14,10 +14,11 @@ export interface IMarksheetsVar {
|
|
|
14
14
|
solo?: boolean;
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
export
|
|
17
|
+
export interface Marksheets {
|
|
18
18
|
results: (graphqlNormalize & IMarksheet)[];
|
|
19
19
|
total: number;
|
|
20
|
-
}
|
|
20
|
+
}
|
|
21
|
+
export declare type IMarksheetsData = RestrictedData<Marksheets, 'marksheets'>;
|
|
21
22
|
export declare const MARKSHEETS: import("@apollo/client").DocumentNode;
|
|
22
23
|
export declare type ILatestPastMarksheetIdVar = null;
|
|
23
24
|
export declare type ILatestPastMarksheetIdData = RestrictedData<number, 'latestPastMarksheetId'>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { IDailyProgressInfo,
|
|
1
|
+
import { IDailyProgressInfo, ITodo, ITopic, IUser } from '../../../models';
|
|
2
|
+
import { Marksheets } from './marksheet';
|
|
2
3
|
import { IUniversitiesRankSpeciality } from './university';
|
|
3
4
|
export interface IDashboardQBank {
|
|
4
5
|
restricted: {
|
|
6
|
+
latestAgoraId: string;
|
|
5
7
|
latestPastMarksheetId: number;
|
|
6
8
|
user: IUser;
|
|
7
|
-
marksheets:
|
|
9
|
+
marksheets: Marksheets;
|
|
8
10
|
dailyFeed: ITodo;
|
|
9
11
|
dailyProgress: IDailyProgressInfo[];
|
|
10
12
|
topics: ITopic[];
|