@timardex/cluemart-shared 1.4.83 → 1.4.84

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.
Files changed (44) hide show
  1. package/dist/{chunk-AOPQ64JU.mjs → chunk-4LT5GOOP.mjs} +3 -3
  2. package/dist/{chunk-KPO6ZYQ4.mjs → chunk-5QOEADCK.mjs} +10 -2
  3. package/dist/chunk-5QOEADCK.mjs.map +1 -0
  4. package/dist/{chunk-WAU7QQ5O.mjs → chunk-BXV7NUGQ.mjs} +4 -8
  5. package/dist/{chunk-WAU7QQ5O.mjs.map → chunk-BXV7NUGQ.mjs.map} +1 -1
  6. package/dist/{chunk-2VZKL2X6.mjs → chunk-KYDS4REE.mjs} +2 -2
  7. package/dist/{chunk-VE6JFCH2.mjs → chunk-USQKKCIA.mjs} +2 -8
  8. package/dist/{chunk-VE6JFCH2.mjs.map → chunk-USQKKCIA.mjs.map} +1 -1
  9. package/dist/enums/index.cjs +0 -7
  10. package/dist/enums/index.cjs.map +1 -1
  11. package/dist/enums/index.d.mts +1 -5
  12. package/dist/enums/index.d.ts +1 -5
  13. package/dist/enums/index.mjs +1 -3
  14. package/dist/formFields/index.cjs.map +1 -1
  15. package/dist/formFields/index.mjs +3 -3
  16. package/dist/graphql/index.cjs +3 -7
  17. package/dist/graphql/index.cjs.map +1 -1
  18. package/dist/graphql/index.d.mts +1 -1
  19. package/dist/graphql/index.d.ts +1 -1
  20. package/dist/graphql/index.mjs +2 -2
  21. package/dist/hooks/index.cjs +3 -7
  22. package/dist/hooks/index.cjs.map +1 -1
  23. package/dist/hooks/index.d.mts +1 -1
  24. package/dist/hooks/index.d.ts +1 -1
  25. package/dist/hooks/index.mjs +5 -5
  26. package/dist/index.cjs +10 -12
  27. package/dist/index.cjs.map +1 -1
  28. package/dist/index.d.mts +8 -13
  29. package/dist/index.d.ts +8 -13
  30. package/dist/index.mjs +10 -12
  31. package/dist/index.mjs.map +1 -1
  32. package/dist/{post-hCEgX4ed.d.ts → post-Ca1JIE74.d.ts} +10 -11
  33. package/dist/{post-q-vlx4aC.d.mts → post-Dh2m6dzT.d.mts} +10 -11
  34. package/dist/types/index.cjs +9 -0
  35. package/dist/types/index.cjs.map +1 -1
  36. package/dist/types/index.d.mts +1 -1
  37. package/dist/types/index.d.ts +1 -1
  38. package/dist/types/index.mjs +3 -1
  39. package/dist/utils/index.cjs.map +1 -1
  40. package/dist/utils/index.mjs +2 -2
  41. package/package.json +1 -1
  42. package/dist/chunk-KPO6ZYQ4.mjs.map +0 -1
  43. /package/dist/{chunk-AOPQ64JU.mjs.map → chunk-4LT5GOOP.mjs.map} +0 -0
  44. /package/dist/{chunk-2VZKL2X6.mjs.map → chunk-KYDS4REE.mjs.map} +0 -0
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  mapArrayToOptions
3
- } from "./chunk-2VZKL2X6.mjs";
3
+ } from "./chunk-KYDS4REE.mjs";
4
4
  import {
5
5
  EnumFoodFlavor
6
- } from "./chunk-VE6JFCH2.mjs";
6
+ } from "./chunk-USQKKCIA.mjs";
7
7
 
8
8
  // src/formFields/vendor/vendor.ts
9
9
  var vendorBasicInfoFields = [
@@ -1952,4 +1952,4 @@ export {
1952
1952
  contactUsFields,
1953
1953
  partnerBasicInfoFields
1954
1954
  };
1955
- //# sourceMappingURL=chunk-AOPQ64JU.mjs.map
1955
+ //# sourceMappingURL=chunk-4LT5GOOP.mjs.map
@@ -56,6 +56,13 @@ var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {
56
56
  return EnumPostContentType2;
57
57
  })(EnumPostContentType || {});
58
58
 
59
+ // src/types/game.ts
60
+ var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
61
+ EnumGameType2["DAILY_CLUE"] = "daily_clue";
62
+ EnumGameType2["DAILY_REWARD"] = "daily_reward";
63
+ return EnumGameType2;
64
+ })(EnumGameType || {});
65
+
59
66
  export {
60
67
  EnumAdShowOn,
61
68
  EnumAdStatus,
@@ -64,6 +71,7 @@ export {
64
71
  EnumVerificationType,
65
72
  EnumActivity,
66
73
  EnumPostType,
67
- EnumPostContentType
74
+ EnumPostContentType,
75
+ EnumGameType
68
76
  };
69
- //# sourceMappingURL=chunk-KPO6ZYQ4.mjs.map
77
+ //# sourceMappingURL=chunk-5QOEADCK.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/types/auth.ts","../src/types/ad.ts","../src/types/resourceActivities.ts","../src/types/post.ts","../src/types/game.ts"],"sourcesContent":["import { CreateFormData, EnumOSPlatform, TermsAgreement } from \"src\";\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?: string | 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","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, SocialMediaType } 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 | null;\n adImage: string | null;\n adStyle: EnumAdStyle | null;\n adTitle: string | null;\n adType: EnumAdType | null;\n resourceId: string | null;\n resourceName: string | null;\n resourceRegion: string | null;\n resourceType: EnumResourceType | null;\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\nexport type CreateAdFormData = CreateFormData<AdFormData>;\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 { BaseGame } 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: BaseGame;\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 } | null;\n tags?: string[] | null;\n title: string;\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 { DateTimeType, OwnerType } from \"./global\";\n\nexport enum EnumGameType {\n DAILY_CLUE = \"daily_clue\",\n DAILY_REWARD = \"daily_reward\",\n}\n\nexport type BaseGame = {\n gameDate: DateTimeType;\n gameSolution: string;\n gameType: EnumGameType;\n title: string;\n};\n\nexport type DailyClueGameData = BaseGame & {\n collectedLetters?: string[]; // Tracks which letters the user has found, e.g. [\"C\", \"L\", \"U\"]\n lastFoundDate?: string | null; // \"YYYY-MM-DD\" Stores the last day the user found the character\n points: number; // Total points earned from the game\n streak: number; // 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};\n\nexport type GameData = {\n dailyClue?: DailyClueGameData | null;\n};\n\nexport type GameType = {\n _id: string;\n active: boolean;\n createdAt: Date;\n deletedAt: Date | null;\n gameData: GameData | null;\n updatedAt: Date | null;\n owner: OwnerType;\n};\n"],"mappings":";AAEO,IAAK,uBAAL,kBAAKA,0BAAL;AACL,EAAAA,sBAAA,cAAW;AACX,EAAAA,sBAAA,oBAAiB;AAFP,SAAAA;AAAA,GAAA;;;ACEL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,kBAAe;AAJL,SAAAA;AAAA,GAAA;AAOL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,aAAU;AAHA,SAAAA;AAAA,GAAA;AAML,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;AAKL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,cAAW;AACX,EAAAA,cAAA,WAAQ;AACR,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,aAAU;AACV,EAAAA,cAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACHL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,iBAAc;AAHJ,SAAAA;AAAA,GAAA;AAML,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,WAAQ;AACR,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,WAAQ;AALE,SAAAA;AAAA,GAAA;;;ACTL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,kBAAe;AAFL,SAAAA;AAAA,GAAA;","names":["EnumVerificationType","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType","EnumGameType"]}
@@ -3192,16 +3192,12 @@ import { gql as gql30 } from "@apollo/client";
3192
3192
  import { gql as gql29 } from "@apollo/client";
3193
3193
  var BASE_GAME_FIELDS_FRAGMENT = gql29`
3194
3194
  fragment BaseGameFields on BaseGameType {
3195
- title
3196
- gameType
3197
- gameInfo {
3198
- dailyClue {
3199
- solution
3200
- }
3201
- }
3202
3195
  gameDate {
3203
3196
  ...DateTimeFields
3204
3197
  }
3198
+ gameSolution
3199
+ gameType
3200
+ title
3205
3201
  }
3206
3202
  ${DATETIME_FIELDS_FRAGMENT}
3207
3203
  `;
@@ -3689,4 +3685,4 @@ export {
3689
3685
  useGetGames,
3690
3686
  useGetGame
3691
3687
  };
3692
- //# sourceMappingURL=chunk-WAU7QQ5O.mjs.map
3688
+ //# sourceMappingURL=chunk-BXV7NUGQ.mjs.map