@timardex/cluemart-shared 1.5.812 → 1.5.813

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 (49) hide show
  1. package/dist/{ad-D-_ZkOMn.d.ts → ad-0muFV6oH.d.ts} +3 -1
  2. package/dist/{ad-D3gPYInl.d.mts → ad-Dlk9SFLw.d.mts} +3 -1
  3. package/dist/{chunk-XBUBH7OF.mjs → chunk-4ICKZHQA.mjs} +8 -1
  4. package/dist/chunk-4ICKZHQA.mjs.map +1 -0
  5. package/dist/{chunk-UA7GCPPH.mjs → chunk-DLPDX4EH.mjs} +2 -2
  6. package/dist/{chunk-2PM6254K.mjs → chunk-POXARN2X.mjs} +1 -1
  7. package/dist/chunk-POXARN2X.mjs.map +1 -0
  8. package/dist/{contactUs-RKkIL-nI.d.ts → contactUs-CiXFYse5.d.ts} +1 -1
  9. package/dist/{contactUs-Dr-IbmG5.d.mts → contactUs-HPydW6BR.d.mts} +1 -1
  10. package/dist/formFields/index.cjs.map +1 -1
  11. package/dist/formFields/index.d.mts +1 -1
  12. package/dist/formFields/index.d.ts +1 -1
  13. package/dist/formFields/index.mjs +2 -2
  14. package/dist/{global-BeBuHWbg.d.ts → global-B2jacmZB.d.ts} +2 -0
  15. package/dist/{global-C8npu_7P.d.mts → global-Dq6A7pNV.d.mts} +2 -0
  16. package/dist/graphql/index.cjs +7 -0
  17. package/dist/graphql/index.cjs.map +1 -1
  18. package/dist/graphql/index.d.mts +3 -3
  19. package/dist/graphql/index.d.ts +3 -3
  20. package/dist/graphql/index.mjs +1 -1
  21. package/dist/hooks/index.cjs +7 -0
  22. package/dist/hooks/index.cjs.map +1 -1
  23. package/dist/hooks/index.d.mts +3 -3
  24. package/dist/hooks/index.d.ts +3 -3
  25. package/dist/hooks/index.mjs +3 -3
  26. package/dist/index.cjs +7 -0
  27. package/dist/index.cjs.map +1 -1
  28. package/dist/index.d.mts +4 -0
  29. package/dist/index.d.ts +4 -0
  30. package/dist/index.mjs +7 -0
  31. package/dist/index.mjs.map +1 -1
  32. package/dist/map/index.d.mts +1 -1
  33. package/dist/map/index.d.ts +1 -1
  34. package/dist/{resourceActivities-lFB7B-Y9.d.mts → resourceActivities-BCZ6HU7U.d.mts} +1 -1
  35. package/dist/{resourceActivities-CJrM2qDC.d.ts → resourceActivities-DUR5JaaB.d.ts} +1 -1
  36. package/dist/sharing/index.d.mts +1 -1
  37. package/dist/sharing/index.d.ts +1 -1
  38. package/dist/types/index.cjs.map +1 -1
  39. package/dist/types/index.d.mts +5 -5
  40. package/dist/types/index.d.ts +5 -5
  41. package/dist/types/index.mjs +1 -1
  42. package/dist/utils/index.cjs.map +1 -1
  43. package/dist/utils/index.d.mts +1 -1
  44. package/dist/utils/index.d.ts +1 -1
  45. package/dist/utils/index.mjs +2 -2
  46. package/package.json +1 -1
  47. package/dist/chunk-2PM6254K.mjs.map +0 -1
  48. package/dist/chunk-XBUBH7OF.mjs.map +0 -1
  49. /package/dist/{chunk-UA7GCPPH.mjs.map → chunk-DLPDX4EH.mjs.map} +0 -0
package/dist/index.d.mts CHANGED
@@ -604,6 +604,7 @@ type PostContentType = Omit<PostContentFormData, "contentData"> & {
604
604
  };
605
605
  type PostType = Omit<PostFormData, "content" | "coverUpload" | "resource"> & {
606
606
  _id: string;
607
+ approvedAt?: Date | null;
607
608
  content: PostContentType[];
608
609
  createdAt: Date;
609
610
  deletedAt: Date | null;
@@ -813,6 +814,7 @@ type SocialShareResourceType = {
813
814
  type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "imagesUpload" | "logoUpload"> & {
814
815
  _id: string;
815
816
  adIds?: string[] | null;
817
+ approvedAt?: Date | null;
816
818
  createdAt: Date;
817
819
  deletedAt: Date | null;
818
820
  posterUsage?: PosterUsageType | null;
@@ -1438,6 +1440,7 @@ type SchoolCampaignType = {
1438
1440
  };
1439
1441
  type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
1440
1442
  _id: string;
1443
+ approvedAt?: Date | null;
1441
1444
  campaigns: SchoolCampaignType[];
1442
1445
  createdAt: Date;
1443
1446
  deletedAt: Date | null;
@@ -1515,6 +1518,7 @@ type RedeemHistoryType = {
1515
1518
  interface AffiliateType {
1516
1519
  _id: string;
1517
1520
  active: boolean;
1521
+ approvedAt?: Date | null;
1518
1522
  affiliateBonusRewards?: AffiliateRewardType[] | null;
1519
1523
  affiliateCode: PromoCodeType | null;
1520
1524
  affiliateDetails: AffiliateDetailsType | null;
package/dist/index.d.ts CHANGED
@@ -604,6 +604,7 @@ type PostContentType = Omit<PostContentFormData, "contentData"> & {
604
604
  };
605
605
  type PostType = Omit<PostFormData, "content" | "coverUpload" | "resource"> & {
606
606
  _id: string;
607
+ approvedAt?: Date | null;
607
608
  content: PostContentType[];
608
609
  createdAt: Date;
609
610
  deletedAt: Date | null;
@@ -813,6 +814,7 @@ type SocialShareResourceType = {
813
814
  type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "imagesUpload" | "logoUpload"> & {
814
815
  _id: string;
815
816
  adIds?: string[] | null;
817
+ approvedAt?: Date | null;
816
818
  createdAt: Date;
817
819
  deletedAt: Date | null;
818
820
  posterUsage?: PosterUsageType | null;
@@ -1438,6 +1440,7 @@ type SchoolCampaignType = {
1438
1440
  };
1439
1441
  type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
1440
1442
  _id: string;
1443
+ approvedAt?: Date | null;
1441
1444
  campaigns: SchoolCampaignType[];
1442
1445
  createdAt: Date;
1443
1446
  deletedAt: Date | null;
@@ -1515,6 +1518,7 @@ type RedeemHistoryType = {
1515
1518
  interface AffiliateType {
1516
1519
  _id: string;
1517
1520
  active: boolean;
1521
+ approvedAt?: Date | null;
1518
1522
  affiliateBonusRewards?: AffiliateRewardType[] | null;
1519
1523
  affiliateCode: PromoCodeType | null;
1520
1524
  affiliateDetails: AffiliateDetailsType | null;
package/dist/index.mjs CHANGED
@@ -3457,6 +3457,7 @@ var EVENT_LIST_ITEM = gql`
3457
3457
  fragment EventListItemFields on EventListItemType {
3458
3458
  _id
3459
3459
  active
3460
+ approvedAt
3460
3461
  claimed
3461
3462
  cover {
3462
3463
  ...ResourceImageFields
@@ -3562,6 +3563,7 @@ var EVENT = gql2`
3562
3563
  ...AssociatesFields
3563
3564
  }
3564
3565
  adIds
3566
+ approvedAt
3565
3567
  cover {
3566
3568
  ...ResourceImageFields
3567
3569
  }
@@ -3752,6 +3754,7 @@ var VENDOR = gql3`
3752
3754
  ...AssociatesFields
3753
3755
  }
3754
3756
  adIds
3757
+ approvedAt
3755
3758
  availability {
3756
3759
  corporate
3757
3760
  private
@@ -4000,6 +4003,7 @@ var PARTNER = gql4`
4000
4003
  ...AssociatesFields
4001
4004
  }
4002
4005
  adIds
4006
+ approvedAt
4003
4007
  cover {
4004
4008
  ...ResourceImageFields
4005
4009
  }
@@ -4246,6 +4250,7 @@ var POST_FIELDS_FRAGMENT = gql7`
4246
4250
  fragment PostFields on PostType {
4247
4251
  _id
4248
4252
  active
4253
+ approvedAt
4249
4254
  caption
4250
4255
  content {
4251
4256
  ...PostContentFields
@@ -8124,6 +8129,7 @@ var SCHOOL = gql38`
8124
8129
  fragment SchoolFields on SchoolType {
8125
8130
  _id
8126
8131
  active
8132
+ approvedAt
8127
8133
  campaigns {
8128
8134
  ...SchoolCampaignFields
8129
8135
  }
@@ -8362,6 +8368,7 @@ var AFFILIATE_FIELDS_FRAGMENT = gql40`
8362
8368
  affiliateResources {
8363
8369
  ...AffiliateResourceFields
8364
8370
  }
8371
+ approvedAt
8365
8372
  createdAt
8366
8373
  deletedAt
8367
8374
  redeemHistory {