@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimatech88/titomeet-shared-lib",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -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
- postalCode String
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())