@zodic/shared 0.0.92 → 0.0.94

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.92",
3
+ "version": "0.0.94",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -158,6 +158,7 @@ export type AuthBindings = Env &
158
158
  | 'DB'
159
159
  | 'CLOUDFLARE_ACCOUNT_ID'
160
160
  | 'DRIZZLE'
161
+ | 'GOOGLE_TIMEZONE_API_KEY'
161
162
  >;
162
163
 
163
164
  export type AuthCtx = Context<
@@ -260,3 +260,12 @@ 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
+ }