Add tableSize/pocketSize to pool hall camera schema #281

Merged
dean merged 1 commits from dean/camera-table-dimensions into master 2026-07-05 00:23:57 +00:00
3 changed files with 44 additions and 0 deletions

View File

@@ -285,9 +285,11 @@ export type CreateCustomerPortalSessionResultGql = {
export type CreatePoolHallCameraInput = { export type CreatePoolHallCameraInput = {
name: Scalars["String"]["input"]; name: Scalars["String"]["input"];
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
poolHallId: Scalars["ID"]["input"]; poolHallId: Scalars["ID"]["input"];
streamPath?: InputMaybe<Scalars["String"]["input"]>; streamPath?: InputMaybe<Scalars["String"]["input"]>;
tableLabel?: InputMaybe<Scalars["String"]["input"]>; tableLabel?: InputMaybe<Scalars["String"]["input"]>;
tableSize?: InputMaybe<Scalars["Float"]["input"]>;
}; };
export type CreatePoolHallInput = { export type CreatePoolHallInput = {
@@ -2948,11 +2950,13 @@ export type PoolHallCamera = {
lastPublishedAt?: Maybe<Scalars["DateTime"]["output"]>; lastPublishedAt?: Maybe<Scalars["DateTime"]["output"]>;
lastUnpublishedAt?: Maybe<Scalars["DateTime"]["output"]>; lastUnpublishedAt?: Maybe<Scalars["DateTime"]["output"]>;
name: Scalars["String"]["output"]; name: Scalars["String"]["output"];
pocketSize?: Maybe<Scalars["Float"]["output"]>;
poolHall: PoolHall; poolHall: PoolHall;
poolHallId: Scalars["ID"]["output"]; poolHallId: Scalars["ID"]["output"];
status: Scalars["String"]["output"]; status: Scalars["String"]["output"];
streamPath: Scalars["String"]["output"]; streamPath: Scalars["String"]["output"];
tableLabel?: Maybe<Scalars["String"]["output"]>; tableLabel?: Maybe<Scalars["String"]["output"]>;
tableSize?: Maybe<Scalars["Float"]["output"]>;
updatedAt: Scalars["DateTime"]["output"]; updatedAt: Scalars["DateTime"]["output"];
}; };
@@ -3804,8 +3808,10 @@ export type UpdateAnnotationInputGql = {
export type UpdatePoolHallCameraInput = { export type UpdatePoolHallCameraInput = {
id: Scalars["ID"]["input"]; id: Scalars["ID"]["input"];
name?: InputMaybe<Scalars["String"]["input"]>; name?: InputMaybe<Scalars["String"]["input"]>;
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
status?: InputMaybe<Scalars["String"]["input"]>; status?: InputMaybe<Scalars["String"]["input"]>;
tableLabel?: InputMaybe<Scalars["String"]["input"]>; tableLabel?: InputMaybe<Scalars["String"]["input"]>;
tableSize?: InputMaybe<Scalars["Float"]["input"]>;
}; };
export type UpdatePoolHallInput = { export type UpdatePoolHallInput = {
@@ -5529,6 +5535,8 @@ export type PoolHallCameraFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5543,6 +5551,8 @@ export type PoolHallCameraWithHallFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5573,6 +5583,8 @@ export type PoolHallCameraStreamCredentialsFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5613,6 +5625,8 @@ export type CameraClaimSessionFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5654,6 +5668,8 @@ export type CameraLeaseFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5725,6 +5741,8 @@ export type GetPoolHallCamerasQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5758,6 +5776,8 @@ export type GetClaimableCamerasQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5804,6 +5824,8 @@ export type GetCameraClaimSessionQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5852,6 +5874,8 @@ export type GetActiveCameraLeaseQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5930,6 +5954,8 @@ export type CreatePoolHallCameraMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5964,6 +5990,8 @@ export type UpdatePoolHallCameraMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6001,6 +6029,8 @@ export type RotatePoolHallCameraStreamKeyMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6048,6 +6078,8 @@ export type CreateCameraClaimSessionMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6095,6 +6127,8 @@ export type CancelCameraClaimSessionMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -8432,6 +8466,8 @@ export const PoolHallCameraFieldsFragmentDoc = gql`
tableLabel tableLabel
streamPath streamPath
status status
tableSize
pocketSize
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
createdAt createdAt

View File

@@ -17,6 +17,8 @@ fragment PoolHallCameraFields on PoolHallCamera {
tableLabel tableLabel
streamPath streamPath
status status
tableSize
pocketSize
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
createdAt createdAt

View File

@@ -907,6 +907,8 @@ type PoolHallCamera {
tableLabel: String tableLabel: String
streamPath: String! streamPath: String!
status: String! status: String!
tableSize: Float
pocketSize: Float
lastPublishedAt: DateTime lastPublishedAt: DateTime
lastUnpublishedAt: DateTime lastUnpublishedAt: DateTime
createdAt: DateTime! createdAt: DateTime!
@@ -1511,6 +1513,8 @@ input CreatePoolHallCameraInput {
name: String! name: String!
tableLabel: String = null tableLabel: String = null
streamPath: String = null streamPath: String = null
tableSize: Float = null
pocketSize: Float = null
} }
input UpdatePoolHallCameraInput { input UpdatePoolHallCameraInput {
@@ -1518,6 +1522,8 @@ input UpdatePoolHallCameraInput {
name: String = null name: String = null
tableLabel: String = null tableLabel: String = null
status: String = null status: String = null
tableSize: Float = null
pocketSize: Float = null
} }
input FinalizePlayerAssignmentsInput { input FinalizePlayerAssignmentsInput {