Compare commits

..

5 Commits

Author SHA1 Message Date
Dean Wenstrand
8655cb75fc Regenerate schema + client from merged backend
All checks were successful
Tests / Tests (pull_request) Successful in 11s
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03 17:05:11 -07:00
Dean Wenstrand
87d40eb990 Merge pool hall camera claim schema onto gql master
Generated files (schema.gql, index.tsx) resolved arbitrarily here; the next
commit regenerates them from the merged backend via just gql.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-03 17:02:20 -07:00
64bc5c723a Add pool hall camera GraphQL operations
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2026-07-02 21:52:48 -07:00
8111042936 Add pool hall camera claim schema
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2026-06-16 15:41:16 -07:00
d6fd68c1f6 add quotaEnforcementEnabled to deployed config
All checks were successful
Tests / Tests (pull_request) Successful in 10s
2026-05-28 14:40:31 -07:00
3 changed files with 5 additions and 335 deletions

View File

@@ -285,11 +285,9 @@ 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 = {
@@ -2497,9 +2495,7 @@ export type Mutation = {
editShot: EditShotReturn; editShot: EditShotReturn;
editUploadStream: Scalars["Boolean"]["output"]; editUploadStream: Scalars["Boolean"]["output"];
editUser: UserGql; editUser: UserGql;
endCameraLease: CameraLease;
ensureStripeCustomerExists: UserGql; ensureStripeCustomerExists: UserGql;
extendCameraLease: CameraLease;
finalizePlayerAssignments: Array<PlayerClusterGql>; finalizePlayerAssignments: Array<PlayerClusterGql>;
findPrerecordTableLayout?: Maybe<HomographyInfoGql>; findPrerecordTableLayout?: Maybe<HomographyInfoGql>;
followUser: UserGql; followUser: UserGql;
@@ -2562,9 +2558,6 @@ export type MutationCreateBucketSetArgs = {
export type MutationCreateCameraClaimSessionArgs = { export type MutationCreateCameraClaimSessionArgs = {
cameraId: Scalars["ID"]["input"]; cameraId: Scalars["ID"]["input"];
durationMinutes?: InputMaybe<Scalars["Int"]["input"]>;
videoName?: InputMaybe<Scalars["String"]["input"]>;
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
}; };
export type MutationCreateChallengeArgs = { export type MutationCreateChallengeArgs = {
@@ -2652,15 +2645,6 @@ export type MutationEditUserArgs = {
input: EditUserInputGql; input: EditUserInputGql;
}; };
export type MutationEndCameraLeaseArgs = {
leaseId: Scalars["ID"]["input"];
};
export type MutationExtendCameraLeaseArgs = {
additionalMinutes?: Scalars["Int"]["input"];
leaseId: Scalars["ID"]["input"];
};
export type MutationFinalizePlayerAssignmentsArgs = { export type MutationFinalizePlayerAssignmentsArgs = {
input: FinalizePlayerAssignmentsInput; input: FinalizePlayerAssignmentsInput;
}; };
@@ -2961,17 +2945,14 @@ export type PoolHallCamera = {
__typename?: "PoolHallCamera"; __typename?: "PoolHallCamera";
createdAt: Scalars["DateTime"]["output"]; createdAt: Scalars["DateTime"]["output"];
id: Scalars["ID"]["output"]; id: Scalars["ID"]["output"];
inUse: Scalars["Boolean"]["output"];
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"];
}; };
@@ -3823,10 +3804,8 @@ 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 = {
@@ -5550,9 +5529,6 @@ export type PoolHallCameraFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5567,9 +5543,6 @@ export type PoolHallCameraWithHallFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5600,9 +5573,6 @@ export type PoolHallCameraStreamCredentialsFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5643,9 +5613,6 @@ export type CameraClaimSessionFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5687,9 +5654,6 @@ export type CameraLeaseFieldsFragment = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5761,9 +5725,6 @@ export type GetPoolHallCamerasQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5797,9 +5758,6 @@ export type GetClaimableCamerasQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5846,9 +5804,6 @@ export type GetCameraClaimSessionQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5897,9 +5852,6 @@ export type GetActiveCameraLeaseQuery = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -5978,9 +5930,6 @@ export type CreatePoolHallCameraMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6015,9 +5964,6 @@ export type UpdatePoolHallCameraMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6055,9 +6001,6 @@ export type RotatePoolHallCameraStreamKeyMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6080,9 +6023,6 @@ export type RotatePoolHallCameraStreamKeyMutation = {
export type CreateCameraClaimSessionMutationVariables = Exact<{ export type CreateCameraClaimSessionMutationVariables = Exact<{
cameraId: Scalars["ID"]["input"]; cameraId: Scalars["ID"]["input"];
durationMinutes?: InputMaybe<Scalars["Int"]["input"]>;
videoName?: InputMaybe<Scalars["String"]["input"]>;
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
}>; }>;
export type CreateCameraClaimSessionMutation = { export type CreateCameraClaimSessionMutation = {
@@ -6108,9 +6048,6 @@ export type CreateCameraClaimSessionMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -6158,112 +6095,6 @@ export type CancelCameraClaimSessionMutation = {
tableLabel?: string | null; tableLabel?: string | null;
streamPath: string; streamPath: string;
status: string; status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null;
createdAt: any;
updatedAt: any;
poolHall: {
__typename?: "PoolHall";
id: string;
name: string;
address?: string | null;
latitude?: number | null;
longitude?: number | null;
timezone?: string | null;
status: string;
createdAt: any;
updatedAt: any;
};
};
};
};
export type EndCameraLeaseMutationVariables = Exact<{
leaseId: Scalars["ID"]["input"];
}>;
export type EndCameraLeaseMutation = {
__typename?: "Mutation";
endCameraLease: {
__typename?: "CameraLease";
id: string;
cameraId: string;
claimSessionId?: string | null;
userId: string;
videoId?: string | null;
status: string;
startedAt: any;
endedAt?: any | null;
expiresAt?: any | null;
endReason?: string | null;
createdAt: any;
updatedAt: any;
camera: {
__typename?: "PoolHallCamera";
id: string;
poolHallId: string;
name: string;
tableLabel?: string | null;
streamPath: string;
status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null;
createdAt: any;
updatedAt: any;
poolHall: {
__typename?: "PoolHall";
id: string;
name: string;
address?: string | null;
latitude?: number | null;
longitude?: number | null;
timezone?: string | null;
status: string;
createdAt: any;
updatedAt: any;
};
};
};
};
export type ExtendCameraLeaseMutationVariables = Exact<{
leaseId: Scalars["ID"]["input"];
additionalMinutes?: Scalars["Int"]["input"];
}>;
export type ExtendCameraLeaseMutation = {
__typename?: "Mutation";
extendCameraLease: {
__typename?: "CameraLease";
id: string;
cameraId: string;
claimSessionId?: string | null;
userId: string;
videoId?: string | null;
status: string;
startedAt: any;
endedAt?: any | null;
expiresAt?: any | null;
endReason?: string | null;
createdAt: any;
updatedAt: any;
camera: {
__typename?: "PoolHallCamera";
id: string;
poolHallId: string;
name: string;
tableLabel?: string | null;
streamPath: string;
status: string;
tableSize?: number | null;
pocketSize?: number | null;
inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
createdAt: any; createdAt: any;
@@ -8601,9 +8432,6 @@ export const PoolHallCameraFieldsFragmentDoc = gql`
tableLabel tableLabel
streamPath streamPath
status status
tableSize
pocketSize
inUse
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
createdAt createdAt
@@ -13230,18 +13058,8 @@ export type RotatePoolHallCameraStreamKeyMutationOptions =
RotatePoolHallCameraStreamKeyMutationVariables RotatePoolHallCameraStreamKeyMutationVariables
>; >;
export const CreateCameraClaimSessionDocument = gql` export const CreateCameraClaimSessionDocument = gql`
mutation CreateCameraClaimSession( mutation CreateCameraClaimSession($cameraId: ID!) {
$cameraId: ID! createCameraClaimSession(cameraId: $cameraId) {
$durationMinutes: Int
$videoName: String
$videoPrivate: Boolean
) {
createCameraClaimSession(
cameraId: $cameraId
durationMinutes: $durationMinutes
videoName: $videoName
videoPrivate: $videoPrivate
) {
...CameraClaimSessionFields ...CameraClaimSessionFields
} }
} }
@@ -13266,9 +13084,6 @@ export type CreateCameraClaimSessionMutationFn = Apollo.MutationFunction<
* const [createCameraClaimSessionMutation, { data, loading, error }] = useCreateCameraClaimSessionMutation({ * const [createCameraClaimSessionMutation, { data, loading, error }] = useCreateCameraClaimSessionMutation({
* variables: { * variables: {
* cameraId: // value for 'cameraId' * cameraId: // value for 'cameraId'
* durationMinutes: // value for 'durationMinutes'
* videoName: // value for 'videoName'
* videoPrivate: // value for 'videoPrivate'
* }, * },
* }); * });
*/ */
@@ -13346,112 +13161,6 @@ export type CancelCameraClaimSessionMutationOptions =
CancelCameraClaimSessionMutation, CancelCameraClaimSessionMutation,
CancelCameraClaimSessionMutationVariables CancelCameraClaimSessionMutationVariables
>; >;
export const EndCameraLeaseDocument = gql`
mutation EndCameraLease($leaseId: ID!) {
endCameraLease(leaseId: $leaseId) {
...CameraLeaseFields
}
}
${CameraLeaseFieldsFragmentDoc}
`;
export type EndCameraLeaseMutationFn = Apollo.MutationFunction<
EndCameraLeaseMutation,
EndCameraLeaseMutationVariables
>;
/**
* __useEndCameraLeaseMutation__
*
* To run a mutation, you first call `useEndCameraLeaseMutation` within a React component and pass it any options that fit your needs.
* When your component renders, `useEndCameraLeaseMutation` returns a tuple that includes:
* - A mutate function that you can call at any time to execute the mutation
* - An object with fields that represent the current status of the mutation's execution
*
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
*
* @example
* const [endCameraLeaseMutation, { data, loading, error }] = useEndCameraLeaseMutation({
* variables: {
* leaseId: // value for 'leaseId'
* },
* });
*/
export function useEndCameraLeaseMutation(
baseOptions?: Apollo.MutationHookOptions<
EndCameraLeaseMutation,
EndCameraLeaseMutationVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useMutation<
EndCameraLeaseMutation,
EndCameraLeaseMutationVariables
>(EndCameraLeaseDocument, options);
}
export type EndCameraLeaseMutationHookResult = ReturnType<
typeof useEndCameraLeaseMutation
>;
export type EndCameraLeaseMutationResult =
Apollo.MutationResult<EndCameraLeaseMutation>;
export type EndCameraLeaseMutationOptions = Apollo.BaseMutationOptions<
EndCameraLeaseMutation,
EndCameraLeaseMutationVariables
>;
export const ExtendCameraLeaseDocument = gql`
mutation ExtendCameraLease($leaseId: ID!, $additionalMinutes: Int! = 60) {
extendCameraLease(
leaseId: $leaseId
additionalMinutes: $additionalMinutes
) {
...CameraLeaseFields
}
}
${CameraLeaseFieldsFragmentDoc}
`;
export type ExtendCameraLeaseMutationFn = Apollo.MutationFunction<
ExtendCameraLeaseMutation,
ExtendCameraLeaseMutationVariables
>;
/**
* __useExtendCameraLeaseMutation__
*
* To run a mutation, you first call `useExtendCameraLeaseMutation` within a React component and pass it any options that fit your needs.
* When your component renders, `useExtendCameraLeaseMutation` returns a tuple that includes:
* - A mutate function that you can call at any time to execute the mutation
* - An object with fields that represent the current status of the mutation's execution
*
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
*
* @example
* const [extendCameraLeaseMutation, { data, loading, error }] = useExtendCameraLeaseMutation({
* variables: {
* leaseId: // value for 'leaseId'
* additionalMinutes: // value for 'additionalMinutes'
* },
* });
*/
export function useExtendCameraLeaseMutation(
baseOptions?: Apollo.MutationHookOptions<
ExtendCameraLeaseMutation,
ExtendCameraLeaseMutationVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useMutation<
ExtendCameraLeaseMutation,
ExtendCameraLeaseMutationVariables
>(ExtendCameraLeaseDocument, options);
}
export type ExtendCameraLeaseMutationHookResult = ReturnType<
typeof useExtendCameraLeaseMutation
>;
export type ExtendCameraLeaseMutationResult =
Apollo.MutationResult<ExtendCameraLeaseMutation>;
export type ExtendCameraLeaseMutationOptions = Apollo.BaseMutationOptions<
ExtendCameraLeaseMutation,
ExtendCameraLeaseMutationVariables
>;
export const ReactToVideoDocument = gql` export const ReactToVideoDocument = gql`
mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) { mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) {
reactToVideo(videoId: $videoId, reaction: $reaction) reactToVideo(videoId: $videoId, reaction: $reaction)

View File

@@ -17,9 +17,6 @@ fragment PoolHallCameraFields on PoolHallCamera {
tableLabel tableLabel
streamPath streamPath
status status
tableSize
pocketSize
inUse
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
createdAt createdAt
@@ -142,18 +139,8 @@ mutation RotatePoolHallCameraStreamKey($cameraId: ID!) {
} }
} }
mutation CreateCameraClaimSession( mutation CreateCameraClaimSession($cameraId: ID!) {
$cameraId: ID! createCameraClaimSession(cameraId: $cameraId) {
$durationMinutes: Int
$videoName: String
$videoPrivate: Boolean
) {
createCameraClaimSession(
cameraId: $cameraId
durationMinutes: $durationMinutes
videoName: $videoName
videoPrivate: $videoPrivate
) {
...CameraClaimSessionFields ...CameraClaimSessionFields
} }
} }
@@ -163,15 +150,3 @@ mutation CancelCameraClaimSession($claimSessionId: ID!) {
...CameraClaimSessionFields ...CameraClaimSessionFields
} }
} }
mutation EndCameraLease($leaseId: ID!) {
endCameraLease(leaseId: $leaseId) {
...CameraLeaseFields
}
}
mutation ExtendCameraLease($leaseId: ID!, $additionalMinutes: Int! = 60) {
extendCameraLease(leaseId: $leaseId, additionalMinutes: $additionalMinutes) {
...CameraLeaseFields
}
}

View File

@@ -907,13 +907,10 @@ 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!
updatedAt: DateTime! updatedAt: DateTime!
inUse: Boolean!
poolHall: PoolHall! poolHall: PoolHall!
} }
@@ -1404,15 +1401,8 @@ type Mutation {
): PoolHallCameraStreamCredentials! ): PoolHallCameraStreamCredentials!
updatePoolHallCamera(input: UpdatePoolHallCameraInput!): PoolHallCamera! updatePoolHallCamera(input: UpdatePoolHallCameraInput!): PoolHallCamera!
rotatePoolHallCameraStreamKey(cameraId: ID!): PoolHallCameraStreamCredentials! rotatePoolHallCameraStreamKey(cameraId: ID!): PoolHallCameraStreamCredentials!
createCameraClaimSession( createCameraClaimSession(cameraId: ID!): CameraClaimSession!
cameraId: ID!
durationMinutes: Int = null
videoName: String = null
videoPrivate: Boolean = null
): CameraClaimSession!
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession! cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
endCameraLease(leaseId: ID!): CameraLease!
extendCameraLease(leaseId: ID!, additionalMinutes: Int! = 60): CameraLease!
finalizePlayerAssignments( finalizePlayerAssignments(
input: FinalizePlayerAssignmentsInput! input: FinalizePlayerAssignmentsInput!
): [PlayerClusterGQL!]! ): [PlayerClusterGQL!]!
@@ -1521,8 +1511,6 @@ 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 {
@@ -1530,8 +1518,6 @@ 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 {