@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
|
@@ -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.",
|
|
@@ -4775,7 +4775,7 @@ var registerFields = [
|
|
|
4775
4775
|
required: true
|
|
4776
4776
|
},
|
|
4777
4777
|
{
|
|
4778
|
-
helperText: "Enter Nickname",
|
|
4778
|
+
helperText: "Enter Nickname (optional)",
|
|
4779
4779
|
keyboardType: "default",
|
|
4780
4780
|
name: "nickName",
|
|
4781
4781
|
placeholder: "Nickname",
|
|
@@ -4832,16 +4832,18 @@ var profileFields = [
|
|
|
4832
4832
|
helperText: "Enter first name",
|
|
4833
4833
|
keyboardType: "default",
|
|
4834
4834
|
name: "firstName",
|
|
4835
|
-
placeholder: "First Name"
|
|
4835
|
+
placeholder: "First Name",
|
|
4836
|
+
required: true
|
|
4836
4837
|
},
|
|
4837
4838
|
{
|
|
4838
4839
|
helperText: "Enter last name",
|
|
4839
4840
|
keyboardType: "default",
|
|
4840
4841
|
name: "lastName",
|
|
4841
|
-
placeholder: "Last Name"
|
|
4842
|
+
placeholder: "Last Name",
|
|
4843
|
+
required: true
|
|
4842
4844
|
},
|
|
4843
4845
|
{
|
|
4844
|
-
helperText: "Enter Nickname",
|
|
4846
|
+
helperText: "Enter Nickname (optional)",
|
|
4845
4847
|
keyboardType: "default",
|
|
4846
4848
|
name: "nickName",
|
|
4847
4849
|
placeholder: "Nickname",
|
|
@@ -4852,6 +4854,7 @@ var profileFields = [
|
|
|
4852
4854
|
keyboardType: "default",
|
|
4853
4855
|
name: "password",
|
|
4854
4856
|
placeholder: "Password",
|
|
4857
|
+
required: true,
|
|
4855
4858
|
secureTextEntry: true
|
|
4856
4859
|
},
|
|
4857
4860
|
{
|
|
@@ -4859,6 +4862,7 @@ var profileFields = [
|
|
|
4859
4862
|
keyboardType: "default",
|
|
4860
4863
|
name: "confirmPassword",
|
|
4861
4864
|
placeholder: "Confirm Password",
|
|
4865
|
+
required: true,
|
|
4862
4866
|
secureTextEntry: true
|
|
4863
4867
|
}
|
|
4864
4868
|
];
|
|
@@ -7861,6 +7865,7 @@ var COUPON_DATA_FIELDS_FRAGMENT = gql`
|
|
|
7861
7865
|
...CouponVendorProductFields
|
|
7862
7866
|
}
|
|
7863
7867
|
createdAt
|
|
7868
|
+
deletedAt
|
|
7864
7869
|
endDate
|
|
7865
7870
|
participantUsers {
|
|
7866
7871
|
...CouponParticipantUserFields
|
|
@@ -9926,6 +9931,7 @@ var couponDataSchema = new MongooseSchema26(
|
|
|
9926
9931
|
required: false,
|
|
9927
9932
|
type: [couponVendorProductSchema]
|
|
9928
9933
|
},
|
|
9934
|
+
deletedAt: { default: null, required: false, type: Date },
|
|
9929
9935
|
endDate: { required: true, type: Date },
|
|
9930
9936
|
participantUsers: {
|
|
9931
9937
|
default: null,
|
|
@@ -10016,4 +10022,4 @@ export {
|
|
|
10016
10022
|
AffiliateModel,
|
|
10017
10023
|
CouponModel
|
|
10018
10024
|
};
|
|
10019
|
-
//# sourceMappingURL=chunk-
|
|
10025
|
+
//# sourceMappingURL=chunk-ZVXL6B3M.mjs.map
|