Compare commits
6 Commits
dean/add-d
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| d636c298f8 | |||
| 681320c62d | |||
| 49f409f60b | |||
| e7fc6c147d | |||
| 10c3f6de53 | |||
| b477590137 |
@@ -2853,6 +2853,7 @@ export type Query = {
|
||||
getOrderedShots: GetShotsResult;
|
||||
getPlayTime: UserPlayTimeGql;
|
||||
getQuotaStatus: QuotaStatusGql;
|
||||
getResolvedTier: ResolvedTierGql;
|
||||
getRuns: GetRunsResult;
|
||||
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
|
||||
getShots: Array<ShotGql>;
|
||||
@@ -3158,6 +3159,18 @@ export type RequestedMedalsGql = {
|
||||
totalMakes10000?: Maybe<MedalGql>;
|
||||
};
|
||||
|
||||
export type ResolvedTierGql = {
|
||||
__typename?: "ResolvedTierGQL";
|
||||
capabilities: Array<Scalars["String"]["output"]>;
|
||||
entitlementEndsAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
entitlementSource?: Maybe<EntitlementSourceTypeEnum>;
|
||||
entitlementStartsAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
entitlementStatus?: Maybe<Scalars["String"]["output"]>;
|
||||
hasActiveSubscription: Scalars["Boolean"]["output"];
|
||||
tierDisplayName: Scalars["String"]["output"];
|
||||
tierName: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type RuleSet = {
|
||||
__typename?: "RuleSet";
|
||||
createdAt: Scalars["DateTime"]["output"];
|
||||
|
||||
@@ -108,6 +108,7 @@ type Query {
|
||||
): UserRelationshipsResult!
|
||||
getAvailableSubscriptionOptions: StripeSubscriptionOptionsGQL!
|
||||
getUserSubscriptionStatus: UserSubscriptionStatusGQL!
|
||||
getResolvedTier: ResolvedTierGQL!
|
||||
getAppleAppAccountToken: String!
|
||||
getQuotaStatus: QuotaStatusGQL!
|
||||
getPlayTime(userId: Int!, filters: VideoFilterInput = null): UserPlayTimeGQL!
|
||||
@@ -1071,6 +1072,17 @@ enum StripeSubscriptionStatusEnum {
|
||||
PAUSED
|
||||
}
|
||||
|
||||
type ResolvedTierGQL {
|
||||
tierName: String!
|
||||
tierDisplayName: String!
|
||||
hasActiveSubscription: Boolean!
|
||||
entitlementSource: EntitlementSourceTypeEnum
|
||||
entitlementStatus: String
|
||||
entitlementStartsAt: DateTime
|
||||
entitlementEndsAt: DateTime
|
||||
capabilities: [String!]!
|
||||
}
|
||||
|
||||
type QuotaStatusGQL {
|
||||
tierName: String!
|
||||
periodStart: DateTime!
|
||||
|
||||
Reference in New Issue
Block a user