@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 +1 -1
- package/types/scopes/generic.ts +2 -0
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -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
|
|