Compare commits
9 Commits
ivan/remov
...
492178455c
| Author | SHA1 | Date | |
|---|---|---|---|
| 492178455c | |||
| 55a2edb042 | |||
| 31cf492889 | |||
| de7dc675a1 | |||
| f8f00d9c24 | |||
| dc207bce55 | |||
| 2e5b8d2563 | |||
| 46bcd08ae1 | |||
| bd383b1d55 |
@@ -8,7 +8,7 @@ packages = [{include = "rbproto"}]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.10,<=3.13"
|
||||
protobuf = "*"
|
||||
protobuf = "^4.25.3"
|
||||
|
||||
|
||||
[build-system]
|
||||
|
||||
@@ -86,6 +86,22 @@ export type BankFeaturesGql = {
|
||||
wallsHit: Array<WallTypeEnum>;
|
||||
};
|
||||
|
||||
export type BannerGql = {
|
||||
__typename?: "BannerGQL";
|
||||
color: Scalars["String"]["output"];
|
||||
dismissible: Scalars["Boolean"]["output"];
|
||||
id: Scalars["Int"]["output"];
|
||||
kind: BannerKindEnum;
|
||||
message: Scalars["String"]["output"];
|
||||
priority: Scalars["Int"]["output"];
|
||||
};
|
||||
|
||||
export enum BannerKindEnum {
|
||||
Error = "ERROR",
|
||||
Info = "INFO",
|
||||
Warning = "WARNING",
|
||||
}
|
||||
|
||||
export type BoundingBoxGql = {
|
||||
__typename?: "BoundingBoxGQL";
|
||||
height: Scalars["Float"]["output"];
|
||||
@@ -190,6 +206,7 @@ export type DatetimeRangeAggregationInput = {
|
||||
export type DeployedConfigGql = {
|
||||
__typename?: "DeployedConfigGQL";
|
||||
allowNewUsers: Scalars["Boolean"]["output"];
|
||||
bannerMessages: Array<BannerGql>;
|
||||
devMode: Scalars["Boolean"]["output"];
|
||||
environment: Scalars["String"]["output"];
|
||||
firebase: Scalars["Boolean"]["output"];
|
||||
@@ -2494,6 +2511,7 @@ export type Query = {
|
||||
getUserTags: Array<TagGql>;
|
||||
getUserVideos: VideoHistoryGql;
|
||||
getUsernames: Array<Scalars["String"]["output"]>;
|
||||
getUsersMatching: Array<UserGql>;
|
||||
getVideo: VideoGql;
|
||||
getVideoMakePercentageIntervals: Array<MakePercentageIntervalGql>;
|
||||
getVideos: Array<VideoGql>;
|
||||
@@ -2616,6 +2634,12 @@ export type QueryGetUsernamesArgs = {
|
||||
matchString?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type QueryGetUsersMatchingArgs = {
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
matchString?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type QueryGetVideoArgs = {
|
||||
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
||||
videoId: Scalars["Int"]["input"];
|
||||
@@ -3252,6 +3276,15 @@ export type GetDeployedConfigQuery = {
|
||||
environment: string;
|
||||
firebase: boolean;
|
||||
minimumAllowedAppVersion: string;
|
||||
bannerMessages: Array<{
|
||||
__typename?: "BannerGQL";
|
||||
color: string;
|
||||
dismissible: boolean;
|
||||
id: number;
|
||||
kind: BannerKindEnum;
|
||||
message: string;
|
||||
priority: number;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5967,6 +6000,14 @@ export const GetDeployedConfigDocument = gql`
|
||||
environment
|
||||
firebase
|
||||
minimumAllowedAppVersion
|
||||
bannerMessages {
|
||||
color
|
||||
dismissible
|
||||
id
|
||||
kind
|
||||
message
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -5,5 +5,13 @@ query getDeployedConfig {
|
||||
environment
|
||||
firebase
|
||||
minimumAllowedAppVersion
|
||||
bannerMessages {
|
||||
color
|
||||
dismissible
|
||||
id
|
||||
kind
|
||||
message
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,6 +70,11 @@ type Query {
|
||||
limit: Int = null
|
||||
after: String = null
|
||||
): [String!]!
|
||||
getUsersMatching(
|
||||
matchString: String = null
|
||||
limit: Int = null
|
||||
after: String = null
|
||||
): [UserGQL!]!
|
||||
getUserRelationshipsMatching(
|
||||
userId: Int!
|
||||
matchString: String = null
|
||||
@@ -291,6 +296,22 @@ type DeployedConfigGQL {
|
||||
devMode: Boolean!
|
||||
environment: String!
|
||||
minimumAllowedAppVersion: String!
|
||||
bannerMessages: [BannerGQL!]!
|
||||
}
|
||||
|
||||
type BannerGQL {
|
||||
id: Int!
|
||||
message: String!
|
||||
color: String!
|
||||
kind: BannerKindEnum!
|
||||
dismissible: Boolean!
|
||||
priority: Int!
|
||||
}
|
||||
|
||||
enum BannerKindEnum {
|
||||
INFO
|
||||
WARNING
|
||||
ERROR
|
||||
}
|
||||
|
||||
type VideoHistoryGQL {
|
||||
|
||||
Reference in New Issue
Block a user