Compare commits

..

18 Commits

Author SHA1 Message Date
31f9852f4b Add clientUploadStatus to VideoCardFields stream fragment
All checks were successful
Tests / Tests (pull_request) Successful in 12s
Lets the feed/session card distinguish camera/bridge recordings
(clientUploadStatus UPLOAD_DISABLED, phone never uploads) from phone
uploads, so it can stop showing 'UPLOAD PAUSED' for recordings.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-08 09:57:50 -07:00
0b4016c601 Merge pull request 'Add tier-aware subscription options' (#286) from loewy/backend-tier-aware-subscription-options into master
Reviewed-on: #286
2026-07-07 23:57:44 +00:00
8e85fddb0a Merge pull request 'Add capability enforcement config field' (#285) from loewy/mobile-capability-config-field into master
Reviewed-on: #285
2026-07-07 23:27:17 +00:00
338798ea5a Add tier-aware subscription options
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2026-07-07 16:10:43 -07:00
6bd92ae991 Add capability enforcement config field
All checks were successful
Tests / Tests (pull_request) Successful in 10s
2026-07-07 14:44:27 -07:00
8dd9f6df40 Merge pull request 'Add storage status query' (#274) from loewy/storage-status-card-readiness into master
Reviewed-on: #274
2026-07-07 18:20:58 +00:00
f60950a6f6 Select storage limit fields for upload links
All checks were successful
Tests / Tests (pull_request) Successful in 11s
2026-07-06 23:51:30 -07:00
739451f250 Select storage limit config flag 2026-07-06 23:51:29 -07:00
146af8d713 Add resolved tier query 2026-07-06 23:51:29 -07:00
43b99c447b Add storage status readiness query fields 2026-07-06 23:51:29 -07:00
cba07aa69e Add storage status query 2026-07-06 23:51:29 -07:00
f626054662 Merge pull request 'Add tags arg to createCameraClaimSession' (#284) from dean/camera-session-tags into master
Reviewed-on: #284
2026-07-07 05:56:05 +00:00
Dean Wenstrand
6bc02ec47c Add tags arg to createCameraClaimSession
All checks were successful
Tests / Tests (pull_request) Successful in 11s
Lets the table-camera claim carry session tags (+ the player-count tag), for
parity with the phone recording flow.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-06 22:49:28 -07:00
c92246510b Merge pull request 'Add city/state to PoolHall type + create/update inputs' (#283) from dean/pool-hall-city-state into master
Reviewed-on: #283
2026-07-07 01:33:21 +00:00
Dean Wenstrand
3ce2a7be61 Add per-camera recording policy (terms + private allowance) to schema
All checks were successful
Tests / Tests (pull_request) Successful in 10s
allowsPrivateVideos / claimTermsText / claimTermsVersion on PoolHallCamera,
agreedTermsVersion on CameraClaimSession + the create-claim mutation.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-06 18:21:58 -07:00
Dean Wenstrand
fc921c3ae7 Add city/state to PoolHall type + create/update inputs
All checks were successful
Tests / Tests (pull_request) Successful in 10s
Full address stays on `address`; city/state let the UI show a compact locality.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-06 16:59:15 -07:00
0b6ac787d8 Merge pull request 'Camera claim flow: lease end/extend, claim preferences, inUse' (#282) from dean/camera-claim-flow into master
Reviewed-on: #282
2026-07-05 18:55:01 +00:00
c6a754cc2d Merge pull request 'Add tableSize/pocketSize to pool hall camera schema' (#281) from dean/camera-table-dimensions into master
Reviewed-on: #281
2026-07-05 00:23:56 +00:00
7 changed files with 491 additions and 1 deletions

View File

@@ -157,6 +157,7 @@ export type BucketSetInputGql = {
export type CameraClaimSession = { export type CameraClaimSession = {
__typename?: "CameraClaimSession"; __typename?: "CameraClaimSession";
agreedTermsVersion?: Maybe<Scalars["Int"]["output"]>;
camera: PoolHallCamera; camera: PoolHallCamera;
cameraId: Scalars["ID"]["output"]; cameraId: Scalars["ID"]["output"];
challengeCode: Scalars["String"]["output"]; challengeCode: Scalars["String"]["output"];
@@ -284,6 +285,8 @@ export type CreateCustomerPortalSessionResultGql = {
}; };
export type CreatePoolHallCameraInput = { export type CreatePoolHallCameraInput = {
allowsPrivateVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
claimTermsText?: InputMaybe<Scalars["String"]["input"]>;
name: Scalars["String"]["input"]; name: Scalars["String"]["input"];
pocketSize?: InputMaybe<Scalars["Float"]["input"]>; pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
poolHallId: Scalars["ID"]["input"]; poolHallId: Scalars["ID"]["input"];
@@ -294,9 +297,11 @@ export type CreatePoolHallCameraInput = {
export type CreatePoolHallInput = { export type CreatePoolHallInput = {
address?: InputMaybe<Scalars["String"]["input"]>; address?: InputMaybe<Scalars["String"]["input"]>;
city?: InputMaybe<Scalars["String"]["input"]>;
latitude?: InputMaybe<Scalars["Float"]["input"]>; latitude?: InputMaybe<Scalars["Float"]["input"]>;
longitude?: InputMaybe<Scalars["Float"]["input"]>; longitude?: InputMaybe<Scalars["Float"]["input"]>;
name: Scalars["String"]["input"]; name: Scalars["String"]["input"];
state?: InputMaybe<Scalars["String"]["input"]>;
timezone?: InputMaybe<Scalars["String"]["input"]>; timezone?: InputMaybe<Scalars["String"]["input"]>;
}; };
@@ -2561,8 +2566,10 @@ export type MutationCreateBucketSetArgs = {
}; };
export type MutationCreateCameraClaimSessionArgs = { export type MutationCreateCameraClaimSessionArgs = {
agreedTermsVersion?: InputMaybe<Scalars["Int"]["input"]>;
cameraId: Scalars["ID"]["input"]; cameraId: Scalars["ID"]["input"];
durationMinutes?: InputMaybe<Scalars["Int"]["input"]>; durationMinutes?: InputMaybe<Scalars["Int"]["input"]>;
tags?: InputMaybe<Array<VideoTagInput>>;
videoName?: InputMaybe<Scalars["String"]["input"]>; videoName?: InputMaybe<Scalars["String"]["input"]>;
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>; videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
}; };
@@ -2947,11 +2954,13 @@ export type PocketingIntentionInfoGql = {
export type PoolHall = { export type PoolHall = {
__typename?: "PoolHall"; __typename?: "PoolHall";
address?: Maybe<Scalars["String"]["output"]>; address?: Maybe<Scalars["String"]["output"]>;
city?: Maybe<Scalars["String"]["output"]>;
createdAt: Scalars["DateTime"]["output"]; createdAt: Scalars["DateTime"]["output"];
id: Scalars["ID"]["output"]; id: Scalars["ID"]["output"];
latitude?: Maybe<Scalars["Float"]["output"]>; latitude?: Maybe<Scalars["Float"]["output"]>;
longitude?: Maybe<Scalars["Float"]["output"]>; longitude?: Maybe<Scalars["Float"]["output"]>;
name: Scalars["String"]["output"]; name: Scalars["String"]["output"];
state?: Maybe<Scalars["String"]["output"]>;
status: Scalars["String"]["output"]; status: Scalars["String"]["output"];
timezone?: Maybe<Scalars["String"]["output"]>; timezone?: Maybe<Scalars["String"]["output"]>;
updatedAt: Scalars["DateTime"]["output"]; updatedAt: Scalars["DateTime"]["output"];
@@ -2959,6 +2968,9 @@ export type PoolHall = {
export type PoolHallCamera = { export type PoolHallCamera = {
__typename?: "PoolHallCamera"; __typename?: "PoolHallCamera";
allowsPrivateVideos: Scalars["Boolean"]["output"];
claimTermsText?: Maybe<Scalars["String"]["output"]>;
claimTermsVersion?: Maybe<Scalars["Int"]["output"]>;
createdAt: Scalars["DateTime"]["output"]; createdAt: Scalars["DateTime"]["output"];
id: Scalars["ID"]["output"]; id: Scalars["ID"]["output"];
inUse: Scalars["Boolean"]["output"]; inUse: Scalars["Boolean"]["output"];
@@ -3715,6 +3727,7 @@ export type StripeSubscriptionOptionsGql = {
__typename?: "StripeSubscriptionOptionsGQL"; __typename?: "StripeSubscriptionOptionsGQL";
appleIap: AppleIapSubscriptionOptionsGql; appleIap: AppleIapSubscriptionOptionsGql;
products: Array<StripeProductGql>; products: Array<StripeProductGql>;
tierOptions: Array<SubscriptionTierPurchaseOptionGql>;
trialPeriodDays?: Maybe<Scalars["Int"]["output"]>; trialPeriodDays?: Maybe<Scalars["Int"]["output"]>;
}; };
@@ -3729,6 +3742,22 @@ export enum StripeSubscriptionStatusEnum {
Unpaid = "UNPAID", Unpaid = "UNPAID",
} }
export type SubscriptionTierPurchaseOptionGql = {
__typename?: "SubscriptionTierPurchaseOptionGQL";
appleProductId?: Maybe<Scalars["String"]["output"]>;
billingInterval: Scalars["String"]["output"];
currency?: Maybe<Scalars["String"]["output"]>;
isAvailable: Scalars["Boolean"]["output"];
isConfigured: Scalars["Boolean"]["output"];
platform: Scalars["String"]["output"];
recurringIntervalCount?: Maybe<Scalars["Int"]["output"]>;
stripePriceId?: Maybe<Scalars["String"]["output"]>;
stripeProductId?: Maybe<Scalars["String"]["output"]>;
tierDisplayName: Scalars["String"]["output"];
tierName: Scalars["String"]["output"];
unitAmount?: Maybe<Scalars["Int"]["output"]>;
};
export type SuccessfulAdd = { export type SuccessfulAdd = {
__typename?: "SuccessfulAdd"; __typename?: "SuccessfulAdd";
value: Scalars["Boolean"]["output"]; value: Scalars["Boolean"]["output"];
@@ -3821,6 +3850,8 @@ export type UpdateAnnotationInputGql = {
}; };
export type UpdatePoolHallCameraInput = { export type UpdatePoolHallCameraInput = {
allowsPrivateVideos?: InputMaybe<Scalars["Boolean"]["input"]>;
claimTermsText?: InputMaybe<Scalars["String"]["input"]>;
id: Scalars["ID"]["input"]; id: Scalars["ID"]["input"];
name?: InputMaybe<Scalars["String"]["input"]>; name?: InputMaybe<Scalars["String"]["input"]>;
pocketSize?: InputMaybe<Scalars["Float"]["input"]>; pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
@@ -3831,10 +3862,12 @@ export type UpdatePoolHallCameraInput = {
export type UpdatePoolHallInput = { export type UpdatePoolHallInput = {
address?: InputMaybe<Scalars["String"]["input"]>; address?: InputMaybe<Scalars["String"]["input"]>;
city?: InputMaybe<Scalars["String"]["input"]>;
id: Scalars["ID"]["input"]; id: Scalars["ID"]["input"];
latitude?: InputMaybe<Scalars["Float"]["input"]>; latitude?: InputMaybe<Scalars["Float"]["input"]>;
longitude?: InputMaybe<Scalars["Float"]["input"]>; longitude?: InputMaybe<Scalars["Float"]["input"]>;
name?: InputMaybe<Scalars["String"]["input"]>; name?: InputMaybe<Scalars["String"]["input"]>;
state?: InputMaybe<Scalars["String"]["input"]>;
status?: InputMaybe<Scalars["String"]["input"]>; status?: InputMaybe<Scalars["String"]["input"]>;
timezone?: InputMaybe<Scalars["String"]["input"]>; timezone?: InputMaybe<Scalars["String"]["input"]>;
}; };
@@ -4576,6 +4609,8 @@ export type GetDeployedConfigQuery = {
minimumAllowedAppVersion: string; minimumAllowedAppVersion: string;
subscriptionGatingEnabled: boolean; subscriptionGatingEnabled: boolean;
quotaEnforcementEnabled: boolean; quotaEnforcementEnabled: boolean;
storageLimitEnforcementEnabled: boolean;
capabilityEnforcementEnabled: boolean;
defaultAndroidRecordingFormat: StreamSegmentTypeEnum; defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
bucketUrl: string; bucketUrl: string;
bannerMessages: Array<{ bannerMessages: Array<{
@@ -4653,6 +4688,7 @@ export type GetFeedQuery = {
streamSegmentType: StreamSegmentTypeEnum; streamSegmentType: StreamSegmentTypeEnum;
isCompleted: boolean; isCompleted: boolean;
lastSegmentUploadedAt?: any | null; lastSegmentUploadedAt?: any | null;
clientUploadStatus?: ClientUploadStatusEnum | null;
} | null; } | null;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
@@ -4766,6 +4802,7 @@ export type VideoCardFieldsFragment = {
streamSegmentType: StreamSegmentTypeEnum; streamSegmentType: StreamSegmentTypeEnum;
isCompleted: boolean; isCompleted: boolean;
lastSegmentUploadedAt?: any | null; lastSegmentUploadedAt?: any | null;
clientUploadStatus?: ClientUploadStatusEnum | null;
} | null; } | null;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
@@ -4912,6 +4949,7 @@ export type GetVideoFeedQuery = {
streamSegmentType: StreamSegmentTypeEnum; streamSegmentType: StreamSegmentTypeEnum;
isCompleted: boolean; isCompleted: boolean;
lastSegmentUploadedAt?: any | null; lastSegmentUploadedAt?: any | null;
clientUploadStatus?: ClientUploadStatusEnum | null;
} | null; } | null;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
@@ -5441,6 +5479,21 @@ export type GetAvailableSubscriptionOptionsQuery = {
proMonthlyProductId?: string | null; proMonthlyProductId?: string | null;
productIds: Array<string>; productIds: Array<string>;
}; };
tierOptions: Array<{
__typename?: "SubscriptionTierPurchaseOptionGQL";
tierName: string;
tierDisplayName: string;
billingInterval: string;
platform: string;
isConfigured: boolean;
isAvailable: boolean;
stripeProductId?: string | null;
stripePriceId?: string | null;
appleProductId?: string | null;
currency?: string | null;
unitAmount?: number | null;
recurringIntervalCount?: number | null;
}>;
}; };
}; };
@@ -5465,6 +5518,45 @@ export type GetSubscriptionStatusQuery = {
}; };
}; };
export type GetResolvedTierQueryVariables = Exact<{ [key: string]: never }>;
export type GetResolvedTierQuery = {
__typename?: "Query";
getResolvedTier: {
__typename?: "ResolvedTierGQL";
tierName: string;
tierDisplayName: string;
hasActiveSubscription: boolean;
entitlementSource?: EntitlementSourceTypeEnum | null;
entitlementStatus?: string | null;
entitlementStartsAt?: any | null;
entitlementEndsAt?: any | null;
capabilities: Array<string>;
};
};
export type GetStorageStatusQueryVariables = Exact<{ [key: string]: never }>;
export type GetStorageStatusQuery = {
__typename?: "Query";
getStorageStatus?: {
__typename?: "StorageStatusGQL";
userId: number;
tierName: string;
retainedStorageUsedBytes: any;
retainedStorageLimitBytes?: any | null;
isUnlimited: boolean;
policyConfigured: boolean;
remainingStorageBytes?: any | null;
storageUsageRatio?: number | null;
isNearLimit: boolean;
isOverLimit: boolean;
usageCalculated: boolean;
usageSource?: string | null;
lastCalculatedAt?: any | null;
} | null;
};
export type GetAppleAppAccountTokenQueryVariables = Exact<{ export type GetAppleAppAccountTokenQueryVariables = Exact<{
[key: string]: never; [key: string]: never;
}>; }>;
@@ -5534,6 +5626,8 @@ export type PoolHallFieldsFragment = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5552,6 +5646,9 @@ export type PoolHallCameraFieldsFragment = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5569,6 +5666,9 @@ export type PoolHallCameraWithHallFieldsFragment = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5579,6 +5679,8 @@ export type PoolHallCameraWithHallFieldsFragment = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5602,6 +5704,9 @@ export type PoolHallCameraStreamCredentialsFieldsFragment = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5612,6 +5717,8 @@ export type PoolHallCameraStreamCredentialsFieldsFragment = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5633,6 +5740,7 @@ export type CameraClaimSessionFieldsFragment = {
detectedAt?: any | null; detectedAt?: any | null;
failedAt?: any | null; failedAt?: any | null;
failureReason?: string | null; failureReason?: string | null;
agreedTermsVersion?: number | null;
createdAt: any; createdAt: any;
updatedAt: any; updatedAt: any;
camera: { camera: {
@@ -5645,6 +5753,9 @@ export type CameraClaimSessionFieldsFragment = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5655,6 +5766,8 @@ export type CameraClaimSessionFieldsFragment = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5689,6 +5802,9 @@ export type CameraLeaseFieldsFragment = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5699,6 +5815,8 @@ export type CameraLeaseFieldsFragment = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5718,6 +5836,8 @@ export type GetPoolHallsQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5738,6 +5858,8 @@ export type GetClaimablePoolHallsQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5763,6 +5885,9 @@ export type GetPoolHallCamerasQuery = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5773,6 +5898,8 @@ export type GetPoolHallCamerasQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5799,6 +5926,9 @@ export type GetClaimableCamerasQuery = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5809,6 +5939,8 @@ export type GetClaimableCamerasQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5836,6 +5968,7 @@ export type GetCameraClaimSessionQuery = {
detectedAt?: any | null; detectedAt?: any | null;
failedAt?: any | null; failedAt?: any | null;
failureReason?: string | null; failureReason?: string | null;
agreedTermsVersion?: number | null;
createdAt: any; createdAt: any;
updatedAt: any; updatedAt: any;
camera: { camera: {
@@ -5848,6 +5981,9 @@ export type GetCameraClaimSessionQuery = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5858,6 +5994,8 @@ export type GetCameraClaimSessionQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5899,6 +6037,9 @@ export type GetActiveCameraLeaseQuery = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5909,6 +6050,8 @@ export type GetActiveCameraLeaseQuery = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5931,6 +6074,8 @@ export type CreatePoolHallMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5951,6 +6096,8 @@ export type UpdatePoolHallMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -5980,6 +6127,9 @@ export type CreatePoolHallCameraMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -5990,6 +6140,8 @@ export type CreatePoolHallCameraMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6017,6 +6169,9 @@ export type UpdatePoolHallCameraMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6027,6 +6182,8 @@ export type UpdatePoolHallCameraMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6057,6 +6214,9 @@ export type RotatePoolHallCameraStreamKeyMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6067,6 +6227,8 @@ export type RotatePoolHallCameraStreamKeyMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6083,6 +6245,8 @@ export type CreateCameraClaimSessionMutationVariables = Exact<{
durationMinutes?: InputMaybe<Scalars["Int"]["input"]>; durationMinutes?: InputMaybe<Scalars["Int"]["input"]>;
videoName?: InputMaybe<Scalars["String"]["input"]>; videoName?: InputMaybe<Scalars["String"]["input"]>;
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>; videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
agreedTermsVersion?: InputMaybe<Scalars["Int"]["input"]>;
tags?: InputMaybe<Array<VideoTagInput> | VideoTagInput>;
}>; }>;
export type CreateCameraClaimSessionMutation = { export type CreateCameraClaimSessionMutation = {
@@ -6098,6 +6262,7 @@ export type CreateCameraClaimSessionMutation = {
detectedAt?: any | null; detectedAt?: any | null;
failedAt?: any | null; failedAt?: any | null;
failureReason?: string | null; failureReason?: string | null;
agreedTermsVersion?: number | null;
createdAt: any; createdAt: any;
updatedAt: any; updatedAt: any;
camera: { camera: {
@@ -6110,6 +6275,9 @@ export type CreateCameraClaimSessionMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6120,6 +6288,8 @@ export type CreateCameraClaimSessionMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6148,6 +6318,7 @@ export type CancelCameraClaimSessionMutation = {
detectedAt?: any | null; detectedAt?: any | null;
failedAt?: any | null; failedAt?: any | null;
failureReason?: string | null; failureReason?: string | null;
agreedTermsVersion?: number | null;
createdAt: any; createdAt: any;
updatedAt: any; updatedAt: any;
camera: { camera: {
@@ -6160,6 +6331,9 @@ export type CancelCameraClaimSessionMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6170,6 +6344,8 @@ export type CancelCameraClaimSessionMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6211,6 +6387,9 @@ export type EndCameraLeaseMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6221,6 +6400,8 @@ export type EndCameraLeaseMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -6263,6 +6444,9 @@ export type ExtendCameraLeaseMutation = {
status: string; status: string;
tableSize?: number | null; tableSize?: number | null;
pocketSize?: number | null; pocketSize?: number | null;
allowsPrivateVideos: boolean;
claimTermsText?: string | null;
claimTermsVersion?: number | null;
inUse: boolean; inUse: boolean;
lastPublishedAt?: any | null; lastPublishedAt?: any | null;
lastUnpublishedAt?: any | null; lastUnpublishedAt?: any | null;
@@ -6273,6 +6457,8 @@ export type ExtendCameraLeaseMutation = {
id: string; id: string;
name: string; name: string;
address?: string | null; address?: string | null;
city?: string | null;
state?: string | null;
latitude?: number | null; latitude?: number | null;
longitude?: number | null; longitude?: number | null;
timezone?: string | null; timezone?: string | null;
@@ -7697,6 +7883,7 @@ export type GetVideoCardQuery = {
streamSegmentType: StreamSegmentTypeEnum; streamSegmentType: StreamSegmentTypeEnum;
isCompleted: boolean; isCompleted: boolean;
lastSegmentUploadedAt?: any | null; lastSegmentUploadedAt?: any | null;
clientUploadStatus?: ClientUploadStatusEnum | null;
} | null; } | null;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
@@ -8312,7 +8499,14 @@ export type GetUploadLinkMutation = {
}; };
} }
| { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number } | { __typename?: "SegmentAlreadyUploadedErr"; segmentId: number }
| { __typename?: "StorageLimitExceededErr" } | {
__typename?: "StorageLimitExceededErr";
reason: string;
tierName: string;
retainedStorageUsedBytes: any;
retainedStorageLimitBytes?: any | null;
remainingStorageBytes?: any | null;
}
| { __typename?: "TooManyInitUploadsErr" } | { __typename?: "TooManyInitUploadsErr" }
| { __typename?: "TooManyProfileImageUploadsErr" }; | { __typename?: "TooManyProfileImageUploadsErr" };
} }
@@ -8516,6 +8710,7 @@ export const VideoCardFieldsFragmentDoc = gql`
streamSegmentType streamSegmentType
isCompleted isCompleted
lastSegmentUploadedAt lastSegmentUploadedAt
clientUploadStatus
} }
tableSize tableSize
pocketSize pocketSize
@@ -8603,6 +8798,9 @@ export const PoolHallCameraFieldsFragmentDoc = gql`
status status
tableSize tableSize
pocketSize pocketSize
allowsPrivateVideos
claimTermsText
claimTermsVersion
inUse inUse
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
@@ -8615,6 +8813,8 @@ export const PoolHallFieldsFragmentDoc = gql`
id id
name name
address address
city
state
latitude latitude
longitude longitude
timezone timezone
@@ -8654,6 +8854,7 @@ export const CameraClaimSessionFieldsFragmentDoc = gql`
detectedAt detectedAt
failedAt failedAt
failureReason failureReason
agreedTermsVersion
createdAt createdAt
updatedAt updatedAt
camera { camera {
@@ -10435,6 +10636,8 @@ export const GetDeployedConfigDocument = gql`
minimumAllowedAppVersion minimumAllowedAppVersion
subscriptionGatingEnabled subscriptionGatingEnabled
quotaEnforcementEnabled quotaEnforcementEnabled
storageLimitEnforcementEnabled
capabilityEnforcementEnabled
bannerMessages { bannerMessages {
color color
dismissible dismissible
@@ -12133,6 +12336,20 @@ export const GetAvailableSubscriptionOptionsDocument = gql`
proMonthlyProductId proMonthlyProductId
productIds productIds
} }
tierOptions {
tierName
tierDisplayName
billingInterval
platform
isConfigured
isAvailable
stripeProductId
stripePriceId
appleProductId
currency
unitAmount
recurringIntervalCount
}
} }
} }
`; `;
@@ -12282,6 +12499,169 @@ export type GetSubscriptionStatusQueryResult = Apollo.QueryResult<
GetSubscriptionStatusQuery, GetSubscriptionStatusQuery,
GetSubscriptionStatusQueryVariables GetSubscriptionStatusQueryVariables
>; >;
export const GetResolvedTierDocument = gql`
query GetResolvedTier {
getResolvedTier {
tierName
tierDisplayName
hasActiveSubscription
entitlementSource
entitlementStatus
entitlementStartsAt
entitlementEndsAt
capabilities
}
}
`;
/**
* __useGetResolvedTierQuery__
*
* To run a query within a React component, call `useGetResolvedTierQuery` and pass it any options that fit your needs.
* When your component renders, `useGetResolvedTierQuery` returns an object from Apollo Client that contains loading, error, and data properties
* you can use to render your UI.
*
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
*
* @example
* const { data, loading, error } = useGetResolvedTierQuery({
* variables: {
* },
* });
*/
export function useGetResolvedTierQuery(
baseOptions?: Apollo.QueryHookOptions<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useQuery<GetResolvedTierQuery, GetResolvedTierQueryVariables>(
GetResolvedTierDocument,
options,
);
}
export function useGetResolvedTierLazyQuery(
baseOptions?: Apollo.LazyQueryHookOptions<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useLazyQuery<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>(GetResolvedTierDocument, options);
}
export function useGetResolvedTierSuspenseQuery(
baseOptions?: Apollo.SuspenseQueryHookOptions<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useSuspenseQuery<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>(GetResolvedTierDocument, options);
}
export type GetResolvedTierQueryHookResult = ReturnType<
typeof useGetResolvedTierQuery
>;
export type GetResolvedTierLazyQueryHookResult = ReturnType<
typeof useGetResolvedTierLazyQuery
>;
export type GetResolvedTierSuspenseQueryHookResult = ReturnType<
typeof useGetResolvedTierSuspenseQuery
>;
export type GetResolvedTierQueryResult = Apollo.QueryResult<
GetResolvedTierQuery,
GetResolvedTierQueryVariables
>;
export const GetStorageStatusDocument = gql`
query GetStorageStatus {
getStorageStatus {
userId
tierName
retainedStorageUsedBytes
retainedStorageLimitBytes
isUnlimited
policyConfigured
remainingStorageBytes
storageUsageRatio
isNearLimit
isOverLimit
usageCalculated
usageSource
lastCalculatedAt
}
}
`;
/**
* __useGetStorageStatusQuery__
*
* To run a query within a React component, call `useGetStorageStatusQuery` and pass it any options that fit your needs.
* When your component renders, `useGetStorageStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties
* you can use to render your UI.
*
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
*
* @example
* const { data, loading, error } = useGetStorageStatusQuery({
* variables: {
* },
* });
*/
export function useGetStorageStatusQuery(
baseOptions?: Apollo.QueryHookOptions<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useQuery<GetStorageStatusQuery, GetStorageStatusQueryVariables>(
GetStorageStatusDocument,
options,
);
}
export function useGetStorageStatusLazyQuery(
baseOptions?: Apollo.LazyQueryHookOptions<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useLazyQuery<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>(GetStorageStatusDocument, options);
}
export function useGetStorageStatusSuspenseQuery(
baseOptions?: Apollo.SuspenseQueryHookOptions<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>,
) {
const options = { ...defaultOptions, ...baseOptions };
return Apollo.useSuspenseQuery<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>(GetStorageStatusDocument, options);
}
export type GetStorageStatusQueryHookResult = ReturnType<
typeof useGetStorageStatusQuery
>;
export type GetStorageStatusLazyQueryHookResult = ReturnType<
typeof useGetStorageStatusLazyQuery
>;
export type GetStorageStatusSuspenseQueryHookResult = ReturnType<
typeof useGetStorageStatusSuspenseQuery
>;
export type GetStorageStatusQueryResult = Apollo.QueryResult<
GetStorageStatusQuery,
GetStorageStatusQueryVariables
>;
export const GetAppleAppAccountTokenDocument = gql` export const GetAppleAppAccountTokenDocument = gql`
query GetAppleAppAccountToken { query GetAppleAppAccountToken {
getAppleAppAccountToken getAppleAppAccountToken
@@ -13235,12 +13615,16 @@ export const CreateCameraClaimSessionDocument = gql`
$durationMinutes: Int $durationMinutes: Int
$videoName: String $videoName: String
$videoPrivate: Boolean $videoPrivate: Boolean
$agreedTermsVersion: Int
$tags: [VideoTagInput!]
) { ) {
createCameraClaimSession( createCameraClaimSession(
cameraId: $cameraId cameraId: $cameraId
durationMinutes: $durationMinutes durationMinutes: $durationMinutes
videoName: $videoName videoName: $videoName
videoPrivate: $videoPrivate videoPrivate: $videoPrivate
agreedTermsVersion: $agreedTermsVersion
tags: $tags
) { ) {
...CameraClaimSessionFields ...CameraClaimSessionFields
} }
@@ -13269,6 +13653,8 @@ export type CreateCameraClaimSessionMutationFn = Apollo.MutationFunction<
* durationMinutes: // value for 'durationMinutes' * durationMinutes: // value for 'durationMinutes'
* videoName: // value for 'videoName' * videoName: // value for 'videoName'
* videoPrivate: // value for 'videoPrivate' * videoPrivate: // value for 'videoPrivate'
* agreedTermsVersion: // value for 'agreedTermsVersion'
* tags: // value for 'tags'
* }, * },
* }); * });
*/ */
@@ -17873,6 +18259,13 @@ export const GetUploadLinkDocument = gql`
} }
} }
} }
... on StorageLimitExceededErr {
reason
tierName
retainedStorageUsedBytes
retainedStorageLimitBytes
remainingStorageBytes
}
} }
} }
} }

View File

@@ -7,6 +7,8 @@ query getDeployedConfig {
minimumAllowedAppVersion minimumAllowedAppVersion
subscriptionGatingEnabled subscriptionGatingEnabled
quotaEnforcementEnabled quotaEnforcementEnabled
storageLimitEnforcementEnabled
capabilityEnforcementEnabled
bannerMessages { bannerMessages {
color color
dismissible dismissible

View File

@@ -44,6 +44,7 @@ fragment VideoCardFields on VideoGQL {
streamSegmentType streamSegmentType
isCompleted isCompleted
lastSegmentUploadedAt lastSegmentUploadedAt
clientUploadStatus
} }
tableSize tableSize
pocketSize pocketSize

View File

@@ -49,6 +49,20 @@ query GetAvailableSubscriptionOptions {
proMonthlyProductId proMonthlyProductId
productIds productIds
} }
tierOptions {
tierName
tierDisplayName
billingInterval
platform
isConfigured
isAvailable
stripeProductId
stripePriceId
appleProductId
currency
unitAmount
recurringIntervalCount
}
} }
} }
@@ -67,6 +81,37 @@ query GetSubscriptionStatus {
} }
} }
query GetResolvedTier {
getResolvedTier {
tierName
tierDisplayName
hasActiveSubscription
entitlementSource
entitlementStatus
entitlementStartsAt
entitlementEndsAt
capabilities
}
}
query GetStorageStatus {
getStorageStatus {
userId
tierName
retainedStorageUsedBytes
retainedStorageLimitBytes
isUnlimited
policyConfigured
remainingStorageBytes
storageUsageRatio
isNearLimit
isOverLimit
usageCalculated
usageSource
lastCalculatedAt
}
}
query GetAppleAppAccountToken { query GetAppleAppAccountToken {
getAppleAppAccountToken getAppleAppAccountToken
} }

View File

@@ -2,6 +2,8 @@ fragment PoolHallFields on PoolHall {
id id
name name
address address
city
state
latitude latitude
longitude longitude
timezone timezone
@@ -19,6 +21,9 @@ fragment PoolHallCameraFields on PoolHallCamera {
status status
tableSize tableSize
pocketSize pocketSize
allowsPrivateVideos
claimTermsText
claimTermsVersion
inUse inUse
lastPublishedAt lastPublishedAt
lastUnpublishedAt lastUnpublishedAt
@@ -51,6 +56,7 @@ fragment CameraClaimSessionFields on CameraClaimSession {
detectedAt detectedAt
failedAt failedAt
failureReason failureReason
agreedTermsVersion
createdAt createdAt
updatedAt updatedAt
camera { camera {
@@ -147,12 +153,16 @@ mutation CreateCameraClaimSession(
$durationMinutes: Int $durationMinutes: Int
$videoName: String $videoName: String
$videoPrivate: Boolean $videoPrivate: Boolean
$agreedTermsVersion: Int
$tags: [VideoTagInput!]
) { ) {
createCameraClaimSession( createCameraClaimSession(
cameraId: $cameraId cameraId: $cameraId
durationMinutes: $durationMinutes durationMinutes: $durationMinutes
videoName: $videoName videoName: $videoName
videoPrivate: $videoPrivate videoPrivate: $videoPrivate
agreedTermsVersion: $agreedTermsVersion
tags: $tags
) { ) {
...CameraClaimSessionFields ...CameraClaimSessionFields
} }

View File

@@ -37,6 +37,13 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
} }
} }
} }
... on StorageLimitExceededErr {
reason
tierName
retainedStorageUsedBytes
retainedStorageLimitBytes
remainingStorageBytes
}
} }
} }
} }

View File

@@ -892,6 +892,8 @@ type PoolHall {
id: ID! id: ID!
name: String! name: String!
address: String address: String
city: String
state: String
latitude: Float latitude: Float
longitude: Float longitude: Float
timezone: String timezone: String
@@ -909,6 +911,9 @@ type PoolHallCamera {
status: String! status: String!
tableSize: Float tableSize: Float
pocketSize: Float pocketSize: Float
allowsPrivateVideos: Boolean!
claimTermsText: String
claimTermsVersion: Int
lastPublishedAt: DateTime lastPublishedAt: DateTime
lastUnpublishedAt: DateTime lastUnpublishedAt: DateTime
createdAt: DateTime! createdAt: DateTime!
@@ -927,6 +932,7 @@ type CameraClaimSession {
detectedAt: DateTime detectedAt: DateTime
failedAt: DateTime failedAt: DateTime
failureReason: String failureReason: String
agreedTermsVersion: Int
createdAt: DateTime! createdAt: DateTime!
updatedAt: DateTime! updatedAt: DateTime!
camera: PoolHallCamera! camera: PoolHallCamera!
@@ -1162,6 +1168,7 @@ type StripeSubscriptionOptionsGQL {
products: [StripeProductGQL!]! products: [StripeProductGQL!]!
trialPeriodDays: Int trialPeriodDays: Int
appleIap: AppleIapSubscriptionOptionsGQL! appleIap: AppleIapSubscriptionOptionsGQL!
tierOptions: [SubscriptionTierPurchaseOptionGQL!]!
} }
type StripeProductGQL { type StripeProductGQL {
@@ -1188,6 +1195,21 @@ type AppleIapSubscriptionOptionsGQL {
productIds: [String!]! productIds: [String!]!
} }
type SubscriptionTierPurchaseOptionGQL {
tierName: String!
tierDisplayName: String!
billingInterval: String!
platform: String!
isConfigured: Boolean!
isAvailable: Boolean!
stripeProductId: String
stripePriceId: String
appleProductId: String
currency: String
unitAmount: Int
recurringIntervalCount: Int
}
type UserSubscriptionStatusGQL { type UserSubscriptionStatusGQL {
hasActiveSubscription: Boolean! hasActiveSubscription: Boolean!
entitlementSource: EntitlementSourceTypeEnum entitlementSource: EntitlementSourceTypeEnum
@@ -1409,6 +1431,8 @@ type Mutation {
durationMinutes: Int = null durationMinutes: Int = null
videoName: String = null videoName: String = null
videoPrivate: Boolean = null videoPrivate: Boolean = null
agreedTermsVersion: Int = null
tags: [VideoTagInput!] = null
): CameraClaimSession! ): CameraClaimSession!
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession! cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
endCameraLease(leaseId: ID!): CameraLease! endCameraLease(leaseId: ID!): CameraLease!
@@ -1495,6 +1519,8 @@ enum ReportReasonEnum {
input CreatePoolHallInput { input CreatePoolHallInput {
name: String! name: String!
address: String = null address: String = null
city: String = null
state: String = null
latitude: Float = null latitude: Float = null
longitude: Float = null longitude: Float = null
timezone: String = null timezone: String = null
@@ -1504,6 +1530,8 @@ input UpdatePoolHallInput {
id: ID! id: ID!
name: String = null name: String = null
address: String = null address: String = null
city: String = null
state: String = null
latitude: Float = null latitude: Float = null
longitude: Float = null longitude: Float = null
timezone: String = null timezone: String = null
@@ -1523,6 +1551,8 @@ input CreatePoolHallCameraInput {
streamPath: String = null streamPath: String = null
tableSize: Float = null tableSize: Float = null
pocketSize: Float = null pocketSize: Float = null
allowsPrivateVideos: Boolean = null
claimTermsText: String = null
} }
input UpdatePoolHallCameraInput { input UpdatePoolHallCameraInput {
@@ -1532,6 +1562,8 @@ input UpdatePoolHallCameraInput {
status: String = null status: String = null
tableSize: Float = null tableSize: Float = null
pocketSize: Float = null pocketSize: Float = null
allowsPrivateVideos: Boolean = null
claimTermsText: String = null
} }
input FinalizePlayerAssignmentsInput { input FinalizePlayerAssignmentsInput {