diff --git a/src/index.tsx b/src/index.tsx index e87f888..1e55234 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2239,6 +2239,7 @@ export type Mutation = { getHlsInitUploadLink: GetUploadLinkReturn; getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; + retireTags: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2308,6 +2309,10 @@ export type MutationGetUploadLinkArgs = { videoId: Scalars["Int"]["input"]; }; +export type MutationRetireTagsArgs = { + tagIds: Array; +}; + export type MutationSetLoggerLevelArgs = { level: Scalars["String"]["input"]; path: Scalars["String"]["input"]; @@ -2525,6 +2530,10 @@ export type QueryGetUserRelationshipsMatchingArgs = { userId: Scalars["Int"]["input"]; }; +export type QueryGetUserTagsArgs = { + includeRetiredTags?: InputMaybe; +}; + export type QueryGetUserVideosArgs = { after?: InputMaybe; filters?: InputMaybe; @@ -2817,6 +2826,7 @@ export type TagGql = { __typename?: "TagGQL"; id: Scalars["Int"]["output"]; name: Scalars["String"]["output"]; + retired: Scalars["Boolean"]["output"]; tagClasses?: Maybe>; }; diff --git a/src/schema.gql b/src/schema.gql index 1054d3d..7628db6 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -60,7 +60,7 @@ type Query { after: String = null filters: VideoFilterInput = null ): VideoHistoryGQL! - getUserTags: [TagGQL!]! + getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]! getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL! getVideos(videoIds: [Int!]!): [VideoGQL!]! getFeedVideos( @@ -719,6 +719,7 @@ type TagGQL { id: Int! name: String! tagClasses: [TagClassGQL!] + retired: Boolean! } type TagClassGQL { @@ -785,6 +786,7 @@ type Mutation { editUser(input: EditUserInputGQL!): UserGQL! followUser(followedUserId: Int!): UserGQL! unfollowUser(followedUserId: Int!): UserGQL! + retireTags(tagIds: [Int!]!): Boolean! findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL createUploadStream( videoMetadata: VideoMetadataInput!