adding new fields for address validation of google

This commit is contained in:
José Salazar
2026-02-11 15:43:47 -05:00
parent 8a84117871
commit 88ea396c31
9 changed files with 162 additions and 5 deletions

View File

@@ -38,8 +38,18 @@ type Business @table(name: "businesses") {
phone: String
email: String
hubBuilding: String
address: String
placeId: String
latitude: Float
longitude: Float
city: String
state: String
street: String
country: String
zipCode: String
area: BusinessArea
sector: BusinessSector
rateGroup: BusinessRateGroup!

View File

@@ -36,11 +36,17 @@ type TaxForm @table(name: "tax_forms") {
socialSN: Int!
email: String
phone: String
address: String!
placeId: String
latitude: Float
longitude: Float
city: String
apt: String
state: String
street: String
country: String
zipCode: String
apt: String
# form W-4
marital: MaritalStatus

View File

@@ -18,14 +18,24 @@ type Vendor @table(name: "vendors") {
email: String
phone: String
photoUrl: String
address: String
placeId: String
latitude: Float
longitude: Float
city: String
state: String
street: String
country: String
zipCode: String
billingAddress: String
timezone: String @default(expr: "'UTC'")
legalName: String
doingBusinessAs: String
region: String
state: String
city: String
#state: String
#city: String
serviceSpecialty: String
approvalStatus: ApprovalStatus
isActive: Boolean