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

@@ -9,9 +9,14 @@ mutation createTaxForm(
$email: String
$phone: String
$address: String!
$placeId: String
$latitude: Float
$longitude: Float
$city: String
$apt: String
$state: String
$street: String
$country: String
$zipCode: String
# W-4
@@ -51,9 +56,14 @@ mutation createTaxForm(
email: $email
phone: $phone
address: $address
placeId: $placeId
latitude: $latitude
longitude: $longitude
city: $city
apt: $apt
state: $state
street: $street
country: $country
zipCode: $zipCode
marital: $marital
@@ -94,9 +104,14 @@ mutation updateTaxForm(
$email: String
$phone: String
$address: String
$placeId: String
$latitude: Float
$longitude: Float
$city: String
$apt: String
$state: String
$street: String
$country: String
$zipCode: String
# W-4
@@ -136,9 +151,14 @@ mutation updateTaxForm(
email: $email
phone: $phone
address: $address
placeId: $placeId
latitude: $latitude
longitude: $longitude
city: $city
apt: $apt
state: $state
street: $street
country: $country
zipCode: $zipCode
marital: $marital

View File

@@ -17,7 +17,12 @@ query listTaxForms($offset: Int, $limit: Int) @auth(level: USER) {
email
phone
address
placeId
latitude
longitude
city
street
country
apt
state
zipCode
@@ -61,7 +66,12 @@ query getTaxFormById($id: UUID!) @auth(level: USER) {
email
phone
address
placeId
latitude
longitude
city
street
country
apt
state
zipCode
@@ -114,7 +124,12 @@ query getTaxFormsByStaffId(
email
phone
address
placeId
latitude
longitude
city
street
country
apt
state
zipCode
@@ -173,7 +188,12 @@ query listTaxFormsWhere(
email
phone
address
placeId
latitude
longitude
city
street
country
apt
state
zipCode