From 007c08a497a81dced78827a5ab6e2100725bbf9b Mon Sep 17 00:00:00 2001 From: Cesare Naldi Date: Mon, 6 Jan 2025 13:40:45 +0100 Subject: [PATCH] feat: exposes PostStats and Post slug --- packages/graphql/schema.graphql | 738 +++++++++++++------------ packages/graphql/src/fragments/post.ts | 18 + packages/graphql/src/graphql-env.d.ts | 111 ++-- 3 files changed, 477 insertions(+), 390 deletions(-) diff --git a/packages/graphql/schema.graphql b/packages/graphql/schema.graphql index d0968ffc9..3b99eae74 100644 --- a/packages/graphql/schema.graphql +++ b/packages/graphql/schema.graphql @@ -1,18 +1,3 @@ -""" -The comparison operator to use. In case of boolean functions you can only use EQUAL or NOT_EQUAL -""" -enum AccessConditionComparison { - EQUAL - NOT_EQUAL - GREATER_THAN - GREATER_THAN_OR_EQUAL - LESS_THAN - LESS_THAN_OR_EQUAL -} - -"""AccessConditionType""" -union AccessConditionType = NftOwnershipCondition | Erc20OwnershipCondition | EoaOwnershipCondition | ProfileOwnershipCondition | FollowCondition | CollectCondition | AdvancedContractCondition - scalar AccessToken type Account { @@ -53,6 +38,16 @@ type AccountBlocked { blockedAt: DateTime! } +input AccountBlockedNotificationAttributes { + graph: EvmAddress + app: EvmAddress +} + +input AccountCreatedNotificationAttributes { + graph: EvmAddress + app: EvmAddress +} + type AccountFeedsStats { """The total number of posts.""" posts: Int! @@ -84,6 +79,13 @@ input AccountFeedsStatsRequest { forFeeds: [EvmAddress!]! = ["0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7"] } +input AccountFollowedNotificationAttributes { + follower: EvmAddress + followedAccount: EvmAddress + graph: EvmAddress + app: EvmAddress +} + type AccountGraphsFollowStats { """The total number of followers.""" followers: Int! @@ -125,6 +127,11 @@ type AccountManager { addedAt: DateTime! } +input AccountManagerAddedNotificationAttributes { + managedAccount: EvmAddress + manager: EvmAddress +} + input AccountManagerChallengeRequest { """ The App you intend to authenticate with. @@ -171,6 +178,16 @@ input AccountManagerPermissionsInput { canSetMetadataUri: Boolean! } +input AccountManagerRemovedNotificationAttributes { + managedAccount: EvmAddress + manager: EvmAddress +} + +input AccountManagerUpdatedNotificationAttributes { + managedAccount: EvmAddress + manager: EvmAddress +} + input AccountManagersRequest { """The page size.""" pageSize: PageSize! = FIFTY @@ -193,6 +210,14 @@ type AccountMention { replace: MentionReplace! } +input AccountMentionedNotificationAttributes { + author: EvmAddress + feed: EvmAddress + mentionedAccount: EvmAddress + mentionedUsername: UsernameValue + app: EvmAddress +} + type AccountMetadata { """ A bag of attributes that can be used to store any kind of metadata that is not currently @@ -246,6 +271,10 @@ input AccountOwnerChallengeRequest { owner: EvmAddress! } +input AccountOwnershipTransferredNotificationAttributes { + account: EvmAddress +} + type AccountPostReaction { account: Account! reactions: [PostReaction!]! @@ -257,6 +286,12 @@ enum AccountReportReason { OTHER } +input AccountReportedNotificationAttributes { + reportedAccount: EvmAddress + reporter: EvmAddress + app: EvmAddress +} + input AccountRequest { """The account address.""" address: EvmAddress @@ -290,11 +325,38 @@ input AccountStatsRequest { forGraphs: [EvmAddress!]! = ["0x9e7085a6cc3A02F6026817997cE44B26Ba4Df557"] } +input AccountUnblockedNotificationAttributes { + graph: EvmAddress + app: EvmAddress +} + +input AccountUnfollowedNotificationAttributes { + unfollower: EvmAddress + unfollowedAccount: EvmAddress + graph: EvmAddress + app: EvmAddress +} + +input AccountUsernameAssignedNotificationAttributes { + namespace: EvmAddress + account: EvmAddress +} + +input AccountUsernameCreatedNotificationAttributes { + namespace: EvmAddress + account: EvmAddress +} + input AccountUsernameRequest { """The namespace to get account assigned username""" namespace: EvmAddress! = "0x6Cc71E78e25eBF6A2525CadC1fc628B42AE4138f" } +input AccountUsernameUnassignedNotificationAttributes { + namespace: EvmAddress + previousAccount: EvmAddress +} + input AccountsAvailableRequest { """The account to get managed by.""" managedBy: EvmAddress! @@ -472,36 +534,6 @@ input AdminsForRequest { cursor: Cursor } -type AdvancedContractCondition { - """ - The contract ABI. Has to be in human readable single string format containing the signature of the function you want to call. See https://docs.ethers.org/v5/api/utils/abi/formats/#abi-formats--human-readable-abi for more info - """ - abi: String! - - """ - The comparison operator to use. In case of boolean functions you can only use EQUAL or - NOT_EQUAL - """ - comparison: AccessConditionComparison! - contract: NetworkAddress! - - """The name of the function you want to call""" - functionName: String! - - """ - The parameters to pass to the function. Must be exactly matching the function arguments. - You *must* pass in the `:userAddress` parameter to represent the decrypter address. Any - array or tuple arguments, must be stringified JSON arrays. - """ - params: [String!]! - type: String! - - """The comparison value. Accepts 'true', 'false' or a number""" - value: AdvancedContractConditionValue! -} - -scalar AdvancedContractConditionValue - type Amount { asset: Asset! @@ -526,31 +558,7 @@ input AmountInput { value: BigDecimal! } -"""AccessConditionCriteriaItem""" -union AnyAccessCondition = BooleanAndCondition | BooleanOrCondition | CollectCondition | AdvancedContractCondition | EoaOwnershipCondition | Erc20OwnershipCondition | FollowCondition | NftOwnershipCondition | ProfileOwnershipCondition - -""" -AnyMedia - -
JSON schema - -```json -{ -"anyOf": [ -{ -"$ref": "#/$defs/MediaAudio" -}, -{ -"$ref": "#/$defs/MediaImage" -}, -{ -"$ref": "#/$defs/MediaVideo" -} -] -} -``` -
-""" +"""AnyMedia""" union AnyMedia = MediaAudio | MediaImage | MediaVideo union AnyPost = Post | Repost @@ -614,7 +622,7 @@ type AppMetadata { tagline: String """The platforms supported by the app.""" - platforms: [AppMetadataLensPlatformsItem!]! + platforms: [AppPlatform!]! """The privacy policy for the app.""" privacyPolicy: URI @@ -626,7 +634,7 @@ type AppMetadata { url: URI! } -enum AppMetadataLensPlatformsItem { +enum AppPlatform { WEB IOS ANDROID @@ -759,11 +767,10 @@ type ArticleMetadata { their usage as arbitrary attributes will be discouraged. """ attributes: [MetadataAttribute!]! - content: Encryptable! + content: String! """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -803,7 +810,6 @@ type AudioMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -815,7 +821,7 @@ type AudioMetadata { """The optional audio title.""" title: String - content: Encryptable! + content: String! } type AuthenticatedSession { @@ -891,16 +897,6 @@ input BookmarkPostRequest { post: PostId! } -type BooleanAndCondition { - criteria: [AccessConditionType!]! - type: String! -} - -type BooleanOrCondition { - criteria: [AccessConditionType!]! - type: String! -} - type BooleanValue { optimistic: Boolean! onChain: Boolean! @@ -967,35 +963,27 @@ type CheckingInMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! """Where you're checking in from (free form text).""" - location: Encryptable! + location: String! """The main focus of the post.""" mainContentFocus: MainContentFocus! """The optional geographic position of the location.""" - position: Encryptable + position: GeoUri """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! + content: String! } input CollectActionInput { simpleCollectAction: SimpleCollectActionInput } -"""CollectCondition""" -type CollectCondition { - publicationId: LegacyPublicationId! - thisPublication: Boolean! - type: String! -} - type CommentNotification { id: GeneratedNotificationId! comment: Post! @@ -1159,6 +1147,24 @@ input CreateRepostRequest { post: PostId! } +input CreateSnsSubscriptionRequest { + """ + The webhook URL to send notifications to. It must be an HTTP or HTTPS URL that is + accessible by the Lens API and is owned by you as it will be used to confirm the + subscription. + """ + webhook: String! + + """ + The topics to subscribe to. You can subscribe to multiple topics at once. This cannot be + changed once the subscription is created. + """ + topics: [SnsTopicInput!]! + + """The app to optionally assign this subscription to.""" + app: EvmAddress +} + input CreateUnfollowRequest { """The account to unfollow.""" account: EvmAddress! @@ -1247,6 +1253,10 @@ type DeletePostResponse { union DeletePostResult = DeletePostResponse | SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail +input DeleteSnsSubscriptionRequest { + id: UUID! +} + input EditPostRequest { post: PostId! contentUri: URI! @@ -1362,8 +1372,7 @@ type EmbedMetadata { contentWarning: ContentWarning """The embed URL.""" - embed: Encryptable! - encryptedWith: EncryptionStrategy + embed: URI! id: MetadataId! locale: Locale! @@ -1372,14 +1381,21 @@ type EmbedMetadata { """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! + content: String! } union EnableSignlessResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail -scalar Encryptable - -union EncryptionStrategy = LitProtocolEncryptionStrategy +input EntityId @oneOf { + account: EvmAddress + graph: EvmAddress + feed: EvmAddress + usernameNamespace: EvmAddress + group: EvmAddress + post: PostId + app: EvmAddress + sponsorship: EvmAddress +} enum EntityType { ACCOUNT @@ -1392,12 +1408,6 @@ enum EntityType { SPONSORSHIP } -"""EoaOwnershipCondition""" -type EoaOwnershipCondition { - address: EvmAddress! - type: String! -} - type Erc20 { name: String! symbol: String! @@ -1405,13 +1415,6 @@ type Erc20 { contract: NetworkAddress! } -"""Erc20OwnershipCondition""" -type Erc20OwnershipCondition { - amount: Amount! - condition: AccessConditionComparison! - type: String! -} - type EventMetadata { """The address of the event.""" address: PhysicalAddress @@ -1428,14 +1431,13 @@ type EventMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy """The event end time (ISO 8601 `YYYY-MM-DDTHH:mm:ss.sssZ`).""" - endsAt: Encryptable! + endsAt: DateTime! id: MetadataId! """The links you want to include with it.""" - links: [Encryptable!]! + links: [URI!]! locale: Locale! """The location of the event.""" @@ -1445,22 +1447,22 @@ type EventMetadata { mainContentFocus: MainContentFocus! """The geographic position of the event.""" - position: Encryptable + position: GeoUri schedulingAdjustments: EventMetadataLensSchedulingAdjustments """The event start time (ISO 8601 `YYYY-MM-DDTHH:mm:ss.sssZ`).""" - startsAt: Encryptable! + startsAt: DateTime! """An arbitrary list of tags.""" tags: [Tag!] """The title of the event.""" title: String - content: Encryptable! + content: String! } type EventMetadataLensLocation { - physical: Encryptable + physical: String virtual: URI } @@ -2010,12 +2012,6 @@ type FinishedTransactionStatus { blockTimestamp: DateTime! } -"""FollowCondition""" -type FollowCondition { - follow: LegacyProfileId! - type: String! -} - type FollowNotification { id: GeneratedNotificationId! followers: [NotificationAccountFollow!]! @@ -2182,6 +2178,16 @@ input GenerateNewAppServerApiKeyRequest { scalar GeneratedNotificationId +scalar GeoUri + +input GetSnsSubscriptionsRequest { + """ + The app to get subscriptions for. If not provided, all subscriptions owned by the logged in + account will be returned. + """ + app: EvmAddress +} + type Graph { address: EvmAddress! createdAt: DateTime! @@ -2417,7 +2423,6 @@ type ImageMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! image: MediaImage! locale: Locale! @@ -2430,7 +2435,7 @@ type ImageMetadata { """The optional image title.""" title: String - content: Encryptable! + content: String! } type InvalidUsername { @@ -2445,6 +2450,9 @@ input IsFollowingMeRequest { graph: EvmAddress! } +"""A scalar that can represent any JSON value.""" +scalar JSON + input JoinGroupRequest { """The group you want to join""" group: EvmAddress! @@ -2490,8 +2498,6 @@ union LeaveGroupResult = LeaveGroupResponse | SponsoredTransactionRequest | Self scalar LegacyProfileId -scalar LegacyPublicationId - scalar LegacyRefreshToken type LengthUsernameNamespaceRule { @@ -2513,7 +2519,6 @@ type LinkMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -2521,17 +2526,11 @@ type LinkMetadata { mainContentFocus: MainContentFocus! """The sharing link url.""" - sharingLink: Encryptable! + sharingLink: URI! """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! -} - -type LitProtocolEncryptionStrategy { - accessCondition: TopLevelAccessCondition! - encryptedPaths: [String!]! - encryptionKey: String! + content: String! } type LivestreamMetadata { @@ -2549,21 +2548,20 @@ type LivestreamMetadata { The data cannot be changed so you can put in an API endpoint to know if it is still live or not for clients to be able to check. """ - checkLiveApi: Encryptable + checkLiveApi: URI """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy """The optional stream end time (ISO 8601 `YYYY-MM-DDTHH:mm:ss.sssZ`)""" - endsAt: Encryptable + endsAt: DateTime id: MetadataId! """ Some livestream platforms have the live url as a separate url. If not your case make sure `liveUrl` and `playbackUrl` are the same. """ - liveUrl: Encryptable! + liveUrl: URI! locale: Locale! """The main focus of the post.""" @@ -2573,17 +2571,17 @@ type LivestreamMetadata { Some livestream platforms have the playback url as a separate url. If not your case make sure `liveUrl` and `playbackUrl` are the same. """ - playbackUrl: Encryptable! + playbackUrl: URI! """The stream start time (ISO 8601 `YYYY-MM-DDTHH:mm:ss.sssZ`).""" - startsAt: Encryptable! + startsAt: DateTime! """An arbitrary list of tags.""" tags: [Tag!] """The livestream title.""" title: String - content: Encryptable! + content: String! } scalar Locale @@ -2722,149 +2720,42 @@ type MeResult { limit: SponsorshipAllowance! } -""" -MediaAudio - -
JSON schema - -```json -{ -"type": "object", -"required": [ -"item", -"type" -], -"properties": { -"artist": { -"description": "The name of the artist.", -"$ref": "#/$defs/EncryptableString" -}, -"attributes": { -"description": "A bag of attributes that can be used to store any kind of metadata that is not currently supported by the standard.", -"type": "array", -"items": { -"$ref": "#/$defs/MetadataAttribute" -}, -"minItems": 1 -}, -"cover": { -"$ref": "#/$defs/EncryptableUri" -}, -"credits": { -"description": "The credits for the audio.", -"$ref": "#/$defs/EncryptableString" -}, -"duration": { -"description": "How long the the audio is in seconds.", -"type": "integer", -"exclusiveMinimum": 0.0 -}, -"genre": { -"description": "The genre of the audio", -"$ref": "#/$defs/EncryptableString" -}, -"item": { -"$ref": "#/$defs/EncryptableUri" -}, -"kind": { -"description": "The type of audio.", -"type": "string", -"enum": [ -"MUSIC", -"PODCAST", -"AUDIOBOOK", -"VOICE_NOTE", -"SOUND", -"OTHER" -] -}, -"license": { -"description": "The license for the audio.", -"$ref": "#/$defs/MetadataLicenseType" -}, -"lyrics": { -"$ref": "#/$defs/EncryptableUri" -}, -"recordLabel": { -"description": "The record label for the audio.", -"$ref": "#/$defs/EncryptableString" -}, -"type": { -"description": "The mime type of the audio file.", -"type": "string", -"enum": [ -"audio/wav", -"audio/vnd.wave", -"audio/mpeg", -"audio/ogg", -"audio/mp4", -"audio/aac", -"audio/webm", -"audio/flac" -] -} -}, -"additionalProperties": false -} -``` -
-""" +"""MediaAudio""" type MediaAudio { """The name of the artist.""" - artist: Encryptable + artist: String """ A bag of attributes that can be used to store any kind of metadata that is not currently supported by the standard. """ attributes: [MetadataAttribute!]! - cover: Encryptable + cover: URI """The credits for the audio.""" - credits: Encryptable + credits: String """How long the the audio is in seconds.""" duration: Int """The genre of the audio""" - genre: Encryptable - item: Encryptable! + genre: String + item: URI! """The type of audio.""" kind: MediaAudioKind """The license for the audio.""" license: MetadataLicenseType - lyrics: Encryptable + lyrics: URI """The record label for the audio.""" - recordLabel: Encryptable + recordLabel: String """The mime type of the audio file.""" type: MediaAudioType! } -""" -The type of audio. - -
JSON schema - -```json -{ -"description": "The type of audio.", -"type": "string", -"enum": [ -"MUSIC", -"PODCAST", -"AUDIOBOOK", -"VOICE_NOTE", -"SOUND", -"OTHER" -] -} -``` -
-""" enum MediaAudioKind { MUSIC PODCAST @@ -2874,29 +2765,7 @@ enum MediaAudioKind { OTHER } -""" -The mime type of the audio file. - -
JSON schema - -```json -{ -"description": "The mime type of the audio file.", -"type": "string", -"enum": [ -"audio/wav", -"audio/vnd.wave", -"audio/mpeg", -"audio/ogg", -"audio/mp4", -"audio/aac", -"audio/webm", -"audio/flac" -] -} -``` -
-""" +"""The mime type of the audio file.""" enum MediaAudioType { AUDIO_WAV AUDIO_VND_WAVE @@ -2963,14 +2832,14 @@ MediaImage """ type MediaImage { """The alt tag for accessibility""" - altTag: Encryptable + altTag: String """ A bag of attributes that can be used to store any kind of metadata that is not currently supported by the standard. """ attributes: [MetadataAttribute!]! - item: Encryptable! + item: URI! """The license for the image""" license: MetadataLicenseType @@ -3015,6 +2884,10 @@ enum MediaImageType { X_MS_BMP } +input MediaSnapshotNotificationAttributes { + source: EntityId +} + """ MediaVideo @@ -3079,18 +2952,18 @@ MediaVideo """ type MediaVideo { """The alt tag for accessibility""" - altTag: Encryptable + altTag: String """ A bag of attributes that can be used to store any kind of metadata that is not currently supported by the standard. """ attributes: [MetadataAttribute!]! - cover: Encryptable + cover: URI """How long the the video is in seconds""" duration: Int - item: Encryptable! + item: URI! """The license for the video""" license: MetadataLicenseType @@ -3202,6 +3075,10 @@ enum MetadataLicenseType { TBNL_NC_ND_NPL_LEDGER } +input MetadataSnapshotNotificationAttributes { + source: EntityId +} + type MintMetadata { """The other attachments you want to include with it.""" attachments: [AnyMedia!]! @@ -3215,7 +3092,6 @@ type MintMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -3225,11 +3101,11 @@ type MintMetadata { """ The mint item it can be a URL of the known provider like opensea https://opensea.io/assets/ethereum/0xfaa2471e93bd1cee3b0ab381c242ada8e1d1a759/299 or https://zora.co/collect/0x9d90669665607f08005cae4a7098143f554c59ef/39626. The Lens API has an allow list of providers and if the domain does not match it will mark it as failed metadata """ - mintLink: Encryptable! + mintLink: URI! """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! + content: String! } input MlaccountRecommendationsRequest { @@ -3288,6 +3164,13 @@ type Mutation { """ addAppAuthorizationEndpoint(request: AddAppAuthorizationEndpointRequest!): Void! + """ + Remove an app authorization endpoint. + + You MUST be authenticated as a builder to use this mutation. + """ + removeAppAuthorizationEndpoint(request: RemoveAppAuthorizationEndpointRequest!): Void! + """ Add feeds to an app @@ -3631,6 +3514,13 @@ type Mutation { """ createGraph(request: CreateGraphRequest!): CreateGraphResult! + """ + Set metadata for a graph + + You MUST be authenticated to use this mutation. + """ + setGraphMetadata(request: SetGraphMetadataRequest!): SetGraphMetadataResult! + """ Create a new username namespace aka deploying a new username contract @@ -3661,6 +3551,13 @@ type Mutation { """ unassignUsernameFromAccount(request: UnassignUsernameFromAccountRequest!): UnassignUsernameToAccountResult! + """ + Set metadata for a namespace + + You MUST be authenticated to use this mutation. + """ + setNamespaceMetadata(request: SetNamespaceMetadataRequest!): SetNamespaceMetadataResult! + """ Add admins to a graph/app/sponsor/feed/username/group. @@ -3689,6 +3586,13 @@ type Mutation { """ createFeed(request: CreateFeedRequest!): CreateFeedResult! + """ + Set metadata for a feed + + You MUST be authenticated to use this mutation. + """ + setFeedMetadata(request: SetFeedMetadataRequest!): SetFeedMetadataResult! + """ Create a new group @@ -3709,6 +3613,15 @@ type Mutation { You MUST be authenticated as Account Owner or Account Manager to use this mutation. """ leaveGroup(request: LeaveGroupRequest!): LeaveGroupResult! + + """ + Set metadata for a group + + You MUST be authenticated to use this mutation. + """ + setGroupMetadata(request: SetGroupMetadataRequest!): SetGroupMetadataResult! + createSnsSubscriptions(request: CreateSnsSubscriptionRequest!): [SnsSubscription!]! + deleteSnsSubscription(request: DeleteSnsSubscriptionRequest!): Void! } input MuteRequest { @@ -3764,23 +3677,6 @@ type NetworkAddress { chainId: Int! } -enum NftContractType { - ERC_721 - ERC_1155 -} - -type NftOwnershipCondition { - contract: NetworkAddress! - contractType: NftContractType! - - """ - A list of token IDs you want to check ownership of. The list is optional for ERC721, you - MUST provide a list of token IDs for ERC1155. - """ - tokenIds: [String!]! - type: String! -} - """The existence of the transaction is not yet indexed. Keep trying.""" type NotIndexedYetStatus { reason: String! @@ -4048,29 +3944,30 @@ type PendingTransactionStatus { """PhysicalAddress""" type PhysicalAddress { """The country name component.""" - country: Encryptable! + country: String! """The full mailing address formatted for display.""" - formatted: Encryptable + formatted: String """The city or locality.""" - locality: Encryptable! + locality: String! """The zip or postal code.""" - postalCode: Encryptable + postalCode: String """The state or region.""" - region: Encryptable + region: String """ The street address including house number, street name, P.O. Box, apartment or unit number and extended multi-line address information. """ - streetAddress: Encryptable + streetAddress: String } type Post { id: PostId! + slug: PostId! author: Account! isEdited: Boolean! isDeleted: Boolean! @@ -4129,12 +4026,37 @@ input PostBookmarksRequest { cursor: Cursor } +input PostCreatedNotificationAttributes { + author: EvmAddress + parentPostId: PostId + postTypes: [PostType!] + feed: EvmAddress + app: EvmAddress +} + +input PostDeletedNotificationAttributes { + author: EvmAddress + parentPostId: PostId + postTypes: [PostType!] + feed: EvmAddress + app: EvmAddress +} + type PostEdit { metadata: PostMetadata! timestamp: DateTime! } +input PostEditedNotificationAttributes { + author: EvmAddress + parentPostId: PostId + postTypes: [PostType!] + feed: EvmAddress + app: EvmAddress +} + input PostEditsRequest { + """The post ID.""" post: PostId! pageSize: PageSize! = FIFTY cursor: Cursor @@ -4176,11 +4098,25 @@ type PostReaction { reactedAt: DateTime! } +input PostReactionAddedNotificationAttributes { + postId: PostId + reactingAccount: EvmAddress + reactionType: PostReactionType + app: EvmAddress +} + enum PostReactionOrderBy { DEFAULT ACCOUNT_SCORE } +input PostReactionRemovedNotificationAttributes { + postId: PostId + reactingAccount: EvmAddress + reactionType: PostReactionType + app: EvmAddress +} + type PostReactionStatus { postId: PostId! account: EvmAddress! @@ -4261,6 +4197,13 @@ enum PostReportReason { SOMETHING_ELSE } +input PostReportedNotificationAttributes { + author: EvmAddress + reporter: EvmAddress + feed: EvmAddress + app: EvmAddress +} + """You must provide either a txHash or a postId, not both.""" input PostRequest { """The post ID.""" @@ -4353,12 +4296,6 @@ input PostsRequest { cursor: Cursor } -"""ProfileOwnershipCondition""" -type ProfileOwnershipCondition { - profileId: LegacyProfileId! - type: String! -} - type Query { health: Boolean! @@ -4504,6 +4441,7 @@ type Query { You MUST be authenticated to use this query. """ notifications(request: NotificationRequest!): PaginatedNotificationResult! + getSnsSubscriptions(request: GetSnsSubscriptionsRequest!): [SnsSubscription!]! mlAccountRecommendations(request: MlaccountRecommendationsRequest!): PaginatedAccountsResult! mlPostsForYou(request: MlpostsForYouRequest!): PaginatedPostsForYouResult! mlPostsExplore(request: MlexplorePostsRequest!): PaginatedPostsResult @@ -4581,6 +4519,11 @@ input RemoveAdminsRequest { union RemoveAdminsResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail +input RemoveAppAuthorizationEndpointRequest { + """The app.""" + app: EvmAddress! +} + input RemoveAppFeedsRequest { """The app to update""" app: EvmAddress! @@ -4635,6 +4578,7 @@ input ReportPostRequest { type Repost { id: PostId! + slug: PostId! author: Account! isDeleted: Boolean! timestamp: DateTime! @@ -4778,6 +4722,46 @@ input SetDefaultAppFeedRequest { union SetDefaultAppFeedResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail +input SetFeedMetadataRequest { + """The feed to update""" + feed: EvmAddress! + + """The feed metadata to set""" + metadataUri: String! +} + +union SetFeedMetadataResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + +input SetGraphMetadataRequest { + """The graph to update""" + graph: EvmAddress! + + """The graph metadata to set""" + metadataUri: String! +} + +union SetGraphMetadataResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + +input SetGroupMetadataRequest { + """The group to update""" + group: EvmAddress! + + """The group metadata to set""" + metadataUri: String! +} + +union SetGroupMetadataResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + +input SetNamespaceMetadataRequest { + """The namespace to update""" + namespace: EvmAddress! + + """The namespace metadata to set""" + metadataUri: String! +} + +union SetNamespaceMetadataResult = SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + scalar Signature input SignedAuthChallenge { @@ -4831,6 +4815,82 @@ type SimplePaymentUsernameNamespaceRule { recipient: EvmAddress! } +enum SnsNotificationType { + MEDIA_SNAPSHOT_SUCCESS + MEDIA_SNAPSHOT_ERROR + METADATA_SNAPSHOT_SUCCESS + METADATA_SNAPSHOT_ERROR + POST_CREATED + QUOTE_CREATED + COMMENT_CREATED + REPOST_CREATED + POST_EDITED + POST_DELETED + POST_COLLECTED + POST_ACTION_COMPLETED + POST_REACTION_ADDED + POST_REACTION_REMOVED + POST_REPORTED + ACCOUNT_CREATED + ACCOUNT_MENTIONED + ACCOUNT_FOLLOWED + ACCOUNT_UNFOLLOWED + ACCOUNT_FOLLOW_RULES_UPDATED + ACCOUNT_BLOCKED + ACCOUNT_UNBLOCKED + ACCOUNT_METADATA_UPDATED + ACCOUNT_USERNAME_CREATED + ACCOUNT_USERNAME_ASSIGNED + ACCOUNT_USERNAME_UNASSIGNED + ACCOUNT_CONTENT_CONSUMED + ACCOUNT_MANAGER_ADDED + ACCOUNT_MANAGER_REMOVED + ACCOUNT_MANAGER_UPDATED + ACCOUNT_OWNERSHIP_TRANSFERRED + ACCOUNT_REPORTED + ML_PROFILE_SIGNAL +} + +type SnsSubscription { + id: UUID! + account: EvmAddress! + webhook: URL! + app: EvmAddress + topic: SnsNotificationType! + topicArn: String! + attributes: JSON! +} + +input SnsTopicInput @oneOf { + mediaSnapshotSuccess: MediaSnapshotNotificationAttributes + mediaSnapshotError: MediaSnapshotNotificationAttributes + metadataSnapshotSuccess: MetadataSnapshotNotificationAttributes + metadataSnapshotError: MetadataSnapshotNotificationAttributes + postCreated: PostCreatedNotificationAttributes + quoteCreated: PostCreatedNotificationAttributes + commentCreated: PostCreatedNotificationAttributes + repostCreated: PostCreatedNotificationAttributes + postEdited: PostEditedNotificationAttributes + postDeleted: PostDeletedNotificationAttributes + postReactionAdded: PostReactionAddedNotificationAttributes + postReactionRemoved: PostReactionRemovedNotificationAttributes + postReported: PostReportedNotificationAttributes + accountCreated: AccountCreatedNotificationAttributes + accountMentioned: AccountMentionedNotificationAttributes + accountFollowed: AccountFollowedNotificationAttributes + accountUnfollowed: AccountUnfollowedNotificationAttributes + accountBlocked: AccountBlockedNotificationAttributes + accountUnblocked: AccountUnblockedNotificationAttributes + accountUsernameCreated: AccountUsernameCreatedNotificationAttributes + accountUsernameAssigned: AccountUsernameAssignedNotificationAttributes + accountUsernameUnassigned: AccountUsernameUnassignedNotificationAttributes + accountManagerAdded: AccountManagerAddedNotificationAttributes + accountManagerRemoved: AccountManagerRemovedNotificationAttributes + accountManagerUpdated: AccountManagerUpdatedNotificationAttributes + accountOwnershipTransferred: AccountOwnershipTransferredNotificationAttributes + accountReported: AccountReportedNotificationAttributes +} + type SpaceMetadata { """The other attachments you want to include with it.""" attachments: [AnyMedia!]! @@ -4844,25 +4904,24 @@ type SpaceMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! """The space join link.""" - link: Encryptable! + link: URI! locale: Locale! """The main focus of the post.""" mainContentFocus: MainContentFocus! """The space start time (ISO 8601 `YYYY-MM-DDTHH:mm:ss.sssZ`).""" - startsAt: Encryptable! + startsAt: DateTime! """An arbitrary list of tags.""" tags: [Tag!] """The space title.""" title: String! - content: Encryptable! + content: String! } enum SponsorLimitType { @@ -4919,7 +4978,6 @@ type StoryMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -4928,7 +4986,7 @@ type StoryMetadata { """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! + content: String! } input SwitchAccountRequest { @@ -4946,11 +5004,10 @@ type TextOnlyMetadata { their usage as arbitrary attributes will be discouraged. """ attributes: [MetadataAttribute!]! - content: Encryptable! + content: String! """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -5003,7 +5060,6 @@ type ThreeDMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -5012,7 +5068,7 @@ type ThreeDMetadata { """An arbitrary list of tags.""" tags: [Tag!] - content: Encryptable! + content: String! } enum TimelineEventItemType { @@ -5119,12 +5175,6 @@ enum TokenStandard { ERC_1155 } -"""AccessCondition""" -type TopLevelAccessCondition { - criteria: [AnyAccessCondition!]! - type: String! -} - type TransactionMetadata { """The other attachments you want to include with it.""" attachments: [AnyMedia!]! @@ -5141,7 +5191,6 @@ type TransactionMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -5152,11 +5201,11 @@ type TransactionMetadata { tags: [Tag!] """The transaction hash.""" - txHash: Encryptable! + txHash: String! """The type of transaction.""" type: TransactionType! - content: Encryptable! + content: String! } input TransactionStatusRequest { @@ -5510,7 +5559,6 @@ type VideoMetadata { """Specify a content warning.""" contentWarning: ContentWarning - encryptedWith: EncryptionStrategy id: MetadataId! locale: Locale! @@ -5523,7 +5571,7 @@ type VideoMetadata { """The optional video title.""" title: String video: MediaVideo! - content: Encryptable! + content: String! } scalar Void diff --git a/packages/graphql/src/fragments/post.ts b/packages/graphql/src/fragments/post.ts index 224eed1ad..ef08f23e5 100644 --- a/packages/graphql/src/fragments/post.ts +++ b/packages/graphql/src/fragments/post.ts @@ -225,6 +225,19 @@ export const ReferencedPostFragment = graphql( ], ); +export const PostStatsFragment = graphql( + `fragment PostStats on PostStats { + __typename + bookmarks + collects + comments + quotes + reactions + reposts + }`, +); +export type PostStats = FragmentOf; + export const PostFragment = graphql( `fragment Post on Post { __typename @@ -236,6 +249,10 @@ export const PostFragment = graphql( ...Feed } timestamp + slug + stats { + ...PostStats + } app { ...App } @@ -265,6 +282,7 @@ export const PostFragment = graphql( FeedFragment, PostMetadataFragment, PostActionFragment, + PostStatsFragment, ReferencedPostFragment, LoggedInPostOperationsFragment, ], diff --git a/packages/graphql/src/graphql-env.d.ts b/packages/graphql/src/graphql-env.d.ts index fe7a71e25..c5a65f8ac 100644 --- a/packages/graphql/src/graphql-env.d.ts +++ b/packages/graphql/src/graphql-env.d.ts @@ -2,32 +2,44 @@ /* prettier-ignore */ export type introspection_types = { - 'AccessConditionComparison': { name: 'AccessConditionComparison'; enumValues: 'EQUAL' | 'NOT_EQUAL' | 'GREATER_THAN' | 'GREATER_THAN_OR_EQUAL' | 'LESS_THAN' | 'LESS_THAN_OR_EQUAL'; }; - 'AccessConditionType': { kind: 'UNION'; name: 'AccessConditionType'; fields: {}; possibleTypes: 'AdvancedContractCondition' | 'CollectCondition' | 'EoaOwnershipCondition' | 'Erc20OwnershipCondition' | 'FollowCondition' | 'NftOwnershipCondition' | 'ProfileOwnershipCondition'; }; 'AccessToken': unknown; 'Account': { kind: 'OBJECT'; name: 'Account'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'OBJECT'; name: 'AccountMetadata'; ofType: null; } }; 'operations': { name: 'operations'; type: { kind: 'OBJECT'; name: 'LoggedInAccountOperations'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'rules': { name: 'rules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FollowRulesConfig'; ofType: null; }; } }; 'score': { name: 'score'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'username': { name: 'username'; type: { kind: 'OBJECT'; name: 'Username'; ofType: null; } }; }; }; 'AccountAvailable': { kind: 'UNION'; name: 'AccountAvailable'; fields: {}; possibleTypes: 'AccountManaged' | 'AccountOwned'; }; 'AccountBlocked': { kind: 'OBJECT'; name: 'AccountBlocked'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'blockedAt': { name: 'blockedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'AccountBlockedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountBlockedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'AccountCreatedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountCreatedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountFeedsStats': { kind: 'OBJECT'; name: 'AccountFeedsStats'; fields: { 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'comments': { name: 'comments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'posts': { name: 'posts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'quotes': { name: 'quotes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'reacted': { name: 'reacted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'reactions': { name: 'reactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'reposts': { name: 'reposts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; 'AccountFeedsStatsRequest': { kind: 'INPUT_OBJECT'; name: 'AccountFeedsStatsRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'forFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"]" }]; }; + 'AccountFollowedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountFollowedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'follower'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'followedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountGraphsFollowStats': { kind: 'OBJECT'; name: 'AccountGraphsFollowStats'; fields: { 'followers': { name: 'followers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'following': { name: 'following'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; 'AccountGraphsStatsRequest': { kind: 'INPUT_OBJECT'; name: 'AccountGraphsStatsRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'forGraphs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x9e7085a6cc3A02F6026817997cE44B26Ba4Df557\"]" }]; }; 'AccountManaged': { kind: 'OBJECT'; name: 'AccountManaged'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'addedAt': { name: 'addedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountManagerPermissions'; ofType: null; }; } }; }; }; 'AccountManager': { kind: 'OBJECT'; name: 'AccountManager'; fields: { 'addedAt': { name: 'addedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'isLensManager': { name: 'isLensManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'manager': { name: 'manager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountManagerPermissions'; ofType: null; }; } }; }; }; + 'AccountManagerAddedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountManagerAddedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'managedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'manager'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountManagerChallengeRequest': { kind: 'INPUT_OBJECT'; name: 'AccountManagerChallengeRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0xe5439696f4057aF073c0FB2dc6e5e755392922e1\"" }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'manager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'AccountManagerPermissions': { kind: 'OBJECT'; name: 'AccountManagerPermissions'; fields: { 'canExecuteTransactions': { name: 'canExecuteTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'canSetMetadataUri': { name: 'canSetMetadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'canTransferNative': { name: 'canTransferNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'canTransferTokens': { name: 'canTransferTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'AccountManagerPermissionsInput': { kind: 'INPUT_OBJECT'; name: 'AccountManagerPermissionsInput'; isOneOf: false; inputFields: [{ name: 'canExecuteTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'canTransferTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'canTransferNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'canSetMetadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; }; + 'AccountManagerRemovedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountManagerRemovedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'managedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'manager'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'AccountManagerUpdatedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountManagerUpdatedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'managedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'manager'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountManagersRequest': { kind: 'INPUT_OBJECT'; name: 'AccountManagersRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'AccountMention': { kind: 'OBJECT'; name: 'AccountMention'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'replace': { name: 'replace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MentionReplace'; ofType: null; }; } }; }; }; + 'AccountMentionedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountMentionedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'author'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'mentionedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'mentionedUsername'; type: { kind: 'SCALAR'; name: 'UsernameValue'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountMetadata': { kind: 'OBJECT'; name: 'AccountMetadata'; fields: { 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'bio': { name: 'bio'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'coverPicture': { name: 'coverPicture'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'picture': { name: 'picture'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; }; }; 'AccountOwned': { kind: 'OBJECT'; name: 'AccountOwned'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'addedAt': { name: 'addedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'AccountOwnerChallengeRequest': { kind: 'INPUT_OBJECT'; name: 'AccountOwnerChallengeRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0xe5439696f4057aF073c0FB2dc6e5e755392922e1\"" }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; + 'AccountOwnershipTransferredNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountOwnershipTransferredNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountPostReaction': { kind: 'OBJECT'; name: 'AccountPostReaction'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'reactions': { name: 'reactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostReaction'; ofType: null; }; }; }; } }; }; }; 'AccountReportReason': { name: 'AccountReportReason'; enumValues: 'IMPERSONATION' | 'REPETITIVE_SPAM' | 'OTHER'; }; + 'AccountReportedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountReportedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'reportedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'reporter'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountRequest': { kind: 'INPUT_OBJECT'; name: 'AccountRequest'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'username'; type: { kind: 'INPUT_OBJECT'; name: 'UsernameInput'; ofType: null; }; defaultValue: null }, { name: 'legacyProfileId'; type: { kind: 'SCALAR'; name: 'LegacyProfileId'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; 'AccountStats': { kind: 'OBJECT'; name: 'AccountStats'; fields: { 'feedStats': { name: 'feedStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFeedsStats'; ofType: null; }; } }; 'graphFollowStats': { name: 'graphFollowStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGraphsFollowStats'; ofType: null; }; } }; }; }; 'AccountStatsRequest': { kind: 'INPUT_OBJECT'; name: 'AccountStatsRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'forFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"]" }, { name: 'forGraphs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x9e7085a6cc3A02F6026817997cE44B26Ba4Df557\"]" }]; }; + 'AccountUnblockedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountUnblockedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'AccountUnfollowedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountUnfollowedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'unfollower'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'unfollowedAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'AccountUsernameAssignedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountUsernameAssignedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'account'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'AccountUsernameCreatedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountUsernameCreatedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'account'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountUsernameRequest': { kind: 'INPUT_OBJECT'; name: 'AccountUsernameRequest'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x6Cc71E78e25eBF6A2525CadC1fc628B42AE4138f\"" }]; }; + 'AccountUsernameUnassignedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'AccountUsernameUnassignedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'previousAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'AccountsAvailableRequest': { kind: 'INPUT_OBJECT'; name: 'AccountsAvailableRequest'; isOneOf: false; inputFields: [{ name: 'managedBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'includeOwned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "true" }, { name: 'hiddenFilter'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ManagedAccountsVisibility'; ofType: null; }; }; defaultValue: "ALL" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'AccountsBlockedRequest': { kind: 'INPUT_OBJECT'; name: 'AccountsBlockedRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'AccountsBulkRequest': { kind: 'INPUT_OBJECT'; name: 'AccountsBulkRequest'; isOneOf: false; inputFields: [{ name: 'addresses'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'usernames'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UsernameInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'legacyProfileIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'LegacyProfileId'; ofType: null; }; }; }; defaultValue: null }]; }; @@ -56,19 +68,16 @@ export type introspection_types = { 'AdminsForFilterRequest': { kind: 'INPUT_OBJECT'; name: 'AdminsForFilterRequest'; isOneOf: false; inputFields: [{ name: 'searchBy'; type: { kind: 'INPUT_OBJECT'; name: 'UsernameSearchInput'; ofType: null; }; defaultValue: null }]; }; 'AdminsForOrderBy': { name: 'AdminsForOrderBy'; enumValues: 'LATEST_FIRST' | 'OLDEST_FIRST'; }; 'AdminsForRequest': { kind: 'INPUT_OBJECT'; name: 'AdminsForRequest'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'AdminsForFilterRequest'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AdminsForOrderBy'; ofType: null; }; }; defaultValue: "LATEST_FIRST" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; - 'AdvancedContractCondition': { kind: 'OBJECT'; name: 'AdvancedContractCondition'; fields: { 'abi': { name: 'abi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'comparison': { name: 'comparison'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AccessConditionComparison'; ofType: null; }; } }; 'contract': { name: 'contract'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NetworkAddress'; ofType: null; }; } }; 'functionName': { name: 'functionName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'params': { name: 'params'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'AdvancedContractConditionValue'; ofType: null; }; } }; }; }; - 'AdvancedContractConditionValue': unknown; 'Amount': { kind: 'OBJECT'; name: 'Amount'; fields: { 'asset': { name: 'asset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'Asset'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'AmountInput': { kind: 'INPUT_OBJECT'; name: 'AmountInput'; isOneOf: false; inputFields: [{ name: 'currency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; }; - 'AnyAccessCondition': { kind: 'UNION'; name: 'AnyAccessCondition'; fields: {}; possibleTypes: 'AdvancedContractCondition' | 'BooleanAndCondition' | 'BooleanOrCondition' | 'CollectCondition' | 'EoaOwnershipCondition' | 'Erc20OwnershipCondition' | 'FollowCondition' | 'NftOwnershipCondition' | 'ProfileOwnershipCondition'; }; 'AnyMedia': { kind: 'UNION'; name: 'AnyMedia'; fields: {}; possibleTypes: 'MediaAudio' | 'MediaImage' | 'MediaVideo'; }; 'AnyPost': { kind: 'UNION'; name: 'AnyPost'; fields: {}; possibleTypes: 'Post' | 'Repost'; }; 'App': { kind: 'OBJECT'; name: 'App'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'defaultFeedAddress': { name: 'defaultFeedAddress'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'graphAddress': { name: 'graphAddress'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'metadata': { name: 'metadata'; type: { kind: 'OBJECT'; name: 'AppMetadata'; ofType: null; } }; 'namespaceAddress': { name: 'namespaceAddress'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'sponsorshipAddress': { name: 'sponsorshipAddress'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'treasuryAddress': { name: 'treasuryAddress'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'verificationEnabled': { name: 'verificationEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'AppFeed': { kind: 'OBJECT'; name: 'AppFeed'; fields: { 'feed': { name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'AppFeedsRequest': { kind: 'INPUT_OBJECT'; name: 'AppFeedsRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'AppGroupsRequest': { kind: 'INPUT_OBJECT'; name: 'AppGroupsRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; - 'AppMetadata': { kind: 'OBJECT'; name: 'AppMetadata'; fields: { 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'developer': { name: 'developer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'logo': { name: 'logo'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'platforms': { name: 'platforms'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AppMetadataLensPlatformsItem'; ofType: null; }; }; }; } }; 'privacyPolicy': { name: 'privacyPolicy'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'tagline': { name: 'tagline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'termsOfService': { name: 'termsOfService'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; }; }; - 'AppMetadataLensPlatformsItem': { name: 'AppMetadataLensPlatformsItem'; enumValues: 'WEB' | 'IOS' | 'ANDROID'; }; + 'AppMetadata': { kind: 'OBJECT'; name: 'AppMetadata'; fields: { 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'developer': { name: 'developer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'logo': { name: 'logo'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'platforms': { name: 'platforms'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AppPlatform'; ofType: null; }; }; }; } }; 'privacyPolicy': { name: 'privacyPolicy'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'tagline': { name: 'tagline'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'termsOfService': { name: 'termsOfService'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; }; }; + 'AppPlatform': { name: 'AppPlatform'; enumValues: 'WEB' | 'IOS' | 'ANDROID'; }; 'AppRequest': { kind: 'INPUT_OBJECT'; name: 'AppRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; 'AppServerApiKeyRequest': { kind: 'INPUT_OBJECT'; name: 'AppServerApiKeyRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'AppSigner': { kind: 'OBJECT'; name: 'AppSigner'; fields: { 'signer': { name: 'signer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; @@ -84,12 +93,12 @@ export type introspection_types = { 'AppsOrderBy': { name: 'AppsOrderBy'; enumValues: 'LATEST_FIRST' | 'OLDEST_FIRST' | 'ALPHABETICAL'; }; 'AppsRequest': { kind: 'INPUT_OBJECT'; name: 'AppsRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'AppsFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AppsOrderBy'; ofType: null; }; }; defaultValue: "LATEST_FIRST" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'AppsResult': { kind: 'OBJECT'; name: 'AppsResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'App'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; - 'ArticleMetadata': { kind: 'OBJECT'; name: 'ArticleMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ArticleMetadata': { kind: 'OBJECT'; name: 'ArticleMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'Asset': { kind: 'UNION'; name: 'Asset'; fields: {}; possibleTypes: 'Erc20'; }; 'AssignUsernameResponse': { kind: 'OBJECT'; name: 'AssignUsernameResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'AssignUsernameToAccountRequest': { kind: 'INPUT_OBJECT'; name: 'AssignUsernameToAccountRequest'; isOneOf: false; inputFields: [{ name: 'username'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UsernameInput'; ofType: null; }; }; defaultValue: null }]; }; 'AssignUsernameToAccountResult': { kind: 'UNION'; name: 'AssignUsernameToAccountResult'; fields: {}; possibleTypes: 'AssignUsernameResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; - 'AudioMetadata': { kind: 'OBJECT'; name: 'AudioMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'audio': { name: 'audio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaAudio'; ofType: null; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'AudioMetadata': { kind: 'OBJECT'; name: 'AudioMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'audio': { name: 'audio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaAudio'; ofType: null; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'AuthenticatedSession': { kind: 'OBJECT'; name: 'AuthenticatedSession'; fields: { 'app': { name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'authenticationId': { name: 'authenticationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UUID'; ofType: null; }; } }; 'browser': { name: 'browser'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'device': { name: 'device'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'expiresAt': { name: 'expiresAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'origin': { name: 'origin'; type: { kind: 'SCALAR'; name: 'URL'; ofType: null; } }; 'os': { name: 'os'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'signer': { name: 'signer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'AuthenticatedSessionsRequest': { kind: 'INPUT_OBJECT'; name: 'AuthenticatedSessionsRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'AuthenticationChallenge': { kind: 'OBJECT'; name: 'AuthenticationChallenge'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UUID'; ofType: null; }; } }; 'text': { name: 'text'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; @@ -105,8 +114,6 @@ export type introspection_types = { 'BlockchainData': unknown; 'BookmarkPostRequest': { kind: 'INPUT_OBJECT'; name: 'BookmarkPostRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }]; }; 'Boolean': unknown; - 'BooleanAndCondition': { kind: 'OBJECT'; name: 'BooleanAndCondition'; fields: { 'criteria': { name: 'criteria'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AccessConditionType'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'BooleanOrCondition': { kind: 'OBJECT'; name: 'BooleanOrCondition'; fields: { 'criteria': { name: 'criteria'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AccessConditionType'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'BooleanValue': { kind: 'OBJECT'; name: 'BooleanValue'; fields: { 'onChain': { name: 'onChain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'optimistic': { name: 'optimistic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'BuilderChallengeRequest': { kind: 'INPUT_OBJECT'; name: 'BuilderChallengeRequest'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'CanFollowRequest': { kind: 'INPUT_OBJECT'; name: 'CanFollowRequest'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; @@ -114,9 +121,8 @@ export type introspection_types = { 'ChainId': unknown; 'ChallengeRequest': { kind: 'INPUT_OBJECT'; name: 'ChallengeRequest'; isOneOf: false; inputFields: [{ name: 'builder'; type: { kind: 'INPUT_OBJECT'; name: 'BuilderChallengeRequest'; ofType: null; }; defaultValue: null }, { name: 'accountManager'; type: { kind: 'INPUT_OBJECT'; name: 'AccountManagerChallengeRequest'; ofType: null; }; defaultValue: null }, { name: 'accountOwner'; type: { kind: 'INPUT_OBJECT'; name: 'AccountOwnerChallengeRequest'; ofType: null; }; defaultValue: null }, { name: 'onboardingUser'; type: { kind: 'INPUT_OBJECT'; name: 'OnboardingUserChallengeRequest'; ofType: null; }; defaultValue: null }]; }; 'CharsetUsernameNamespaceRule': { kind: 'OBJECT'; name: 'CharsetUsernameNamespaceRule'; fields: { 'allowLatinLowercase': { name: 'allowLatinLowercase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'allowLatinUppercase': { name: 'allowLatinUppercase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'allowNumeric': { name: 'allowNumeric'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'cannotStartWith': { name: 'cannotStartWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'customAllowedCharset': { name: 'customAllowedCharset'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; } }; 'customDisallowedCharset': { name: 'customDisallowedCharset'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; - 'CheckingInMetadata': { kind: 'OBJECT'; name: 'CheckingInMetadata'; fields: { 'address': { name: 'address'; type: { kind: 'OBJECT'; name: 'PhysicalAddress'; ofType: null; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'CheckingInMetadata': { kind: 'OBJECT'; name: 'CheckingInMetadata'; fields: { 'address': { name: 'address'; type: { kind: 'OBJECT'; name: 'PhysicalAddress'; ofType: null; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'SCALAR'; name: 'GeoUri'; ofType: null; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'CollectActionInput': { kind: 'INPUT_OBJECT'; name: 'CollectActionInput'; isOneOf: false; inputFields: [{ name: 'simpleCollectAction'; type: { kind: 'INPUT_OBJECT'; name: 'SimpleCollectActionInput'; ofType: null; }; defaultValue: null }]; }; - 'CollectCondition': { kind: 'OBJECT'; name: 'CollectCondition'; fields: { 'publicationId': { name: 'publicationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'LegacyPublicationId'; ofType: null; }; } }; 'thisPublication': { name: 'thisPublication'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'CommentNotification': { kind: 'OBJECT'; name: 'CommentNotification'; fields: { 'comment': { name: 'comment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; }; }; 'ContentWarning': { name: 'ContentWarning'; enumValues: 'NSFW' | 'SENSITIVE' | 'SPOILER'; }; 'CreateAccountResponse': { kind: 'OBJECT'; name: 'CreateAccountResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; @@ -138,6 +144,7 @@ export type introspection_types = { 'CreateNamespaceResponse': { kind: 'OBJECT'; name: 'CreateNamespaceResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'CreatePostRequest': { kind: 'INPUT_OBJECT'; name: 'CreatePostRequest'; isOneOf: false; inputFields: [{ name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"" }, { name: 'contentUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; }; defaultValue: null }, { name: 'quoteOf'; type: { kind: 'INPUT_OBJECT'; name: 'ReferencingPostInput'; ofType: null; }; defaultValue: null }, { name: 'commentOn'; type: { kind: 'INPUT_OBJECT'; name: 'ReferencingPostInput'; ofType: null; }; defaultValue: null }, { name: 'actions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PostActionInput'; ofType: null; }; }; }; defaultValue: null }]; }; 'CreateRepostRequest': { kind: 'INPUT_OBJECT'; name: 'CreateRepostRequest'; isOneOf: false; inputFields: [{ name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"" }, { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }]; }; + 'CreateSnsSubscriptionRequest': { kind: 'INPUT_OBJECT'; name: 'CreateSnsSubscriptionRequest'; isOneOf: false; inputFields: [{ name: 'webhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'topics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SnsTopicInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'CreateUnfollowRequest': { kind: 'INPUT_OBJECT'; name: 'CreateUnfollowRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x9e7085a6cc3A02F6026817997cE44B26Ba4Df557\"" }, { name: 'graphRule'; type: { kind: 'INPUT_OBJECT'; name: 'GraphRulesInput'; ofType: null; }; defaultValue: null }]; }; 'CreateUsernameNamespaceRequest': { kind: 'INPUT_OBJECT'; name: 'CreateUsernameNamespaceRequest'; isOneOf: false; inputFields: [{ name: 'metadataUri'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; defaultValue: null }, { name: 'admins'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; 'CreateUsernameNamespaceResult': { kind: 'UNION'; name: 'CreateUsernameNamespaceResult'; fields: {}; possibleTypes: 'CreateNamespaceResponse' | 'SelfFundedTransactionRequest' | 'TransactionWillFail'; }; @@ -153,20 +160,18 @@ export type introspection_types = { 'DeletePostRequest': { kind: 'INPUT_OBJECT'; name: 'DeletePostRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'feedRules'; type: { kind: 'INPUT_OBJECT'; name: 'FeedRulesInput'; ofType: null; }; defaultValue: null }]; }; 'DeletePostResponse': { kind: 'OBJECT'; name: 'DeletePostResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'DeletePostResult': { kind: 'UNION'; name: 'DeletePostResult'; fields: {}; possibleTypes: 'DeletePostResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'DeleteSnsSubscriptionRequest': { kind: 'INPUT_OBJECT'; name: 'DeleteSnsSubscriptionRequest'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UUID'; ofType: null; }; }; defaultValue: null }]; }; 'EditPostRequest': { kind: 'INPUT_OBJECT'; name: 'EditPostRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'contentUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; }; defaultValue: null }]; }; 'Eip1559TransactionRequest': { kind: 'OBJECT'; name: 'Eip1559TransactionRequest'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxFeePerGas': { name: 'maxFeePerGas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'maxPriorityFeePerGas': { name: 'maxPriorityFeePerGas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'nonce': { name: 'nonce'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; 'Eip712Meta': { kind: 'OBJECT'; name: 'Eip712Meta'; fields: { 'customSignature': { name: 'customSignature'; type: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; } }; 'factoryDeps': { name: 'factoryDeps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; }; }; } }; 'gasPerPubdata': { name: 'gasPerPubdata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'paymasterParams': { name: 'paymasterParams'; type: { kind: 'OBJECT'; name: 'PaymasterParams'; ofType: null; } }; }; }; 'Eip712TransactionRequest': { kind: 'OBJECT'; name: 'Eip712TransactionRequest'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'customData': { name: 'customData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Eip712Meta'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxFeePerGas': { name: 'maxFeePerGas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'maxPriorityFeePerGas': { name: 'maxPriorityFeePerGas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'nonce': { name: 'nonce'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'EmbedMetadata': { kind: 'OBJECT'; name: 'EmbedMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'embed': { name: 'embed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'EmbedMetadata': { kind: 'OBJECT'; name: 'EmbedMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'embed': { name: 'embed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'EnableSignlessResult': { kind: 'UNION'; name: 'EnableSignlessResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; - 'Encryptable': unknown; - 'EncryptionStrategy': { kind: 'UNION'; name: 'EncryptionStrategy'; fields: {}; possibleTypes: 'LitProtocolEncryptionStrategy'; }; + 'EntityId': { kind: 'INPUT_OBJECT'; name: 'EntityId'; isOneOf: true; inputFields: [{ name: 'account'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'usernameNamespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'group'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'post'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'sponsorship'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'EntityType': { name: 'EntityType'; enumValues: 'ACCOUNT' | 'GRAPH' | 'FEED' | 'USERNAME_NAMESPACE' | 'GROUP' | 'POST' | 'APP' | 'SPONSORSHIP'; }; - 'EoaOwnershipCondition': { kind: 'OBJECT'; name: 'EoaOwnershipCondition'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'Erc20': { kind: 'OBJECT'; name: 'Erc20'; fields: { 'contract': { name: 'contract'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NetworkAddress'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'Erc20OwnershipCondition': { kind: 'OBJECT'; name: 'Erc20OwnershipCondition'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'condition': { name: 'condition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AccessConditionComparison'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'EventMetadata': { kind: 'OBJECT'; name: 'EventMetadata'; fields: { 'address': { name: 'address'; type: { kind: 'OBJECT'; name: 'PhysicalAddress'; ofType: null; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'endsAt': { name: 'endsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; }; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventMetadataLensLocation'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'schedulingAdjustments': { name: 'schedulingAdjustments'; type: { kind: 'OBJECT'; name: 'EventMetadataLensSchedulingAdjustments'; ofType: null; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'EventMetadataLensLocation': { kind: 'OBJECT'; name: 'EventMetadataLensLocation'; fields: { 'physical': { name: 'physical'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'virtual': { name: 'virtual'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; }; }; + 'EventMetadata': { kind: 'OBJECT'; name: 'EventMetadata'; fields: { 'address': { name: 'address'; type: { kind: 'OBJECT'; name: 'PhysicalAddress'; ofType: null; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'endsAt': { name: 'endsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'links': { name: 'links'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; }; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'location': { name: 'location'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventMetadataLensLocation'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'SCALAR'; name: 'GeoUri'; ofType: null; } }; 'schedulingAdjustments': { name: 'schedulingAdjustments'; type: { kind: 'OBJECT'; name: 'EventMetadataLensSchedulingAdjustments'; ofType: null; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'EventMetadataLensLocation': { kind: 'OBJECT'; name: 'EventMetadataLensLocation'; fields: { 'physical': { name: 'physical'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'virtual': { name: 'virtual'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; }; }; 'EventMetadataLensSchedulingAdjustments': { kind: 'OBJECT'; name: 'EventMetadataLensSchedulingAdjustments'; fields: { 'timezoneId': { name: 'timezoneId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'EventMetadataLensSchedulingAdjustmentsTimezoneId'; ofType: null; }; } }; 'timezoneOffset': { name: 'timezoneOffset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; }; 'EventMetadataLensSchedulingAdjustmentsTimezoneId': { name: 'EventMetadataLensSchedulingAdjustmentsTimezoneId'; enumValues: 'AFRICA_ABIDJAN' | 'AFRICA_ACCRA' | 'AFRICA_ADDIS_ABABA' | 'AFRICA_ALGIERS' | 'AFRICA_ASMERA' | 'AFRICA_BAMAKO' | 'AFRICA_BANGUI' | 'AFRICA_BANJUL' | 'AFRICA_BISSAU' | 'AFRICA_BLANTYRE' | 'AFRICA_BRAZZAVILLE' | 'AFRICA_BUJUMBURA' | 'AFRICA_CAIRO' | 'AFRICA_CASABLANCA' | 'AFRICA_CEUTA' | 'AFRICA_CONAKRY' | 'AFRICA_DAKAR' | 'AFRICA_DAR_ES_SALAAM' | 'AFRICA_DJIBOUTI' | 'AFRICA_DOUALA' | 'AFRICA_EL_AAIUN' | 'AFRICA_FREETOWN' | 'AFRICA_GABORONE' | 'AFRICA_HARARE' | 'AFRICA_JOHANNESBURG' | 'AFRICA_JUBA' | 'AFRICA_KAMPALA' | 'AFRICA_KHARTOUM' | 'AFRICA_KIGALI' | 'AFRICA_KINSHASA' | 'AFRICA_LAGOS' | 'AFRICA_LIBREVILLE' | 'AFRICA_LOME' | 'AFRICA_LUANDA' | 'AFRICA_LUBUMBASHI' | 'AFRICA_LUSAKA' | 'AFRICA_MALABO' | 'AFRICA_MAPUTO' | 'AFRICA_MASERU' | 'AFRICA_MBABANE' | 'AFRICA_MOGADISHU' | 'AFRICA_MONROVIA' | 'AFRICA_NAIROBI' | 'AFRICA_NDJAMENA' | 'AFRICA_NIAMEY' | 'AFRICA_NOUAKCHOTT' | 'AFRICA_OUAGADOUGOU' | 'AFRICA_PORTO_NOVO' | 'AFRICA_SAO_TOME' | 'AFRICA_TRIPOLI' | 'AFRICA_TUNIS' | 'AFRICA_WINDHOEK' | 'AMERICA_ADAK' | 'AMERICA_ANCHORAGE' | 'AMERICA_ANGUILLA' | 'AMERICA_ANTIGUA' | 'AMERICA_ARAGUAINA' | 'AMERICA_ARGENTINA_LA_RIOJA' | 'AMERICA_ARGENTINA_RIO_GALLEGOS' | 'AMERICA_ARGENTINA_SALTA' | 'AMERICA_ARGENTINA_SAN_JUAN' | 'AMERICA_ARGENTINA_SAN_LUIS' | 'AMERICA_ARGENTINA_TUCUMAN' | 'AMERICA_ARGENTINA_USHUAIA' | 'AMERICA_ARUBA' | 'AMERICA_ASUNCION' | 'AMERICA_BAHIA' | 'AMERICA_BAHIA_BANDERAS' | 'AMERICA_BARBADOS' | 'AMERICA_BELEM' | 'AMERICA_BELIZE' | 'AMERICA_BLANC_SABLON' | 'AMERICA_BOA_VISTA' | 'AMERICA_BOGOTA' | 'AMERICA_BOISE' | 'AMERICA_BUENOS_AIRES' | 'AMERICA_CAMBRIDGE_BAY' | 'AMERICA_CAMPO_GRANDE' | 'AMERICA_CANCUN' | 'AMERICA_CARACAS' | 'AMERICA_CATAMARCA' | 'AMERICA_CAYENNE' | 'AMERICA_CAYMAN' | 'AMERICA_CHICAGO' | 'AMERICA_CHIHUAHUA' | 'AMERICA_CIUDAD_JUAREZ' | 'AMERICA_CORAL_HARBOUR' | 'AMERICA_CORDOBA' | 'AMERICA_COSTA_RICA' | 'AMERICA_CRESTON' | 'AMERICA_CUIABA' | 'AMERICA_CURACAO' | 'AMERICA_DANMARKSHAVN' | 'AMERICA_DAWSON' | 'AMERICA_DAWSON_CREEK' | 'AMERICA_DENVER' | 'AMERICA_DETROIT' | 'AMERICA_DOMINICA' | 'AMERICA_EDMONTON' | 'AMERICA_EIRUNEPE' | 'AMERICA_EL_SALVADOR' | 'AMERICA_FORT_NELSON' | 'AMERICA_FORTALEZA' | 'AMERICA_GLACE_BAY' | 'AMERICA_GODTHAB' | 'AMERICA_GOOSE_BAY' | 'AMERICA_GRAND_TURK' | 'AMERICA_GRENADA' | 'AMERICA_GUADELOUPE' | 'AMERICA_GUATEMALA' | 'AMERICA_GUAYAQUIL' | 'AMERICA_GUYANA' | 'AMERICA_HALIFAX' | 'AMERICA_HAVANA' | 'AMERICA_HERMOSILLO' | 'AMERICA_INDIANA_KNOX' | 'AMERICA_INDIANA_MARENGO' | 'AMERICA_INDIANA_PETERSBURG' | 'AMERICA_INDIANA_TELL_CITY' | 'AMERICA_INDIANA_VEVAY' | 'AMERICA_INDIANA_VINCENNES' | 'AMERICA_INDIANA_WINAMAC' | 'AMERICA_INDIANAPOLIS' | 'AMERICA_INUVIK' | 'AMERICA_IQALUIT' | 'AMERICA_JAMAICA' | 'AMERICA_JUJUY' | 'AMERICA_JUNEAU' | 'AMERICA_KENTUCKY_MONTICELLO' | 'AMERICA_KRALENDIJK' | 'AMERICA_LA_PAZ' | 'AMERICA_LIMA' | 'AMERICA_LOS_ANGELES' | 'AMERICA_LOUISVILLE' | 'AMERICA_LOWER_PRINCES' | 'AMERICA_MACEIO' | 'AMERICA_MANAGUA' | 'AMERICA_MANAUS' | 'AMERICA_MARIGOT' | 'AMERICA_MARTINIQUE' | 'AMERICA_MATAMOROS' | 'AMERICA_MAZATLAN' | 'AMERICA_MENDOZA' | 'AMERICA_MENOMINEE' | 'AMERICA_MERIDA' | 'AMERICA_METLAKATLA' | 'AMERICA_MEXICO_CITY' | 'AMERICA_MIQUELON' | 'AMERICA_MONCTON' | 'AMERICA_MONTERREY' | 'AMERICA_MONTEVIDEO' | 'AMERICA_MONTSERRAT' | 'AMERICA_NASSAU' | 'AMERICA_NEW_YORK' | 'AMERICA_NIPIGON' | 'AMERICA_NOME' | 'AMERICA_NORONHA' | 'AMERICA_NORTH_DAKOTA_BEULAH' | 'AMERICA_NORTH_DAKOTA_CENTER' | 'AMERICA_NORTH_DAKOTA_NEW_SALEM' | 'AMERICA_OJINAGA' | 'AMERICA_PANAMA' | 'AMERICA_PANGNIRTUNG' | 'AMERICA_PARAMARIBO' | 'AMERICA_PHOENIX' | 'AMERICA_PORT_AU_PRINCE' | 'AMERICA_PORT_OF_SPAIN' | 'AMERICA_PORTO_VELHO' | 'AMERICA_PUERTO_RICO' | 'AMERICA_PUNTA_ARENAS' | 'AMERICA_RAINY_RIVER' | 'AMERICA_RANKIN_INLET' | 'AMERICA_RECIFE' | 'AMERICA_REGINA' | 'AMERICA_RESOLUTE' | 'AMERICA_RIO_BRANCO' | 'AMERICA_SANTA_ISABEL' | 'AMERICA_SANTAREM' | 'AMERICA_SANTIAGO' | 'AMERICA_SANTO_DOMINGO' | 'AMERICA_SAO_PAULO' | 'AMERICA_SCORESBYSUND' | 'AMERICA_SITKA' | 'AMERICA_ST_BARTHELEMY' | 'AMERICA_ST_JOHNS' | 'AMERICA_ST_KITTS' | 'AMERICA_ST_LUCIA' | 'AMERICA_ST_THOMAS' | 'AMERICA_ST_VINCENT' | 'AMERICA_SWIFT_CURRENT' | 'AMERICA_TEGUCIGALPA' | 'AMERICA_THULE' | 'AMERICA_THUNDER_BAY' | 'AMERICA_TIJUANA' | 'AMERICA_TORONTO' | 'AMERICA_TORTOLA' | 'AMERICA_VANCOUVER' | 'AMERICA_WHITEHORSE' | 'AMERICA_WINNIPEG' | 'AMERICA_YAKUTAT' | 'AMERICA_YELLOWKNIFE' | 'ANTARCTICA_CASEY' | 'ANTARCTICA_DAVIS' | 'ANTARCTICA_DUMONT_D_URVILLE' | 'ANTARCTICA_MACQUARIE' | 'ANTARCTICA_MAWSON' | 'ANTARCTICA_MC_MURDO' | 'ANTARCTICA_PALMER' | 'ANTARCTICA_ROTHERA' | 'ANTARCTICA_SYOWA' | 'ANTARCTICA_TROLL' | 'ANTARCTICA_VOSTOK' | 'ARCTIC_LONGYEARBYEN' | 'ASIA_ADEN' | 'ASIA_ALMATY' | 'ASIA_AMMAN' | 'ASIA_ANADYR' | 'ASIA_AQTAU' | 'ASIA_AQTOBE' | 'ASIA_ASHGABAT' | 'ASIA_ATYRAU' | 'ASIA_BAGHDAD' | 'ASIA_BAHRAIN' | 'ASIA_BAKU' | 'ASIA_BANGKOK' | 'ASIA_BARNAUL' | 'ASIA_BEIRUT' | 'ASIA_BISHKEK' | 'ASIA_BRUNEI' | 'ASIA_CALCUTTA' | 'ASIA_CHITA' | 'ASIA_CHOIBALSAN' | 'ASIA_COLOMBO' | 'ASIA_DAMASCUS' | 'ASIA_DHAKA' | 'ASIA_DILI' | 'ASIA_DUBAI' | 'ASIA_DUSHANBE' | 'ASIA_FAMAGUSTA' | 'ASIA_GAZA' | 'ASIA_HEBRON' | 'ASIA_HONG_KONG' | 'ASIA_HOVD' | 'ASIA_IRKUTSK' | 'ASIA_JAKARTA' | 'ASIA_JAYAPURA' | 'ASIA_JERUSALEM' | 'ASIA_KABUL' | 'ASIA_KAMCHATKA' | 'ASIA_KARACHI' | 'ASIA_KATMANDU' | 'ASIA_KHANDYGA' | 'ASIA_KRASNOYARSK' | 'ASIA_KUALA_LUMPUR' | 'ASIA_KUCHING' | 'ASIA_KUWAIT' | 'ASIA_MACAU' | 'ASIA_MAGADAN' | 'ASIA_MAKASSAR' | 'ASIA_MANILA' | 'ASIA_MUSCAT' | 'ASIA_NICOSIA' | 'ASIA_NOVOKUZNETSK' | 'ASIA_NOVOSIBIRSK' | 'ASIA_OMSK' | 'ASIA_ORAL' | 'ASIA_PHNOM_PENH' | 'ASIA_PONTIANAK' | 'ASIA_PYONGYANG' | 'ASIA_QATAR' | 'ASIA_QOSTANAY' | 'ASIA_QYZYLORDA' | 'ASIA_RANGOON' | 'ASIA_RIYADH' | 'ASIA_SAIGON' | 'ASIA_SAKHALIN' | 'ASIA_SAMARKAND' | 'ASIA_SEOUL' | 'ASIA_SHANGHAI' | 'ASIA_SINGAPORE' | 'ASIA_SREDNEKOLYMSK' | 'ASIA_TAIPEI' | 'ASIA_TASHKENT' | 'ASIA_TBILISI' | 'ASIA_TEHRAN' | 'ASIA_THIMPHU' | 'ASIA_TOKYO' | 'ASIA_TOMSK' | 'ASIA_ULAANBAATAR' | 'ASIA_URUMQI' | 'ASIA_UST_NERA' | 'ASIA_VIENTIANE' | 'ASIA_VLADIVOSTOK' | 'ASIA_YAKUTSK' | 'ASIA_YEKATERINBURG' | 'ASIA_YEREVAN' | 'ATLANTIC_AZORES' | 'ATLANTIC_BERMUDA' | 'ATLANTIC_CANARY' | 'ATLANTIC_CAPE_VERDE' | 'ATLANTIC_FAEROE' | 'ATLANTIC_MADEIRA' | 'ATLANTIC_REYKJAVIK' | 'ATLANTIC_SOUTH_GEORGIA' | 'ATLANTIC_ST_HELENA' | 'ATLANTIC_STANLEY' | 'AUSTRALIA_ADELAIDE' | 'AUSTRALIA_BRISBANE' | 'AUSTRALIA_BROKEN_HILL' | 'AUSTRALIA_CURRIE' | 'AUSTRALIA_DARWIN' | 'AUSTRALIA_EUCLA' | 'AUSTRALIA_HOBART' | 'AUSTRALIA_LINDEMAN' | 'AUSTRALIA_LORD_HOWE' | 'AUSTRALIA_MELBOURNE' | 'AUSTRALIA_PERTH' | 'AUSTRALIA_SYDNEY' | 'EUROPE_AMSTERDAM' | 'EUROPE_ANDORRA' | 'EUROPE_ASTRAKHAN' | 'EUROPE_ATHENS' | 'EUROPE_BELGRADE' | 'EUROPE_BERLIN' | 'EUROPE_BRATISLAVA' | 'EUROPE_BRUSSELS' | 'EUROPE_BUCHAREST' | 'EUROPE_BUDAPEST' | 'EUROPE_BUSINGEN' | 'EUROPE_CHISINAU' | 'EUROPE_COPENHAGEN' | 'EUROPE_DUBLIN' | 'EUROPE_GIBRALTAR' | 'EUROPE_GUERNSEY' | 'EUROPE_HELSINKI' | 'EUROPE_ISLE_OF_MAN' | 'EUROPE_ISTANBUL' | 'EUROPE_JERSEY' | 'EUROPE_KALININGRAD' | 'EUROPE_KIEV' | 'EUROPE_KIROV' | 'EUROPE_LISBON' | 'EUROPE_LJUBLJANA' | 'EUROPE_LONDON' | 'EUROPE_LUXEMBOURG' | 'EUROPE_MADRID' | 'EUROPE_MALTA' | 'EUROPE_MARIEHAMN' | 'EUROPE_MINSK' | 'EUROPE_MONACO' | 'EUROPE_MOSCOW' | 'EUROPE_OSLO' | 'EUROPE_PARIS' | 'EUROPE_PODGORICA' | 'EUROPE_PRAGUE' | 'EUROPE_RIGA' | 'EUROPE_ROME' | 'EUROPE_SAMARA' | 'EUROPE_SAN_MARINO' | 'EUROPE_SARAJEVO' | 'EUROPE_SARATOV' | 'EUROPE_SIMFEROPOL' | 'EUROPE_SKOPJE' | 'EUROPE_SOFIA' | 'EUROPE_STOCKHOLM' | 'EUROPE_TALLINN' | 'EUROPE_TIRANE' | 'EUROPE_ULYANOVSK' | 'EUROPE_UZHGOROD' | 'EUROPE_VADUZ' | 'EUROPE_VATICAN' | 'EUROPE_VIENNA' | 'EUROPE_VILNIUS' | 'EUROPE_VOLGOGRAD' | 'EUROPE_WARSAW' | 'EUROPE_ZAGREB' | 'EUROPE_ZAPOROZHYE' | 'EUROPE_ZURICH' | 'INDIAN_ANTANANARIVO' | 'INDIAN_CHAGOS' | 'INDIAN_CHRISTMAS' | 'INDIAN_COCOS' | 'INDIAN_COMORO' | 'INDIAN_KERGUELEN' | 'INDIAN_MAHE' | 'INDIAN_MALDIVES' | 'INDIAN_MAURITIUS' | 'INDIAN_MAYOTTE' | 'INDIAN_REUNION' | 'PACIFIC_APIA' | 'PACIFIC_AUCKLAND' | 'PACIFIC_BOUGAINVILLE' | 'PACIFIC_CHATHAM' | 'PACIFIC_EASTER' | 'PACIFIC_EFATE' | 'PACIFIC_ENDERBURY' | 'PACIFIC_FAKAOFO' | 'PACIFIC_FIJI' | 'PACIFIC_FUNAFUTI' | 'PACIFIC_GALAPAGOS' | 'PACIFIC_GAMBIER' | 'PACIFIC_GUADALCANAL' | 'PACIFIC_GUAM' | 'PACIFIC_HONOLULU' | 'PACIFIC_JOHNSTON' | 'PACIFIC_KIRITIMATI' | 'PACIFIC_KOSRAE' | 'PACIFIC_KWAJALEIN' | 'PACIFIC_MAJURO' | 'PACIFIC_MARQUESAS' | 'PACIFIC_MIDWAY' | 'PACIFIC_NAURU' | 'PACIFIC_NIUE' | 'PACIFIC_NORFOLK' | 'PACIFIC_NOUMEA' | 'PACIFIC_PAGO_PAGO' | 'PACIFIC_PALAU' | 'PACIFIC_PITCAIRN' | 'PACIFIC_PONAPE' | 'PACIFIC_PORT_MORESBY' | 'PACIFIC_RAROTONGA' | 'PACIFIC_SAIPAN' | 'PACIFIC_TAHITI' | 'PACIFIC_TARAWA' | 'PACIFIC_TONGATAPU' | 'PACIFIC_TRUK' | 'PACIFIC_WAKE' | 'PACIFIC_WALLIS'; }; 'EvmAddress': unknown; @@ -184,7 +189,6 @@ export type introspection_types = { 'FeedsRequest': { kind: 'INPUT_OBJECT'; name: 'FeedsRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'FeedsFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'FeedsOrderBy'; ofType: null; }; }; defaultValue: "LATEST_FIRST" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'FinishedTransactionStatus': { kind: 'OBJECT'; name: 'FinishedTransactionStatus'; fields: { 'blockTimestamp': { name: 'blockTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'Float': unknown; - 'FollowCondition': { kind: 'OBJECT'; name: 'FollowCondition'; fields: { 'follow': { name: 'follow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'LegacyProfileId'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'FollowNotification': { kind: 'OBJECT'; name: 'FollowNotification'; fields: { 'followers': { name: 'followers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NotificationAccountFollow'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; }; }; 'FollowPair': { kind: 'INPUT_OBJECT'; name: 'FollowPair'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x9e7085a6cc3A02F6026817997cE44B26Ba4Df557\"" }, { name: 'follower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'FollowResponse': { kind: 'OBJECT'; name: 'FollowResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; @@ -207,6 +211,8 @@ export type introspection_types = { 'ForbiddenError': { kind: 'OBJECT'; name: 'ForbiddenError'; fields: { 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'GenerateNewAppServerApiKeyRequest': { kind: 'INPUT_OBJECT'; name: 'GenerateNewAppServerApiKeyRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'GeneratedNotificationId': unknown; + 'GeoUri': unknown; + 'GetSnsSubscriptionsRequest': { kind: 'INPUT_OBJECT'; name: 'GetSnsSubscriptionsRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'Graph': { kind: 'OBJECT'; name: 'Graph'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'OBJECT'; name: 'GraphMetadata'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'rules': { name: 'rules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GraphRulesConfig'; ofType: null; }; } }; }; }; 'GraphMetadata': { kind: 'OBJECT'; name: 'GraphMetadata'; fields: { 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'GraphRequest': { kind: 'INPUT_OBJECT'; name: 'GraphRequest'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; @@ -237,11 +243,12 @@ export type introspection_types = { 'HideReplyRequest': { kind: 'INPUT_OBJECT'; name: 'HideReplyRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }]; }; 'ID': unknown; 'IdToken': unknown; - 'ImageMetadata': { kind: 'OBJECT'; name: 'ImageMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'image': { name: 'image'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaImage'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'ImageMetadata': { kind: 'OBJECT'; name: 'ImageMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'image': { name: 'image'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaImage'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'Int': unknown; 'InvalidUsername': { kind: 'OBJECT'; name: 'InvalidUsername'; fields: { 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'IsFollowedByMeRequest': { kind: 'INPUT_OBJECT'; name: 'IsFollowedByMeRequest'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'IsFollowingMeRequest': { kind: 'INPUT_OBJECT'; name: 'IsFollowingMeRequest'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; + 'JSON': unknown; 'JoinGroupRequest': { kind: 'INPUT_OBJECT'; name: 'JoinGroupRequest'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'JoinGroupResponse': { kind: 'OBJECT'; name: 'JoinGroupResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'JoinGroupResult': { kind: 'UNION'; name: 'JoinGroupResult'; fields: {}; possibleTypes: 'JoinGroupResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; @@ -252,12 +259,10 @@ export type introspection_types = { 'LeaveGroupResponse': { kind: 'OBJECT'; name: 'LeaveGroupResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'LeaveGroupResult': { kind: 'UNION'; name: 'LeaveGroupResult'; fields: {}; possibleTypes: 'LeaveGroupResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'LegacyProfileId': unknown; - 'LegacyPublicationId': unknown; 'LegacyRefreshToken': unknown; 'LengthUsernameNamespaceRule': { kind: 'OBJECT'; name: 'LengthUsernameNamespaceRule'; fields: { 'maxLength': { name: 'maxLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'minLength': { name: 'minLength'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; - 'LinkMetadata': { kind: 'OBJECT'; name: 'LinkMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'sharingLink': { name: 'sharingLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; - 'LitProtocolEncryptionStrategy': { kind: 'OBJECT'; name: 'LitProtocolEncryptionStrategy'; fields: { 'accessCondition': { name: 'accessCondition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TopLevelAccessCondition'; ofType: null; }; } }; 'encryptedPaths': { name: 'encryptedPaths'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'encryptionKey': { name: 'encryptionKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'LivestreamMetadata': { kind: 'OBJECT'; name: 'LivestreamMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'checkLiveApi': { name: 'checkLiveApi'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'endsAt': { name: 'endsAt'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'liveUrl': { name: 'liveUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'playbackUrl': { name: 'playbackUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'LinkMetadata': { kind: 'OBJECT'; name: 'LinkMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'sharingLink': { name: 'sharingLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'LivestreamMetadata': { kind: 'OBJECT'; name: 'LivestreamMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'checkLiveApi': { name: 'checkLiveApi'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'endsAt': { name: 'endsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'liveUrl': { name: 'liveUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'playbackUrl': { name: 'playbackUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'Locale': unknown; 'LoggedInAccountOperations': { kind: 'OBJECT'; name: 'LoggedInAccountOperations'; fields: { 'canBlock': { name: 'canBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'canFollow': { name: 'canFollow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'OperationValidationOutcome'; ofType: null; }; } }; 'canUnblock': { name: 'canUnblock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'canUnfollow': { name: 'canUnfollow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'OperationValidationOutcome'; ofType: null; }; } }; 'hasBlockedMe': { name: 'hasBlockedMe'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hasReported': { name: 'hasReported'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isBlockedByMe': { name: 'isBlockedByMe'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isFollowedByMe': { name: 'isFollowedByMe'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isFollowingMe': { name: 'isFollowingMe'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isMutedByMe': { name: 'isMutedByMe'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'LoggedInFeedPostOperations': { kind: 'OBJECT'; name: 'LoggedInFeedPostOperations'; fields: { 'canPost': { name: 'canPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'OperationValidationOutcome'; ofType: null; }; } }; }; }; @@ -269,12 +274,13 @@ export type introspection_types = { 'ManagedAccountsVisibility': { name: 'ManagedAccountsVisibility'; enumValues: 'NONE_HIDDEN' | 'HIDDEN_ONLY' | 'ALL'; }; 'ManagedBy': { kind: 'INPUT_OBJECT'; name: 'ManagedBy'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'includeOwners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "true" }]; }; 'MeResult': { kind: 'OBJECT'; name: 'MeResult'; fields: { 'appLoggedIn': { name: 'appLoggedIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'isSignless': { name: 'isSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isSponsored': { name: 'isSponsored'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipAllowance'; ofType: null; }; } }; 'loggedInAs': { name: 'loggedInAs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AccountAvailable'; ofType: null; }; } }; }; }; - 'MediaAudio': { kind: 'OBJECT'; name: 'MediaAudio'; fields: { 'artist': { name: 'artist'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'cover': { name: 'cover'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'credits': { name: 'credits'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'duration': { name: 'duration'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'genre': { name: 'genre'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'ENUM'; name: 'MediaAudioKind'; ofType: null; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'lyrics': { name: 'lyrics'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'recordLabel': { name: 'recordLabel'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaAudioType'; ofType: null; }; } }; }; }; + 'MediaAudio': { kind: 'OBJECT'; name: 'MediaAudio'; fields: { 'artist': { name: 'artist'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'cover': { name: 'cover'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'credits': { name: 'credits'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'duration': { name: 'duration'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'genre': { name: 'genre'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'kind': { name: 'kind'; type: { kind: 'ENUM'; name: 'MediaAudioKind'; ofType: null; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'lyrics': { name: 'lyrics'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'recordLabel': { name: 'recordLabel'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaAudioType'; ofType: null; }; } }; }; }; 'MediaAudioKind': { name: 'MediaAudioKind'; enumValues: 'MUSIC' | 'PODCAST' | 'AUDIOBOOK' | 'VOICE_NOTE' | 'SOUND' | 'OTHER'; }; 'MediaAudioType': { name: 'MediaAudioType'; enumValues: 'AUDIO_WAV' | 'AUDIO_VND_WAVE' | 'AUDIO_MPEG' | 'AUDIO_OGG' | 'AUDIO_MP_4' | 'AUDIO_AAC' | 'AUDIO_WEBM' | 'AUDIO_FLAC'; }; - 'MediaImage': { kind: 'OBJECT'; name: 'MediaImage'; fields: { 'altTag': { name: 'altTag'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaImageType'; ofType: null; }; } }; }; }; + 'MediaImage': { kind: 'OBJECT'; name: 'MediaImage'; fields: { 'altTag': { name: 'altTag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaImageType'; ofType: null; }; } }; }; }; 'MediaImageType': { name: 'MediaImageType'; enumValues: 'BMP' | 'GIF' | 'HEIC' | 'JPEG' | 'PNG' | 'SVG_XML' | 'TIFF' | 'WEBP' | 'X_MS_BMP'; }; - 'MediaVideo': { kind: 'OBJECT'; name: 'MediaVideo'; fields: { 'altTag': { name: 'altTag'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'cover': { name: 'cover'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'duration': { name: 'duration'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaVideoType'; ofType: null; }; } }; }; }; + 'MediaSnapshotNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'MediaSnapshotNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'source'; type: { kind: 'INPUT_OBJECT'; name: 'EntityId'; ofType: null; }; defaultValue: null }]; }; + 'MediaVideo': { kind: 'OBJECT'; name: 'MediaVideo'; fields: { 'altTag': { name: 'altTag'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'cover': { name: 'cover'; type: { kind: 'SCALAR'; name: 'URI'; ofType: null; } }; 'duration': { name: 'duration'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'item': { name: 'item'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MediaVideoType'; ofType: null; }; } }; }; }; 'MediaVideoType': { name: 'MediaVideoType'; enumValues: 'MODEL_GLTF_JSON' | 'MODEL_GLTF_BINARY' | 'VIDEO_XM_4V' | 'VIDEO_MOV' | 'VIDEO_MP_4' | 'VIDEO_MPEG' | 'VIDEO_OGG' | 'VIDEO_OGV' | 'VIDEO_QUICKTIME' | 'VIDEO_WEBM'; }; 'MentionNotification': { kind: 'OBJECT'; name: 'MentionNotification'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; }; }; 'MentionReplace': { kind: 'OBJECT'; name: 'MentionReplace'; fields: { 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; @@ -282,12 +288,13 @@ export type introspection_types = { 'MetadataAttributeType': { name: 'MetadataAttributeType'; enumValues: 'BOOLEAN' | 'DATE' | 'NUMBER' | 'STRING' | 'JSON'; }; 'MetadataId': unknown; 'MetadataLicenseType': { name: 'MetadataLicenseType'; enumValues: 'CCO' | 'CC_BY' | 'CC_BY_ND' | 'CC_BY_NC' | 'TBNL_CD_PL_LEGAL' | 'TBNL_C_DT_PL_LEGAL' | 'TBNL_C_ND_PL_LEGAL' | 'TBNL_CD_NPL_LEGAL' | 'TBNL_C_DT_NPL_LEGAL' | 'TBNL_C_DTSA_PL_LEGAL' | 'TBNL_C_DTSA_NPL_LEGAL' | 'TBNL_C_ND_NPL_LEGAL' | 'TBNL_CD_PL_LEDGER' | 'TBNL_C_DT_PL_LEDGER' | 'TBNL_C_ND_PL_LEDGER' | 'TBNL_CD_NPL_LEDGER' | 'TBNL_C_DT_NPL_LEDGER' | 'TBNL_C_DTSA_PL_LEDGER' | 'TBNL_C_DTSA_NPL_LEDGER' | 'TBNL_C_ND_NPL_LEDGER' | 'TBNL_NC_D_PL_LEGAL' | 'TBNL_NC_DT_PL_LEGAL' | 'TBNL_NC_ND_PL_LEGAL' | 'TBNL_NC_D_NPL_LEGAL' | 'TBNL_NC_DT_NPL_LEGAL' | 'TBNL_NC_DTSA_PL_LEGAL' | 'TBNL_NC_DTSA_NPL_LEGAL' | 'TBNL_NC_ND_NPL_LEGAL' | 'TBNL_NC_D_PL_LEDGER' | 'TBNL_NC_DT_PL_LEDGER' | 'TBNL_NC_ND_PL_LEDGER' | 'TBNL_NC_D_NPL_LEDGER' | 'TBNL_NC_DT_NPL_LEDGER' | 'TBNL_NC_DTSA_PL_LEDGER' | 'TBNL_NC_DTSA_NPL_LEDGER' | 'TBNL_NC_ND_NPL_LEDGER'; }; - 'MintMetadata': { kind: 'OBJECT'; name: 'MintMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'mintLink': { name: 'mintLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'MetadataSnapshotNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'MetadataSnapshotNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'source'; type: { kind: 'INPUT_OBJECT'; name: 'EntityId'; ofType: null; }; defaultValue: null }]; }; + 'MintMetadata': { kind: 'OBJECT'; name: 'MintMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'mintLink': { name: 'mintLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'MlaccountRecommendationsRequest': { kind: 'INPUT_OBJECT'; name: 'MlaccountRecommendationsRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'shuffle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }]; }; 'MlexplorePostsFilter': { kind: 'INPUT_OBJECT'; name: 'MlexplorePostsFilter'; isOneOf: false; inputFields: [{ name: 'since'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; 'MlexplorePostsRequest': { kind: 'INPUT_OBJECT'; name: 'MlexplorePostsRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'MlexplorePostsFilter'; ofType: null; }; defaultValue: null }]; }; 'MlpostsForYouRequest': { kind: 'INPUT_OBJECT'; name: 'MlpostsForYouRequest'; isOneOf: false; inputFields: [{ name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'shuffle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }]; }; - 'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'addAccountManager': { name: 'addAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAccountManagerResult'; ofType: null; }; } }; 'addAdmins': { name: 'addAdmins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAdminsResult'; ofType: null; }; } }; 'addAppAuthorizationEndpoint': { name: 'addAppAuthorizationEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'addAppFeeds': { name: 'addAppFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppFeedsResult'; ofType: null; }; } }; 'addAppGroups': { name: 'addAppGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppGroupsResult'; ofType: null; }; } }; 'addAppSigners': { name: 'addAppSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppSignersResult'; ofType: null; }; } }; 'addReaction': { name: 'addReaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddReactionResult'; ofType: null; }; } }; 'assignUsernameToAccount': { name: 'assignUsernameToAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AssignUsernameToAccountResult'; ofType: null; }; } }; 'authenticate': { name: 'authenticate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AuthenticationResult'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockResult'; ofType: null; }; } }; 'bookmarkPost': { name: 'bookmarkPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'challenge': { name: 'challenge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticationChallenge'; ofType: null; }; } }; 'createAccountWithUsername': { name: 'createAccountWithUsername'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateAccountWithUsernameResult'; ofType: null; }; } }; 'createApp': { name: 'createApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateAppResult'; ofType: null; }; } }; 'createFeed': { name: 'createFeed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateFeedResult'; ofType: null; }; } }; 'createGraph': { name: 'createGraph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateGraphResult'; ofType: null; }; } }; 'createGroup': { name: 'createGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateGroupResult'; ofType: null; }; } }; 'createUsername': { name: 'createUsername'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateUsernameResult'; ofType: null; }; } }; 'createUsernameNamespace': { name: 'createUsernameNamespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateUsernameNamespaceResult'; ofType: null; }; } }; 'deletePost': { name: 'deletePost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DeletePostResult'; ofType: null; }; } }; 'editPost': { name: 'editPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'enableSignless': { name: 'enableSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableSignlessResult'; ofType: null; }; } }; 'follow': { name: 'follow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'FollowResult'; ofType: null; }; } }; 'generateNewAppServerApiKey': { name: 'generateNewAppServerApiKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ServerAPIKey'; ofType: null; }; } }; 'hideManagedAccount': { name: 'hideManagedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'hideReply': { name: 'hideReply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'joinGroup': { name: 'joinGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'JoinGroupResult'; ofType: null; }; } }; 'leaveGroup': { name: 'leaveGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LeaveGroupResult'; ofType: null; }; } }; 'legacyRolloverRefresh': { name: 'legacyRolloverRefresh'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RefreshResult'; ofType: null; }; } }; 'mute': { name: 'mute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'recommendAccount': { name: 'recommendAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'refresh': { name: 'refresh'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RefreshResult'; ofType: null; }; } }; 'removeAccountManager': { name: 'removeAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAccountManagerResult'; ofType: null; }; } }; 'removeAdmins': { name: 'removeAdmins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAdminsResult'; ofType: null; }; } }; 'removeAppFeeds': { name: 'removeAppFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppFeedsResult'; ofType: null; }; } }; 'removeAppGroups': { name: 'removeAppGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppGroupsResult'; ofType: null; }; } }; 'removeAppSigners': { name: 'removeAppSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppSignersResult'; ofType: null; }; } }; 'removeSignless': { name: 'removeSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveSignlessResult'; ofType: null; }; } }; 'reportAccount': { name: 'reportAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'reportPost': { name: 'reportPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'repost': { name: 'repost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'revokeAuthentication': { name: 'revokeAuthentication'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'setAccountMetadata': { name: 'setAccountMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAccountMetadataResult'; ofType: null; }; } }; 'setAppGraph': { name: 'setAppGraph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppGraphResult'; ofType: null; }; } }; 'setAppMetadata': { name: 'setAppMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppMetadataResult'; ofType: null; }; } }; 'setAppSponsorship': { name: 'setAppSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppSponsorshipResult'; ofType: null; }; } }; 'setAppTreasury': { name: 'setAppTreasury'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppTreasuryResult'; ofType: null; }; } }; 'setAppUsernameNamespace': { name: 'setAppUsernameNamespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppUsernameNamespaceResult'; ofType: null; }; } }; 'setAppVerification': { name: 'setAppVerification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppVerificationResult'; ofType: null; }; } }; 'setDefaultAppFeed': { name: 'setDefaultAppFeed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetDefaultAppFeedResult'; ofType: null; }; } }; 'switchAccount': { name: 'switchAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwitchAccountResult'; ofType: null; }; } }; 'transferPrimitiveOwnership': { name: 'transferPrimitiveOwnership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransferPrimitiveOwnershipResult'; ofType: null; }; } }; 'unassignUsernameFromAccount': { name: 'unassignUsernameFromAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnassignUsernameToAccountResult'; ofType: null; }; } }; 'unblock': { name: 'unblock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnblockResult'; ofType: null; }; } }; 'undoBookmarkPost': { name: 'undoBookmarkPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'undoReaction': { name: 'undoReaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UndoReactionResult'; ofType: null; }; } }; 'undoRecommendedAccount': { name: 'undoRecommendedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unfollow': { name: 'unfollow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnfollowResult'; ofType: null; }; } }; 'unhideManagedAccount': { name: 'unhideManagedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unhideReply': { name: 'unhideReply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unmute': { name: 'unmute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'updateAccountManager': { name: 'updateAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountManagerResult'; ofType: null; }; } }; }; }; + 'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'addAccountManager': { name: 'addAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAccountManagerResult'; ofType: null; }; } }; 'addAdmins': { name: 'addAdmins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAdminsResult'; ofType: null; }; } }; 'addAppAuthorizationEndpoint': { name: 'addAppAuthorizationEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'addAppFeeds': { name: 'addAppFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppFeedsResult'; ofType: null; }; } }; 'addAppGroups': { name: 'addAppGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppGroupsResult'; ofType: null; }; } }; 'addAppSigners': { name: 'addAppSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddAppSignersResult'; ofType: null; }; } }; 'addReaction': { name: 'addReaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddReactionResult'; ofType: null; }; } }; 'assignUsernameToAccount': { name: 'assignUsernameToAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AssignUsernameToAccountResult'; ofType: null; }; } }; 'authenticate': { name: 'authenticate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AuthenticationResult'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BlockResult'; ofType: null; }; } }; 'bookmarkPost': { name: 'bookmarkPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'challenge': { name: 'challenge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticationChallenge'; ofType: null; }; } }; 'createAccountWithUsername': { name: 'createAccountWithUsername'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateAccountWithUsernameResult'; ofType: null; }; } }; 'createApp': { name: 'createApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateAppResult'; ofType: null; }; } }; 'createFeed': { name: 'createFeed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateFeedResult'; ofType: null; }; } }; 'createGraph': { name: 'createGraph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateGraphResult'; ofType: null; }; } }; 'createGroup': { name: 'createGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateGroupResult'; ofType: null; }; } }; 'createSnsSubscriptions': { name: 'createSnsSubscriptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SnsSubscription'; ofType: null; }; }; }; } }; 'createUsername': { name: 'createUsername'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateUsernameResult'; ofType: null; }; } }; 'createUsernameNamespace': { name: 'createUsernameNamespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateUsernameNamespaceResult'; ofType: null; }; } }; 'deletePost': { name: 'deletePost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DeletePostResult'; ofType: null; }; } }; 'deleteSnsSubscription': { name: 'deleteSnsSubscription'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'editPost': { name: 'editPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'enableSignless': { name: 'enableSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableSignlessResult'; ofType: null; }; } }; 'follow': { name: 'follow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'FollowResult'; ofType: null; }; } }; 'generateNewAppServerApiKey': { name: 'generateNewAppServerApiKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ServerAPIKey'; ofType: null; }; } }; 'hideManagedAccount': { name: 'hideManagedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'hideReply': { name: 'hideReply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'joinGroup': { name: 'joinGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'JoinGroupResult'; ofType: null; }; } }; 'leaveGroup': { name: 'leaveGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LeaveGroupResult'; ofType: null; }; } }; 'legacyRolloverRefresh': { name: 'legacyRolloverRefresh'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RefreshResult'; ofType: null; }; } }; 'mute': { name: 'mute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'recommendAccount': { name: 'recommendAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'refresh': { name: 'refresh'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RefreshResult'; ofType: null; }; } }; 'removeAccountManager': { name: 'removeAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAccountManagerResult'; ofType: null; }; } }; 'removeAdmins': { name: 'removeAdmins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAdminsResult'; ofType: null; }; } }; 'removeAppAuthorizationEndpoint': { name: 'removeAppAuthorizationEndpoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'removeAppFeeds': { name: 'removeAppFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppFeedsResult'; ofType: null; }; } }; 'removeAppGroups': { name: 'removeAppGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppGroupsResult'; ofType: null; }; } }; 'removeAppSigners': { name: 'removeAppSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveAppSignersResult'; ofType: null; }; } }; 'removeSignless': { name: 'removeSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveSignlessResult'; ofType: null; }; } }; 'reportAccount': { name: 'reportAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'reportPost': { name: 'reportPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'repost': { name: 'repost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'revokeAuthentication': { name: 'revokeAuthentication'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'setAccountMetadata': { name: 'setAccountMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAccountMetadataResult'; ofType: null; }; } }; 'setAppGraph': { name: 'setAppGraph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppGraphResult'; ofType: null; }; } }; 'setAppMetadata': { name: 'setAppMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppMetadataResult'; ofType: null; }; } }; 'setAppSponsorship': { name: 'setAppSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppSponsorshipResult'; ofType: null; }; } }; 'setAppTreasury': { name: 'setAppTreasury'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppTreasuryResult'; ofType: null; }; } }; 'setAppUsernameNamespace': { name: 'setAppUsernameNamespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppUsernameNamespaceResult'; ofType: null; }; } }; 'setAppVerification': { name: 'setAppVerification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetAppVerificationResult'; ofType: null; }; } }; 'setDefaultAppFeed': { name: 'setDefaultAppFeed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetDefaultAppFeedResult'; ofType: null; }; } }; 'setFeedMetadata': { name: 'setFeedMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetFeedMetadataResult'; ofType: null; }; } }; 'setGraphMetadata': { name: 'setGraphMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetGraphMetadataResult'; ofType: null; }; } }; 'setGroupMetadata': { name: 'setGroupMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetGroupMetadataResult'; ofType: null; }; } }; 'setNamespaceMetadata': { name: 'setNamespaceMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetNamespaceMetadataResult'; ofType: null; }; } }; 'switchAccount': { name: 'switchAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwitchAccountResult'; ofType: null; }; } }; 'transferPrimitiveOwnership': { name: 'transferPrimitiveOwnership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransferPrimitiveOwnershipResult'; ofType: null; }; } }; 'unassignUsernameFromAccount': { name: 'unassignUsernameFromAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnassignUsernameToAccountResult'; ofType: null; }; } }; 'unblock': { name: 'unblock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnblockResult'; ofType: null; }; } }; 'undoBookmarkPost': { name: 'undoBookmarkPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'undoReaction': { name: 'undoReaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UndoReactionResult'; ofType: null; }; } }; 'undoRecommendedAccount': { name: 'undoRecommendedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unfollow': { name: 'unfollow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnfollowResult'; ofType: null; }; } }; 'unhideManagedAccount': { name: 'unhideManagedAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unhideReply': { name: 'unhideReply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'unmute': { name: 'unmute'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'updateAccountManager': { name: 'updateAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountManagerResult'; ofType: null; }; } }; }; }; 'MuteRequest': { kind: 'INPUT_OBJECT'; name: 'MuteRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'NamespaceRequest': { kind: 'INPUT_OBJECT'; name: 'NamespaceRequest'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; 'NamespacesFilter': { kind: 'INPUT_OBJECT'; name: 'NamespacesFilter'; isOneOf: false; inputFields: [{ name: 'managedBy'; type: { kind: 'INPUT_OBJECT'; name: 'ManagedBy'; ofType: null; }; defaultValue: null }, { name: 'searchQuery'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; @@ -295,8 +302,6 @@ export type introspection_types = { 'NamespacesRequest': { kind: 'INPUT_OBJECT'; name: 'NamespacesRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'NamespacesFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NamespacesOrderBy'; ofType: null; }; }; defaultValue: "LATEST_FIRST" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'NamespacesResult': { kind: 'OBJECT'; name: 'NamespacesResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UsernameNamespace'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'NetworkAddress': { kind: 'OBJECT'; name: 'NetworkAddress'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; }; - 'NftContractType': { name: 'NftContractType'; enumValues: 'ERC_721' | 'ERC_1155'; }; - 'NftOwnershipCondition': { kind: 'OBJECT'; name: 'NftOwnershipCondition'; fields: { 'contract': { name: 'contract'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NetworkAddress'; ofType: null; }; } }; 'contractType': { name: 'contractType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NftContractType'; ofType: null; }; } }; 'tokenIds': { name: 'tokenIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'NotIndexedYetStatus': { kind: 'OBJECT'; name: 'NotIndexedYetStatus'; fields: { 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txHasMined': { name: 'txHasMined'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'Notification': { kind: 'UNION'; name: 'Notification'; fields: {}; possibleTypes: 'CommentNotification' | 'FollowNotification' | 'MentionNotification' | 'QuoteNotification' | 'ReactionNotification' | 'RepostNotification'; }; 'NotificationAccountFollow': { kind: 'OBJECT'; name: 'NotificationAccountFollow'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'followedAt': { name: 'followedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; @@ -339,8 +344,8 @@ export type introspection_types = { 'PaginatedUsernamesResult': { kind: 'OBJECT'; name: 'PaginatedUsernamesResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Username'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaymasterParams': { kind: 'OBJECT'; name: 'PaymasterParams'; fields: { 'paymaster': { name: 'paymaster'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'paymasterInput': { name: 'paymasterInput'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; }; }; 'PendingTransactionStatus': { kind: 'OBJECT'; name: 'PendingTransactionStatus'; fields: { 'blockTimestamp': { name: 'blockTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; - 'PhysicalAddress': { kind: 'OBJECT'; name: 'PhysicalAddress'; fields: { 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'formatted': { name: 'formatted'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'locality': { name: 'locality'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'postalCode': { name: 'postalCode'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'region': { name: 'region'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; 'streetAddress': { name: 'streetAddress'; type: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; } }; }; }; - 'Post': { kind: 'OBJECT'; name: 'Post'; fields: { 'actions': { name: 'actions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostAction'; ofType: null; }; }; }; } }; 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'author': { name: 'author'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'commentOn': { name: 'commentOn'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'feed': { name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Feed'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'isDeleted': { name: 'isDeleted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isEdited': { name: 'isEdited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'mentions': { name: 'mentions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostMention'; ofType: null; }; }; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostMetadata'; ofType: null; }; } }; 'operations': { name: 'operations'; type: { kind: 'OBJECT'; name: 'LoggedInPostOperations'; ofType: null; } }; 'quoteOf': { name: 'quoteOf'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'root': { name: 'root'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'rules': { name: 'rules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostRulesConfig'; ofType: null; }; } }; 'stats': { name: 'stats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostStats'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'PhysicalAddress': { kind: 'OBJECT'; name: 'PhysicalAddress'; fields: { 'country': { name: 'country'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'formatted': { name: 'formatted'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'locality': { name: 'locality'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'postalCode': { name: 'postalCode'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'region': { name: 'region'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'streetAddress': { name: 'streetAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'Post': { kind: 'OBJECT'; name: 'Post'; fields: { 'actions': { name: 'actions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostAction'; ofType: null; }; }; }; } }; 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'author': { name: 'author'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'commentOn': { name: 'commentOn'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'feed': { name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Feed'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'isDeleted': { name: 'isDeleted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isEdited': { name: 'isEdited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'mentions': { name: 'mentions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostMention'; ofType: null; }; }; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostMetadata'; ofType: null; }; } }; 'operations': { name: 'operations'; type: { kind: 'OBJECT'; name: 'LoggedInPostOperations'; ofType: null; } }; 'quoteOf': { name: 'quoteOf'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'root': { name: 'root'; type: { kind: 'OBJECT'; name: 'Post'; ofType: null; } }; 'rules': { name: 'rules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostRulesConfig'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'stats': { name: 'stats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostStats'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'PostAccountPair': { kind: 'INPUT_OBJECT'; name: 'PostAccountPair'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'PostAction': { kind: 'UNION'; name: 'PostAction'; fields: {}; possibleTypes: 'SimpleCollectActionSettings' | 'UnknownActionSettings'; }; 'PostActionCategoryType': { name: 'PostActionCategoryType'; enumValues: 'COLLECT'; }; @@ -349,7 +354,10 @@ export type introspection_types = { 'PostActionsRequest': { kind: 'INPUT_OBJECT'; name: 'PostActionsRequest'; isOneOf: false; inputFields: [{ name: 'limit'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }, { name: 'includeUnknown'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'includeOnlyCollectActions'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'onlyVerified'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; }; 'PostBookmarksFilter': { kind: 'INPUT_OBJECT'; name: 'PostBookmarksFilter'; isOneOf: false; inputFields: [{ name: 'metadata'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataFilter'; ofType: null; }; defaultValue: null }]; }; 'PostBookmarksRequest': { kind: 'INPUT_OBJECT'; name: 'PostBookmarksRequest'; isOneOf: false; inputFields: [{ name: 'forFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"]" }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'PostBookmarksFilter'; ofType: null; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; + 'PostCreatedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostCreatedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'author'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'parentPostId'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'postTypes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostType'; ofType: null; }; }; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; + 'PostDeletedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostDeletedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'author'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'parentPostId'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'postTypes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostType'; ofType: null; }; }; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'PostEdit': { kind: 'OBJECT'; name: 'PostEdit'; fields: { 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostMetadata'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'PostEditedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostEditedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'author'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'parentPostId'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'postTypes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostType'; ofType: null; }; }; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'PostEditsRequest': { kind: 'INPUT_OBJECT'; name: 'PostEditsRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'PostForYou': { kind: 'OBJECT'; name: 'PostForYou'; fields: { 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ForYouSource'; ofType: null; }; } }; }; }; 'PostId': unknown; @@ -359,7 +367,9 @@ export type introspection_types = { 'PostMetadataFilter': { kind: 'INPUT_OBJECT'; name: 'PostMetadataFilter'; isOneOf: false; inputFields: [{ name: 'mainContentFocus'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; }; }; defaultValue: null }, { name: 'tags'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataTagsFilter'; ofType: null; }; defaultValue: null }, { name: 'contentWarning'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataContentWarningFilter'; ofType: null; }; defaultValue: null }]; }; 'PostMetadataTagsFilter': { kind: 'INPUT_OBJECT'; name: 'PostMetadataTagsFilter'; isOneOf: false; inputFields: [{ name: 'oneOf'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'all'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }]; }; 'PostReaction': { kind: 'OBJECT'; name: 'PostReaction'; fields: { 'reactedAt': { name: 'reactedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'reaction': { name: 'reaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostReactionType'; ofType: null; }; } }; }; }; + 'PostReactionAddedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostReactionAddedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'postId'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'reactingAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'reactionType'; type: { kind: 'ENUM'; name: 'PostReactionType'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'PostReactionOrderBy': { name: 'PostReactionOrderBy'; enumValues: 'DEFAULT' | 'ACCOUNT_SCORE'; }; + 'PostReactionRemovedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostReactionRemovedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'postId'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'reactingAccount'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'reactionType'; type: { kind: 'ENUM'; name: 'PostReactionType'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'PostReactionStatus': { kind: 'OBJECT'; name: 'PostReactionStatus'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'postId': { name: 'postId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'result': { name: 'result'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'PostReactionStatusRequest': { kind: 'INPUT_OBJECT'; name: 'PostReactionStatusRequest'; isOneOf: false; inputFields: [{ name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PostAccountPair'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'PostReactionsFilter'; ofType: null; }; defaultValue: null }]; }; 'PostReactionType': { name: 'PostReactionType'; enumValues: 'UPVOTE' | 'DOWNVOTE'; }; @@ -368,6 +378,7 @@ export type introspection_types = { 'PostReferenceType': { name: 'PostReferenceType'; enumValues: 'COMMENT_ON' | 'REPOST_OF' | 'QUOTE_OF'; }; 'PostReferencesRequest': { kind: 'INPUT_OBJECT'; name: 'PostReferencesRequest'; isOneOf: false; inputFields: [{ name: 'referencedPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'referenceTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostReferenceType'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'visibilityFilter'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostVisibilityFilter'; ofType: null; }; }; defaultValue: "VISIBLE" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'PostReportReason': { name: 'PostReportReason'; enumValues: 'ANIMAL_ABUSE' | 'HARASSMENT' | 'VIOLENCE' | 'SELF_HARM' | 'DIRECT_THREAT' | 'HATE_SPEECH' | 'NUDITY' | 'OFFENSIVE' | 'SCAM' | 'UNAUTHORIZED_SALE' | 'IMPERSONATION' | 'MISLEADING' | 'MISUSE_HASHTAGS' | 'UNRELATED' | 'REPETITIVE' | 'FAKE_ENGAGEMENT' | 'MANIPULATION_ALGO' | 'SOMETHING_ELSE'; }; + 'PostReportedNotificationAttributes': { kind: 'INPUT_OBJECT'; name: 'PostReportedNotificationAttributes'; isOneOf: false; inputFields: [{ name: 'author'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'reporter'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'feed'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; }; 'PostRequest': { kind: 'INPUT_OBJECT'; name: 'PostRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; 'PostResponse': { kind: 'OBJECT'; name: 'PostResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'PostResult': { kind: 'UNION'; name: 'PostResult'; fields: {}; possibleTypes: 'PostResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; @@ -380,8 +391,7 @@ export type introspection_types = { 'PostVisibilityFilter': { name: 'PostVisibilityFilter'; enumValues: 'ALL' | 'HIDDEN' | 'VISIBLE'; }; 'PostsFilter': { kind: 'INPUT_OBJECT'; name: 'PostsFilter'; isOneOf: false; inputFields: [{ name: 'authors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'postTypes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostType'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadata'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataFilter'; ofType: null; }; defaultValue: null }, { name: 'apps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'searchQuery'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; 'PostsRequest': { kind: 'INPUT_OBJECT'; name: 'PostsRequest'; isOneOf: false; inputFields: [{ name: 'forFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: "[\"0x83C8D9e96Da13aaD12E068F48C639C7671D2a5C7\"]" }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'PostsFilter'; ofType: null; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; - 'ProfileOwnershipCondition': { kind: 'OBJECT'; name: 'ProfileOwnershipCondition'; fields: { 'profileId': { name: 'profileId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'LegacyProfileId'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_service': { name: '_service'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Service'; ofType: null; }; } }; 'account': { name: 'account'; type: { kind: 'OBJECT'; name: 'Account'; ofType: null; } }; 'accountFeedsStats': { name: 'accountFeedsStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFeedsStats'; ofType: null; }; } }; 'accountGraphsStats': { name: 'accountGraphsStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGraphsFollowStats'; ofType: null; }; } }; 'accountManagers': { name: 'accountManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountManagersResult'; ofType: null; }; } }; 'accountStats': { name: 'accountStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStats'; ofType: null; }; } }; 'accounts': { name: 'accounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'accountsAvailable': { name: 'accountsAvailable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsAvailableResult'; ofType: null; }; } }; 'accountsBlocked': { name: 'accountsBlocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsBlockedResult'; ofType: null; }; } }; 'accountsBulk': { name: 'accountsBulk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; }; }; } }; 'adminsFor': { name: 'adminsFor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAdminsResult'; ofType: null; }; } }; 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'appFeeds': { name: 'appFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppFeedsResult'; ofType: null; }; } }; 'appGroups': { name: 'appGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupsResult'; ofType: null; }; } }; 'appServerApiKey': { name: 'appServerApiKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ServerAPIKey'; ofType: null; }; } }; 'appSigners': { name: 'appSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppSignersResult'; ofType: null; }; } }; 'appUsers': { name: 'appUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppUsersResult'; ofType: null; }; } }; 'apps': { name: 'apps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AppsResult'; ofType: null; }; } }; 'authenticatedSessions': { name: 'authenticatedSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActiveAuthenticationsResult'; ofType: null; }; } }; 'currentSession': { name: 'currentSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticatedSession'; ofType: null; }; } }; 'debugMetadata': { name: 'debugMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DebugPostMetadataResult'; ofType: null; }; } }; 'debugTransactionStatusFailed': { name: 'debugTransactionStatusFailed'; type: { kind: 'OBJECT'; name: 'DebugTransactionStatusResult'; ofType: null; } }; 'feed': { name: 'feed'; type: { kind: 'OBJECT'; name: 'Feed'; ofType: null; } }; 'feeds': { name: 'feeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFeedsResult'; ofType: null; }; } }; 'followStatus': { name: 'followStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FollowStatusResult'; ofType: null; }; }; }; } }; 'followers': { name: 'followers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowersResult'; ofType: null; }; } }; 'followersYouKnow': { name: 'followersYouKnow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowersResult'; ofType: null; }; } }; 'following': { name: 'following'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowingResult'; ofType: null; }; } }; 'graph': { name: 'graph'; type: { kind: 'OBJECT'; name: 'Graph'; ofType: null; } }; 'graphs': { name: 'graphs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGraphsResult'; ofType: null; }; } }; 'group': { name: 'group'; type: { kind: 'OBJECT'; name: 'Group'; ofType: null; } }; 'groupMembers': { name: 'groupMembers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupMembersResult'; ofType: null; }; } }; 'groupStats': { name: 'groupStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupStatsResponse'; ofType: null; }; } }; 'groups': { name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupsResult'; ofType: null; }; } }; 'health': { name: 'health'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'lastLoggedInAccount': { name: 'lastLoggedInAccount'; type: { kind: 'OBJECT'; name: 'Account'; ofType: null; } }; 'me': { name: 'me'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MeResult'; ofType: null; }; } }; 'mlAccountRecommendations': { name: 'mlAccountRecommendations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'mlPostsExplore': { name: 'mlPostsExplore'; type: { kind: 'OBJECT'; name: 'PaginatedPostsResult'; ofType: null; } }; 'mlPostsForYou': { name: 'mlPostsForYou'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostsForYouResult'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'OBJECT'; name: 'UsernameNamespace'; ofType: null; } }; 'namespaces': { name: 'namespaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NamespacesResult'; ofType: null; }; } }; 'notifications': { name: 'notifications'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedNotificationResult'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'UNION'; name: 'AnyPost'; ofType: null; } }; 'postActions': { name: 'postActions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActions'; ofType: null; }; } }; 'postBookmarks': { name: 'postBookmarks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'postEdits': { name: 'postEdits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostEditsResult'; ofType: null; }; } }; 'postReactionStatus': { name: 'postReactionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostReactionStatus'; ofType: null; }; }; }; } }; 'postReactions': { name: 'postReactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostReactionsResult'; ofType: null; }; } }; 'postReferences': { name: 'postReferences'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'postTags': { name: 'postTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostTagsResult'; ofType: null; }; } }; 'posts': { name: 'posts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'timeline': { name: 'timeline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedTimelineResult'; ofType: null; }; } }; 'timelineHighlights': { name: 'timelineHighlights'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostsResult'; ofType: null; }; } }; 'transactionStatus': { name: 'transactionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionStatusResult'; ofType: null; }; } }; 'username': { name: 'username'; type: { kind: 'OBJECT'; name: 'Username'; ofType: null; } }; 'usernames': { name: 'usernames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUsernamesResult'; ofType: null; }; } }; 'whoActedOnPost': { name: 'whoActedOnPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'whoReferencedPost': { name: 'whoReferencedPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; }; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_service': { name: '_service'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Service'; ofType: null; }; } }; 'account': { name: 'account'; type: { kind: 'OBJECT'; name: 'Account'; ofType: null; } }; 'accountFeedsStats': { name: 'accountFeedsStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountFeedsStats'; ofType: null; }; } }; 'accountGraphsStats': { name: 'accountGraphsStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountGraphsFollowStats'; ofType: null; }; } }; 'accountManagers': { name: 'accountManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountManagersResult'; ofType: null; }; } }; 'accountStats': { name: 'accountStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountStats'; ofType: null; }; } }; 'accounts': { name: 'accounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'accountsAvailable': { name: 'accountsAvailable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsAvailableResult'; ofType: null; }; } }; 'accountsBlocked': { name: 'accountsBlocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsBlockedResult'; ofType: null; }; } }; 'accountsBulk': { name: 'accountsBulk'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; }; }; } }; 'adminsFor': { name: 'adminsFor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAdminsResult'; ofType: null; }; } }; 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'appFeeds': { name: 'appFeeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppFeedsResult'; ofType: null; }; } }; 'appGroups': { name: 'appGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupsResult'; ofType: null; }; } }; 'appServerApiKey': { name: 'appServerApiKey'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ServerAPIKey'; ofType: null; }; } }; 'appSigners': { name: 'appSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppSignersResult'; ofType: null; }; } }; 'appUsers': { name: 'appUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAppUsersResult'; ofType: null; }; } }; 'apps': { name: 'apps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AppsResult'; ofType: null; }; } }; 'authenticatedSessions': { name: 'authenticatedSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActiveAuthenticationsResult'; ofType: null; }; } }; 'currentSession': { name: 'currentSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticatedSession'; ofType: null; }; } }; 'debugMetadata': { name: 'debugMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DebugPostMetadataResult'; ofType: null; }; } }; 'debugTransactionStatusFailed': { name: 'debugTransactionStatusFailed'; type: { kind: 'OBJECT'; name: 'DebugTransactionStatusResult'; ofType: null; } }; 'feed': { name: 'feed'; type: { kind: 'OBJECT'; name: 'Feed'; ofType: null; } }; 'feeds': { name: 'feeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFeedsResult'; ofType: null; }; } }; 'followStatus': { name: 'followStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FollowStatusResult'; ofType: null; }; }; }; } }; 'followers': { name: 'followers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowersResult'; ofType: null; }; } }; 'followersYouKnow': { name: 'followersYouKnow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowersResult'; ofType: null; }; } }; 'following': { name: 'following'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedFollowingResult'; ofType: null; }; } }; 'getSnsSubscriptions': { name: 'getSnsSubscriptions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SnsSubscription'; ofType: null; }; }; }; } }; 'graph': { name: 'graph'; type: { kind: 'OBJECT'; name: 'Graph'; ofType: null; } }; 'graphs': { name: 'graphs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGraphsResult'; ofType: null; }; } }; 'group': { name: 'group'; type: { kind: 'OBJECT'; name: 'Group'; ofType: null; } }; 'groupMembers': { name: 'groupMembers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupMembersResult'; ofType: null; }; } }; 'groupStats': { name: 'groupStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupStatsResponse'; ofType: null; }; } }; 'groups': { name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupsResult'; ofType: null; }; } }; 'health': { name: 'health'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'lastLoggedInAccount': { name: 'lastLoggedInAccount'; type: { kind: 'OBJECT'; name: 'Account'; ofType: null; } }; 'me': { name: 'me'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MeResult'; ofType: null; }; } }; 'mlAccountRecommendations': { name: 'mlAccountRecommendations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'mlPostsExplore': { name: 'mlPostsExplore'; type: { kind: 'OBJECT'; name: 'PaginatedPostsResult'; ofType: null; } }; 'mlPostsForYou': { name: 'mlPostsForYou'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostsForYouResult'; ofType: null; }; } }; 'namespace': { name: 'namespace'; type: { kind: 'OBJECT'; name: 'UsernameNamespace'; ofType: null; } }; 'namespaces': { name: 'namespaces'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NamespacesResult'; ofType: null; }; } }; 'notifications': { name: 'notifications'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedNotificationResult'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'UNION'; name: 'AnyPost'; ofType: null; } }; 'postActions': { name: 'postActions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActions'; ofType: null; }; } }; 'postBookmarks': { name: 'postBookmarks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'postEdits': { name: 'postEdits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostEditsResult'; ofType: null; }; } }; 'postReactionStatus': { name: 'postReactionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PostReactionStatus'; ofType: null; }; }; }; } }; 'postReactions': { name: 'postReactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostReactionsResult'; ofType: null; }; } }; 'postReferences': { name: 'postReferences'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'postTags': { name: 'postTags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostTagsResult'; ofType: null; }; } }; 'posts': { name: 'posts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAnyPostsResult'; ofType: null; }; } }; 'timeline': { name: 'timeline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedTimelineResult'; ofType: null; }; } }; 'timelineHighlights': { name: 'timelineHighlights'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedPostsResult'; ofType: null; }; } }; 'transactionStatus': { name: 'transactionStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionStatusResult'; ofType: null; }; } }; 'username': { name: 'username'; type: { kind: 'OBJECT'; name: 'Username'; ofType: null; } }; 'usernames': { name: 'usernames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUsernamesResult'; ofType: null; }; } }; 'whoActedOnPost': { name: 'whoActedOnPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; 'whoReferencedPost': { name: 'whoReferencedPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedAccountsResult'; ofType: null; }; } }; }; }; 'QuoteNotification': { kind: 'OBJECT'; name: 'QuoteNotification'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; 'quote': { name: 'quote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; }; }; 'ReactionNotification': { kind: 'OBJECT'; name: 'ReactionNotification'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'reactions': { name: 'reactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NotificationAccountPostReaction'; ofType: null; }; }; }; } }; }; }; 'RecipientDataInput': { kind: 'INPUT_OBJECT'; name: 'RecipientDataInput'; isOneOf: false; inputFields: [{ name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'split'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; }; @@ -395,6 +405,7 @@ export type introspection_types = { 'RemoveAccountManagerResult': { kind: 'UNION'; name: 'RemoveAccountManagerResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'RemoveAdminsRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveAdminsRequest'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'admins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: null }]; }; 'RemoveAdminsResult': { kind: 'UNION'; name: 'RemoveAdminsResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'RemoveAppAuthorizationEndpointRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveAppAuthorizationEndpointRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'RemoveAppFeedsRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveAppFeedsRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'feeds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: null }]; }; 'RemoveAppFeedsResult': { kind: 'UNION'; name: 'RemoveAppFeedsResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'RemoveAppGroupsRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveAppGroupsRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; }; defaultValue: null }]; }; @@ -404,7 +415,7 @@ export type introspection_types = { 'RemoveSignlessResult': { kind: 'UNION'; name: 'RemoveSignlessResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'ReportAccountRequest': { kind: 'INPUT_OBJECT'; name: 'ReportAccountRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'AccountReportReason'; ofType: null; }; }; defaultValue: null }, { name: 'additionalComment'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referencePosts'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; }; defaultValue: null }]; }; 'ReportPostRequest': { kind: 'INPUT_OBJECT'; name: 'ReportPostRequest'; isOneOf: false; inputFields: [{ name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; }; defaultValue: null }, { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostReportReason'; ofType: null; }; }; defaultValue: null }, { name: 'additionalComment'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; - 'Repost': { kind: 'OBJECT'; name: 'Repost'; fields: { 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'author': { name: 'author'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'isDeleted': { name: 'isDeleted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'repostOf': { name: 'repostOf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'Repost': { kind: 'OBJECT'; name: 'Repost'; fields: { 'app': { name: 'app'; type: { kind: 'OBJECT'; name: 'App'; ofType: null; } }; 'author': { name: 'author'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'isDeleted': { name: 'isDeleted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'repostOf': { name: 'repostOf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'slug': { name: 'slug'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PostId'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; 'RepostNotification': { kind: 'OBJECT'; name: 'RepostNotification'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'GeneratedNotificationId'; ofType: null; }; } }; 'post': { name: 'post'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Post'; ofType: null; }; } }; 'reposts': { name: 'reposts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NotificationAccountRepost'; ofType: null; }; }; }; } }; }; }; 'RestrictedSigner': { kind: 'OBJECT'; name: 'RestrictedSigner'; fields: { 'label': { name: 'label'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'signer': { name: 'signer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; 'RestrictedSignerGraphRule': { kind: 'OBJECT'; name: 'RestrictedSignerGraphRule'; fields: { 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'signers': { name: 'signers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RestrictedSigner'; ofType: null; }; }; }; } }; }; }; @@ -432,6 +443,14 @@ export type introspection_types = { 'SetAppVerificationResult': { kind: 'UNION'; name: 'SetAppVerificationResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'SetDefaultAppFeedRequest': { kind: 'INPUT_OBJECT'; name: 'SetDefaultAppFeedRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'SetDefaultAppFeedResult': { kind: 'UNION'; name: 'SetDefaultAppFeedResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'SetFeedMetadataRequest': { kind: 'INPUT_OBJECT'; name: 'SetFeedMetadataRequest'; isOneOf: false; inputFields: [{ name: 'feed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'metadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'SetFeedMetadataResult': { kind: 'UNION'; name: 'SetFeedMetadataResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'SetGraphMetadataRequest': { kind: 'INPUT_OBJECT'; name: 'SetGraphMetadataRequest'; isOneOf: false; inputFields: [{ name: 'graph'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'metadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'SetGraphMetadataResult': { kind: 'UNION'; name: 'SetGraphMetadataResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'SetGroupMetadataRequest': { kind: 'INPUT_OBJECT'; name: 'SetGroupMetadataRequest'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'metadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'SetGroupMetadataResult': { kind: 'UNION'; name: 'SetGroupMetadataResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; + 'SetNamespaceMetadataRequest': { kind: 'INPUT_OBJECT'; name: 'SetNamespaceMetadataRequest'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'metadataUri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; }; + 'SetNamespaceMetadataResult': { kind: 'UNION'; name: 'SetNamespaceMetadataResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'Signature': unknown; 'SignedAuthChallenge': { kind: 'INPUT_OBJECT'; name: 'SignedAuthChallenge'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UUID'; ofType: null; }; }; defaultValue: null }, { name: 'signature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; }; defaultValue: null }]; }; 'SimpleCollectActionInput': { kind: 'INPUT_OBJECT'; name: 'SimpleCollectActionInput'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'INPUT_OBJECT'; name: 'AmountInput'; ofType: null; }; defaultValue: null }, { name: 'referralFee'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'collectLimit'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'followerOnly'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'endsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'recipients'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'RecipientDataInput'; ofType: null; }; }; }; defaultValue: null }]; }; @@ -440,21 +459,24 @@ export type introspection_types = { 'SimplePaymentFollowRule': { kind: 'OBJECT'; name: 'SimplePaymentFollowRule'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; 'SimplePaymentGroupRule': { kind: 'OBJECT'; name: 'SimplePaymentGroupRule'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; 'SimplePaymentUsernameNamespaceRule': { kind: 'OBJECT'; name: 'SimplePaymentUsernameNamespaceRule'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; }; - 'SpaceMetadata': { kind: 'OBJECT'; name: 'SpaceMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'link': { name: 'link'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'SnsNotificationType': { name: 'SnsNotificationType'; enumValues: 'MEDIA_SNAPSHOT_SUCCESS' | 'MEDIA_SNAPSHOT_ERROR' | 'METADATA_SNAPSHOT_SUCCESS' | 'METADATA_SNAPSHOT_ERROR' | 'POST_CREATED' | 'QUOTE_CREATED' | 'COMMENT_CREATED' | 'REPOST_CREATED' | 'POST_EDITED' | 'POST_DELETED' | 'POST_COLLECTED' | 'POST_ACTION_COMPLETED' | 'POST_REACTION_ADDED' | 'POST_REACTION_REMOVED' | 'POST_REPORTED' | 'ACCOUNT_CREATED' | 'ACCOUNT_MENTIONED' | 'ACCOUNT_FOLLOWED' | 'ACCOUNT_UNFOLLOWED' | 'ACCOUNT_FOLLOW_RULES_UPDATED' | 'ACCOUNT_BLOCKED' | 'ACCOUNT_UNBLOCKED' | 'ACCOUNT_METADATA_UPDATED' | 'ACCOUNT_USERNAME_CREATED' | 'ACCOUNT_USERNAME_ASSIGNED' | 'ACCOUNT_USERNAME_UNASSIGNED' | 'ACCOUNT_CONTENT_CONSUMED' | 'ACCOUNT_MANAGER_ADDED' | 'ACCOUNT_MANAGER_REMOVED' | 'ACCOUNT_MANAGER_UPDATED' | 'ACCOUNT_OWNERSHIP_TRANSFERRED' | 'ACCOUNT_REPORTED' | 'ML_PROFILE_SIGNAL'; }; + 'SnsSubscription': { kind: 'OBJECT'; name: 'SnsSubscription'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'app': { name: 'app'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UUID'; ofType: null; }; } }; 'topic': { name: 'topic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SnsNotificationType'; ofType: null; }; } }; 'topicArn': { name: 'topicArn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'webhook': { name: 'webhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; } }; }; }; + 'SnsTopicInput': { kind: 'INPUT_OBJECT'; name: 'SnsTopicInput'; isOneOf: true; inputFields: [{ name: 'mediaSnapshotSuccess'; type: { kind: 'INPUT_OBJECT'; name: 'MediaSnapshotNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'mediaSnapshotError'; type: { kind: 'INPUT_OBJECT'; name: 'MediaSnapshotNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'metadataSnapshotSuccess'; type: { kind: 'INPUT_OBJECT'; name: 'MetadataSnapshotNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'metadataSnapshotError'; type: { kind: 'INPUT_OBJECT'; name: 'MetadataSnapshotNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postCreated'; type: { kind: 'INPUT_OBJECT'; name: 'PostCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'quoteCreated'; type: { kind: 'INPUT_OBJECT'; name: 'PostCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'commentCreated'; type: { kind: 'INPUT_OBJECT'; name: 'PostCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'repostCreated'; type: { kind: 'INPUT_OBJECT'; name: 'PostCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postEdited'; type: { kind: 'INPUT_OBJECT'; name: 'PostEditedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postDeleted'; type: { kind: 'INPUT_OBJECT'; name: 'PostDeletedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postReactionAdded'; type: { kind: 'INPUT_OBJECT'; name: 'PostReactionAddedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postReactionRemoved'; type: { kind: 'INPUT_OBJECT'; name: 'PostReactionRemovedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'postReported'; type: { kind: 'INPUT_OBJECT'; name: 'PostReportedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountCreated'; type: { kind: 'INPUT_OBJECT'; name: 'AccountCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountMentioned'; type: { kind: 'INPUT_OBJECT'; name: 'AccountMentionedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountFollowed'; type: { kind: 'INPUT_OBJECT'; name: 'AccountFollowedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountUnfollowed'; type: { kind: 'INPUT_OBJECT'; name: 'AccountUnfollowedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountBlocked'; type: { kind: 'INPUT_OBJECT'; name: 'AccountBlockedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountUnblocked'; type: { kind: 'INPUT_OBJECT'; name: 'AccountUnblockedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountUsernameCreated'; type: { kind: 'INPUT_OBJECT'; name: 'AccountUsernameCreatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountUsernameAssigned'; type: { kind: 'INPUT_OBJECT'; name: 'AccountUsernameAssignedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountUsernameUnassigned'; type: { kind: 'INPUT_OBJECT'; name: 'AccountUsernameUnassignedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountManagerAdded'; type: { kind: 'INPUT_OBJECT'; name: 'AccountManagerAddedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountManagerRemoved'; type: { kind: 'INPUT_OBJECT'; name: 'AccountManagerRemovedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountManagerUpdated'; type: { kind: 'INPUT_OBJECT'; name: 'AccountManagerUpdatedNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountOwnershipTransferred'; type: { kind: 'INPUT_OBJECT'; name: 'AccountOwnershipTransferredNotificationAttributes'; ofType: null; }; defaultValue: null }, { name: 'accountReported'; type: { kind: 'INPUT_OBJECT'; name: 'AccountReportedNotificationAttributes'; ofType: null; }; defaultValue: null }]; }; + 'SpaceMetadata': { kind: 'OBJECT'; name: 'SpaceMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'link': { name: 'link'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'startsAt': { name: 'startsAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; 'SponsorLimitType': { name: 'SponsorLimitType'; enumValues: 'HOUR' | 'DAY' | 'WEEK' | 'MONTH'; }; 'SponsoredFallbackReason': { name: 'SponsoredFallbackReason'; enumValues: 'SIGNLESS_DISABLED' | 'SIGNLESS_FAILED'; }; 'SponsoredTransactionRequest': { kind: 'OBJECT'; name: 'SponsoredTransactionRequest'; fields: { 'raw': { name: 'raw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Eip712TransactionRequest'; ofType: null; }; } }; 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'sponsoredReason': { name: 'sponsoredReason'; type: { kind: 'ENUM'; name: 'SponsoredFallbackReason'; ofType: null; } }; }; }; 'SponsorshipAllowance': { kind: 'OBJECT'; name: 'SponsorshipAllowance'; fields: { 'allowance': { name: 'allowance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'allowanceLeft': { name: 'allowanceLeft'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'allowanceUsed': { name: 'allowanceUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'window': { name: 'window'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SponsorLimitType'; ofType: null; }; } }; }; }; 'StatsReactionRequest': { kind: 'INPUT_OBJECT'; name: 'StatsReactionRequest'; isOneOf: false; inputFields: [{ name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PostReactionType'; ofType: null; }; }; defaultValue: null }]; }; - 'StoryMetadata': { kind: 'OBJECT'; name: 'StoryMetadata'; fields: { 'asset': { name: 'asset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'StoryMetadata': { kind: 'OBJECT'; name: 'StoryMetadata'; fields: { 'asset': { name: 'asset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'String': unknown; 'SwitchAccountRequest': { kind: 'INPUT_OBJECT'; name: 'SwitchAccountRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'SwitchAccountResult': { kind: 'UNION'; name: 'SwitchAccountResult'; fields: {}; possibleTypes: 'AuthenticationTokens' | 'ForbiddenError'; }; 'Tag': unknown; - 'TextOnlyMetadata': { kind: 'OBJECT'; name: 'TextOnlyMetadata'; fields: { 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'TextOnlyMetadata': { kind: 'OBJECT'; name: 'TextOnlyMetadata'; fields: { 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'ThreeDAsset': { kind: 'OBJECT'; name: 'ThreeDAsset'; fields: { 'format': { name: 'format'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ThreeDAssetFormat'; ofType: null; }; } }; 'license': { name: 'license'; type: { kind: 'ENUM'; name: 'MetadataLicenseType'; ofType: null; } }; 'playerUrl': { name: 'playerUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'uri': { name: 'uri'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URI'; ofType: null; }; } }; 'zipPath': { name: 'zipPath'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'ThreeDAssetFormat': { name: 'ThreeDAssetFormat'; enumValues: 'G_LTF_GLB' | 'FBX' | 'VRM' | 'OBJ'; }; - 'ThreeDMetadata': { kind: 'OBJECT'; name: 'ThreeDMetadata'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ThreeDAsset'; ofType: null; }; }; }; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; + 'ThreeDMetadata': { kind: 'OBJECT'; name: 'ThreeDMetadata'; fields: { 'assets': { name: 'assets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ThreeDAsset'; ofType: null; }; }; }; } }; 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; }; }; 'TimelineEventItemType': { name: 'TimelineEventItemType'; enumValues: 'POST' | 'COMMENT' | 'REPOST' | 'QUOTE'; }; 'TimelineFilter': { kind: 'INPUT_OBJECT'; name: 'TimelineFilter'; isOneOf: false; inputFields: [{ name: 'apps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TimelineEventItemType'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadata'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataFilter'; ofType: null; }; defaultValue: null }]; }; 'TimelineHighlightsFilter': { kind: 'INPUT_OBJECT'; name: 'TimelineHighlightsFilter'; isOneOf: false; inputFields: [{ name: 'apps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'metadata'; type: { kind: 'INPUT_OBJECT'; name: 'PostMetadataFilter'; ofType: null; }; defaultValue: null }]; }; @@ -467,8 +489,7 @@ export type introspection_types = { 'TokenGatedGroupRule': { kind: 'OBJECT'; name: 'TokenGatedGroupRule'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'tokenStandard': { name: 'tokenStandard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TokenStandard'; ofType: null; }; } }; 'typeId': { name: 'typeId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; 'TokenGatedUsernameNamespaceRule': { kind: 'OBJECT'; name: 'TokenGatedUsernameNamespaceRule'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Amount'; ofType: null; }; } }; 'rule': { name: 'rule'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'tokenStandard': { name: 'tokenStandard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TokenStandard'; ofType: null; }; } }; 'typeId': { name: 'typeId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; 'TokenStandard': { name: 'TokenStandard'; enumValues: 'ERC_20' | 'ERC_721' | 'ERC_1155'; }; - 'TopLevelAccessCondition': { kind: 'OBJECT'; name: 'TopLevelAccessCondition'; fields: { 'criteria': { name: 'criteria'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyAccessCondition'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'TransactionMetadata': { kind: 'OBJECT'; name: 'TransactionMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; } }; }; }; + 'TransactionMetadata': { kind: 'OBJECT'; name: 'TransactionMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; } }; }; }; 'TransactionStatusRequest': { kind: 'INPUT_OBJECT'; name: 'TransactionStatusRequest'; isOneOf: false; inputFields: [{ name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; }; defaultValue: null }]; }; 'TransactionStatusResult': { kind: 'UNION'; name: 'TransactionStatusResult'; fields: {}; possibleTypes: 'FailedTransactionStatus' | 'FinishedTransactionStatus' | 'NotIndexedYetStatus' | 'PendingTransactionStatus'; }; 'TransactionType': { name: 'TransactionType'; enumValues: 'ERC_721' | 'ERC_20' | 'OTHER'; }; @@ -526,7 +547,7 @@ export type introspection_types = { 'UsernamesFilter': { kind: 'INPUT_OBJECT'; name: 'UsernamesFilter'; isOneOf: false; inputFields: [{ name: 'owner'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'linkedTo'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'namespace'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'localNameQuery'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; }; 'UsernamesOrderBy': { name: 'UsernamesOrderBy'; enumValues: 'LAST_MINTED' | 'FIRST_MINTED'; }; 'UsernamesRequest': { kind: 'INPUT_OBJECT'; name: 'UsernamesRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'UsernamesFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'UsernamesOrderBy'; ofType: null; }; }; defaultValue: "LAST_MINTED" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; - 'VideoMetadata': { kind: 'OBJECT'; name: 'VideoMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Encryptable'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'encryptedWith': { name: 'encryptedWith'; type: { kind: 'UNION'; name: 'EncryptionStrategy'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'video': { name: 'video'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaVideo'; ofType: null; }; } }; }; }; + 'VideoMetadata': { kind: 'OBJECT'; name: 'VideoMetadata'; fields: { 'attachments': { name: 'attachments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AnyMedia'; ofType: null; }; }; }; } }; 'attributes': { name: 'attributes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MetadataAttribute'; ofType: null; }; }; }; } }; 'content': { name: 'content'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'contentWarning': { name: 'contentWarning'; type: { kind: 'ENUM'; name: 'ContentWarning'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MetadataId'; ofType: null; }; } }; 'locale': { name: 'locale'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Locale'; ofType: null; }; } }; 'mainContentFocus': { name: 'mainContentFocus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MainContentFocus'; ofType: null; }; } }; 'tags': { name: 'tags'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Tag'; ofType: null; }; }; } }; 'title': { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'video': { name: 'video'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MediaVideo'; ofType: null; }; } }; }; }; 'Void': unknown; 'WhoActedOnPostFilter': { kind: 'INPUT_OBJECT'; name: 'WhoActedOnPostFilter'; isOneOf: false; inputFields: [{ name: 'anyOf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ActionFilter'; ofType: null; }; }; }; }; defaultValue: null }]; }; 'WhoActedOnPostOrderBy': { name: 'WhoActedOnPostOrderBy'; enumValues: 'LAST_ACTIONED' | 'FIRST_ACTIONED' | 'ACCOUNT_SCORE'; };