@quesmed/types 2.5.114 → 2.6.0
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/models/Picture.d.ts +1 -0
- package/dist/cjs/resolvers/fragments/blog.js +1 -0
- package/dist/cjs/resolvers/fragments/chapter.js +1 -0
- package/dist/cjs/resolvers/fragments/marksheet.js +3 -0
- package/dist/cjs/resolvers/fragments/picture.js +1 -0
- package/dist/cjs/resolvers/fragments/user.js +1 -0
- package/dist/cjs/resolvers/mutation/restricted/marksheet.js +63 -0
- package/dist/cjs/resolvers/mutation/restricted/todo.d.ts +2 -2
- package/dist/cjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/cjs/resolvers/query/restricted/marksheet.d.ts +1 -1
- package/dist/cjs/resolvers/query/restricted/marksheet.js +66 -0
- package/dist/cjs/resolvers/query/restricted/quesBook.js +2 -0
- package/dist/cjs/resolvers/query/restricted/question.js +21 -0
- package/dist/cjs/resolvers/query/restricted/replication.js +4 -1
- package/dist/cjs/resolvers/query/restricted/todos.js +2 -0
- package/dist/cjs/resolvers/query/restricted/video.js +5 -0
- package/dist/cjs/resolvers/query/sample.d.ts +1 -1
- package/dist/cjs/resolvers/query/sample.js +3 -0
- package/dist/cjs/resolvers/query/video.js +6 -0
- package/dist/mjs/models/Picture.d.ts +1 -0
- package/dist/mjs/resolvers/fragments/blog.js +1 -0
- package/dist/mjs/resolvers/fragments/chapter.js +1 -0
- package/dist/mjs/resolvers/fragments/marksheet.js +3 -0
- package/dist/mjs/resolvers/fragments/picture.js +1 -0
- package/dist/mjs/resolvers/fragments/user.js +1 -0
- package/dist/mjs/resolvers/mutation/restricted/marksheet.js +63 -0
- package/dist/mjs/resolvers/mutation/restricted/todo.d.ts +2 -2
- package/dist/mjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/mjs/resolvers/query/restricted/marksheet.d.ts +1 -1
- package/dist/mjs/resolvers/query/restricted/marksheet.js +66 -0
- package/dist/mjs/resolvers/query/restricted/quesBook.js +2 -0
- package/dist/mjs/resolvers/query/restricted/question.js +21 -0
- package/dist/mjs/resolvers/query/restricted/replication.js +4 -1
- package/dist/mjs/resolvers/query/restricted/todos.js +2 -0
- package/dist/mjs/resolvers/query/restricted/video.js +5 -0
- package/dist/mjs/resolvers/query/sample.d.ts +1 -1
- package/dist/mjs/resolvers/query/sample.js +3 -0
- package/dist/mjs/resolvers/query/video.js +6 -0
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ export const VIDEO = gql `
|
|
|
29
29
|
path
|
|
30
30
|
path512
|
|
31
31
|
path256
|
|
32
|
+
thumbhash
|
|
32
33
|
index
|
|
33
34
|
topicId
|
|
34
35
|
}
|
|
@@ -68,6 +69,7 @@ export const VIDEO = gql `
|
|
|
68
69
|
path
|
|
69
70
|
path512
|
|
70
71
|
path256
|
|
72
|
+
thumbhash
|
|
71
73
|
topicId
|
|
72
74
|
topic {
|
|
73
75
|
id
|
|
@@ -84,6 +86,7 @@ export const VIDEO = gql `
|
|
|
84
86
|
path
|
|
85
87
|
path512
|
|
86
88
|
path256
|
|
89
|
+
thumbhash
|
|
87
90
|
topicId
|
|
88
91
|
topic {
|
|
89
92
|
id
|
|
@@ -100,6 +103,7 @@ export const VIDEO = gql `
|
|
|
100
103
|
path
|
|
101
104
|
path512
|
|
102
105
|
path256
|
|
106
|
+
thumbhash
|
|
103
107
|
topicId
|
|
104
108
|
topic {
|
|
105
109
|
id
|
|
@@ -116,6 +120,7 @@ export const VIDEO = gql `
|
|
|
116
120
|
path
|
|
117
121
|
path512
|
|
118
122
|
path256
|
|
123
|
+
thumbhash
|
|
119
124
|
topicId
|
|
120
125
|
topic {
|
|
121
126
|
id
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IMarksheet, IOsceMarksheet, ITodo } from '../../models';
|
|
2
|
-
import {
|
|
2
|
+
import { RootData, graphqlNormalize } from '../types';
|
|
3
3
|
export declare const SAMPLE_CONTENT: import("@apollo/client").DocumentNode;
|
|
4
4
|
export type ISampleContentVar = null;
|
|
5
5
|
interface ISampleContent {
|
|
@@ -56,6 +56,7 @@ export const SAMPLE_MARKSHEET = gql `
|
|
|
56
56
|
path
|
|
57
57
|
path512
|
|
58
58
|
path256
|
|
59
|
+
thumbhash
|
|
59
60
|
index
|
|
60
61
|
topicId
|
|
61
62
|
topic {
|
|
@@ -84,6 +85,7 @@ export const SAMPLE_MARKSHEET = gql `
|
|
|
84
85
|
path
|
|
85
86
|
path512
|
|
86
87
|
path256
|
|
88
|
+
thumbhash
|
|
87
89
|
}
|
|
88
90
|
}
|
|
89
91
|
}
|
|
@@ -120,6 +122,7 @@ export const SAMPLE_TODO = gql `
|
|
|
120
122
|
path
|
|
121
123
|
path512
|
|
122
124
|
path256
|
|
125
|
+
thumbhash
|
|
123
126
|
index
|
|
124
127
|
topicId
|
|
125
128
|
topic {
|
|
@@ -44,6 +44,7 @@ export const SAMPLE_VIDEOS = gql `
|
|
|
44
44
|
path
|
|
45
45
|
path512
|
|
46
46
|
path256
|
|
47
|
+
thumbhash
|
|
47
48
|
index
|
|
48
49
|
topicId
|
|
49
50
|
topic {
|
|
@@ -81,6 +82,7 @@ export const SAMPLE_VIDEO = gql `
|
|
|
81
82
|
path
|
|
82
83
|
path512
|
|
83
84
|
path256
|
|
85
|
+
thumbhash
|
|
84
86
|
index
|
|
85
87
|
topicId
|
|
86
88
|
topic {
|
|
@@ -118,6 +120,7 @@ export const SAMPLE_VIDEO = gql `
|
|
|
118
120
|
path
|
|
119
121
|
path512
|
|
120
122
|
path256
|
|
123
|
+
thumbhash
|
|
121
124
|
topicId
|
|
122
125
|
topic {
|
|
123
126
|
id
|
|
@@ -134,6 +137,7 @@ export const SAMPLE_VIDEO = gql `
|
|
|
134
137
|
path
|
|
135
138
|
path512
|
|
136
139
|
path256
|
|
140
|
+
thumbhash
|
|
137
141
|
topicId
|
|
138
142
|
topic {
|
|
139
143
|
id
|
|
@@ -150,6 +154,7 @@ export const SAMPLE_VIDEO = gql `
|
|
|
150
154
|
path
|
|
151
155
|
path512
|
|
152
156
|
path256
|
|
157
|
+
thumbhash
|
|
153
158
|
topicId
|
|
154
159
|
topic {
|
|
155
160
|
id
|
|
@@ -166,6 +171,7 @@ export const SAMPLE_VIDEO = gql `
|
|
|
166
171
|
path
|
|
167
172
|
path512
|
|
168
173
|
path256
|
|
174
|
+
thumbhash
|
|
169
175
|
topicId
|
|
170
176
|
topic {
|
|
171
177
|
id
|