@timardex/cluemart-server-shared 1.1.23 → 1.1.25
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-6LIZONJ6.mjs → chunk-YXUMN7EM.mjs} +55 -6
- package/dist/chunk-YXUMN7EM.mjs.map +1 -0
- package/dist/index.cjs +109 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +24 -2
- package/dist/index.d.ts +24 -2
- package/dist/index.mjs +106 -26
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +31 -4
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +109 -26
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.d.mts +26 -4
- package/dist/service/index.d.ts +26 -4
- package/dist/service/index.mjs +56 -23
- package/dist/service/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-6LIZONJ6.mjs.map +0 -1
package/dist/mongoose/index.cjs
CHANGED
|
@@ -3471,17 +3471,17 @@ var gameScreenIdentifierList = [
|
|
|
3471
3471
|
{
|
|
3472
3472
|
clue: "Where your actions turn into a timeline.",
|
|
3473
3473
|
id: "activities",
|
|
3474
|
-
match: "/profile/
|
|
3474
|
+
match: "/profile/account/favourites"
|
|
3475
3475
|
},
|
|
3476
3476
|
{
|
|
3477
3477
|
clue: "Where conversations happen without speaking.",
|
|
3478
3478
|
id: "chat",
|
|
3479
|
-
match: "/
|
|
3479
|
+
match: "/chat"
|
|
3480
3480
|
},
|
|
3481
3481
|
{
|
|
3482
3482
|
clue: "The place to redefine who you are.",
|
|
3483
3483
|
id: "edit-profile",
|
|
3484
|
-
match: "/profile/
|
|
3484
|
+
match: "/profile/account"
|
|
3485
3485
|
},
|
|
3486
3486
|
{
|
|
3487
3487
|
clue: "A single moment worth showing up for.",
|
|
@@ -3657,8 +3657,8 @@ var EnumActivity = /* @__PURE__ */ ((EnumActivity2) => {
|
|
|
3657
3657
|
return EnumActivity2;
|
|
3658
3658
|
})(EnumActivity || {});
|
|
3659
3659
|
var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|
|
3660
|
-
EnumPostType2["MARKET_FACES"] = "market_faces";
|
|
3661
3660
|
EnumPostType2["CLUE_BITES"] = "clue_bites";
|
|
3661
|
+
EnumPostType2["MARKET_FACES"] = "market_faces";
|
|
3662
3662
|
EnumPostType2["PLAY_AND_WIN"] = "play_and_win";
|
|
3663
3663
|
return EnumPostType2;
|
|
3664
3664
|
})(EnumPostType || {});
|
|
@@ -4839,6 +4839,13 @@ var registerFields = [
|
|
|
4839
4839
|
placeholder: "Last Name",
|
|
4840
4840
|
required: true
|
|
4841
4841
|
},
|
|
4842
|
+
{
|
|
4843
|
+
helperText: "Enter Nickname",
|
|
4844
|
+
keyboardType: "default",
|
|
4845
|
+
name: "nickName",
|
|
4846
|
+
placeholder: "Nickname",
|
|
4847
|
+
required: false
|
|
4848
|
+
},
|
|
4842
4849
|
{
|
|
4843
4850
|
...emailField,
|
|
4844
4851
|
required: true
|
|
@@ -4898,6 +4905,13 @@ var profileFields = [
|
|
|
4898
4905
|
name: "lastName",
|
|
4899
4906
|
placeholder: "Last Name"
|
|
4900
4907
|
},
|
|
4908
|
+
{
|
|
4909
|
+
helperText: "Enter Nickname",
|
|
4910
|
+
keyboardType: "default",
|
|
4911
|
+
name: "nickName",
|
|
4912
|
+
placeholder: "Nickname",
|
|
4913
|
+
required: false
|
|
4914
|
+
},
|
|
4901
4915
|
{
|
|
4902
4916
|
helperText: "Enter your new password",
|
|
4903
4917
|
keyboardType: "default",
|
|
@@ -5142,6 +5156,7 @@ var USER_FIELDS_FRAGMENT = gql`
|
|
|
5142
5156
|
game
|
|
5143
5157
|
isTester
|
|
5144
5158
|
lastName
|
|
5159
|
+
nickName
|
|
5145
5160
|
licences {
|
|
5146
5161
|
...LicenceFields
|
|
5147
5162
|
}
|
|
@@ -7741,6 +7756,17 @@ var GET_AFFILIATES = gql`
|
|
|
7741
7756
|
}
|
|
7742
7757
|
${AFFILIATE_FIELDS_FRAGMENT}
|
|
7743
7758
|
`;
|
|
7759
|
+
var CREATE_AFFILIATE_MUTATION = gql`
|
|
7760
|
+
mutation createAffiliate($input: AffiliateDetailsInputType!) {
|
|
7761
|
+
createAffiliate(input: $input) {
|
|
7762
|
+
data {
|
|
7763
|
+
...AffiliateFields
|
|
7764
|
+
}
|
|
7765
|
+
message
|
|
7766
|
+
}
|
|
7767
|
+
}
|
|
7768
|
+
${AFFILIATE_FIELDS_FRAGMENT}
|
|
7769
|
+
`;
|
|
7744
7770
|
var UPDATE_AFFILIATE_DETAILS_MUTATION = gql`
|
|
7745
7771
|
mutation updateAffiliateDetails(
|
|
7746
7772
|
$input: AffiliateDetailsInputType!
|
|
@@ -8994,6 +9020,7 @@ var schema7 = new MongooseSchema11(
|
|
|
8994
9020
|
required: false,
|
|
8995
9021
|
type: locationsSchema
|
|
8996
9022
|
},
|
|
9023
|
+
nickName: { required: false, type: String },
|
|
8997
9024
|
overallPoints: { default: 0, required: false, type: Number },
|
|
8998
9025
|
partner: {
|
|
8999
9026
|
ref: "Partner",
|