@optimatech88/titomeet-shared-lib 1.0.10 → 1.0.11
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/prisma/schema.prisma +8 -3
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -56,10 +56,15 @@ model Address {
|
|
|
56
56
|
id String @id @default(uuid())
|
|
57
57
|
name String
|
|
58
58
|
line2 String?
|
|
59
|
-
city String
|
|
60
|
-
state String
|
|
59
|
+
city String?
|
|
60
|
+
state String?
|
|
61
61
|
country String
|
|
62
|
-
|
|
62
|
+
countryCode String?
|
|
63
|
+
postalCode String?
|
|
64
|
+
type String @default("suburb")
|
|
65
|
+
|
|
66
|
+
latitude Float?
|
|
67
|
+
longitude Float?
|
|
63
68
|
|
|
64
69
|
events Event[]
|
|
65
70
|
createdAt DateTime @default(now())
|