@timardex/cluemart-server-shared 1.1.34 → 1.1.35
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-UGGLUJIR.mjs → chunk-ZVXL6B3M.mjs} +5 -3
- package/dist/chunk-ZVXL6B3M.mjs.map +1 -0
- package/dist/index.cjs +8 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +8 -6
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +4 -2
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +8 -6
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +5 -5
- package/dist/service/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-UGGLUJIR.mjs.map +0 -1
|
@@ -3399,7 +3399,7 @@ var gameScreenIdentifierList = [
|
|
|
3399
3399
|
{
|
|
3400
3400
|
clue: "Where you can find your loyalties.",
|
|
3401
3401
|
id: "coupons",
|
|
3402
|
-
match: "/coupons"
|
|
3402
|
+
match: "/profile/account/coupons"
|
|
3403
3403
|
},
|
|
3404
3404
|
{
|
|
3405
3405
|
clue: "A single moment worth showing up for.",
|
|
@@ -3429,7 +3429,7 @@ var gameScreenIdentifierList = [
|
|
|
3429
3429
|
{
|
|
3430
3430
|
clue: "Where fun becomes a challenge.",
|
|
3431
3431
|
id: "games",
|
|
3432
|
-
match: "/games"
|
|
3432
|
+
match: "/profile/account/games"
|
|
3433
3433
|
},
|
|
3434
3434
|
{
|
|
3435
3435
|
clue: "Your starting point for everything.",
|
|
@@ -7865,6 +7865,7 @@ var COUPON_DATA_FIELDS_FRAGMENT = gql`
|
|
|
7865
7865
|
...CouponVendorProductFields
|
|
7866
7866
|
}
|
|
7867
7867
|
createdAt
|
|
7868
|
+
deletedAt
|
|
7868
7869
|
endDate
|
|
7869
7870
|
participantUsers {
|
|
7870
7871
|
...CouponParticipantUserFields
|
|
@@ -9930,6 +9931,7 @@ var couponDataSchema = new MongooseSchema26(
|
|
|
9930
9931
|
required: false,
|
|
9931
9932
|
type: [couponVendorProductSchema]
|
|
9932
9933
|
},
|
|
9934
|
+
deletedAt: { default: null, required: false, type: Date },
|
|
9933
9935
|
endDate: { required: true, type: Date },
|
|
9934
9936
|
participantUsers: {
|
|
9935
9937
|
default: null,
|
|
@@ -10020,4 +10022,4 @@ export {
|
|
|
10020
10022
|
AffiliateModel,
|
|
10021
10023
|
CouponModel
|
|
10022
10024
|
};
|
|
10023
|
-
//# sourceMappingURL=chunk-
|
|
10025
|
+
//# sourceMappingURL=chunk-ZVXL6B3M.mjs.map
|