@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
package/dist/mongoose/index.cjs
CHANGED
|
@@ -3476,7 +3476,7 @@ var gameScreenIdentifierList = [
|
|
|
3476
3476
|
{
|
|
3477
3477
|
clue: "Where you can find your loyalties.",
|
|
3478
3478
|
id: "coupons",
|
|
3479
|
-
match: "/coupons"
|
|
3479
|
+
match: "/profile/account/coupons"
|
|
3480
3480
|
},
|
|
3481
3481
|
{
|
|
3482
3482
|
clue: "A single moment worth showing up for.",
|
|
@@ -3506,7 +3506,7 @@ var gameScreenIdentifierList = [
|
|
|
3506
3506
|
{
|
|
3507
3507
|
clue: "Where fun becomes a challenge.",
|
|
3508
3508
|
id: "games",
|
|
3509
|
-
match: "/games"
|
|
3509
|
+
match: "/profile/account/games"
|
|
3510
3510
|
},
|
|
3511
3511
|
{
|
|
3512
3512
|
clue: "Your starting point for everything.",
|
|
@@ -7940,6 +7940,7 @@ var COUPON_DATA_FIELDS_FRAGMENT = gql`
|
|
|
7940
7940
|
...CouponVendorProductFields
|
|
7941
7941
|
}
|
|
7942
7942
|
createdAt
|
|
7943
|
+
deletedAt
|
|
7943
7944
|
endDate
|
|
7944
7945
|
participantUsers {
|
|
7945
7946
|
...CouponParticipantUserFields
|
|
@@ -9936,6 +9937,7 @@ var couponDataSchema = new MongooseSchema26(
|
|
|
9936
9937
|
required: false,
|
|
9937
9938
|
type: [couponVendorProductSchema]
|
|
9938
9939
|
},
|
|
9940
|
+
deletedAt: { default: null, required: false, type: Date },
|
|
9939
9941
|
endDate: { required: true, type: Date },
|
|
9940
9942
|
participantUsers: {
|
|
9941
9943
|
default: null,
|