@zodic/shared 0.0.94 → 0.0.95

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.94",
3
+ "version": "0.0.95",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -268,4 +268,17 @@ export interface OAuthCompleteBody {
268
268
  longitude: number;
269
269
  instagramUsername?: string | null;
270
270
  tiktokUsername?: string | null;
271
+ }
272
+
273
+ export interface SignupBody {
274
+ email: string;
275
+ name: string;
276
+ password: string;
277
+ profileImage?: string | null; // Optional
278
+ instagramUsername?: string | null;
279
+ tiktokUsername?: string | null;
280
+ latitude: number;
281
+ longitude: number;
282
+ birthDate: string; // Expected format: "YYYY-MM-DD"
283
+ birthTime?: string | null; // Optional, format: "HH:mm" or null
271
284
  }