@timardex/cluemart-server-shared 1.1.33 → 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-WLOHVSV6.mjs → chunk-ZVXL6B3M.mjs} +13 -7
- package/dist/chunk-ZVXL6B3M.mjs.map +1 -0
- package/dist/index.cjs +37 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -4
- package/dist/index.d.ts +7 -4
- package/dist/index.mjs +36 -25
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +12 -6
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +37 -25
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.d.mts +7 -4
- package/dist/service/index.d.ts +7 -4
- package/dist/service/index.mjs +25 -20
- package/dist/service/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-WLOHVSV6.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.",
|
|
@@ -4850,7 +4850,7 @@ var registerFields = [
|
|
|
4850
4850
|
required: true
|
|
4851
4851
|
},
|
|
4852
4852
|
{
|
|
4853
|
-
helperText: "Enter Nickname",
|
|
4853
|
+
helperText: "Enter Nickname (optional)",
|
|
4854
4854
|
keyboardType: "default",
|
|
4855
4855
|
name: "nickName",
|
|
4856
4856
|
placeholder: "Nickname",
|
|
@@ -4907,16 +4907,18 @@ var profileFields = [
|
|
|
4907
4907
|
helperText: "Enter first name",
|
|
4908
4908
|
keyboardType: "default",
|
|
4909
4909
|
name: "firstName",
|
|
4910
|
-
placeholder: "First Name"
|
|
4910
|
+
placeholder: "First Name",
|
|
4911
|
+
required: true
|
|
4911
4912
|
},
|
|
4912
4913
|
{
|
|
4913
4914
|
helperText: "Enter last name",
|
|
4914
4915
|
keyboardType: "default",
|
|
4915
4916
|
name: "lastName",
|
|
4916
|
-
placeholder: "Last Name"
|
|
4917
|
+
placeholder: "Last Name",
|
|
4918
|
+
required: true
|
|
4917
4919
|
},
|
|
4918
4920
|
{
|
|
4919
|
-
helperText: "Enter Nickname",
|
|
4921
|
+
helperText: "Enter Nickname (optional)",
|
|
4920
4922
|
keyboardType: "default",
|
|
4921
4923
|
name: "nickName",
|
|
4922
4924
|
placeholder: "Nickname",
|
|
@@ -4927,6 +4929,7 @@ var profileFields = [
|
|
|
4927
4929
|
keyboardType: "default",
|
|
4928
4930
|
name: "password",
|
|
4929
4931
|
placeholder: "Password",
|
|
4932
|
+
required: true,
|
|
4930
4933
|
secureTextEntry: true
|
|
4931
4934
|
},
|
|
4932
4935
|
{
|
|
@@ -4934,6 +4937,7 @@ var profileFields = [
|
|
|
4934
4937
|
keyboardType: "default",
|
|
4935
4938
|
name: "confirmPassword",
|
|
4936
4939
|
placeholder: "Confirm Password",
|
|
4940
|
+
required: true,
|
|
4937
4941
|
secureTextEntry: true
|
|
4938
4942
|
}
|
|
4939
4943
|
];
|
|
@@ -7936,6 +7940,7 @@ var COUPON_DATA_FIELDS_FRAGMENT = gql`
|
|
|
7936
7940
|
...CouponVendorProductFields
|
|
7937
7941
|
}
|
|
7938
7942
|
createdAt
|
|
7943
|
+
deletedAt
|
|
7939
7944
|
endDate
|
|
7940
7945
|
participantUsers {
|
|
7941
7946
|
...CouponParticipantUserFields
|
|
@@ -9932,6 +9937,7 @@ var couponDataSchema = new MongooseSchema26(
|
|
|
9932
9937
|
required: false,
|
|
9933
9938
|
type: [couponVendorProductSchema]
|
|
9934
9939
|
},
|
|
9940
|
+
deletedAt: { default: null, required: false, type: Date },
|
|
9935
9941
|
endDate: { required: true, type: Date },
|
|
9936
9942
|
participantUsers: {
|
|
9937
9943
|
default: null,
|