|
|
|
|
@@ -28,7 +28,7 @@ type Query {
|
|
|
|
|
getLongestRunsLeaderboard(
|
|
|
|
|
interval: TimeInterval = null
|
|
|
|
|
when: DateTime = null
|
|
|
|
|
limit: Int! = 50
|
|
|
|
|
limit: Int! = 100
|
|
|
|
|
requiredTags: [String!] = null
|
|
|
|
|
): RunLeaderboardGQL!
|
|
|
|
|
getMakesLeaderboard(
|
|
|
|
|
@@ -42,12 +42,6 @@ type Query {
|
|
|
|
|
filters: NotificationFilters = null
|
|
|
|
|
): NotificationConnection!
|
|
|
|
|
unreadNotificationCount: Int!
|
|
|
|
|
poolHalls: [PoolHall!]!
|
|
|
|
|
claimablePoolHalls: [PoolHall!]!
|
|
|
|
|
poolHallCameras(poolHallId: ID!): [PoolHallCamera!]!
|
|
|
|
|
claimableCameras(poolHallId: ID!): [PoolHallCamera!]!
|
|
|
|
|
cameraClaimSession(id: ID!): CameraClaimSession
|
|
|
|
|
activeCameraLease: CameraLease
|
|
|
|
|
getRuns(
|
|
|
|
|
filterInput: RunFilterInput!
|
|
|
|
|
runIds: [Int!] = null
|
|
|
|
|
@@ -55,7 +49,6 @@ type Query {
|
|
|
|
|
limit: Int! = 500
|
|
|
|
|
countRespectsLimit: Boolean! = false
|
|
|
|
|
): GetRunsResult!
|
|
|
|
|
videoPlayerClusters(videoId: Int!): [PlayerClusterGQL!]!
|
|
|
|
|
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
|
|
|
|
getTableState(
|
|
|
|
|
b64Image: String!
|
|
|
|
|
@@ -68,6 +61,8 @@ type Query {
|
|
|
|
|
shotsOrdering: GetShotsOrdering = null
|
|
|
|
|
limit: Int! = 500
|
|
|
|
|
countRespectsLimit: Boolean! = false
|
|
|
|
|
processingId: Int = null
|
|
|
|
|
includeExcluded: Boolean! = false
|
|
|
|
|
): GetShotsResult!
|
|
|
|
|
getShotsWithMetadata(
|
|
|
|
|
filterInput: FilterInput!
|
|
|
|
|
@@ -75,12 +70,16 @@ type Query {
|
|
|
|
|
shotsPagination: GetShotsPagination = null
|
|
|
|
|
limit: Int! = 500
|
|
|
|
|
countRespectsLimit: Boolean! = false
|
|
|
|
|
processingId: Int = null
|
|
|
|
|
includeExcluded: Boolean! = false
|
|
|
|
|
): GetShotsResult!
|
|
|
|
|
getShots(
|
|
|
|
|
filterInput: FilterInput!
|
|
|
|
|
shotsPagination: GetShotsPagination = null
|
|
|
|
|
limit: Int! = 500
|
|
|
|
|
countRespectsLimit: Boolean! = false
|
|
|
|
|
processingId: Int = null
|
|
|
|
|
includeExcluded: Boolean! = false
|
|
|
|
|
): [ShotGQL!]!
|
|
|
|
|
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
|
|
|
|
|
getUser(userId: Int!): UserGQL
|
|
|
|
|
@@ -113,9 +112,13 @@ type Query {
|
|
|
|
|
filters: VideoFilterInput = null
|
|
|
|
|
): VideoHistoryGQL!
|
|
|
|
|
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
|
|
|
|
getGameTypeTagMetrics(input: GameTypeTagMetricsInput!): [GameTypeTagMetric!]!
|
|
|
|
|
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
|
|
|
|
|
getVideos(videoIds: [Int!]!): [VideoGQL!]!
|
|
|
|
|
getVideoProcessings(videoId: Int!): [VideoProcessingGQL!]!
|
|
|
|
|
assessVideoProcessing(
|
|
|
|
|
processingId: Int!
|
|
|
|
|
groundTruthProcessingId: Int = null
|
|
|
|
|
): VideoProcessingAssessmentGQL!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AggregateResultGQL {
|
|
|
|
|
@@ -217,6 +220,7 @@ input FilterInput @oneOf {
|
|
|
|
|
intendedPocketType: [PocketEnum!]
|
|
|
|
|
shotDirection: [ShotDirectionEnum!]
|
|
|
|
|
videoId: [Int!]
|
|
|
|
|
processingId: [Int!]
|
|
|
|
|
userId: [Int!]
|
|
|
|
|
runId: [Int!]
|
|
|
|
|
username: [String!]
|
|
|
|
|
@@ -412,7 +416,6 @@ type VideoGQL {
|
|
|
|
|
currentProcessing: VideoProcessingGQL
|
|
|
|
|
reactions: [ReactionGQL!]!
|
|
|
|
|
comments: [CommentGQL!]!
|
|
|
|
|
playerSummaries: [PlayerSummaryGQL!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ShotGQL {
|
|
|
|
|
@@ -672,21 +675,6 @@ type CommentGQL {
|
|
|
|
|
replies: [CommentGQL!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PlayerSummaryGQL {
|
|
|
|
|
clusterId: Int!
|
|
|
|
|
userId: Int
|
|
|
|
|
username: String
|
|
|
|
|
profileImageUri: String
|
|
|
|
|
representativeFullFrameUrl: String
|
|
|
|
|
totalShots: Int!
|
|
|
|
|
totalShotsMade: Int!
|
|
|
|
|
makePercentage: Float!
|
|
|
|
|
score: Int
|
|
|
|
|
longestRun: Int!
|
|
|
|
|
averageDifficulty: Float
|
|
|
|
|
averageTimeBetweenShots: Float
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeployedConfigGQL {
|
|
|
|
|
allowNewUsers: Boolean!
|
|
|
|
|
firebase: Boolean!
|
|
|
|
|
@@ -694,7 +682,6 @@ type DeployedConfigGQL {
|
|
|
|
|
environment: String!
|
|
|
|
|
minimumAllowedAppVersion: String!
|
|
|
|
|
subscriptionGatingEnabled: Boolean!
|
|
|
|
|
quotaEnforcementEnabled: Boolean!
|
|
|
|
|
bannerMessages: [BannerGQL!]!
|
|
|
|
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
|
|
|
|
bucketUrl: String!
|
|
|
|
|
@@ -846,63 +833,6 @@ input NotificationFilters {
|
|
|
|
|
notificationTypes: [NotificationTypeEnum!] = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PoolHall {
|
|
|
|
|
id: ID!
|
|
|
|
|
name: String!
|
|
|
|
|
address: String
|
|
|
|
|
latitude: Float
|
|
|
|
|
longitude: Float
|
|
|
|
|
timezone: String
|
|
|
|
|
status: String!
|
|
|
|
|
createdAt: DateTime!
|
|
|
|
|
updatedAt: DateTime!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PoolHallCamera {
|
|
|
|
|
id: ID!
|
|
|
|
|
poolHallId: ID!
|
|
|
|
|
name: String!
|
|
|
|
|
tableLabel: String
|
|
|
|
|
streamPath: String!
|
|
|
|
|
status: String!
|
|
|
|
|
lastPublishedAt: DateTime
|
|
|
|
|
lastUnpublishedAt: DateTime
|
|
|
|
|
createdAt: DateTime!
|
|
|
|
|
updatedAt: DateTime!
|
|
|
|
|
poolHall: PoolHall!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CameraClaimSession {
|
|
|
|
|
id: ID!
|
|
|
|
|
cameraId: ID!
|
|
|
|
|
userId: ID!
|
|
|
|
|
challengeCode: String!
|
|
|
|
|
status: String!
|
|
|
|
|
expiresAt: DateTime!
|
|
|
|
|
detectedAt: DateTime
|
|
|
|
|
failedAt: DateTime
|
|
|
|
|
failureReason: String
|
|
|
|
|
createdAt: DateTime!
|
|
|
|
|
updatedAt: DateTime!
|
|
|
|
|
camera: PoolHallCamera!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CameraLease {
|
|
|
|
|
id: ID!
|
|
|
|
|
cameraId: ID!
|
|
|
|
|
claimSessionId: ID
|
|
|
|
|
userId: ID!
|
|
|
|
|
videoId: ID
|
|
|
|
|
status: String!
|
|
|
|
|
startedAt: DateTime!
|
|
|
|
|
endedAt: DateTime
|
|
|
|
|
expiresAt: DateTime
|
|
|
|
|
endReason: String
|
|
|
|
|
createdAt: DateTime!
|
|
|
|
|
updatedAt: DateTime!
|
|
|
|
|
camera: PoolHallCamera!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetRunsResult {
|
|
|
|
|
runs: [RunGQL!]!
|
|
|
|
|
count: Int
|
|
|
|
|
@@ -941,30 +871,6 @@ input DatetimeOrdering {
|
|
|
|
|
startingAt: DateTime = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PlayerClusterGQL {
|
|
|
|
|
videoId: Int!
|
|
|
|
|
clusterId: Int!
|
|
|
|
|
nShots: Int!
|
|
|
|
|
userId: Int
|
|
|
|
|
username: String
|
|
|
|
|
profileImageUri: String
|
|
|
|
|
confirmed: Boolean!
|
|
|
|
|
score: Int
|
|
|
|
|
shots: [PlayerClusterShotGQL!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PlayerClusterShotGQL {
|
|
|
|
|
shotId: Int!
|
|
|
|
|
bboxX1: Int!
|
|
|
|
|
bboxY1: Int!
|
|
|
|
|
bboxX2: Int!
|
|
|
|
|
bboxY2: Int!
|
|
|
|
|
confidence: Float!
|
|
|
|
|
isConfirmed: Boolean!
|
|
|
|
|
cropUrl: String
|
|
|
|
|
fullFrameUrl: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type TableStateGQL {
|
|
|
|
|
identifierToPosition: [[Float!]!]!
|
|
|
|
|
homography: HomographyInfoGQL
|
|
|
|
|
@@ -1045,7 +951,6 @@ type UserRelationship {
|
|
|
|
|
|
|
|
|
|
type StripeSubscriptionOptionsGQL {
|
|
|
|
|
products: [StripeProductGQL!]!
|
|
|
|
|
trialPeriodDays: Int
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type StripeProductGQL {
|
|
|
|
|
@@ -1068,9 +973,6 @@ type StripePriceGQL {
|
|
|
|
|
|
|
|
|
|
type UserSubscriptionStatusGQL {
|
|
|
|
|
hasActiveSubscription: Boolean!
|
|
|
|
|
entitlementSource: EntitlementSourceTypeEnum
|
|
|
|
|
entitlementStartsAt: DateTime
|
|
|
|
|
entitlementEndsAt: DateTime
|
|
|
|
|
subscriptionStatus: StripeSubscriptionStatusEnum
|
|
|
|
|
currentPeriodStart: DateTime
|
|
|
|
|
currentPeriodEnd: DateTime
|
|
|
|
|
@@ -1079,13 +981,6 @@ type UserSubscriptionStatusGQL {
|
|
|
|
|
stripeSubscriptionId: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum EntitlementSourceTypeEnum {
|
|
|
|
|
ADMIN
|
|
|
|
|
MANUAL
|
|
|
|
|
STRIPE
|
|
|
|
|
ALPHA_LEGACY
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum StripeSubscriptionStatusEnum {
|
|
|
|
|
INCOMPLETE
|
|
|
|
|
INCOMPLETE_EXPIRED
|
|
|
|
|
@@ -1104,19 +999,6 @@ type QuotaStatusGQL {
|
|
|
|
|
durationUsedSeconds: Float!
|
|
|
|
|
durationLimitSeconds: Int
|
|
|
|
|
maxVideoDurationSeconds: Int
|
|
|
|
|
importQuotaBuckets: [QuotaBucketStatusGQL!]!
|
|
|
|
|
recordingQuotaBuckets: [QuotaBucketStatusGQL!]!
|
|
|
|
|
durationRemainingSeconds: Float
|
|
|
|
|
canUpload: Boolean!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type QuotaBucketStatusGQL {
|
|
|
|
|
quotaKey: String!
|
|
|
|
|
appliesToUploadKind: String!
|
|
|
|
|
periodStart: DateTime!
|
|
|
|
|
periodEnd: DateTime!
|
|
|
|
|
durationUsedSeconds: Float!
|
|
|
|
|
durationLimitSeconds: Int
|
|
|
|
|
durationRemainingSeconds: Float
|
|
|
|
|
canUpload: Boolean!
|
|
|
|
|
}
|
|
|
|
|
@@ -1137,25 +1019,6 @@ type TagClassGQL {
|
|
|
|
|
name: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GameTypeTagMetric {
|
|
|
|
|
tagName: String!
|
|
|
|
|
tagLabel: String!
|
|
|
|
|
tableSize: Float
|
|
|
|
|
shotCount: Int!
|
|
|
|
|
madeShots: Int!
|
|
|
|
|
makeRate: Float!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input GameTypeTagMetricsInput {
|
|
|
|
|
userId: Int!
|
|
|
|
|
createdAt: DateRangeFilter = null
|
|
|
|
|
maxTags: Int = null
|
|
|
|
|
groupByTableSize: Boolean! = true
|
|
|
|
|
includeUnknown: Boolean! = true
|
|
|
|
|
tagClass: String = "game_type"
|
|
|
|
|
includePrivate: IncludePrivateEnum! = MINE
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
|
|
|
|
"""
|
|
|
|
|
@@ -1164,6 +1027,37 @@ scalar JSON
|
|
|
|
|
url: "https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type VideoProcessingAssessmentGQL {
|
|
|
|
|
processingId: Int!
|
|
|
|
|
groundTruthProcessingId: Int!
|
|
|
|
|
sourceShotCount: Int!
|
|
|
|
|
sourceFalsePositiveCount: Int!
|
|
|
|
|
groundTruthShotCount: Int!
|
|
|
|
|
groundTruthPositiveShotCount: Int!
|
|
|
|
|
groundTruthFalsePositiveCount: Int!
|
|
|
|
|
matchedGroundTruthShots: Int!
|
|
|
|
|
missedGroundTruthShots: Int!
|
|
|
|
|
unexpectedShots: Int!
|
|
|
|
|
correctlyFlaggedFalsePositives: Int!
|
|
|
|
|
unflaggedFalsePositives: Int!
|
|
|
|
|
extraFlaggedFalsePositives: Int!
|
|
|
|
|
groundTruthShotsFlaggedFalsePositive: Int!
|
|
|
|
|
makeDisagreements: Int!
|
|
|
|
|
matchedGroundTruthPairs: [VideoProcessingAssessmentShotPairGQL!]!
|
|
|
|
|
missedGroundTruthShotIds: [Int!]!
|
|
|
|
|
unexpectedShotIds: [Int!]!
|
|
|
|
|
correctlyFlaggedFalsePositivePairs: [VideoProcessingAssessmentShotPairGQL!]!
|
|
|
|
|
unflaggedFalsePositivePairs: [VideoProcessingAssessmentShotPairGQL!]!
|
|
|
|
|
extraFlaggedFalsePositiveShotIds: [Int!]!
|
|
|
|
|
groundTruthShotsFlaggedFalsePositivePairs: [VideoProcessingAssessmentShotPairGQL!]!
|
|
|
|
|
makeDisagreementPairs: [VideoProcessingAssessmentShotPairGQL!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type VideoProcessingAssessmentShotPairGQL {
|
|
|
|
|
processingShotId: Int!
|
|
|
|
|
groundTruthShotId: Int!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Mutation {
|
|
|
|
|
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
|
|
|
|
createRuleSet(name: String!, description: String = null): RuleSet!
|
|
|
|
|
@@ -1212,18 +1106,6 @@ type Mutation {
|
|
|
|
|
markAllNotificationsAsRead: Boolean!
|
|
|
|
|
markNotificationsAsRead(notificationIds: [Int!]!): Boolean!
|
|
|
|
|
deleteNotification(notificationId: Int!): Boolean!
|
|
|
|
|
createPoolHall(input: CreatePoolHallInput!): PoolHall!
|
|
|
|
|
updatePoolHall(input: UpdatePoolHallInput!): PoolHall!
|
|
|
|
|
createPoolHallCamera(
|
|
|
|
|
input: CreatePoolHallCameraInput!
|
|
|
|
|
): PoolHallCameraStreamCredentials!
|
|
|
|
|
updatePoolHallCamera(input: UpdatePoolHallCameraInput!): PoolHallCamera!
|
|
|
|
|
rotatePoolHallCameraStreamKey(cameraId: ID!): PoolHallCameraStreamCredentials!
|
|
|
|
|
createCameraClaimSession(cameraId: ID!): CameraClaimSession!
|
|
|
|
|
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
|
|
|
|
|
finalizePlayerAssignments(
|
|
|
|
|
input: FinalizePlayerAssignmentsInput!
|
|
|
|
|
): [PlayerClusterGQL!]!
|
|
|
|
|
addAnnotationToShot(
|
|
|
|
|
shotId: Int!
|
|
|
|
|
annotationName: String!
|
|
|
|
|
@@ -1237,6 +1119,19 @@ type Mutation {
|
|
|
|
|
shotId: Int!
|
|
|
|
|
fieldsToEdit: EditableShotFieldInputGQL!
|
|
|
|
|
): EditShotReturn!
|
|
|
|
|
createGroundTruthShot(input: CreateGroundTruthShotInputGQL!): ShotGQL!
|
|
|
|
|
updateGroundTruthShotFrameRange(
|
|
|
|
|
shotId: Int!
|
|
|
|
|
startFrame: Int = null
|
|
|
|
|
endFrame: Int = null
|
|
|
|
|
notes: String = null
|
|
|
|
|
): ShotGQL!
|
|
|
|
|
splitGroundTruthShot(
|
|
|
|
|
shotId: Int!
|
|
|
|
|
splitFrame: Int!
|
|
|
|
|
notes: String = null
|
|
|
|
|
): SplitGroundTruthShotReturn!
|
|
|
|
|
deleteGroundTruthShot(shotId: Int!): DeleteGroundTruthShotReturn!
|
|
|
|
|
getProfileImageUploadLink(
|
|
|
|
|
fileExt: String = ".png"
|
|
|
|
|
): GetProfileUploadLinkReturn!
|
|
|
|
|
@@ -1248,16 +1143,7 @@ type Mutation {
|
|
|
|
|
ensureStripeCustomerExists: UserGQL!
|
|
|
|
|
deleteUser: Boolean!
|
|
|
|
|
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
|
|
|
|
createCustomerPortalSession: CreateCustomerPortalSessionResultGQL!
|
|
|
|
|
cancelSubscription: UserSubscriptionStatusGQL!
|
|
|
|
|
grantManualEntitlement(
|
|
|
|
|
userId: Int!
|
|
|
|
|
tierName: String! = "pro"
|
|
|
|
|
startsAt: DateTime = null
|
|
|
|
|
endsAt: DateTime = null
|
|
|
|
|
reason: String = null
|
|
|
|
|
): UserSubscriptionStatusGQL!
|
|
|
|
|
revokeManualEntitlement(userId: Int!): UserSubscriptionStatusGQL!
|
|
|
|
|
submitCancellationFeedback(
|
|
|
|
|
reasons: [CancellationReasonEnum!] = null
|
|
|
|
|
feedback: String = null
|
|
|
|
|
@@ -1268,6 +1154,11 @@ type Mutation {
|
|
|
|
|
videoMetadata: VideoMetadataInput!
|
|
|
|
|
expectedDurationSeconds: Float = null
|
|
|
|
|
): CreateUploadStreamReturn!
|
|
|
|
|
getOrCreateGroundTruthProcessing(
|
|
|
|
|
videoId: Int!
|
|
|
|
|
sourceProcessingId: Int = null
|
|
|
|
|
): VideoProcessingGQL!
|
|
|
|
|
promoteGroundTruthProcessing(processingId: Int!): VideoProcessingGQL!
|
|
|
|
|
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
|
|
|
|
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
|
|
|
|
setSegmentDuration(
|
|
|
|
|
@@ -1295,61 +1186,6 @@ enum ReportReasonEnum {
|
|
|
|
|
OTHER
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input CreatePoolHallInput {
|
|
|
|
|
name: String!
|
|
|
|
|
address: String = null
|
|
|
|
|
latitude: Float = null
|
|
|
|
|
longitude: Float = null
|
|
|
|
|
timezone: String = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input UpdatePoolHallInput {
|
|
|
|
|
id: ID!
|
|
|
|
|
name: String = null
|
|
|
|
|
address: String = null
|
|
|
|
|
latitude: Float = null
|
|
|
|
|
longitude: Float = null
|
|
|
|
|
timezone: String = null
|
|
|
|
|
status: String = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PoolHallCameraStreamCredentials {
|
|
|
|
|
camera: PoolHallCamera!
|
|
|
|
|
streamKey: String!
|
|
|
|
|
rtmpPath: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input CreatePoolHallCameraInput {
|
|
|
|
|
poolHallId: ID!
|
|
|
|
|
name: String!
|
|
|
|
|
tableLabel: String = null
|
|
|
|
|
streamPath: String = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input UpdatePoolHallCameraInput {
|
|
|
|
|
id: ID!
|
|
|
|
|
name: String = null
|
|
|
|
|
tableLabel: String = null
|
|
|
|
|
status: String = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input FinalizePlayerAssignmentsInput {
|
|
|
|
|
videoId: Int!
|
|
|
|
|
clusterAssignments: [ClusterAssignmentInput!]! = []
|
|
|
|
|
shotMoves: [ShotMoveInput!]! = []
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input ClusterAssignmentInput {
|
|
|
|
|
clusterId: Int!
|
|
|
|
|
userId: Int = null
|
|
|
|
|
score: Int = null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input ShotMoveInput {
|
|
|
|
|
shotId: Int!
|
|
|
|
|
newClusterId: Int!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AddShotAnnotationReturn {
|
|
|
|
|
value: SuccessfulAddAddShotAnnotationErrors!
|
|
|
|
|
}
|
|
|
|
|
@@ -1399,12 +1235,32 @@ input EditableShotFieldInputGQL {
|
|
|
|
|
shotDirection: ShotDirectionEnum
|
|
|
|
|
spinType: SpinTypeEnum
|
|
|
|
|
targetPocketAngleDirection: ShotDirectionEnum
|
|
|
|
|
intendedBallId: Int
|
|
|
|
|
intendedPocketId: PocketIdentifier
|
|
|
|
|
pathMetadataIndex: Int
|
|
|
|
|
make: Boolean
|
|
|
|
|
backcut: Boolean
|
|
|
|
|
excludeFromStats: Boolean
|
|
|
|
|
notes: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input CreateGroundTruthShotInputGQL {
|
|
|
|
|
processingId: Int!
|
|
|
|
|
startFrame: Int!
|
|
|
|
|
endFrame: Int!
|
|
|
|
|
make: Boolean
|
|
|
|
|
notes: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SplitGroundTruthShotReturn {
|
|
|
|
|
originalShot: ShotGQL!
|
|
|
|
|
createdShot: ShotGQL!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DeleteGroundTruthShotReturn {
|
|
|
|
|
deletedShotId: Int!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetProfileUploadLinkReturn {
|
|
|
|
|
value: UploadLinkGetProfileUploadLinkErrors!
|
|
|
|
|
}
|
|
|
|
|
@@ -1443,10 +1299,6 @@ type CreateSubscriptionResultGQL {
|
|
|
|
|
sessionId: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CreateCustomerPortalSessionResultGQL {
|
|
|
|
|
portalUrl: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum CancellationReasonEnum {
|
|
|
|
|
DONT_PLAY_ENOUGH
|
|
|
|
|
TOO_EXPENSIVE
|
|
|
|
|
|