Compare commits
1 Commits
77477d63db
...
loewy/add-
Author | SHA1 | Date | |
---|---|---|---|
b5a8e3eca7 |
@@ -217,7 +217,6 @@ export type DeployedConfigGql = {
|
||||
environment: Scalars["String"]["output"];
|
||||
firebase: Scalars["Boolean"]["output"];
|
||||
minimumAllowedAppVersion: Scalars["String"]["output"];
|
||||
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
||||
};
|
||||
|
||||
export type DoesNotOwnShotErr = {
|
||||
@@ -2233,6 +2232,15 @@ export type IntPoint2DInput = {
|
||||
y: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type IntRangeFilter = {
|
||||
greaterThan?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
greaterThanEqualTo?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
greaterThanInclusive?: Scalars["Boolean"]["input"];
|
||||
includeOnNone?: Scalars["Boolean"]["input"];
|
||||
lessThan?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
lessThanInclusive?: Scalars["Boolean"]["input"];
|
||||
};
|
||||
|
||||
export type MakePercentageIntervalGql = {
|
||||
__typename?: "MakePercentageIntervalGQL";
|
||||
elapsedTime: Scalars["Float"]["output"];
|
||||
@@ -3135,6 +3143,7 @@ export type VideoFilterInput = {
|
||||
createdAt?: InputMaybe<DateRangeFilter>;
|
||||
excludeVideosWithNoShots?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
reactionCount?: InputMaybe<IntRangeFilter>;
|
||||
requireCursorCompletion?: Scalars["Boolean"]["input"];
|
||||
};
|
||||
|
||||
|
@@ -297,7 +297,6 @@ type DeployedConfigGQL {
|
||||
devMode: Boolean!
|
||||
environment: String!
|
||||
minimumAllowedAppVersion: String!
|
||||
subscriptionGatingEnabled: Boolean!
|
||||
bannerMessages: [BannerGQL!]!
|
||||
}
|
||||
|
||||
@@ -638,6 +637,16 @@ input VideoFilterInput {
|
||||
requireCursorCompletion: Boolean! = true
|
||||
createdAt: DateRangeFilter = null
|
||||
excludeVideosWithNoShots: Boolean = null
|
||||
reactionCount: IntRangeFilter = null
|
||||
}
|
||||
|
||||
input IntRangeFilter {
|
||||
lessThan: Int = null
|
||||
greaterThanEqualTo: Int = null
|
||||
greaterThan: Int = null
|
||||
includeOnNone: Boolean! = false
|
||||
lessThanInclusive: Boolean! = false
|
||||
greaterThanInclusive: Boolean! = true
|
||||
}
|
||||
|
||||
input VideoFeedInputGQL @oneOf {
|
||||
|
Reference in New Issue
Block a user