@timardex/cluemart-server-shared 1.1.28 → 1.1.29
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.
- package/dist/{chunk-SKEMDS6Z.mjs → chunk-HO5LGPTL.mjs} +5 -1
- package/dist/chunk-HO5LGPTL.mjs.map +1 -0
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +4 -0
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +6 -2
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +3 -3
- package/dist/service/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-SKEMDS6Z.mjs.map +0 -1
|
@@ -7776,6 +7776,8 @@ var COUPON_PARTICIPANT_USER_FIELDS_FRAGMENT = gql`
|
|
|
7776
7776
|
fragment CouponParticipantUserFields on CouponParticipantUserType {
|
|
7777
7777
|
couponCollectedCount
|
|
7778
7778
|
couponRedeemedAt
|
|
7779
|
+
couponRedeemedCount
|
|
7780
|
+
couponCycleRedeemed
|
|
7779
7781
|
createdAt
|
|
7780
7782
|
updatedAt
|
|
7781
7783
|
userId
|
|
@@ -9870,7 +9872,9 @@ var couponCodeSchema = new MongooseSchema26(
|
|
|
9870
9872
|
var couponParticipantUserSchema = new MongooseSchema26(
|
|
9871
9873
|
{
|
|
9872
9874
|
couponCollectedCount: { default: 0, required: true, type: Number },
|
|
9875
|
+
couponCycleRedeemed: { default: false, required: true, type: Boolean },
|
|
9873
9876
|
couponRedeemedAt: { default: null, required: false, type: Date },
|
|
9877
|
+
couponRedeemedCount: { default: 0, required: true, type: Number },
|
|
9874
9878
|
userId: {
|
|
9875
9879
|
ref: "User",
|
|
9876
9880
|
required: true,
|
|
@@ -9979,4 +9983,4 @@ export {
|
|
|
9979
9983
|
AffiliateModel,
|
|
9980
9984
|
CouponModel
|
|
9981
9985
|
};
|
|
9982
|
-
//# sourceMappingURL=chunk-
|
|
9986
|
+
//# sourceMappingURL=chunk-HO5LGPTL.mjs.map
|