@timardex/cluemart-shared 1.5.834 → 1.5.835

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 (37) hide show
  1. package/dist/{affiliate-XW8pxlOC.d.mts → affiliate-C0wLdUpL.d.mts} +2 -0
  2. package/dist/{affiliate-Dn50VDpB.d.ts → affiliate-DSZKkCju.d.ts} +2 -0
  3. package/dist/auth/index.cjs +1 -1
  4. package/dist/auth/index.cjs.map +1 -1
  5. package/dist/auth/index.mjs +1 -1
  6. package/dist/auth/index.mjs.map +1 -1
  7. package/dist/{chunk-SP36N6U6.mjs → chunk-L4DYYGRX.mjs} +6 -1
  8. package/dist/{chunk-SP36N6U6.mjs.map → chunk-L4DYYGRX.mjs.map} +1 -1
  9. package/dist/{chunk-43SLZVBF.mjs → chunk-OBZTGPBJ.mjs} +1 -1
  10. package/dist/{chunk-43SLZVBF.mjs.map → chunk-OBZTGPBJ.mjs.map} +1 -1
  11. package/dist/{chunk-MLNJAQVM.mjs → chunk-QBU7N4P2.mjs} +2 -2
  12. package/dist/formFields/index.mjs +2 -2
  13. package/dist/graphql/index.cjs +5 -0
  14. package/dist/graphql/index.cjs.map +1 -1
  15. package/dist/graphql/index.d.mts +1 -1
  16. package/dist/graphql/index.d.ts +1 -1
  17. package/dist/graphql/index.mjs +1 -1
  18. package/dist/hooks/index.cjs +5 -0
  19. package/dist/hooks/index.cjs.map +1 -1
  20. package/dist/hooks/index.d.mts +1 -1
  21. package/dist/hooks/index.d.ts +1 -1
  22. package/dist/hooks/index.mjs +3 -3
  23. package/dist/index.cjs +5 -0
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.d.mts +2 -0
  26. package/dist/index.d.ts +2 -0
  27. package/dist/index.mjs +5 -0
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/types/index.cjs.map +1 -1
  30. package/dist/types/index.d.mts +1 -1
  31. package/dist/types/index.d.ts +1 -1
  32. package/dist/types/index.mjs +1 -1
  33. package/dist/utils/index.d.mts +1 -1
  34. package/dist/utils/index.d.ts +1 -1
  35. package/dist/utils/index.mjs +2 -2
  36. package/package.json +1 -1
  37. /package/dist/{chunk-MLNJAQVM.mjs.map → chunk-QBU7N4P2.mjs.map} +0 -0
package/dist/index.d.mts CHANGED
@@ -1552,10 +1552,12 @@ type AffiliateResourceType = {
1552
1552
  resourceDeletedAt: Date | null;
1553
1553
  resourceId: string;
1554
1554
  resourceName: string;
1555
+ resourceOwner: OwnerType;
1555
1556
  resourceType: EnumResourceType;
1556
1557
  rewards: AffiliateRewardType[];
1557
1558
  };
1558
1559
  type RedeemHistoryType = {
1560
+ paidAt?: Date | null;
1559
1561
  redeemedAt: Date;
1560
1562
  rewardValue: number;
1561
1563
  };
package/dist/index.d.ts CHANGED
@@ -1552,10 +1552,12 @@ type AffiliateResourceType = {
1552
1552
  resourceDeletedAt: Date | null;
1553
1553
  resourceId: string;
1554
1554
  resourceName: string;
1555
+ resourceOwner: OwnerType;
1555
1556
  resourceType: EnumResourceType;
1556
1557
  rewards: AffiliateRewardType[];
1557
1558
  };
1558
1559
  type RedeemHistoryType = {
1560
+ paidAt?: Date | null;
1559
1561
  redeemedAt: Date;
1560
1562
  rewardValue: number;
1561
1563
  };
package/dist/index.mjs CHANGED
@@ -7478,12 +7478,16 @@ var AFFILIATE_RESOURCE_FIELDS_FRAGMENT = gql40`
7478
7478
  resourceDeletedAt
7479
7479
  resourceId
7480
7480
  resourceName
7481
+ resourceOwner {
7482
+ ...OwnerFields
7483
+ }
7481
7484
  resourceType
7482
7485
  rewards {
7483
7486
  ...AffiliateRewardFields
7484
7487
  }
7485
7488
  }
7486
7489
  ${AFFILIATE_REWARD_FIELDS_FRAGMENT}
7490
+ ${OWNER_FIELDS_FRAGMENT}
7487
7491
  `;
7488
7492
  var AFFILIATE_BANK_ACCOUNT_DETAILS_FIELDS_FRAGMENT = gql40`
7489
7493
  fragment AffiliateBankAccountDetailsFields on AffiliateBankAccountDetailsType {
@@ -7538,6 +7542,7 @@ var AFFILIATE_FIELDS_FRAGMENT = gql40`
7538
7542
  createdAt
7539
7543
  deletedAt
7540
7544
  redeemHistory {
7545
+ paidAt
7541
7546
  redeemedAt
7542
7547
  rewardValue
7543
7548
  }