@zodic/shared 0.0.93 → 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.93",
3
+ "version": "0.0.95",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -260,3 +260,25 @@ export type DeepSeekBatchResponse = Array<{
260
260
  }>;
261
261
 
262
262
  export type Languages = 'pt-br' | 'en-us';
263
+
264
+ export interface OAuthCompleteBody {
265
+ birthDate: string; // Expected format: "YYYY-MM-DD"
266
+ birthTime?: string | null; // Expected format: "HH:mm" or null
267
+ latitude: number;
268
+ longitude: number;
269
+ instagramUsername?: string | null;
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
284
+ }