Compare commits
No commits in common. "358eee2e163636340396504215a277c64cf571b1" and "82af3a3ce9d7758f66c9e339f6edee1809b7a73d" have entirely different histories.
358eee2e16
...
82af3a3ce9
@ -2492,7 +2492,6 @@ export type Query = {
|
|||||||
__typename?: "Query";
|
__typename?: "Query";
|
||||||
doesUsernameExist: Scalars["Boolean"]["output"];
|
doesUsernameExist: Scalars["Boolean"]["output"];
|
||||||
getAggregatedShotMetrics: Array<AggregateResultGql>;
|
getAggregatedShotMetrics: Array<AggregateResultGql>;
|
||||||
getAvailableSubscriptionOptions: StripeSubscriptionOptionsGql;
|
|
||||||
getBucketSet?: Maybe<BucketSetGql>;
|
getBucketSet?: Maybe<BucketSetGql>;
|
||||||
getDeployedConfig: DeployedConfigGql;
|
getDeployedConfig: DeployedConfigGql;
|
||||||
getFeedVideos: VideoHistoryGql;
|
getFeedVideos: VideoHistoryGql;
|
||||||
@ -2918,31 +2917,6 @@ export enum StreamSegmentTypeEnum {
|
|||||||
RbChunkedMp4 = "RB_CHUNKED_MP4",
|
RbChunkedMp4 = "RB_CHUNKED_MP4",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type StripePriceGql = {
|
|
||||||
__typename?: "StripePriceGQL";
|
|
||||||
active: Scalars["Boolean"]["output"];
|
|
||||||
currency: Scalars["String"]["output"];
|
|
||||||
id: Scalars["String"]["output"];
|
|
||||||
recurringInterval?: Maybe<Scalars["String"]["output"]>;
|
|
||||||
recurringIntervalCount?: Maybe<Scalars["Int"]["output"]>;
|
|
||||||
type: Scalars["String"]["output"];
|
|
||||||
unitAmount?: Maybe<Scalars["Int"]["output"]>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type StripeProductGql = {
|
|
||||||
__typename?: "StripeProductGQL";
|
|
||||||
active: Scalars["Boolean"]["output"];
|
|
||||||
description?: Maybe<Scalars["String"]["output"]>;
|
|
||||||
id: Scalars["String"]["output"];
|
|
||||||
name: Scalars["String"]["output"];
|
|
||||||
prices: Array<StripePriceGql>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type StripeSubscriptionOptionsGql = {
|
|
||||||
__typename?: "StripeSubscriptionOptionsGQL";
|
|
||||||
products: Array<StripeProductGql>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SuccessfulAdd = {
|
export type SuccessfulAdd = {
|
||||||
__typename?: "SuccessfulAdd";
|
__typename?: "SuccessfulAdd";
|
||||||
value: Scalars["Boolean"]["output"];
|
value: Scalars["Boolean"]["output"];
|
||||||
|
@ -81,7 +81,6 @@ type Query {
|
|||||||
limit: Int = 100
|
limit: Int = 100
|
||||||
after: String = null
|
after: String = null
|
||||||
): UserRelationshipsResult!
|
): UserRelationshipsResult!
|
||||||
getAvailableSubscriptionOptions: StripeSubscriptionOptionsGQL!
|
|
||||||
getPlayTime(userId: Int!, filters: VideoFilterInput = null): UserPlayTimeGQL!
|
getPlayTime(userId: Int!, filters: VideoFilterInput = null): UserPlayTimeGQL!
|
||||||
getUserVideos(
|
getUserVideos(
|
||||||
userId: Int = null
|
userId: Int = null
|
||||||
@ -824,28 +823,6 @@ type UserRelationship {
|
|||||||
toUserIsFollowedBy: Boolean!
|
toUserIsFollowedBy: Boolean!
|
||||||
}
|
}
|
||||||
|
|
||||||
type StripeSubscriptionOptionsGQL {
|
|
||||||
products: [StripeProductGQL!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
type StripeProductGQL {
|
|
||||||
id: String!
|
|
||||||
name: String!
|
|
||||||
description: String
|
|
||||||
active: Boolean!
|
|
||||||
prices: [StripePriceGQL!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
type StripePriceGQL {
|
|
||||||
id: String!
|
|
||||||
currency: String!
|
|
||||||
unitAmount: Int
|
|
||||||
recurringInterval: String
|
|
||||||
recurringIntervalCount: Int
|
|
||||||
type: String!
|
|
||||||
active: Boolean!
|
|
||||||
}
|
|
||||||
|
|
||||||
type UserPlayTimeGQL {
|
type UserPlayTimeGQL {
|
||||||
totalSeconds: Float!
|
totalSeconds: Float!
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user