@timardex/cluemart-shared 1.5.561 → 1.5.563
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/{chunk-UNB5ZQBB.mjs → chunk-EJSAMZ35.mjs} +12 -6
- package/dist/{chunk-UNB5ZQBB.mjs.map → chunk-EJSAMZ35.mjs.map} +1 -1
- package/dist/graphql/index.cjs +11 -5
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +11 -5
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +11 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +11 -4
- package/dist/index.d.ts +11 -4
- package/dist/index.mjs +11 -5
- package/dist/index.mjs.map +1 -1
- package/dist/{post-Du7LAWMS.d.mts → post-CeZceQBm.d.mts} +11 -4
- package/dist/{post-Bhuy1-k6.d.ts → post-CiqgVcLD.d.ts} +11 -4
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _apollo_client from '@apollo/client';
|
|
|
2
2
|
import { EnumResourceType } from '../enums/index.mjs';
|
|
3
3
|
import { C as ChatType, R as ReportChatUser, N as NotificationCount, a as NotificationType, b as ResourceActivityType } from '../resourceActivities-Bmt-2ItD.mjs';
|
|
4
4
|
import { E as EventType, c as EventListItemType, d as EventInfoType, e as RelationType, f as ResourceConnectionsType, U as UnregisteredVendorType, V as VendorType, g as VendorInfoType, h as UserLicenceType } from '../global-3liXCxkc.mjs';
|
|
5
|
-
import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType, G as GameDocType, e as GameLeaderboard, f as SchoolReturnType, g as SchoolType } from '../post-
|
|
5
|
+
import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType, G as GameDocType, e as GameLeaderboard, f as SchoolReturnType, g as SchoolType } from '../post-CeZceQBm.mjs';
|
|
6
6
|
import 'react-hook-form';
|
|
7
7
|
import '../images/index.mjs';
|
|
8
8
|
import '../dailyClue-BnlktK68.mjs';
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _apollo_client from '@apollo/client';
|
|
|
2
2
|
import { EnumResourceType } from '../enums/index.js';
|
|
3
3
|
import { C as ChatType, R as ReportChatUser, N as NotificationCount, a as NotificationType, b as ResourceActivityType } from '../resourceActivities-2dcCvRIM.js';
|
|
4
4
|
import { E as EventType, c as EventListItemType, d as EventInfoType, e as RelationType, f as ResourceConnectionsType, U as UnregisteredVendorType, V as VendorType, g as VendorInfoType, h as UserLicenceType } from '../global-BebbAtVP.js';
|
|
5
|
-
import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType, G as GameDocType, e as GameLeaderboard, f as SchoolReturnType, g as SchoolType } from '../post-
|
|
5
|
+
import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType, G as GameDocType, e as GameLeaderboard, f as SchoolReturnType, g as SchoolType } from '../post-CiqgVcLD.js';
|
|
6
6
|
import 'react-hook-form';
|
|
7
7
|
import '../images/index.js';
|
|
8
8
|
import '../dailyClue-BnlktK68.js';
|
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4189,21 +4189,27 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
|
|
|
4189
4189
|
`;
|
|
4190
4190
|
var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = import_client55.gql`
|
|
4191
4191
|
fragment MiniQuizAnswerFields on MiniQuizAnswerType {
|
|
4192
|
-
id
|
|
4193
4192
|
answer
|
|
4193
|
+
answerId
|
|
4194
4194
|
correct
|
|
4195
4195
|
}
|
|
4196
4196
|
`;
|
|
4197
4197
|
var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = import_client55.gql`
|
|
4198
4198
|
fragment MiniQuizQuestionFields on MiniQuizQuestionType {
|
|
4199
|
-
id
|
|
4200
4199
|
answers {
|
|
4201
4200
|
...MiniQuizAnswerFields
|
|
4202
4201
|
}
|
|
4203
4202
|
question
|
|
4203
|
+
questionId
|
|
4204
4204
|
}
|
|
4205
4205
|
${MINI_QUIZ_ANSWER_FIELDS_FRAGMENT}
|
|
4206
4206
|
`;
|
|
4207
|
+
var MINI_QUIZ_ANSWERED_QUESTION_FIELDS_FRAGMENT = import_client55.gql`
|
|
4208
|
+
fragment MiniQuizAnsweredQuestionFields on MiniQuizAnsweredQuestionType {
|
|
4209
|
+
questionId
|
|
4210
|
+
selectedAnswerId
|
|
4211
|
+
}
|
|
4212
|
+
`;
|
|
4207
4213
|
var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
|
|
4208
4214
|
fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
|
|
4209
4215
|
questions {
|
|
@@ -4217,14 +4223,14 @@ var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
|
|
|
4217
4223
|
gameFields {
|
|
4218
4224
|
...MiniQuizBaseGameFields
|
|
4219
4225
|
}
|
|
4220
|
-
|
|
4221
|
-
...
|
|
4226
|
+
answeredQuestions {
|
|
4227
|
+
...MiniQuizAnsweredQuestionFields
|
|
4222
4228
|
}
|
|
4223
4229
|
points
|
|
4224
4230
|
streak
|
|
4225
4231
|
}
|
|
4226
4232
|
${MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT}
|
|
4227
|
-
${
|
|
4233
|
+
${MINI_QUIZ_ANSWERED_QUESTION_FIELDS_FRAGMENT}
|
|
4228
4234
|
`;
|
|
4229
4235
|
var GAME_HISTORY_FIELDS_FRAGMENT = import_client55.gql`
|
|
4230
4236
|
fragment GameHistoryFields on GameHistoryType {
|