@zodic/shared 0.0.100 → 0.0.101

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.
@@ -8,6 +8,13 @@
8
8
  "when": 1738681330421,
9
9
  "tag": "0000_material_lionheart",
10
10
  "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "6",
15
+ "when": 1738686365360,
16
+ "tag": "0001_wild_ironclad",
17
+ "breakpoints": true
11
18
  }
12
19
  ]
13
20
  }
package/db/schema.ts CHANGED
@@ -35,6 +35,7 @@ export const users = sqliteTable(
35
35
  latitude: real('latitude').notNull(),
36
36
  longitude: real('longitude').notNull(),
37
37
  tzone: real('tzone'), // Nullable for inferred timezone
38
+ birthLocation: text('birth_location').notNull(),
38
39
  instagramUsername: text('instagram_username').unique(), // Nullable for optional social media
39
40
  tiktokUsername: text('tiktok_username').unique(), // Fix typo
40
41
  oauthProvider: text('oauth_provider'), // e.g., "google", "facebook", "apple", nullable for password-based login
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.100",
3
+ "version": "0.0.101",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {