@timardex/cluemart-shared 1.5.710 → 1.5.712

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.
@@ -1,7 +1,7 @@
1
1
  import { EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumResourceType, EnumPartnerType } from './enums/index.mjs';
2
2
  import { A as AssociateType, Y as ResourceImageType, i as UserLicenceType, K as PromoCodeType, a0 as TermsAgreement, D as DateTimeType, u as CreateFormData, t as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, z as OwnerType, W as ResourceContactDetailsType, Z as SocialMediaType } from './global-BEUzBSyY.mjs';
3
3
  import { PosterAssetId } from './images/index.mjs';
4
- import { d as GlobalGameData, E as EnumGameType, D as DailyClueBaseGame, a as DailyClueGameData, G as GameDate } from './dailyClue-D7Df-qCO.mjs';
4
+ import { d as GlobalGameData, E as EnumGameType, D as DailyClueBaseGame, a as DailyClueGameData, G as GameDate } from './dailyClue-CvhLv9hJ.mjs';
5
5
 
6
6
  type UserFormData = {
7
7
  _id?: string;
@@ -143,38 +143,39 @@ type AppSettingsType = AppSettingsFormData & {
143
143
  updatedAt: Date | null;
144
144
  };
145
145
 
146
- type MiniQuizAnswer = {
146
+ type PuzzleAnswer = {
147
147
  answerId: string;
148
148
  answer: string;
149
149
  correct: boolean;
150
150
  };
151
- type MiniQuizQuestion = {
152
- answers: MiniQuizAnswer[];
151
+ type PuzzleQuestion = {
152
+ answers: PuzzleAnswer[];
153
153
  question: string;
154
154
  questionId: string;
155
155
  };
156
156
  /**
157
157
  * Stores only the answerId and the questionId of the selected answer.
158
158
  */
159
- type MiniQuizAnsweredQuestion = {
159
+ type PuzzleAnsweredQuestion = {
160
160
  selectedAnswerId: string;
161
161
  questionId: string;
162
162
  };
163
- type MiniQuizBaseGame = {
164
- questions: MiniQuizQuestion[];
163
+ type PuzzleBaseGame = {
164
+ questions: PuzzleQuestion[];
165
165
  };
166
- type MiniQuizGameData = GlobalGameData & {
167
- gameFields: MiniQuizBaseGame;
166
+ type PuzzleGameData = GlobalGameData & {
167
+ gameFields: PuzzleBaseGame;
168
168
  /**
169
169
  * Stores user answers only.
170
170
  * Never store correctness from client.
171
171
  */
172
- answeredQuestions: MiniQuizAnsweredQuestion[];
172
+ answeredQuestions: PuzzleAnsweredQuestion[];
173
173
  };
174
174
 
175
175
  type BaseGameMap = {
176
176
  [EnumGameType.DAILY_CLUE]: DailyClueBaseGame;
177
- [EnumGameType.MINI_QUIZ]: MiniQuizBaseGame;
177
+ [EnumGameType.MINI_QUIZ]: PuzzleBaseGame;
178
+ [EnumGameType.ODD_ONE_OUT]: PuzzleBaseGame;
178
179
  };
179
180
  type BaseGameType = {
180
181
  gameType: EnumGameType;
@@ -193,11 +194,15 @@ type GameHistory = Pick<BaseGameType, "gameTitle" | "gameType" | "gameTypeId"> &
193
194
  createdAt: Date;
194
195
  gameDate: GameDate;
195
196
  gameStatus: EnumGameStatus;
197
+ /** Per-event delta. Not persisted for overallGamePoints (computed at read time). */
196
198
  pointsEarned: number;
199
+ /** Running total for this game instance; computed at read time, not stored in Mongo. */
200
+ overallGamePoints?: number;
197
201
  };
198
202
  type GameDataMap = {
199
203
  [EnumGameType.DAILY_CLUE]: DailyClueGameData;
200
- [EnumGameType.MINI_QUIZ]: MiniQuizGameData;
204
+ [EnumGameType.MINI_QUIZ]: PuzzleGameData;
205
+ [EnumGameType.ODD_ONE_OUT]: PuzzleGameData;
201
206
  };
202
207
  type GameDataType = {
203
208
  [K in keyof GameDataMap]?: GameDataMap[K] | null;
@@ -447,4 +452,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
447
452
  updatedAt: Date | null;
448
453
  };
449
454
 
450
- export { type PostContentData as $, type AuthPayloadType as A, type AdResource as B, type CreateUserFormData as C, type BaseGameMap as D, EnumAdStatus as E, type BaseGameType as F, type GameDocType as G, type CreateAdFormData as H, EnumAdShowOn as I, EnumAdStyle as J, EnumAdType as K, EnumGameStatus as L, EnumPostContentType as M, EnumVerificationType as N, type GameHistory as O, type PartnerType as P, type GameType as Q, type RefreshTokenPayloadType as R, type SafeUserType as S, type LoginFormData as T, type UserFormData as U, type MarketingMaterialRequestInputType as V, type MiniQuizAnswer as W, type MiniQuizAnsweredQuestion as X, type MiniQuizBaseGame as Y, type MiniQuizGameData as Z, type MiniQuizQuestion as _, type ResourceByUser as a, type PostContentFormData as a0, type PostContentGame as a1, type PostContentImage as a2, type PostContentList as a3, type PostContentTextarea as a4, type PostContentType as a5, type PostContentVideo as a6, type PostFileInput as a7, type PosterInputType as a8, type RegisterFormData as a9, type RequestPasswordResetFormData as aa, type ResetPasswordFormData as ab, type SchoolCampaignType as ac, type SchoolRegisteredUserType as ad, type StripeSubscription as ae, type SubscriptionPlanData as af, type SubscriptionPricingData as ag, type UserActivity as ah, type UserActivityEvent as ai, type UserType as aj, type ValidateVerificationTokenFormData as ak, type AdType as b, type SubscriptionPlansResponse as c, type SubscriptionStatusData as d, type PostType as e, EnumPostType as f, type AppSettingsType as g, type GameLeaderboard as h, type SchoolReturnType as i, type SchoolType as j, type CreateLoginFormData as k, type CreateRegisterFormData as l, type CreateRequestPasswordResetFormData as m, type CreateValidateVerificationTokenFormData as n, type CreateResetPasswordFormData as o, type PartnerFormData as p, type AdFormData as q, type CreateAdFormState as r, type CreatePartnerFormData as s, type PostFormData as t, type CreatePostFormData as u, type AppSettingsFormData as v, type CreateAppSettingsFormData as w, type SchoolFormData as x, type CreateSchoolFormData as y, type AdFormState as z };
455
+ export { type PostContentTextarea as $, type AuthPayloadType as A, type AdResource as B, type CreateUserFormData as C, type BaseGameMap as D, EnumAdStatus as E, type BaseGameType as F, type GameDocType as G, type CreateAdFormData as H, EnumAdShowOn as I, EnumAdStyle as J, EnumAdType as K, EnumGameStatus as L, EnumPostContentType as M, EnumVerificationType as N, type GameHistory as O, type PartnerType as P, type GameType as Q, type RefreshTokenPayloadType as R, type SafeUserType as S, type LoginFormData as T, type UserFormData as U, type MarketingMaterialRequestInputType as V, type PostContentData as W, type PostContentFormData as X, type PostContentGame as Y, type PostContentImage as Z, type PostContentList as _, type ResourceByUser as a, type PostContentType as a0, type PostContentVideo as a1, type PostFileInput as a2, type PosterInputType as a3, type PuzzleAnswer as a4, type PuzzleAnsweredQuestion as a5, type PuzzleBaseGame as a6, type PuzzleGameData as a7, type PuzzleQuestion as a8, type RegisterFormData as a9, type RequestPasswordResetFormData as aa, type ResetPasswordFormData as ab, type SchoolCampaignType as ac, type SchoolRegisteredUserType as ad, type StripeSubscription as ae, type SubscriptionPlanData as af, type SubscriptionPricingData as ag, type UserActivity as ah, type UserActivityEvent as ai, type UserType as aj, type ValidateVerificationTokenFormData as ak, type AdType as b, type SubscriptionPlansResponse as c, type SubscriptionStatusData as d, type PostType as e, EnumPostType as f, type AppSettingsType as g, type GameLeaderboard as h, type SchoolReturnType as i, type SchoolType as j, type CreateLoginFormData as k, type CreateRegisterFormData as l, type CreateRequestPasswordResetFormData as m, type CreateValidateVerificationTokenFormData as n, type CreateResetPasswordFormData as o, type PartnerFormData as p, type AdFormData as q, type CreateAdFormState as r, type CreatePartnerFormData as s, type PostFormData as t, type CreatePostFormData as u, type AppSettingsFormData as v, type CreateAppSettingsFormData as w, type SchoolFormData as x, type CreateSchoolFormData as y, type AdFormState as z };
@@ -1,7 +1,7 @@
1
1
  import { EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumResourceType, EnumPartnerType } from './enums/index.js';
2
2
  import { A as AssociateType, Y as ResourceImageType, i as UserLicenceType, K as PromoCodeType, a0 as TermsAgreement, D as DateTimeType, u as CreateFormData, t as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, z as OwnerType, W as ResourceContactDetailsType, Z as SocialMediaType } from './global-585slmSH.js';
3
3
  import { PosterAssetId } from './images/index.js';
4
- import { d as GlobalGameData, E as EnumGameType, D as DailyClueBaseGame, a as DailyClueGameData, G as GameDate } from './dailyClue-D7Df-qCO.js';
4
+ import { d as GlobalGameData, E as EnumGameType, D as DailyClueBaseGame, a as DailyClueGameData, G as GameDate } from './dailyClue-CvhLv9hJ.js';
5
5
 
6
6
  type UserFormData = {
7
7
  _id?: string;
@@ -143,38 +143,39 @@ type AppSettingsType = AppSettingsFormData & {
143
143
  updatedAt: Date | null;
144
144
  };
145
145
 
146
- type MiniQuizAnswer = {
146
+ type PuzzleAnswer = {
147
147
  answerId: string;
148
148
  answer: string;
149
149
  correct: boolean;
150
150
  };
151
- type MiniQuizQuestion = {
152
- answers: MiniQuizAnswer[];
151
+ type PuzzleQuestion = {
152
+ answers: PuzzleAnswer[];
153
153
  question: string;
154
154
  questionId: string;
155
155
  };
156
156
  /**
157
157
  * Stores only the answerId and the questionId of the selected answer.
158
158
  */
159
- type MiniQuizAnsweredQuestion = {
159
+ type PuzzleAnsweredQuestion = {
160
160
  selectedAnswerId: string;
161
161
  questionId: string;
162
162
  };
163
- type MiniQuizBaseGame = {
164
- questions: MiniQuizQuestion[];
163
+ type PuzzleBaseGame = {
164
+ questions: PuzzleQuestion[];
165
165
  };
166
- type MiniQuizGameData = GlobalGameData & {
167
- gameFields: MiniQuizBaseGame;
166
+ type PuzzleGameData = GlobalGameData & {
167
+ gameFields: PuzzleBaseGame;
168
168
  /**
169
169
  * Stores user answers only.
170
170
  * Never store correctness from client.
171
171
  */
172
- answeredQuestions: MiniQuizAnsweredQuestion[];
172
+ answeredQuestions: PuzzleAnsweredQuestion[];
173
173
  };
174
174
 
175
175
  type BaseGameMap = {
176
176
  [EnumGameType.DAILY_CLUE]: DailyClueBaseGame;
177
- [EnumGameType.MINI_QUIZ]: MiniQuizBaseGame;
177
+ [EnumGameType.MINI_QUIZ]: PuzzleBaseGame;
178
+ [EnumGameType.ODD_ONE_OUT]: PuzzleBaseGame;
178
179
  };
179
180
  type BaseGameType = {
180
181
  gameType: EnumGameType;
@@ -193,11 +194,15 @@ type GameHistory = Pick<BaseGameType, "gameTitle" | "gameType" | "gameTypeId"> &
193
194
  createdAt: Date;
194
195
  gameDate: GameDate;
195
196
  gameStatus: EnumGameStatus;
197
+ /** Per-event delta. Not persisted for overallGamePoints (computed at read time). */
196
198
  pointsEarned: number;
199
+ /** Running total for this game instance; computed at read time, not stored in Mongo. */
200
+ overallGamePoints?: number;
197
201
  };
198
202
  type GameDataMap = {
199
203
  [EnumGameType.DAILY_CLUE]: DailyClueGameData;
200
- [EnumGameType.MINI_QUIZ]: MiniQuizGameData;
204
+ [EnumGameType.MINI_QUIZ]: PuzzleGameData;
205
+ [EnumGameType.ODD_ONE_OUT]: PuzzleGameData;
201
206
  };
202
207
  type GameDataType = {
203
208
  [K in keyof GameDataMap]?: GameDataMap[K] | null;
@@ -447,4 +452,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
447
452
  updatedAt: Date | null;
448
453
  };
449
454
 
450
- export { type PostContentData as $, type AuthPayloadType as A, type AdResource as B, type CreateUserFormData as C, type BaseGameMap as D, EnumAdStatus as E, type BaseGameType as F, type GameDocType as G, type CreateAdFormData as H, EnumAdShowOn as I, EnumAdStyle as J, EnumAdType as K, EnumGameStatus as L, EnumPostContentType as M, EnumVerificationType as N, type GameHistory as O, type PartnerType as P, type GameType as Q, type RefreshTokenPayloadType as R, type SafeUserType as S, type LoginFormData as T, type UserFormData as U, type MarketingMaterialRequestInputType as V, type MiniQuizAnswer as W, type MiniQuizAnsweredQuestion as X, type MiniQuizBaseGame as Y, type MiniQuizGameData as Z, type MiniQuizQuestion as _, type ResourceByUser as a, type PostContentFormData as a0, type PostContentGame as a1, type PostContentImage as a2, type PostContentList as a3, type PostContentTextarea as a4, type PostContentType as a5, type PostContentVideo as a6, type PostFileInput as a7, type PosterInputType as a8, type RegisterFormData as a9, type RequestPasswordResetFormData as aa, type ResetPasswordFormData as ab, type SchoolCampaignType as ac, type SchoolRegisteredUserType as ad, type StripeSubscription as ae, type SubscriptionPlanData as af, type SubscriptionPricingData as ag, type UserActivity as ah, type UserActivityEvent as ai, type UserType as aj, type ValidateVerificationTokenFormData as ak, type AdType as b, type SubscriptionPlansResponse as c, type SubscriptionStatusData as d, type PostType as e, EnumPostType as f, type AppSettingsType as g, type GameLeaderboard as h, type SchoolReturnType as i, type SchoolType as j, type CreateLoginFormData as k, type CreateRegisterFormData as l, type CreateRequestPasswordResetFormData as m, type CreateValidateVerificationTokenFormData as n, type CreateResetPasswordFormData as o, type PartnerFormData as p, type AdFormData as q, type CreateAdFormState as r, type CreatePartnerFormData as s, type PostFormData as t, type CreatePostFormData as u, type AppSettingsFormData as v, type CreateAppSettingsFormData as w, type SchoolFormData as x, type CreateSchoolFormData as y, type AdFormState as z };
455
+ export { type PostContentTextarea as $, type AuthPayloadType as A, type AdResource as B, type CreateUserFormData as C, type BaseGameMap as D, EnumAdStatus as E, type BaseGameType as F, type GameDocType as G, type CreateAdFormData as H, EnumAdShowOn as I, EnumAdStyle as J, EnumAdType as K, EnumGameStatus as L, EnumPostContentType as M, EnumVerificationType as N, type GameHistory as O, type PartnerType as P, type GameType as Q, type RefreshTokenPayloadType as R, type SafeUserType as S, type LoginFormData as T, type UserFormData as U, type MarketingMaterialRequestInputType as V, type PostContentData as W, type PostContentFormData as X, type PostContentGame as Y, type PostContentImage as Z, type PostContentList as _, type ResourceByUser as a, type PostContentType as a0, type PostContentVideo as a1, type PostFileInput as a2, type PosterInputType as a3, type PuzzleAnswer as a4, type PuzzleAnsweredQuestion as a5, type PuzzleBaseGame as a6, type PuzzleGameData as a7, type PuzzleQuestion as a8, type RegisterFormData as a9, type RequestPasswordResetFormData as aa, type ResetPasswordFormData as ab, type SchoolCampaignType as ac, type SchoolRegisteredUserType as ad, type StripeSubscription as ae, type SubscriptionPlanData as af, type SubscriptionPricingData as ag, type UserActivity as ah, type UserActivityEvent as ai, type UserType as aj, type ValidateVerificationTokenFormData as ak, type AdType as b, type SubscriptionPlansResponse as c, type SubscriptionStatusData as d, type PostType as e, EnumPostType as f, type AppSettingsType as g, type GameLeaderboard as h, type SchoolReturnType as i, type SchoolType as j, type CreateLoginFormData as k, type CreateRegisterFormData as l, type CreateRequestPasswordResetFormData as m, type CreateValidateVerificationTokenFormData as n, type CreateResetPasswordFormData as o, type PartnerFormData as p, type AdFormData as q, type CreateAdFormState as r, type CreatePartnerFormData as s, type PostFormData as t, type CreatePostFormData as u, type AppSettingsFormData as v, type CreateAppSettingsFormData as w, type SchoolFormData as x, type CreateSchoolFormData as y, type AdFormState as z };
@@ -214,11 +214,13 @@ var gameScreenIdentifierList = [
214
214
  var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
215
215
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
216
216
  EnumGameType2["MINI_QUIZ"] = "miniQuiz";
217
+ EnumGameType2["ODD_ONE_OUT"] = "oddOneOut";
217
218
  return EnumGameType2;
218
219
  })(EnumGameType || {});
219
220
  var gameTypeToDisplayName = {
220
221
  ["dailyClue" /* DAILY_CLUE */]: "Daily Clue",
221
- ["miniQuiz" /* MINI_QUIZ */]: "Mini Quiz"
222
+ ["miniQuiz" /* MINI_QUIZ */]: "Mini Quiz",
223
+ ["oddOneOut" /* ODD_ONE_OUT */]: "Odd One Out"
222
224
  };
223
225
 
224
226
  // src/types/subscription.ts
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/global.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts","../../src/types/game/index.ts","../../src/types/game/dailyClue.ts","../../src/types/game/global.ts","../../src/types/subscription.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./pushToken\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\nexport * from \"./game\";\nexport * from \"./game/dailyClue\";\nexport * from \"./game/global\";\nexport * from \"./game/miniQuiz\";\nexport * from \"./school\";\nexport * from \"./subscription\";\n","import {\n CreateFormData,\n EnumOSPlatform,\n PromoCodeType,\n TermsAgreement,\n} from \"src\";\n\nimport { SafeUserType } from \"./user\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n promoCode?: PromoCodeType | null;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n\nexport type AuthPayloadType = {\n message: string;\n token: string;\n refreshToken: string | null;\n user: SafeUserType;\n};\n\nexport type RefreshTokenPayloadType = {\n refreshToken: string;\n token: string;\n};\n","import {\n Control,\n FieldValues,\n FormState,\n UseFormGetValues,\n UseFormHandleSubmit,\n UseFormReset,\n UseFormSetValue,\n UseFormWatch,\n} from \"react-hook-form\";\n\nimport {\n EnumEventDateStatus,\n EnumEventType,\n EnumResourceType,\n EnumSocialMedia,\n EnumUserLicence,\n} from \"../enums\";\n\nimport { EventListItemType } from \"./event\";\nimport { VendorType } from \"./vendor\";\n\nexport const PROMO_CODE_PREFIX = \"CM-\";\n\nexport type PromoCodeType = `${typeof PROMO_CODE_PREFIX}${string}`;\n\nexport type Nullable<T> = {\n [K in keyof T]: T[K] | null | undefined;\n};\n\nexport type DeviceInfo = {\n appBuildNumber: string;\n appId: string;\n appVersion: string;\n brand: string;\n deviceName: string;\n installationId: string;\n manufacturer: string;\n modelName: string;\n osName: string;\n osVersion: string;\n timestamp: string;\n};\n\nexport type TermsAgreement = DeviceInfo & {\n termVersion: string;\n};\n\nexport type ResourceContactDetailsType = {\n email?: string | null;\n landlinePhone?: string | null;\n mobilePhone?: string | null;\n};\n\nexport type ResourceImageType = {\n active?: boolean | null;\n source: string;\n title: string;\n};\n\nexport type SocialMediaType = {\n name?: EnumSocialMedia;\n link?: string;\n};\n\nexport type UserLicenceType = {\n expiryDate: Date;\n issuedDate: Date;\n licenceType: EnumUserLicence;\n prevLicenceType?: EnumUserLicence | null;\n};\n\nexport type AssociateType = {\n email: string;\n resourceId: string;\n resourceType: EnumResourceType;\n licence: UserLicenceType;\n};\n\nexport type OwnerType = {\n email: string;\n userId: string;\n};\n\nexport interface BaseResourceTypeFormData {\n _id?: string;\n active: boolean;\n associates: AssociateType[] | null;\n contactDetails: ResourceContactDetailsType | null;\n cover: ResourceImageType;\n coverUpload?: ResourceImageType | null;\n description: string;\n images?: ResourceImageType[] | null;\n imagesUpload?: ResourceImageType[] | null;\n logo?: ResourceImageType | null;\n logoUpload?: ResourceImageType | null;\n name: string;\n owner?: OwnerType | null;\n promoCodes?: PromoCodeType[] | null;\n region: string;\n socialMedia: SocialMediaType[] | null;\n termsAgreement?: TermsAgreement | null;\n}\n\nexport type PosterUsageType = {\n month: string;\n count: number;\n};\n\nexport type BaseResourceType = Omit<\n BaseResourceTypeFormData,\n \"_id\" | \"coverUpload\" | \"imagesUpload\" | \"logoUpload\"\n> & {\n _id: string;\n adIds?: string[] | null;\n createdAt: Date;\n deletedAt: Date | null;\n posterUsage?: PosterUsageType | null;\n rating?: number | null;\n reviewCount?: number | null;\n updatedAt: Date | null;\n};\n\nexport type LocationGeoType = {\n coordinates: number[]; // [longitude, latitude]\n type: \"Point\"; // Mongoose GeoJSON type\n};\n\nexport type LocationType = {\n city: string;\n country: string;\n fullAddress: string;\n geo: LocationGeoType;\n latitude: number;\n longitude: number;\n region: string;\n};\n\nexport type DateTimeType = {\n dateStatus: EnumEventDateStatus;\n endDate: string;\n endTime: string;\n startDate: string;\n startTime: string;\n};\n\nexport type Region = {\n latitude: number;\n latitudeDelta: number;\n longitude: number;\n longitudeDelta: number;\n};\n\nexport type ResourceDetails = {\n dateTime: DateTimeType[] | null;\n description: string | null;\n eventStatus?: EventStatusType | null;\n location: LocationType | null;\n resourceCover: ResourceImageType | null;\n resourceId: string;\n resourceLogo: ResourceImageType | null;\n resourceName: string;\n resourceType: EnumResourceType;\n};\n\nexport type GeocodeLocation = Pick<LocationType, \"latitude\" | \"longitude\">;\n\nexport type EventStatusType = {\n claimed: boolean;\n eventType: EnumEventType;\n googlePlaceId?: string | null;\n};\n\nexport interface FormField {\n disabled?: boolean;\n helperText?: string;\n isTextArea?: boolean;\n keyboardType?:\n | \"default\"\n | \"email-address\"\n | \"number-pad\"\n | \"url\"\n | \"decimal-pad\"\n | \"phone-pad\";\n name: string;\n placeholder: string;\n required?: boolean;\n secureTextEntry?: boolean;\n}\n\nexport interface FormDateField {\n dateMode: \"date\" | \"time\";\n helperText?: string;\n name: \"endDate\" | \"endTime\" | \"startDate\" | \"startTime\";\n placeholder: string;\n}\n\nexport interface SubcategoryItems {\n id: string;\n name: string;\n description?: string | null;\n}\n\nexport interface Subcategory {\n id: string;\n name: string;\n items?: SubcategoryItems[] | null;\n}\n\nexport interface Category {\n color?: string | null;\n description?: string | null;\n id: string;\n name: string;\n subcategories: Subcategory[];\n}\n\nexport type OptionItem = {\n value: string;\n label: string;\n};\n\nexport type ImageObjectType = {\n uri: string;\n type: string;\n name: string;\n};\n\nexport interface ResourceConnectionsType {\n events: EventListItemType[] | null;\n vendors: VendorType[] | null;\n}\n\nexport interface CreateFormData<T extends FieldValues> {\n control: Control<T, any>;\n fields: T;\n formState: FormState<T>;\n handleSubmit: UseFormHandleSubmit<T, any>;\n reset: UseFormReset<T>;\n setValue: UseFormSetValue<T>;\n watch: UseFormWatch<T>;\n getValues: UseFormGetValues<T>;\n}\n\nexport interface UseGetResourcesByRegionOptions {\n onlyClaimed?: boolean;\n limit?: number;\n offset?: number;\n}\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport type AdResource = {\n adDescription: string;\n adImage: string;\n adStyle: EnumAdStyle;\n adTitle: string;\n adType: EnumAdType;\n resourceId: string;\n resourceName: string;\n resourceRegion: string;\n resourceType: EnumResourceType;\n};\n\nexport interface AdFormData {\n active: boolean;\n end: Date; // ISO date string\n resource: AdResource;\n showOn: EnumAdShowOn[];\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion: string[];\n}\n\n// Form state matches the validation schema: all resource fields are present.\n// Use empty strings / explicit enum defaults in `defaultValues` for \"create\" flows.\nexport type AdFormState = AdFormData;\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\nexport type CreateAdFormState = CreateFormData<AdFormState>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { BaseGameType } from \"./game\";\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_GAMES = \"daily_games\",\n}\n\nexport enum EnumPostContentType {\n GAME = \"game\",\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentGame = {\n game: BaseGameType;\n};\n\nexport type PostContentData =\n | PostContentGame\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n cover?: ResourceImageType | null;\n coverUpload?: PostFileInput | null;\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n resourceRegion: string;\n } | null;\n tags?: string[] | null;\n title: string;\n notifyUsers?: boolean | null;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\" | \"coverUpload\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n","import { OwnerType } from \"../global\";\n\nimport { DailyClueBaseGame, DailyClueGameData } from \"./dailyClue\";\nimport { EnumGameType, GameDate } from \"./global\";\nimport { MiniQuizBaseGame, MiniQuizGameData } from \"./miniQuiz\";\n\nexport type BaseGameMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueBaseGame;\n [EnumGameType.MINI_QUIZ]: MiniQuizBaseGame;\n};\n\nexport type BaseGameType = {\n gameType: EnumGameType;\n gameTypeId: string;\n gameTitle: string;\n} & {\n [K in keyof BaseGameMap]?: BaseGameMap[K] | null;\n};\n\nexport enum EnumGameStatus {\n GAME_COMPLETED = \"GAME_COMPLETED\",\n GAME_IN_PROGRESS = \"GAME_IN_PROGRESS\",\n GAME_LEFT = \"GAME_LEFT\",\n GAME_STARTED = \"GAME_STARTED\",\n}\n\nexport type GameHistory = Pick<\n BaseGameType,\n \"gameTitle\" | \"gameType\" | \"gameTypeId\"\n> & {\n createdAt: Date;\n gameDate: GameDate;\n gameStatus: EnumGameStatus;\n pointsEarned: number;\n};\n\ntype GameDataMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueGameData;\n [EnumGameType.MINI_QUIZ]: MiniQuizGameData;\n};\ntype GameDataType = {\n [K in keyof GameDataMap]?: GameDataMap[K] | null;\n};\n\nexport type GameType = Pick<\n BaseGameType,\n \"gameTitle\" | \"gameType\" | \"gameTypeId\"\n> & {\n _id: string;\n active: boolean;\n createdAt: Date;\n gameData: GameDataType;\n gameHistory: GameHistory[] | null;\n updatedAt: Date | null;\n};\n\nexport type GameDocType = {\n _id: string;\n active: boolean;\n createdAt: Date;\n deletedAt: Date | null;\n games: GameType[] | null;\n owner: OwnerType;\n points: number;\n updatedAt: Date | null;\n};\n\nexport type GameLeaderboard = {\n gameHistory: GameHistory[] | null;\n overallPoints: number;\n owner: OwnerType;\n};\n","import { GameDate, GlobalGameData } from \"./global\";\n\nconst OBJECT_ID_PATH_SEGMENT = \"[a-f0-9]{24}\";\nconst OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;\n\nexport const gameScreenIdentifierList = [\n {\n clue: \"Where your actions turn into a timeline.\",\n id: \"activities\",\n match: \"/profile/activities\",\n },\n {\n clue: \"Where conversations happen without speaking.\",\n id: \"chat\",\n match: \"/profile/chat\",\n },\n {\n clue: \"The place to redefine who you are.\",\n id: \"edit-profile\",\n match: \"/profile/edit-profile\",\n },\n {\n clue: \"A single moment worth showing up for.\",\n id: \"single-event\",\n match: new RegExp(`^/events/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"What’s happening around you, right now.\",\n id: \"events-near-me\",\n match: \"/events/events-near-me\",\n },\n {\n clue: \"Where events appear as pins on a map.\",\n id: \"events-map\",\n match: \"/events/events-map\",\n },\n {\n clue: \"A collection of events worth attending.\",\n id: \"events\",\n match: \"/events\",\n },\n {\n clue: \"What’s happening in a wider area — not just nearby.\",\n id: \"events-region\",\n match: /^\\/events\\/region\\/[^/]+$/,\n },\n {\n clue: \"Where fun becomes a challenge.\",\n id: \"games\",\n match: \"/games\",\n },\n {\n clue: \"Your starting point for everything.\",\n id: \"home\",\n match: \"/\",\n },\n {\n clue: \"Where the app whispers what you shouldn’t miss.\",\n id: \"notifications\",\n match: \"/notifications\",\n },\n {\n clue: \"Where you fine-tune your experience.\",\n id: \"options\",\n match: \"/options\",\n },\n {\n clue: \"An organisation or creator supporting the community.\",\n id: \"single-partner\",\n match: new RegExp(`^/partners/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Organisations and creators supporting the community.\",\n id: \"partners\",\n match: \"/partners\",\n },\n {\n clue: \"A single published post in full view.\",\n id: \"single-visitor-post\",\n match: new RegExp(`^/visitors/post/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Your identity, on display.\",\n id: \"profile\",\n match: \"/profile\",\n },\n {\n clue: \"One stallholder offering something valuable.\",\n id: \"single-vendor\",\n match: new RegExp(`^/vendors/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Where every stallholder waits under the right category.\",\n id: \"vendors\",\n match: \"/vendors\",\n },\n {\n clue: \"Where you browse articles and posts from around the platform.\",\n id: \"visitors\",\n match: \"/visitors\",\n },\n] as const;\n\nexport type GamePlacement = (typeof gameScreenIdentifierList)[number][\"id\"];\nexport type GamePlacementClue =\n (typeof gameScreenIdentifierList)[number][\"clue\"];\n\nexport type DailyClueBaseGame = {\n gameDate: GameDate;\n gameSolution: string;\n};\n\nexport type DailyClueGameData = GlobalGameData & {\n gameFields: DailyClueBaseGame;\n lastFoundDate: Date | null;\n letterInfo: {\n collected: string[] | null; // The letters the user has found, e.g. [\"C\", \"L\", \"U\"]\n solutionShuffled: string[]; // The letters of the solution, but shuffled, e.g. [\"L\", \"C\", \"U\"]\n todaysClue: GamePlacementClue | null; // The clue for user to find the letter, e.g. related to {todaysPlacement}\n todaysLetter: string | null; // The letter the user has to find today, e.g. \"C\"\n todaysPlacement: GamePlacement | null; // The screen where the user has to find the clue, e.g. \"HomeScreen\"\n };\n};\n","export enum EnumGameType {\n DAILY_CLUE = \"dailyClue\",\n MINI_QUIZ = \"miniQuiz\",\n}\n\nexport type GameDate = {\n startDate: Date;\n endDate: Date;\n};\n\nexport const gameTypeToDisplayName: Record<EnumGameType, string> = {\n [EnumGameType.DAILY_CLUE]: \"Daily Clue\",\n [EnumGameType.MINI_QUIZ]: \"Mini Quiz\",\n};\n\nexport type GlobalGameData = {\n points: number;\n // User has found the clue 3 days in a row, this is incrementing if the user finds the clue and decrements if user misses a day\n streak: number;\n};\n","import { EnumUserLicence } from \"../enums\";\n\n/** Tier keys in descending priority (highest first) for licence resolution. */\nexport const TIERS_BY_PRIORITY = [\"pro_plus\", \"pro\", \"standard\"] as const;\n\n/** Canonical subscription tier keys — matches Stripe/server tier identifiers. */\nexport type Tier = (typeof TIERS_BY_PRIORITY)[number];\n\n/** User-facing tier labels (decoupled from the Tier discriminant). */\nexport const TIER_DISPLAY_LABELS: Record<Tier, string> = {\n pro: \"Pro\",\n // eslint-disable-next-line camelcase\n pro_plus: \"Pro+ Ads\",\n standard: \"Standard\",\n};\n\n/** Maps licence enums to their canonical tier key. */\nexport const TIER_FROM_LICENCE: Record<EnumUserLicence, Tier> = {\n [EnumUserLicence.PRO_EVENT]: \"pro\",\n [EnumUserLicence.PRO_PLUS_EVENT]: \"pro_plus\",\n [EnumUserLicence.PRO_PLUS_VENDOR]: \"pro_plus\",\n [EnumUserLicence.PRO_VENDOR]: \"pro\",\n [EnumUserLicence.STANDARD_EVENT]: \"standard\",\n [EnumUserLicence.STANDARD_PARTNER]: \"standard\",\n [EnumUserLicence.STANDARD_VENDOR]: \"standard\",\n};\n"],"mappings":"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","names":["EnumVerificationType","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType","EnumGameStatus","EnumGameType"]}
1
+ {"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/global.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts","../../src/types/game/index.ts","../../src/types/game/dailyClue.ts","../../src/types/game/global.ts","../../src/types/subscription.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./pushToken\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\nexport * from \"./game\";\nexport * from \"./game/dailyClue\";\nexport * from \"./game/global\";\nexport * from \"./game/puzzleGame\";\nexport * from \"./school\";\nexport * from \"./subscription\";\n","import {\n CreateFormData,\n EnumOSPlatform,\n PromoCodeType,\n TermsAgreement,\n} from \"src\";\n\nimport { SafeUserType } from \"./user\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n promoCode?: PromoCodeType | null;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n\nexport type AuthPayloadType = {\n message: string;\n token: string;\n refreshToken: string | null;\n user: SafeUserType;\n};\n\nexport type RefreshTokenPayloadType = {\n refreshToken: string;\n token: string;\n};\n","import {\n Control,\n FieldValues,\n FormState,\n UseFormGetValues,\n UseFormHandleSubmit,\n UseFormReset,\n UseFormSetValue,\n UseFormWatch,\n} from \"react-hook-form\";\n\nimport {\n EnumEventDateStatus,\n EnumEventType,\n EnumResourceType,\n EnumSocialMedia,\n EnumUserLicence,\n} from \"../enums\";\n\nimport { EventListItemType } from \"./event\";\nimport { VendorType } from \"./vendor\";\n\nexport const PROMO_CODE_PREFIX = \"CM-\";\n\nexport type PromoCodeType = `${typeof PROMO_CODE_PREFIX}${string}`;\n\nexport type Nullable<T> = {\n [K in keyof T]: T[K] | null | undefined;\n};\n\nexport type DeviceInfo = {\n appBuildNumber: string;\n appId: string;\n appVersion: string;\n brand: string;\n deviceName: string;\n installationId: string;\n manufacturer: string;\n modelName: string;\n osName: string;\n osVersion: string;\n timestamp: string;\n};\n\nexport type TermsAgreement = DeviceInfo & {\n termVersion: string;\n};\n\nexport type ResourceContactDetailsType = {\n email?: string | null;\n landlinePhone?: string | null;\n mobilePhone?: string | null;\n};\n\nexport type ResourceImageType = {\n active?: boolean | null;\n source: string;\n title: string;\n};\n\nexport type SocialMediaType = {\n name?: EnumSocialMedia;\n link?: string;\n};\n\nexport type UserLicenceType = {\n expiryDate: Date;\n issuedDate: Date;\n licenceType: EnumUserLicence;\n prevLicenceType?: EnumUserLicence | null;\n};\n\nexport type AssociateType = {\n email: string;\n resourceId: string;\n resourceType: EnumResourceType;\n licence: UserLicenceType;\n};\n\nexport type OwnerType = {\n email: string;\n userId: string;\n};\n\nexport interface BaseResourceTypeFormData {\n _id?: string;\n active: boolean;\n associates: AssociateType[] | null;\n contactDetails: ResourceContactDetailsType | null;\n cover: ResourceImageType;\n coverUpload?: ResourceImageType | null;\n description: string;\n images?: ResourceImageType[] | null;\n imagesUpload?: ResourceImageType[] | null;\n logo?: ResourceImageType | null;\n logoUpload?: ResourceImageType | null;\n name: string;\n owner?: OwnerType | null;\n promoCodes?: PromoCodeType[] | null;\n region: string;\n socialMedia: SocialMediaType[] | null;\n termsAgreement?: TermsAgreement | null;\n}\n\nexport type PosterUsageType = {\n month: string;\n count: number;\n};\n\nexport type BaseResourceType = Omit<\n BaseResourceTypeFormData,\n \"_id\" | \"coverUpload\" | \"imagesUpload\" | \"logoUpload\"\n> & {\n _id: string;\n adIds?: string[] | null;\n createdAt: Date;\n deletedAt: Date | null;\n posterUsage?: PosterUsageType | null;\n rating?: number | null;\n reviewCount?: number | null;\n updatedAt: Date | null;\n};\n\nexport type LocationGeoType = {\n coordinates: number[]; // [longitude, latitude]\n type: \"Point\"; // Mongoose GeoJSON type\n};\n\nexport type LocationType = {\n city: string;\n country: string;\n fullAddress: string;\n geo: LocationGeoType;\n latitude: number;\n longitude: number;\n region: string;\n};\n\nexport type DateTimeType = {\n dateStatus: EnumEventDateStatus;\n endDate: string;\n endTime: string;\n startDate: string;\n startTime: string;\n};\n\nexport type Region = {\n latitude: number;\n latitudeDelta: number;\n longitude: number;\n longitudeDelta: number;\n};\n\nexport type ResourceDetails = {\n dateTime: DateTimeType[] | null;\n description: string | null;\n eventStatus?: EventStatusType | null;\n location: LocationType | null;\n resourceCover: ResourceImageType | null;\n resourceId: string;\n resourceLogo: ResourceImageType | null;\n resourceName: string;\n resourceType: EnumResourceType;\n};\n\nexport type GeocodeLocation = Pick<LocationType, \"latitude\" | \"longitude\">;\n\nexport type EventStatusType = {\n claimed: boolean;\n eventType: EnumEventType;\n googlePlaceId?: string | null;\n};\n\nexport interface FormField {\n disabled?: boolean;\n helperText?: string;\n isTextArea?: boolean;\n keyboardType?:\n | \"default\"\n | \"email-address\"\n | \"number-pad\"\n | \"url\"\n | \"decimal-pad\"\n | \"phone-pad\";\n name: string;\n placeholder: string;\n required?: boolean;\n secureTextEntry?: boolean;\n}\n\nexport interface FormDateField {\n dateMode: \"date\" | \"time\";\n helperText?: string;\n name: \"endDate\" | \"endTime\" | \"startDate\" | \"startTime\";\n placeholder: string;\n}\n\nexport interface SubcategoryItems {\n id: string;\n name: string;\n description?: string | null;\n}\n\nexport interface Subcategory {\n id: string;\n name: string;\n items?: SubcategoryItems[] | null;\n}\n\nexport interface Category {\n color?: string | null;\n description?: string | null;\n id: string;\n name: string;\n subcategories: Subcategory[];\n}\n\nexport type OptionItem = {\n value: string;\n label: string;\n};\n\nexport type ImageObjectType = {\n uri: string;\n type: string;\n name: string;\n};\n\nexport interface ResourceConnectionsType {\n events: EventListItemType[] | null;\n vendors: VendorType[] | null;\n}\n\nexport interface CreateFormData<T extends FieldValues> {\n control: Control<T, any>;\n fields: T;\n formState: FormState<T>;\n handleSubmit: UseFormHandleSubmit<T, any>;\n reset: UseFormReset<T>;\n setValue: UseFormSetValue<T>;\n watch: UseFormWatch<T>;\n getValues: UseFormGetValues<T>;\n}\n\nexport interface UseGetResourcesByRegionOptions {\n onlyClaimed?: boolean;\n limit?: number;\n offset?: number;\n}\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport type AdResource = {\n adDescription: string;\n adImage: string;\n adStyle: EnumAdStyle;\n adTitle: string;\n adType: EnumAdType;\n resourceId: string;\n resourceName: string;\n resourceRegion: string;\n resourceType: EnumResourceType;\n};\n\nexport interface AdFormData {\n active: boolean;\n end: Date; // ISO date string\n resource: AdResource;\n showOn: EnumAdShowOn[];\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion: string[];\n}\n\n// Form state matches the validation schema: all resource fields are present.\n// Use empty strings / explicit enum defaults in `defaultValues` for \"create\" flows.\nexport type AdFormState = AdFormData;\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\nexport type CreateAdFormState = CreateFormData<AdFormState>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { BaseGameType } from \"./game\";\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_GAMES = \"daily_games\",\n}\n\nexport enum EnumPostContentType {\n GAME = \"game\",\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentGame = {\n game: BaseGameType;\n};\n\nexport type PostContentData =\n | PostContentGame\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n cover?: ResourceImageType | null;\n coverUpload?: PostFileInput | null;\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n resourceRegion: string;\n } | null;\n tags?: string[] | null;\n title: string;\n notifyUsers?: boolean | null;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\" | \"coverUpload\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n","import { OwnerType } from \"../global\";\n\nimport { DailyClueBaseGame, DailyClueGameData } from \"./dailyClue\";\nimport { EnumGameType, GameDate } from \"./global\";\nimport { PuzzleBaseGame, PuzzleGameData } from \"./puzzleGame\";\n\nexport type BaseGameMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueBaseGame;\n [EnumGameType.MINI_QUIZ]: PuzzleBaseGame;\n [EnumGameType.ODD_ONE_OUT]: PuzzleBaseGame;\n};\n\nexport type BaseGameType = {\n gameType: EnumGameType;\n gameTypeId: string;\n gameTitle: string;\n} & {\n [K in keyof BaseGameMap]?: BaseGameMap[K] | null;\n};\n\nexport enum EnumGameStatus {\n GAME_COMPLETED = \"GAME_COMPLETED\",\n GAME_IN_PROGRESS = \"GAME_IN_PROGRESS\",\n GAME_LEFT = \"GAME_LEFT\",\n GAME_STARTED = \"GAME_STARTED\",\n}\n\nexport type GameHistory = Pick<\n BaseGameType,\n \"gameTitle\" | \"gameType\" | \"gameTypeId\"\n> & {\n createdAt: Date;\n gameDate: GameDate;\n gameStatus: EnumGameStatus;\n /** Per-event delta. Not persisted for overallGamePoints (computed at read time). */\n pointsEarned: number;\n /** Running total for this game instance; computed at read time, not stored in Mongo. */\n overallGamePoints?: number;\n};\n\ntype GameDataMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueGameData;\n [EnumGameType.MINI_QUIZ]: PuzzleGameData;\n [EnumGameType.ODD_ONE_OUT]: PuzzleGameData;\n};\ntype GameDataType = {\n [K in keyof GameDataMap]?: GameDataMap[K] | null;\n};\n\nexport type GameType = Pick<\n BaseGameType,\n \"gameTitle\" | \"gameType\" | \"gameTypeId\"\n> & {\n _id: string;\n active: boolean;\n createdAt: Date;\n gameData: GameDataType;\n gameHistory: GameHistory[] | null;\n updatedAt: Date | null;\n};\n\nexport type GameDocType = {\n _id: string;\n active: boolean;\n createdAt: Date;\n deletedAt: Date | null;\n games: GameType[] | null;\n owner: OwnerType;\n points: number;\n updatedAt: Date | null;\n};\n\nexport type GameLeaderboard = {\n gameHistory: GameHistory[] | null;\n overallPoints: number;\n owner: OwnerType;\n};\n","import { GameDate, GlobalGameData } from \"./global\";\n\nconst OBJECT_ID_PATH_SEGMENT = \"[a-f0-9]{24}\";\nconst OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;\n\nexport const gameScreenIdentifierList = [\n {\n clue: \"Where your actions turn into a timeline.\",\n id: \"activities\",\n match: \"/profile/activities\",\n },\n {\n clue: \"Where conversations happen without speaking.\",\n id: \"chat\",\n match: \"/profile/chat\",\n },\n {\n clue: \"The place to redefine who you are.\",\n id: \"edit-profile\",\n match: \"/profile/edit-profile\",\n },\n {\n clue: \"A single moment worth showing up for.\",\n id: \"single-event\",\n match: new RegExp(`^/events/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"What’s happening around you, right now.\",\n id: \"events-near-me\",\n match: \"/events/events-near-me\",\n },\n {\n clue: \"Where events appear as pins on a map.\",\n id: \"events-map\",\n match: \"/events/events-map\",\n },\n {\n clue: \"A collection of events worth attending.\",\n id: \"events\",\n match: \"/events\",\n },\n {\n clue: \"What’s happening in a wider area — not just nearby.\",\n id: \"events-region\",\n match: /^\\/events\\/region\\/[^/]+$/,\n },\n {\n clue: \"Where fun becomes a challenge.\",\n id: \"games\",\n match: \"/games\",\n },\n {\n clue: \"Your starting point for everything.\",\n id: \"home\",\n match: \"/\",\n },\n {\n clue: \"Where the app whispers what you shouldn’t miss.\",\n id: \"notifications\",\n match: \"/notifications\",\n },\n {\n clue: \"Where you fine-tune your experience.\",\n id: \"options\",\n match: \"/options\",\n },\n {\n clue: \"An organisation or creator supporting the community.\",\n id: \"single-partner\",\n match: new RegExp(`^/partners/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Organisations and creators supporting the community.\",\n id: \"partners\",\n match: \"/partners\",\n },\n {\n clue: \"A single published post in full view.\",\n id: \"single-visitor-post\",\n match: new RegExp(`^/visitors/post/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Your identity, on display.\",\n id: \"profile\",\n match: \"/profile\",\n },\n {\n clue: \"One stallholder offering something valuable.\",\n id: \"single-vendor\",\n match: new RegExp(`^/vendors/${OBJECT_ID_PATH_SEGMENT_END}`),\n },\n {\n clue: \"Where every stallholder waits under the right category.\",\n id: \"vendors\",\n match: \"/vendors\",\n },\n {\n clue: \"Where you browse articles and posts from around the platform.\",\n id: \"visitors\",\n match: \"/visitors\",\n },\n] as const;\n\nexport type GamePlacement = (typeof gameScreenIdentifierList)[number][\"id\"];\nexport type GamePlacementClue =\n (typeof gameScreenIdentifierList)[number][\"clue\"];\n\nexport type DailyClueBaseGame = {\n gameDate: GameDate;\n gameSolution: string;\n};\n\nexport type DailyClueGameData = GlobalGameData & {\n gameFields: DailyClueBaseGame;\n lastFoundDate: Date | null;\n letterInfo: {\n collected: string[] | null; // The letters the user has found, e.g. [\"C\", \"L\", \"U\"]\n solutionShuffled: string[]; // The letters of the solution, but shuffled, e.g. [\"L\", \"C\", \"U\"]\n todaysClue: GamePlacementClue | null; // The clue for user to find the letter, e.g. related to {todaysPlacement}\n todaysLetter: string | null; // The letter the user has to find today, e.g. \"C\"\n todaysPlacement: GamePlacement | null; // The screen where the user has to find the clue, e.g. \"HomeScreen\"\n };\n};\n","export enum EnumGameType {\n DAILY_CLUE = \"dailyClue\",\n MINI_QUIZ = \"miniQuiz\",\n ODD_ONE_OUT = \"oddOneOut\",\n}\n\nexport type GameDate = {\n startDate: Date;\n endDate: Date;\n};\n\nexport const gameTypeToDisplayName: Record<EnumGameType, string> = {\n [EnumGameType.DAILY_CLUE]: \"Daily Clue\",\n [EnumGameType.MINI_QUIZ]: \"Mini Quiz\",\n [EnumGameType.ODD_ONE_OUT]: \"Odd One Out\",\n};\n\nexport type GlobalGameData = {\n points: number;\n // User has found the clue 3 days in a row, this is incrementing if the user finds the clue and decrements if user misses a day\n streak: number;\n};\n","import { EnumUserLicence } from \"../enums\";\n\n/** Tier keys in descending priority (highest first) for licence resolution. */\nexport const TIERS_BY_PRIORITY = [\"pro_plus\", \"pro\", \"standard\"] as const;\n\n/** Canonical subscription tier keys — matches Stripe/server tier identifiers. */\nexport type Tier = (typeof TIERS_BY_PRIORITY)[number];\n\n/** User-facing tier labels (decoupled from the Tier discriminant). */\nexport const TIER_DISPLAY_LABELS: Record<Tier, string> = {\n pro: \"Pro\",\n // eslint-disable-next-line camelcase\n pro_plus: \"Pro+ Ads\",\n standard: \"Standard\",\n};\n\n/** Maps licence enums to their canonical tier key. */\nexport const TIER_FROM_LICENCE: Record<EnumUserLicence, Tier> = {\n [EnumUserLicence.PRO_EVENT]: \"pro\",\n [EnumUserLicence.PRO_PLUS_EVENT]: \"pro_plus\",\n [EnumUserLicence.PRO_PLUS_VENDOR]: \"pro_plus\",\n [EnumUserLicence.PRO_VENDOR]: \"pro\",\n [EnumUserLicence.STANDARD_EVENT]: \"standard\",\n [EnumUserLicence.STANDARD_PARTNER]: \"standard\",\n [EnumUserLicence.STANDARD_VENDOR]: \"standard\",\n};\n"],"mappings":"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","names":["EnumVerificationType","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType","EnumGameStatus","EnumGameType"]}
@@ -1,10 +1,10 @@
1
1
  import { EnumResourceType, EnumOSPlatform, EnumUserLicence } from '../enums/index.mjs';
2
- export { q as AdFormData, z as AdFormState, B as AdResource, b as AdType, v as AppSettingsFormData, g as AppSettingsType, A as AuthPayloadType, D as BaseGameMap, F as BaseGameType, H as CreateAdFormData, r as CreateAdFormState, w as CreateAppSettingsFormData, k as CreateLoginFormData, s as CreatePartnerFormData, u as CreatePostFormData, l as CreateRegisterFormData, m as CreateRequestPasswordResetFormData, o as CreateResetPasswordFormData, y as CreateSchoolFormData, C as CreateUserFormData, n as CreateValidateVerificationTokenFormData, I as EnumAdShowOn, E as EnumAdStatus, J as EnumAdStyle, K as EnumAdType, L as EnumGameStatus, M as EnumPostContentType, f as EnumPostType, N as EnumVerificationType, G as GameDocType, O as GameHistory, h as GameLeaderboard, Q as GameType, T as LoginFormData, V as MarketingMaterialRequestInputType, W as MiniQuizAnswer, X as MiniQuizAnsweredQuestion, Y as MiniQuizBaseGame, Z as MiniQuizGameData, _ as MiniQuizQuestion, p as PartnerFormData, P as PartnerType, $ as PostContentData, a0 as PostContentFormData, a1 as PostContentGame, a2 as PostContentImage, a3 as PostContentList, a4 as PostContentTextarea, a5 as PostContentType, a6 as PostContentVideo, a7 as PostFileInput, t as PostFormData, e as PostType, a8 as PosterInputType, R as RefreshTokenPayloadType, a9 as RegisterFormData, aa as RequestPasswordResetFormData, ab as ResetPasswordFormData, a as ResourceByUser, S as SafeUserType, ac as SchoolCampaignType, x as SchoolFormData, ad as SchoolRegisteredUserType, i as SchoolReturnType, j as SchoolType, ae as StripeSubscription, af as SubscriptionPlanData, c as SubscriptionPlansResponse, ag as SubscriptionPricingData, d as SubscriptionStatusData, ah as UserActivity, ai as UserActivityEvent, U as UserFormData, aj as UserType, ak as ValidateVerificationTokenFormData } from '../post-CmTZhjui.mjs';
2
+ export { q as AdFormData, z as AdFormState, B as AdResource, b as AdType, v as AppSettingsFormData, g as AppSettingsType, A as AuthPayloadType, D as BaseGameMap, F as BaseGameType, H as CreateAdFormData, r as CreateAdFormState, w as CreateAppSettingsFormData, k as CreateLoginFormData, s as CreatePartnerFormData, u as CreatePostFormData, l as CreateRegisterFormData, m as CreateRequestPasswordResetFormData, o as CreateResetPasswordFormData, y as CreateSchoolFormData, C as CreateUserFormData, n as CreateValidateVerificationTokenFormData, I as EnumAdShowOn, E as EnumAdStatus, J as EnumAdStyle, K as EnumAdType, L as EnumGameStatus, M as EnumPostContentType, f as EnumPostType, N as EnumVerificationType, G as GameDocType, O as GameHistory, h as GameLeaderboard, Q as GameType, T as LoginFormData, V as MarketingMaterialRequestInputType, p as PartnerFormData, P as PartnerType, W as PostContentData, X as PostContentFormData, Y as PostContentGame, Z as PostContentImage, _ as PostContentList, $ as PostContentTextarea, a0 as PostContentType, a1 as PostContentVideo, a2 as PostFileInput, t as PostFormData, e as PostType, a3 as PosterInputType, a4 as PuzzleAnswer, a5 as PuzzleAnsweredQuestion, a6 as PuzzleBaseGame, a7 as PuzzleGameData, a8 as PuzzleQuestion, R as RefreshTokenPayloadType, a9 as RegisterFormData, aa as RequestPasswordResetFormData, ab as ResetPasswordFormData, a as ResourceByUser, S as SafeUserType, ac as SchoolCampaignType, x as SchoolFormData, ad as SchoolRegisteredUserType, i as SchoolReturnType, j as SchoolType, ae as StripeSubscription, af as SubscriptionPlanData, c as SubscriptionPlansResponse, ag as SubscriptionPricingData, d as SubscriptionStatusData, ah as UserActivity, ai as UserActivityEvent, U as UserFormData, aj as UserType, ak as ValidateVerificationTokenFormData } from '../post-Bq1FtAVA.mjs';
3
3
  export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-CZqXBve8.mjs';
4
4
  export { C as ContactUsFormData, a as CreateContactUsFormData } from '../contactUs-B6lQQq-x.mjs';
5
5
  import { c as EventListItemType } from '../global-BEUzBSyY.mjs';
6
6
  export { A as AssociateType, t as BaseResourceType, B as BaseResourceTypeFormData, C as Category, q as CreateEventFormData, s as CreateEventInfoFormData, u as CreateFormData, o as CreateUnregisteredVendorFormData, k as CreateVendorFormData, m as CreateVendorInfoFormData, D as DateTimeType, v as DateTimeWithPriceType, w as DeviceInfo, p as EventFormData, r as EventInfoFormData, d as EventInfoType, x as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, y as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, z as OwnerType, P as PROMO_CODE_PREFIX, H as PaymentInfoType, J as PosterUsageType, K as PromoCodeType, R as RefundPolicy, M as Region, Q as RelationDate, T as RelationInputType, e as RelationType, b as Requirement, f as ResourceConnectionsType, W as ResourceContactDetailsType, X as ResourceDetails, Y as ResourceImageType, Z as SocialMediaType, S as StallType, _ as Subcategory, $ as SubcategoryItems, a0 as TermsAgreement, n as UnregisteredVendorFormData, a1 as UnregisteredVendorInvitationType, g as UnregisteredVendorType, U as UseGetResourcesByRegionOptions, i as UserLicenceType, a2 as VendorAttributes, a3 as VendorCalendarData, j as VendorFormData, l as VendorInfoFormData, h as VendorInfoType, a4 as VendorProductList, V as VendorType } from '../global-BEUzBSyY.mjs';
7
- export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-D7Df-qCO.mjs';
7
+ export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-CvhLv9hJ.mjs';
8
8
  import '../images/index.mjs';
9
9
  import 'react-hook-form';
10
10
 
@@ -1,10 +1,10 @@
1
1
  import { EnumResourceType, EnumOSPlatform, EnumUserLicence } from '../enums/index.js';
2
- export { q as AdFormData, z as AdFormState, B as AdResource, b as AdType, v as AppSettingsFormData, g as AppSettingsType, A as AuthPayloadType, D as BaseGameMap, F as BaseGameType, H as CreateAdFormData, r as CreateAdFormState, w as CreateAppSettingsFormData, k as CreateLoginFormData, s as CreatePartnerFormData, u as CreatePostFormData, l as CreateRegisterFormData, m as CreateRequestPasswordResetFormData, o as CreateResetPasswordFormData, y as CreateSchoolFormData, C as CreateUserFormData, n as CreateValidateVerificationTokenFormData, I as EnumAdShowOn, E as EnumAdStatus, J as EnumAdStyle, K as EnumAdType, L as EnumGameStatus, M as EnumPostContentType, f as EnumPostType, N as EnumVerificationType, G as GameDocType, O as GameHistory, h as GameLeaderboard, Q as GameType, T as LoginFormData, V as MarketingMaterialRequestInputType, W as MiniQuizAnswer, X as MiniQuizAnsweredQuestion, Y as MiniQuizBaseGame, Z as MiniQuizGameData, _ as MiniQuizQuestion, p as PartnerFormData, P as PartnerType, $ as PostContentData, a0 as PostContentFormData, a1 as PostContentGame, a2 as PostContentImage, a3 as PostContentList, a4 as PostContentTextarea, a5 as PostContentType, a6 as PostContentVideo, a7 as PostFileInput, t as PostFormData, e as PostType, a8 as PosterInputType, R as RefreshTokenPayloadType, a9 as RegisterFormData, aa as RequestPasswordResetFormData, ab as ResetPasswordFormData, a as ResourceByUser, S as SafeUserType, ac as SchoolCampaignType, x as SchoolFormData, ad as SchoolRegisteredUserType, i as SchoolReturnType, j as SchoolType, ae as StripeSubscription, af as SubscriptionPlanData, c as SubscriptionPlansResponse, ag as SubscriptionPricingData, d as SubscriptionStatusData, ah as UserActivity, ai as UserActivityEvent, U as UserFormData, aj as UserType, ak as ValidateVerificationTokenFormData } from '../post-DWr3iUjN.js';
2
+ export { q as AdFormData, z as AdFormState, B as AdResource, b as AdType, v as AppSettingsFormData, g as AppSettingsType, A as AuthPayloadType, D as BaseGameMap, F as BaseGameType, H as CreateAdFormData, r as CreateAdFormState, w as CreateAppSettingsFormData, k as CreateLoginFormData, s as CreatePartnerFormData, u as CreatePostFormData, l as CreateRegisterFormData, m as CreateRequestPasswordResetFormData, o as CreateResetPasswordFormData, y as CreateSchoolFormData, C as CreateUserFormData, n as CreateValidateVerificationTokenFormData, I as EnumAdShowOn, E as EnumAdStatus, J as EnumAdStyle, K as EnumAdType, L as EnumGameStatus, M as EnumPostContentType, f as EnumPostType, N as EnumVerificationType, G as GameDocType, O as GameHistory, h as GameLeaderboard, Q as GameType, T as LoginFormData, V as MarketingMaterialRequestInputType, p as PartnerFormData, P as PartnerType, W as PostContentData, X as PostContentFormData, Y as PostContentGame, Z as PostContentImage, _ as PostContentList, $ as PostContentTextarea, a0 as PostContentType, a1 as PostContentVideo, a2 as PostFileInput, t as PostFormData, e as PostType, a3 as PosterInputType, a4 as PuzzleAnswer, a5 as PuzzleAnsweredQuestion, a6 as PuzzleBaseGame, a7 as PuzzleGameData, a8 as PuzzleQuestion, R as RefreshTokenPayloadType, a9 as RegisterFormData, aa as RequestPasswordResetFormData, ab as ResetPasswordFormData, a as ResourceByUser, S as SafeUserType, ac as SchoolCampaignType, x as SchoolFormData, ad as SchoolRegisteredUserType, i as SchoolReturnType, j as SchoolType, ae as StripeSubscription, af as SubscriptionPlanData, c as SubscriptionPlansResponse, ag as SubscriptionPricingData, d as SubscriptionStatusData, ah as UserActivity, ai as UserActivityEvent, U as UserFormData, aj as UserType, ak as ValidateVerificationTokenFormData } from '../post-NzdSDJAT.js';
3
3
  export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-CjJdhVR7.js';
4
4
  export { C as ContactUsFormData, a as CreateContactUsFormData } from '../contactUs-DA3p41Uq.js';
5
5
  import { c as EventListItemType } from '../global-585slmSH.js';
6
6
  export { A as AssociateType, t as BaseResourceType, B as BaseResourceTypeFormData, C as Category, q as CreateEventFormData, s as CreateEventInfoFormData, u as CreateFormData, o as CreateUnregisteredVendorFormData, k as CreateVendorFormData, m as CreateVendorInfoFormData, D as DateTimeType, v as DateTimeWithPriceType, w as DeviceInfo, p as EventFormData, r as EventInfoFormData, d as EventInfoType, x as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, y as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, z as OwnerType, P as PROMO_CODE_PREFIX, H as PaymentInfoType, J as PosterUsageType, K as PromoCodeType, R as RefundPolicy, M as Region, Q as RelationDate, T as RelationInputType, e as RelationType, b as Requirement, f as ResourceConnectionsType, W as ResourceContactDetailsType, X as ResourceDetails, Y as ResourceImageType, Z as SocialMediaType, S as StallType, _ as Subcategory, $ as SubcategoryItems, a0 as TermsAgreement, n as UnregisteredVendorFormData, a1 as UnregisteredVendorInvitationType, g as UnregisteredVendorType, U as UseGetResourcesByRegionOptions, i as UserLicenceType, a2 as VendorAttributes, a3 as VendorCalendarData, j as VendorFormData, l as VendorInfoFormData, h as VendorInfoType, a4 as VendorProductList, V as VendorType } from '../global-585slmSH.js';
7
- export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-D7Df-qCO.js';
7
+ export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-CvhLv9hJ.js';
8
8
  import '../images/index.js';
9
9
  import 'react-hook-form';
10
10
 
@@ -14,7 +14,7 @@ import {
14
14
  TIER_DISPLAY_LABELS,
15
15
  TIER_FROM_LICENCE,
16
16
  gameTypeToDisplayName
17
- } from "../chunk-SB2DTD7X.mjs";
17
+ } from "../chunk-5SCGH7UX.mjs";
18
18
  import {
19
19
  gameScreenIdentifierList
20
20
  } from "../chunk-HV5AID7P.mjs";
@@ -1,4 +1,4 @@
1
- import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-D7Df-qCO.mjs';
1
+ import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-CvhLv9hJ.mjs';
2
2
  import dayjs from 'dayjs';
3
3
  import { EnumRegions, EnumUserLicence, EnumInviteStatus } from '../enums/index.mjs';
4
4
  import { O as OptionItem, Z as SocialMediaType } from '../global-BEUzBSyY.mjs';
@@ -1,4 +1,4 @@
1
- import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-D7Df-qCO.js';
1
+ import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-CvhLv9hJ.js';
2
2
  import dayjs from 'dayjs';
3
3
  import { EnumRegions, EnumUserLicence, EnumInviteStatus } from '../enums/index.js';
4
4
  import { O as OptionItem, Z as SocialMediaType } from '../global-585slmSH.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timardex/cluemart-shared",
3
- "version": "1.5.710",
3
+ "version": "1.5.712",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",