@zodic/shared 0.0.101 → 0.0.102

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.101",
3
+ "version": "0.0.102",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -268,6 +268,7 @@ export interface OAuthCompleteBody {
268
268
  longitude: number;
269
269
  instagramUsername?: string | null;
270
270
  tiktokUsername?: string | null;
271
+ birthLocation: string;
271
272
  }
272
273
 
273
274
  export interface SignupBody {
@@ -281,5 +282,6 @@ export interface SignupBody {
281
282
  longitude: number;
282
283
  birthDate: string; // Expected format: "YYYY-MM-DD"
283
284
  birthTime?: string | null; // Optional, format: "HH:mm" or null
285
+ birthLocation: string;
284
286
  }
285
287