@timardex/cluemart-shared 1.7.58 → 1.7.59

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.
Files changed (51) hide show
  1. package/dist/{ad-wW8fzT4I.d.ts → ad-BXYzElOY.d.ts} +2 -8
  2. package/dist/{ad-CCuXkAAt.d.mts → ad-CaNdaVzA.d.mts} +2 -8
  3. package/dist/{affiliate-BSWxq9Uv.d.ts → affiliate-C4kUR-RF.d.ts} +1 -1
  4. package/dist/{affiliate-CaP_IFPL.d.mts → affiliate-KIMlFQc0.d.mts} +1 -1
  5. package/dist/auth/index.cjs +1 -0
  6. package/dist/auth/index.cjs.map +1 -1
  7. package/dist/auth/index.d.mts +2 -2
  8. package/dist/auth/index.d.ts +2 -2
  9. package/dist/auth/index.mjs +1 -1
  10. package/dist/{chunk-VBQ5RF7L.mjs → chunk-6ALUN6LP.mjs} +2 -1
  11. package/dist/chunk-6ALUN6LP.mjs.map +1 -0
  12. package/dist/{chunk-FSS2CZPR.mjs → chunk-CRUKJX54.mjs} +15 -1
  13. package/dist/{chunk-FSS2CZPR.mjs.map → chunk-CRUKJX54.mjs.map} +1 -1
  14. package/dist/{chunk-5D2JVHC2.mjs → chunk-GZZMH35Y.mjs} +1 -1
  15. package/dist/chunk-GZZMH35Y.mjs.map +1 -0
  16. package/dist/{chunk-WRV55PDR.mjs → chunk-HBW4LTNY.mjs} +2 -2
  17. package/dist/{chunk-P4JLZCWZ.mjs → chunk-TRWMYXB7.mjs} +2 -2
  18. package/dist/formFields/index.cjs +14 -0
  19. package/dist/formFields/index.cjs.map +1 -1
  20. package/dist/formFields/index.mjs +3 -3
  21. package/dist/graphql/index.cjs +1 -0
  22. package/dist/graphql/index.cjs.map +1 -1
  23. package/dist/graphql/index.d.mts +3 -3
  24. package/dist/graphql/index.d.ts +3 -3
  25. package/dist/graphql/index.mjs +2 -2
  26. package/dist/hooks/index.cjs +24 -0
  27. package/dist/hooks/index.cjs.map +1 -1
  28. package/dist/hooks/index.d.mts +3 -3
  29. package/dist/hooks/index.d.ts +3 -3
  30. package/dist/hooks/index.mjs +14 -5
  31. package/dist/hooks/index.mjs.map +1 -1
  32. package/dist/index.cjs +15 -0
  33. package/dist/index.cjs.map +1 -1
  34. package/dist/index.d.mts +2 -7
  35. package/dist/index.d.ts +2 -7
  36. package/dist/index.mjs +15 -0
  37. package/dist/index.mjs.map +1 -1
  38. package/dist/types/index.cjs.map +1 -1
  39. package/dist/types/index.d.mts +3 -3
  40. package/dist/types/index.d.ts +3 -3
  41. package/dist/types/index.mjs +1 -1
  42. package/dist/{user-Cz3XuyJU.d.mts → user-IkpoJkZz.d.mts} +1 -0
  43. package/dist/{user-B6RYIUjX.d.ts → user-J01cQFJ6.d.ts} +1 -0
  44. package/dist/utils/index.d.mts +2 -2
  45. package/dist/utils/index.d.ts +2 -2
  46. package/dist/utils/index.mjs +2 -2
  47. package/package.json +1 -1
  48. package/dist/chunk-5D2JVHC2.mjs.map +0 -1
  49. package/dist/chunk-VBQ5RF7L.mjs.map +0 -1
  50. /package/dist/{chunk-WRV55PDR.mjs.map → chunk-HBW4LTNY.mjs.map} +0 -0
  51. /package/dist/{chunk-P4JLZCWZ.mjs.map → chunk-TRWMYXB7.mjs.map} +0 -0
package/dist/index.d.mts CHANGED
@@ -1122,6 +1122,7 @@ type UserFormData = {
1122
1122
  isTester: boolean;
1123
1123
  lastName: string;
1124
1124
  location?: LocationType | null;
1125
+ nickName?: string | null;
1125
1126
  password?: string | null;
1126
1127
  platform?: EnumOSPlatform;
1127
1128
  preferredRegion: string;
@@ -1245,15 +1246,9 @@ type LoginFormData = {
1245
1246
  platform?: EnumOSPlatform;
1246
1247
  };
1247
1248
  type CreateLoginFormData = CreateFormData<LoginFormData>;
1248
- type RegisterFormData = {
1249
- email: string;
1250
- firstName: string;
1251
- lastName: string;
1249
+ type RegisterFormData = Pick<UserFormData, "email" | "firstName" | "lastName" | "nickName" | "platform" | "preferredRegion" | "termsAgreement"> & {
1252
1250
  password: string;
1253
- platform?: EnumOSPlatform;
1254
- preferredRegion: string;
1255
1251
  promoCode?: PromoCodeType | null;
1256
- termsAgreement?: TermsAgreement | null;
1257
1252
  };
1258
1253
  type CreateRegisterFormData = CreateFormData<RegisterFormData>;
1259
1254
  type RequestPasswordResetFormData = {
package/dist/index.d.ts CHANGED
@@ -1122,6 +1122,7 @@ type UserFormData = {
1122
1122
  isTester: boolean;
1123
1123
  lastName: string;
1124
1124
  location?: LocationType | null;
1125
+ nickName?: string | null;
1125
1126
  password?: string | null;
1126
1127
  platform?: EnumOSPlatform;
1127
1128
  preferredRegion: string;
@@ -1245,15 +1246,9 @@ type LoginFormData = {
1245
1246
  platform?: EnumOSPlatform;
1246
1247
  };
1247
1248
  type CreateLoginFormData = CreateFormData<LoginFormData>;
1248
- type RegisterFormData = {
1249
- email: string;
1250
- firstName: string;
1251
- lastName: string;
1249
+ type RegisterFormData = Pick<UserFormData, "email" | "firstName" | "lastName" | "nickName" | "platform" | "preferredRegion" | "termsAgreement"> & {
1252
1250
  password: string;
1253
- platform?: EnumOSPlatform;
1254
- preferredRegion: string;
1255
1251
  promoCode?: PromoCodeType | null;
1256
- termsAgreement?: TermsAgreement | null;
1257
1252
  };
1258
1253
  type CreateRegisterFormData = CreateFormData<RegisterFormData>;
1259
1254
  type RequestPasswordResetFormData = {
package/dist/index.mjs CHANGED
@@ -3095,6 +3095,13 @@ var registerFields = [
3095
3095
  placeholder: "Last Name",
3096
3096
  required: true
3097
3097
  },
3098
+ {
3099
+ helperText: "Enter Nickname",
3100
+ keyboardType: "default",
3101
+ name: "nickName",
3102
+ placeholder: "Nickname",
3103
+ required: false
3104
+ },
3098
3105
  {
3099
3106
  ...emailField,
3100
3107
  required: true
@@ -3174,6 +3181,13 @@ var profileFields = [
3174
3181
  name: "lastName",
3175
3182
  placeholder: "Last Name"
3176
3183
  },
3184
+ {
3185
+ helperText: "Enter Nickname",
3186
+ keyboardType: "default",
3187
+ name: "nickName",
3188
+ placeholder: "Nickname",
3189
+ required: false
3190
+ },
3177
3191
  {
3178
3192
  helperText: "Enter your new password",
3179
3193
  keyboardType: "default",
@@ -3449,6 +3463,7 @@ var USER_FIELDS_FRAGMENT = gql`
3449
3463
  game
3450
3464
  isTester
3451
3465
  lastName
3466
+ nickName
3452
3467
  licences {
3453
3468
  ...LicenceFields
3454
3469
  }