@timardex/cluemart-shared 1.5.554 → 1.5.555

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.
@@ -2,10 +2,10 @@ 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-8Oq0lbxf.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-ClbRuePq.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-DFLgP4SQ.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-_paHbhaK.mjs';
6
6
  import 'react-hook-form';
7
7
  import '../images/index.mjs';
8
- import '../dailyClue-BFo8YN7B.mjs';
8
+ import '../dailyClue-BnlktK68.mjs';
9
9
 
10
10
  declare const useAdminUpdateResourceType: () => {
11
11
  adminUpdateResourceType: (options?: _apollo_client.MutationFunctionOptions<{
@@ -2,10 +2,10 @@ 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-DBd_Xxzh.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-CDqmjLH1.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-D9v4eViK.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-D4B7jPBU.js';
6
6
  import 'react-hook-form';
7
7
  import '../images/index.js';
8
- import '../dailyClue-BFo8YN7B.js';
8
+ import '../dailyClue-BnlktK68.js';
9
9
 
10
10
  declare const useAdminUpdateResourceType: () => {
11
11
  adminUpdateResourceType: (options?: _apollo_client.MutationFunctionOptions<{
@@ -132,7 +132,7 @@ import {
132
132
  useUpdateVendor,
133
133
  useUpdateVendorInfo,
134
134
  useValidateVerificationToken
135
- } from "../chunk-E2NG4Q2N.mjs";
135
+ } from "../chunk-3244ZVPR.mjs";
136
136
  import "../chunk-ZR4TGWTS.mjs";
137
137
  export {
138
138
  useAddParticipantToChat,
@@ -4187,6 +4187,41 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
4187
4187
  }
4188
4188
  ${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
4189
4189
  `;
4190
+ var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = import_client55.gql`
4191
+ fragment MiniQuizQuestionFields on MiniQuizQuestionType {
4192
+ answers {
4193
+ value
4194
+ correct
4195
+ }
4196
+ question
4197
+ }
4198
+ `;
4199
+ var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
4200
+ fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
4201
+ gameDate {
4202
+ ...GameDateFields
4203
+ }
4204
+ questions {
4205
+ ...MiniQuizQuestionFields
4206
+ }
4207
+ }
4208
+ ${GAME_DATE_FIELDS_FRAGMENT}
4209
+ ${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
4210
+ `;
4211
+ var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
4212
+ fragment MiniQuizGameDataFields on MiniQuizGameDataType {
4213
+ gameFields {
4214
+ ...MiniQuizBaseGameFields
4215
+ }
4216
+ quizInfo {
4217
+ ...MiniQuizQuestionFields
4218
+ }
4219
+ points
4220
+ streak
4221
+ }
4222
+ ${MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT}
4223
+ ${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
4224
+ `;
4190
4225
  var GAME_HISTORY_FIELDS_FRAGMENT = import_client55.gql`
4191
4226
  fragment GameHistoryFields on GameHistoryType {
4192
4227
  createdAt
@@ -4204,8 +4239,12 @@ var GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
4204
4239
  dailyClue {
4205
4240
  ...DailyClueGameDataFields
4206
4241
  }
4242
+ miniQuiz {
4243
+ ...MiniQuizGameDataFields
4244
+ }
4207
4245
  }
4208
4246
  ${DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT}
4247
+ ${MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT}
4209
4248
  `;
4210
4249
  var GAME_FIELDS_FRAGMENT = import_client55.gql`
4211
4250
  fragment GameFields on GameType {
@@ -4281,8 +4320,12 @@ var BASE_GAME_FIELDS_FRAGMENT = import_client56.gql`
4281
4320
  dailyClue {
4282
4321
  ...DailyClueBaseGameFields
4283
4322
  }
4323
+ miniQuiz {
4324
+ ...MiniQuizBaseGameFields
4325
+ }
4284
4326
  }
4285
4327
  ${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
4328
+ ${MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT}
4286
4329
  `;
4287
4330
  var POST_CONTENT_DATA_FIELDS_FRAGMENT = import_client56.gql`
4288
4331
  fragment PostContentDataFields on PostContentData {