@zodic/shared 0.0.279 → 0.0.281

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.279",
3
+ "version": "0.0.281",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -555,4 +555,26 @@ export type UserConceptData = {
555
555
  };
556
556
  combinationString: string; // e.g., "sagittarius-aquarius-libra"
557
557
  conceptSlug: Concept;
558
+ };
559
+
560
+ export type UserProfile = {
561
+ email: string;
562
+ name: string;
563
+ profileImage: string | null;
564
+ userPhotoId: string | null;
565
+ userPhotoUrl: string | null;
566
+ gender: string | null;
567
+ day: number;
568
+ month: number;
569
+ year: number;
570
+ hour: number | null;
571
+ min: number | null;
572
+ latitude: number;
573
+ longitude: number;
574
+ birthLocation: string;
575
+ instagramUsername: string | null;
576
+ tiktokUsername: string | null;
577
+ oauthProvider: string | null;
578
+ creditsBalance: number;
579
+ language: string;
558
580
  };