@timardex/cluemart-shared 1.5.550 → 1.5.552

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 (47) hide show
  1. package/dist/{chunk-CRZP6KYI.mjs → chunk-IMTMBZI7.mjs} +2 -2
  2. package/dist/{chunk-CPT4WZKU.mjs → chunk-L74HNX7U.mjs} +5 -5
  3. package/dist/chunk-L74HNX7U.mjs.map +1 -0
  4. package/dist/{chunk-LOABFNIJ.mjs → chunk-SBY5HTAP.mjs} +3 -20
  5. package/dist/chunk-SBY5HTAP.mjs.map +1 -0
  6. package/dist/{chunk-FICQ3PR5.mjs → chunk-UNLBGUZ6.mjs} +24 -2
  7. package/dist/chunk-UNLBGUZ6.mjs.map +1 -0
  8. package/dist/{chunk-UBAAAYJY.mjs → chunk-VG2GTCY7.mjs} +16 -8
  9. package/dist/{chunk-UBAAAYJY.mjs.map → chunk-VG2GTCY7.mjs.map} +1 -1
  10. package/dist/{game-1CSiEjlf.d.ts → dailyClue-BFo8YN7B.d.mts} +18 -61
  11. package/dist/{game-BPtE3yaQ.d.mts → dailyClue-BFo8YN7B.d.ts} +18 -61
  12. package/dist/formFields/index.cjs +1 -1
  13. package/dist/formFields/index.cjs.map +1 -1
  14. package/dist/formFields/index.mjs +3 -3
  15. package/dist/graphql/index.cjs +15 -7
  16. package/dist/graphql/index.cjs.map +1 -1
  17. package/dist/graphql/index.d.mts +2 -2
  18. package/dist/graphql/index.d.ts +2 -2
  19. package/dist/graphql/index.mjs +1 -1
  20. package/dist/hooks/index.cjs +16 -8
  21. package/dist/hooks/index.cjs.map +1 -1
  22. package/dist/hooks/index.d.mts +2 -2
  23. package/dist/hooks/index.d.ts +2 -2
  24. package/dist/hooks/index.mjs +5 -5
  25. package/dist/index.cjs +38 -25
  26. package/dist/index.cjs.map +1 -1
  27. package/dist/index.d.mts +28 -18
  28. package/dist/index.d.ts +28 -18
  29. package/dist/index.mjs +38 -25
  30. package/dist/index.mjs.map +1 -1
  31. package/dist/{post-Lc5PrxY6.d.ts → post-DWRt-yGc.d.ts} +55 -4
  32. package/dist/{post-CY53UsA7.d.mts → post-DsOgFGgJ.d.mts} +55 -4
  33. package/dist/types/index.cjs +13 -8
  34. package/dist/types/index.cjs.map +1 -1
  35. package/dist/types/index.d.mts +2 -2
  36. package/dist/types/index.d.ts +2 -2
  37. package/dist/types/index.mjs +7 -7
  38. package/dist/utils/index.cjs +4 -4
  39. package/dist/utils/index.cjs.map +1 -1
  40. package/dist/utils/index.d.mts +1 -1
  41. package/dist/utils/index.d.ts +1 -1
  42. package/dist/utils/index.mjs +2 -2
  43. package/package.json +1 -1
  44. package/dist/chunk-CPT4WZKU.mjs.map +0 -1
  45. package/dist/chunk-FICQ3PR5.mjs.map +0 -1
  46. package/dist/chunk-LOABFNIJ.mjs.map +0 -1
  47. /package/dist/{chunk-CRZP6KYI.mjs.map → chunk-IMTMBZI7.mjs.map} +0 -0
@@ -43,10 +43,10 @@ import {
43
43
  vendorStallSize,
44
44
  vendorStartDateFields,
45
45
  vendorTable
46
- } from "../chunk-CRZP6KYI.mjs";
47
- import "../chunk-CPT4WZKU.mjs";
46
+ } from "../chunk-IMTMBZI7.mjs";
47
+ import "../chunk-L74HNX7U.mjs";
48
48
  import "../chunk-ZR4TGWTS.mjs";
49
- import "../chunk-LOABFNIJ.mjs";
49
+ import "../chunk-SBY5HTAP.mjs";
50
50
  export {
51
51
  availableCategories,
52
52
  availableTagTypes,
@@ -3370,33 +3370,32 @@ var GAME_DATE_FIELDS_FRAGMENT = import_client55.gql`
3370
3370
  endDate
3371
3371
  }
3372
3372
  `;
3373
- var BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
3374
- fragment BaseGameFields on BaseGameType {
3373
+ var DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT = import_client55.gql`
3374
+ fragment DailyClueBaseGameFields on DailyClueBaseGameType {
3375
3375
  gameDate {
3376
3376
  ...GameDateFields
3377
3377
  }
3378
3378
  gameSolution
3379
- gameType
3380
3379
  }
3381
3380
  ${GAME_DATE_FIELDS_FRAGMENT}
3382
3381
  `;
3383
3382
  var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
3384
3383
  fragment DailyClueGameDataFields on DailyClueGameDataType {
3385
3384
  gameFields {
3386
- ...BaseGameFields
3385
+ ...DailyClueBaseGameFields
3387
3386
  }
3388
3387
  lastFoundDate
3389
3388
  points
3390
3389
  letterInfo {
3391
3390
  collected
3392
- shuffled
3393
- todaysLetter
3391
+ solutionShuffled
3394
3392
  todaysClue
3393
+ todaysLetter
3395
3394
  todaysPlacement
3396
3395
  }
3397
3396
  streak
3398
3397
  }
3399
- ${BASE_GAME_FIELDS_FRAGMENT}
3398
+ ${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
3400
3399
  `;
3401
3400
  var GAME_HISTORY_FIELDS_FRAGMENT = import_client55.gql`
3402
3401
  fragment GameHistoryFields on GameHistoryType {
@@ -3486,6 +3485,15 @@ var GET_GAME_LEADERBOARD = import_client55.gql`
3486
3485
  `;
3487
3486
 
3488
3487
  // src/graphql/queries/post.ts
3488
+ var BASE_GAME_FIELDS_FRAGMENT = import_client56.gql`
3489
+ fragment BaseGameFields on BaseGameType {
3490
+ gameType
3491
+ dailyClue {
3492
+ ...DailyClueBaseGameFields
3493
+ }
3494
+ }
3495
+ ${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
3496
+ `;
3489
3497
  var POST_CONTENT_DATA_FIELDS_FRAGMENT = import_client56.gql`
3490
3498
  fragment PostContentDataFields on PostContentData {
3491
3499
  game {