diff --git a/src/index.tsx b/src/index.tsx index 4c3fe89..cdb4d67 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -294,9 +294,11 @@ export type CreatePoolHallCameraInput = { export type CreatePoolHallInput = { address?: InputMaybe; + city?: InputMaybe; latitude?: InputMaybe; longitude?: InputMaybe; name: Scalars["String"]["input"]; + state?: InputMaybe; timezone?: InputMaybe; }; @@ -2947,11 +2949,13 @@ export type PocketingIntentionInfoGql = { export type PoolHall = { __typename?: "PoolHall"; address?: Maybe; + city?: Maybe; createdAt: Scalars["DateTime"]["output"]; id: Scalars["ID"]["output"]; latitude?: Maybe; longitude?: Maybe; name: Scalars["String"]["output"]; + state?: Maybe; status: Scalars["String"]["output"]; timezone?: Maybe; updatedAt: Scalars["DateTime"]["output"]; @@ -3831,10 +3835,12 @@ export type UpdatePoolHallCameraInput = { export type UpdatePoolHallInput = { address?: InputMaybe; + city?: InputMaybe; id: Scalars["ID"]["input"]; latitude?: InputMaybe; longitude?: InputMaybe; name?: InputMaybe; + state?: InputMaybe; status?: InputMaybe; timezone?: InputMaybe; }; @@ -5534,6 +5540,8 @@ export type PoolHallFieldsFragment = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5579,6 +5587,8 @@ export type PoolHallCameraWithHallFieldsFragment = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5612,6 +5622,8 @@ export type PoolHallCameraStreamCredentialsFieldsFragment = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5655,6 +5667,8 @@ export type CameraClaimSessionFieldsFragment = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5699,6 +5713,8 @@ export type CameraLeaseFieldsFragment = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5718,6 +5734,8 @@ export type GetPoolHallsQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5738,6 +5756,8 @@ export type GetClaimablePoolHallsQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5773,6 +5793,8 @@ export type GetPoolHallCamerasQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5809,6 +5831,8 @@ export type GetClaimableCamerasQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5858,6 +5882,8 @@ export type GetCameraClaimSessionQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5909,6 +5935,8 @@ export type GetActiveCameraLeaseQuery = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5931,6 +5959,8 @@ export type CreatePoolHallMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5951,6 +5981,8 @@ export type UpdatePoolHallMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -5990,6 +6022,8 @@ export type CreatePoolHallCameraMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6027,6 +6061,8 @@ export type UpdatePoolHallCameraMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6067,6 +6103,8 @@ export type RotatePoolHallCameraStreamKeyMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6120,6 +6158,8 @@ export type CreateCameraClaimSessionMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6170,6 +6210,8 @@ export type CancelCameraClaimSessionMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6221,6 +6263,8 @@ export type EndCameraLeaseMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -6273,6 +6317,8 @@ export type ExtendCameraLeaseMutation = { id: string; name: string; address?: string | null; + city?: string | null; + state?: string | null; latitude?: number | null; longitude?: number | null; timezone?: string | null; @@ -8615,6 +8661,8 @@ export const PoolHallFieldsFragmentDoc = gql` id name address + city + state latitude longitude timezone diff --git a/src/operations/pool_hall.gql b/src/operations/pool_hall.gql index da8a3c6..d815baa 100644 --- a/src/operations/pool_hall.gql +++ b/src/operations/pool_hall.gql @@ -2,6 +2,8 @@ fragment PoolHallFields on PoolHall { id name address + city + state latitude longitude timezone diff --git a/src/schema.gql b/src/schema.gql index 1367f66..d0b2c89 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -892,6 +892,8 @@ type PoolHall { id: ID! name: String! address: String + city: String + state: String latitude: Float longitude: Float timezone: String @@ -1495,6 +1497,8 @@ enum ReportReasonEnum { input CreatePoolHallInput { name: String! address: String = null + city: String = null + state: String = null latitude: Float = null longitude: Float = null timezone: String = null @@ -1504,6 +1508,8 @@ input UpdatePoolHallInput { id: ID! name: String = null address: String = null + city: String = null + state: String = null latitude: Float = null longitude: Float = null timezone: String = null