diff --git a/packages/graphql/schema.graphql b/packages/graphql/schema.graphql index efb9a2a58..3fe3670cd 100644 --- a/packages/graphql/schema.graphql +++ b/packages/graphql/schema.graphql @@ -981,6 +981,24 @@ type AuthenticationTokens { idToken: IdToken! } +input BanAccountGroupRuleConfig { + enable: AlwaysTrue +} + +input BanGroupAccountRequest { + """The group you want to ban member on.""" + group: EvmAddress! + + """The account you want to ban on the group.""" + account: EvmAddress! +} + +type BanGroupAccountResponse { + hash: TxHash! +} + +union BanGroupAccountResult = BanGroupAccountResponse | SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + scalar BigDecimal type BigDecimalKeyValue { @@ -2702,9 +2720,50 @@ type Group { metadata: GroupMetadata owner: EvmAddress! operations: LoggedInGroupOperations + + """Returns true if the group has banning rule enabled""" + banningEnabled: Boolean! + + """Returns true if the group has membership approval rule enabled""" + membershipApprovalEnabled: Boolean! rules: GroupRules! } +type GroupBannedAccount { + ruleId: RuleId! + account: Account! + bannedBy: Account! + lastActiveAt: DateTime! + bannedAt: DateTime! +} + +input GroupBannedAccountsFilter { + """The optional filter to narrow banned accounts by search query.""" + searchBy: UsernameSearchInput +} + +enum GroupBannedAccountsOrderBy { + LAST_BANNED + FIRST_BANNED + LAST_ACTIVE + ACCOUNT_SCORE +} + +input GroupBannedAccountsRequest { + """The group""" + group: EvmAddress! + filter: GroupBannedAccountsFilter + + """The order by.""" + orderBy: GroupBannedAccountsOrderBy! = ACCOUNT_SCORE + + """The page size.""" + pageSize: PageSize! = FIFTY + + """The cursor.""" + cursor: Cursor +} + input GroupGatedFeedRuleConfig { group: EvmAddress! } @@ -2843,6 +2902,7 @@ type GroupRule { input GroupRuleConfig { membershipApprovalRule: MembershipApprovalGroupRuleConfig + banAccountRule: BanAccountGroupRuleConfig tokenGatedRule: TokenGatedGroupRuleConfig simplePaymentRule: SimplePaymentGroupRuleConfig unknownRule: UnknownGroupRuleConfig @@ -2859,7 +2919,7 @@ enum GroupRuleType { TOKEN_GATED SIMPLE_PAYMENT MEMBERSHIP_APPROVAL - BAN_MEMBER + BAN_ACCOUNT UNKNOWN } @@ -2868,6 +2928,7 @@ enum GroupRuleUnsatisfiedReason { TOKEN_GATED_ACCOUNT_REMOVAL_STILL_TOKEN_HOLDER SIMPLE_PAYMENT_NOT_ENOUGH_BALANCE MEMBERSHIP_APPROVAL_REQUIRED + ACCOUNT_BANNED } type GroupRules { @@ -3187,6 +3248,7 @@ type LoggedInGroupOperations { canAddMember: GroupOperationValidationOutcome! canRemoveMember: GroupOperationValidationOutcome! isMember: Boolean! + isBanned: Boolean! } type LoggedInPostOperations { @@ -4304,6 +4366,22 @@ type Mutation { You MUST be a group owner or admin to use this mutation """ rejectGroupMembershipRequest(request: RejectGroupMembershipRequest!): RejectGroupMembershipResult! + + """ + Ban account to join a group + Banned account MUST not be a member of a group. + Use `removeGroupMember` mutation with `ban` flag to remove and ban existing members + + You MUST be authenticated as Account Owner or Account Manager to use this mutation. + """ + banGroupAccount(request: BanGroupAccountRequest!): BanGroupAccountResult! + + """ + Unban account + + You MUST be authenticated as Account Owner or Account Manager to use this mutation. + """ + unbanGroupAccount(request: UnbanGroupAccountRequest!): UnbanGroupAccountResult! createSnsSubscriptions(request: CreateSnsSubscriptionRequest!): [SnsSubscription!]! deleteSnsSubscription(request: DeleteSnsSubscriptionRequest!): Void! @@ -4564,8 +4642,6 @@ input OnboardingUserChallengeRequest { wallet: EvmAddress! } -union OperationValidationRule = PostRule | FeedRule - enum PageSize { TEN FIFTY @@ -4654,6 +4730,11 @@ type PaginatedGraphsResult { pageInfo: PaginatedResultInfo! } +type PaginatedGroupBannedAccountsResult { + items: [GroupBannedAccount!]! + pageInfo: PaginatedResultInfo! +} + type PaginatedGroupMembersResult { items: [GroupMember!]! pageInfo: PaginatedResultInfo! @@ -4924,8 +5005,10 @@ type PostOperationValidationPassed { passed: AlwaysTrue! } +union PostOperationValidationRule = PostRule | FeedRule + type PostOperationValidationUnknown { - extraChecksRequired: [OperationValidationRule!]! + extraChecksRequired: [PostOperationValidationRule!]! } type PostReaction { @@ -5327,6 +5410,9 @@ type Query { """Get the group membership requests""" groupMembershipRequests(request: GroupMembershipRequestsRequest!): PaginatedGroupMembershipRequestsResult! + """Get the banned accounts of a group""" + groupBannedAccounts(request: GroupBannedAccountsRequest!): PaginatedGroupBannedAccountsResult! + """Get admins for a graph/app/sponsor/feed/username/group address""" adminsFor(request: AdminsForRequest!): PaginatedAdminsResult! @@ -5494,6 +5580,9 @@ input RemoveGroupMemberRequest { """The account you want to remove from the group.""" account: EvmAddress! + """Ban the account from the joining the group.""" + ban: Boolean! = false + """The processing params for the join rules.""" rulesProcessingParams: [GroupRulesProcessingParams!] } @@ -6458,6 +6547,8 @@ enum TransactionOperation { GROUP_MEMBERSHIP_APPROVAL_REQUEST_CANCELLED GROUP_MEMBERSHIP_APPROVAL_APPROVED GROUP_MEMBERSHIP_APPROVAL_REJECTED + GROUP_ACCOUNT_BANNED + GROUP_ACCOUNT_UNBANNED NAMESPACE_FACTORY_DEPLOYMENT SPONSOR_FREE_PAYMASTER_CREATED SPONSOR_ADDED_TO_APPROVED_SIGNERS @@ -6552,6 +6643,20 @@ type UnassignUsernameResponse { union UnassignUsernameToAccountResult = UnassignUsernameResponse | SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail +input UnbanGroupAccountRequest { + """The group you want to unban member on.""" + group: EvmAddress! + + """The account you want to unban on the group.""" + account: EvmAddress! +} + +type UnbanGroupAccountResponse { + hash: TxHash! +} + +union UnbanGroupAccountResult = UnbanGroupAccountResponse | SponsoredTransactionRequest | SelfFundedTransactionRequest | TransactionWillFail + type UnblockError { error: UnblockErrorType! } diff --git a/packages/graphql/src/fragments/post.ts b/packages/graphql/src/fragments/post.ts index db24e33f0..6ce498d3c 100644 --- a/packages/graphql/src/fragments/post.ts +++ b/packages/graphql/src/fragments/post.ts @@ -176,7 +176,7 @@ export const PostRuleFragment = graphql( export type PostRule = FragmentOf; export const PostOperationValidationRuleFragment = graphql( - `fragment PostOperationValidationRule on OperationValidationRule { + `fragment PostOperationValidationRule on PostOperationValidationRule { ... on PostRule { ...PostRule } diff --git a/packages/graphql/src/graphql-env.d.ts b/packages/graphql/src/graphql-env.d.ts index 67ee53936..cafab2c81 100644 --- a/packages/graphql/src/graphql-env.d.ts +++ b/packages/graphql/src/graphql-env.d.ts @@ -126,6 +126,10 @@ export type introspection_types = { '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; }; } }; }; }; 'AuthenticationResult': { kind: 'UNION'; name: 'AuthenticationResult'; fields: {}; possibleTypes: 'AuthenticationTokens' | 'ExpiredChallengeError' | 'ForbiddenError' | 'WrongSignerError'; }; 'AuthenticationTokens': { kind: 'OBJECT'; name: 'AuthenticationTokens'; fields: { 'accessToken': { name: 'accessToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'AccessToken'; ofType: null; }; } }; 'idToken': { name: 'idToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'IdToken'; ofType: null; }; } }; 'refreshToken': { name: 'refreshToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'RefreshToken'; ofType: null; }; } }; }; }; + 'BanAccountGroupRuleConfig': { kind: 'INPUT_OBJECT'; name: 'BanAccountGroupRuleConfig'; isOneOf: false; inputFields: [{ name: 'enable'; type: { kind: 'SCALAR'; name: 'AlwaysTrue'; ofType: null; }; defaultValue: null }]; }; + 'BanGroupAccountRequest': { kind: 'INPUT_OBJECT'; name: 'BanGroupAccountRequest'; isOneOf: false; inputFields: [{ name: 'group'; 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 }]; }; + 'BanGroupAccountResponse': { kind: 'OBJECT'; name: 'BanGroupAccountResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; + 'BanGroupAccountResult': { kind: 'UNION'; name: 'BanGroupAccountResult'; fields: {}; possibleTypes: 'BanGroupAccountResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'BigDecimal': unknown; 'BigDecimalKeyValue': { kind: 'OBJECT'; name: 'BigDecimalKeyValue'; fields: { 'key': { name: 'key'; 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: 'BigDecimal'; ofType: null; }; } }; }; }; 'BigInt': unknown; @@ -290,7 +294,11 @@ export type introspection_types = { 'GraphsFilter': { kind: 'INPUT_OBJECT'; name: 'GraphsFilter'; 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 }]; }; 'GraphsOrderBy': { name: 'GraphsOrderBy'; enumValues: 'LATEST_FIRST' | 'OLDEST_FIRST' | 'ALPHABETICAL'; }; 'GraphsRequest': { kind: 'INPUT_OBJECT'; name: 'GraphsRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'GraphsFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'GraphsOrderBy'; 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 }]; }; - 'Group': { kind: 'OBJECT'; name: 'Group'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'OBJECT'; name: 'GroupMetadata'; ofType: null; } }; 'operations': { name: 'operations'; type: { kind: 'OBJECT'; name: 'LoggedInGroupOperations'; 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: 'GroupRules'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'Group': { kind: 'OBJECT'; name: 'Group'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'banningEnabled': { name: 'banningEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'membershipApprovalEnabled': { name: 'membershipApprovalEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'OBJECT'; name: 'GroupMetadata'; ofType: null; } }; 'operations': { name: 'operations'; type: { kind: 'OBJECT'; name: 'LoggedInGroupOperations'; 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: 'GroupRules'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; + 'GroupBannedAccount': { kind: 'OBJECT'; name: 'GroupBannedAccount'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'bannedAt': { name: 'bannedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'bannedBy': { name: 'bannedBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'lastActiveAt': { name: 'lastActiveAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'ruleId': { name: 'ruleId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'RuleId'; ofType: null; }; } }; }; }; + 'GroupBannedAccountsFilter': { kind: 'INPUT_OBJECT'; name: 'GroupBannedAccountsFilter'; isOneOf: false; inputFields: [{ name: 'searchBy'; type: { kind: 'INPUT_OBJECT'; name: 'UsernameSearchInput'; ofType: null; }; defaultValue: null }]; }; + 'GroupBannedAccountsOrderBy': { name: 'GroupBannedAccountsOrderBy'; enumValues: 'LAST_BANNED' | 'FIRST_BANNED' | 'LAST_ACTIVE' | 'ACCOUNT_SCORE'; }; + 'GroupBannedAccountsRequest': { kind: 'INPUT_OBJECT'; name: 'GroupBannedAccountsRequest'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'GroupBannedAccountsFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'GroupBannedAccountsOrderBy'; ofType: null; }; }; defaultValue: "ACCOUNT_SCORE" }, { 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 }]; }; 'GroupGatedFeedRuleConfig': { kind: 'INPUT_OBJECT'; name: 'GroupGatedFeedRuleConfig'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'GroupGatedGraphRuleConfig': { kind: 'INPUT_OBJECT'; name: 'GroupGatedGraphRuleConfig'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; 'GroupMember': { kind: 'OBJECT'; name: 'GroupMember'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'joinedAt': { name: 'joinedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'lastActiveAt': { name: 'lastActiveAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; }; @@ -309,10 +317,10 @@ export type introspection_types = { 'GroupOperationValidationUnknown': { kind: 'OBJECT'; name: 'GroupOperationValidationUnknown'; fields: { 'extraChecksRequired': { name: 'extraChecksRequired'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupRule'; ofType: null; }; }; }; } }; }; }; 'GroupRequest': { kind: 'INPUT_OBJECT'; name: 'GroupRequest'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; }; 'GroupRule': { kind: 'OBJECT'; name: 'GroupRule'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'extraData': { name: 'extraData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExtraData'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'RuleId'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'GroupRuleType'; ofType: null; }; } }; }; }; - 'GroupRuleConfig': { kind: 'INPUT_OBJECT'; name: 'GroupRuleConfig'; isOneOf: false; inputFields: [{ name: 'membershipApprovalRule'; type: { kind: 'INPUT_OBJECT'; name: 'MembershipApprovalGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'tokenGatedRule'; type: { kind: 'INPUT_OBJECT'; name: 'TokenGatedGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'simplePaymentRule'; type: { kind: 'INPUT_OBJECT'; name: 'SimplePaymentGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'unknownRule'; type: { kind: 'INPUT_OBJECT'; name: 'UnknownGroupRuleConfig'; ofType: null; }; defaultValue: null }]; }; + 'GroupRuleConfig': { kind: 'INPUT_OBJECT'; name: 'GroupRuleConfig'; isOneOf: false; inputFields: [{ name: 'membershipApprovalRule'; type: { kind: 'INPUT_OBJECT'; name: 'MembershipApprovalGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'banAccountRule'; type: { kind: 'INPUT_OBJECT'; name: 'BanAccountGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'tokenGatedRule'; type: { kind: 'INPUT_OBJECT'; name: 'TokenGatedGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'simplePaymentRule'; type: { kind: 'INPUT_OBJECT'; name: 'SimplePaymentGroupRuleConfig'; ofType: null; }; defaultValue: null }, { name: 'unknownRule'; type: { kind: 'INPUT_OBJECT'; name: 'UnknownGroupRuleConfig'; ofType: null; }; defaultValue: null }]; }; 'GroupRuleExecuteOn': { name: 'GroupRuleExecuteOn'; enumValues: 'ADDING' | 'REMOVING' | 'JOINING' | 'LEAVING'; }; - 'GroupRuleType': { name: 'GroupRuleType'; enumValues: 'TOKEN_GATED' | 'SIMPLE_PAYMENT' | 'MEMBERSHIP_APPROVAL' | 'BAN_MEMBER' | 'UNKNOWN'; }; - 'GroupRuleUnsatisfiedReason': { name: 'GroupRuleUnsatisfiedReason'; enumValues: 'TOKEN_GATED_ACCOUNT_JOINING_NOT_A_TOKEN_HOLDER' | 'TOKEN_GATED_ACCOUNT_REMOVAL_STILL_TOKEN_HOLDER' | 'SIMPLE_PAYMENT_NOT_ENOUGH_BALANCE' | 'MEMBERSHIP_APPROVAL_REQUIRED'; }; + 'GroupRuleType': { name: 'GroupRuleType'; enumValues: 'TOKEN_GATED' | 'SIMPLE_PAYMENT' | 'MEMBERSHIP_APPROVAL' | 'BAN_ACCOUNT' | 'UNKNOWN'; }; + 'GroupRuleUnsatisfiedReason': { name: 'GroupRuleUnsatisfiedReason'; enumValues: 'TOKEN_GATED_ACCOUNT_JOINING_NOT_A_TOKEN_HOLDER' | 'TOKEN_GATED_ACCOUNT_REMOVAL_STILL_TOKEN_HOLDER' | 'SIMPLE_PAYMENT_NOT_ENOUGH_BALANCE' | 'MEMBERSHIP_APPROVAL_REQUIRED' | 'ACCOUNT_BANNED'; }; 'GroupRules': { kind: 'OBJECT'; name: 'GroupRules'; fields: { 'anyOf': { name: 'anyOf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupRule'; ofType: null; }; }; }; } }; 'required': { name: 'required'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupRule'; ofType: null; }; }; }; } }; }; }; 'GroupRulesConfigInput': { kind: 'INPUT_OBJECT'; name: 'GroupRulesConfigInput'; isOneOf: false; inputFields: [{ name: 'required'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupRuleConfig'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'anyOf'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupRuleConfig'; ofType: null; }; }; }; }; defaultValue: null }]; }; 'GroupRulesProcessingParams': { kind: 'INPUT_OBJECT'; name: 'GroupRulesProcessingParams'; isOneOf: false; inputFields: [{ name: 'unknownRule'; type: { kind: 'INPUT_OBJECT'; name: 'UnknownRuleProcessingParams'; ofType: null; }; defaultValue: null }]; }; @@ -353,7 +361,7 @@ export type introspection_types = { '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: 'AccountFollowOperationValidationOutcome'; 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: 'AccountFollowOperationValidationOutcome'; 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: 'FeedOperationValidationOutcome'; ofType: null; }; } }; }; }; - 'LoggedInGroupOperations': { kind: 'OBJECT'; name: 'LoggedInGroupOperations'; fields: { 'canAddMember': { name: 'canAddMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canJoin': { name: 'canJoin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canLeave': { name: 'canLeave'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canRemoveMember': { name: 'canRemoveMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'isMember': { name: 'isMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + 'LoggedInGroupOperations': { kind: 'OBJECT'; name: 'LoggedInGroupOperations'; fields: { 'canAddMember': { name: 'canAddMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canJoin': { name: 'canJoin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canLeave': { name: 'canLeave'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'canRemoveMember': { name: 'canRemoveMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'GroupOperationValidationOutcome'; ofType: null; }; } }; 'isBanned': { name: 'isBanned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isMember': { name: 'isMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'LoggedInPostOperations': { kind: 'OBJECT'; name: 'LoggedInPostOperations'; fields: { 'canComment': { name: 'canComment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationOutcome'; ofType: null; }; } }; 'canDelete': { name: 'canDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationOutcome'; ofType: null; }; } }; 'canEdit': { name: 'canEdit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationOutcome'; ofType: null; }; } }; 'canQuote': { name: 'canQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationOutcome'; ofType: null; }; } }; 'canRepost': { name: 'canRepost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationOutcome'; ofType: null; }; } }; 'hasBookmarked': { name: 'hasBookmarked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hasCommented': { name: 'hasCommented'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BooleanValue'; ofType: null; }; } }; 'hasQuoted': { name: 'hasQuoted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BooleanValue'; ofType: null; }; } }; 'hasReacted': { name: 'hasReacted'; 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; }; } }; 'hasReposted': { name: 'hasReposted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BooleanValue'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isNotInterested': { name: 'isNotInterested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; 'LoggedInUsernameOperations': { kind: 'OBJECT'; name: 'LoggedInUsernameOperations'; fields: { 'canAssign': { name: 'canAssign'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'NamespaceOperationValidationOutcome'; ofType: null; }; } }; 'canRemove': { name: 'canRemove'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'NamespaceOperationValidationOutcome'; ofType: null; }; } }; 'canUnassign': { name: 'canUnassign'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'NamespaceOperationValidationOutcome'; ofType: null; }; } }; }; }; 'MainContentFocus': { name: 'MainContentFocus'; enumValues: 'ARTICLE' | 'AUDIO' | 'CHECKING_IN' | 'EMBED' | 'EVENT' | 'IMAGE' | 'LINK' | 'LIVESTREAM' | 'MINT' | 'SHORT_VIDEO' | 'SPACE' | 'STORY' | 'TEXT_ONLY' | 'THREE_D' | 'TRANSACTION' | 'VIDEO'; }; @@ -381,7 +389,7 @@ export type introspection_types = { '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; }; } }; 'addGroupMember': { name: 'addGroupMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddGroupMemberResult'; 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; }; } }; 'cancelGroupMembershipRequest': { name: 'cancelGroupMembershipRequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CancelGroupMembershipRequestResult'; ofType: null; }; } }; 'challenge': { name: 'challenge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticationChallenge'; ofType: null; }; } }; 'configureAccountAction': { name: 'configureAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ConfigureAccountActionResult'; ofType: null; }; } }; 'configurePostAction': { name: 'configurePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ConfigurePostActionResult'; 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; }; }; }; } }; 'createSponsorship': { name: 'createSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateSponsorshipResult'; 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; }; } }; 'disableAccountAction': { name: 'disableAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DisableAccountActionResult'; ofType: null; }; } }; 'disablePostAction': { name: 'disablePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DisablePostActionResult'; ofType: null; }; } }; 'editPost': { name: 'editPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'enableAccountAction': { name: 'enableAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableAccountActionResult'; ofType: null; }; } }; 'enablePostAction': { name: 'enablePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnablePostActionResult'; ofType: null; }; } }; 'enableSignless': { name: 'enableSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableSignlessResult'; ofType: null; }; } }; 'executeAccountAction': { name: 'executeAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecuteAccountActionResult'; ofType: null; }; } }; 'executePostAction': { name: 'executePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutePostActionResult'; 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; }; } }; 'pauseSponsorship': { name: 'pauseSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PausingResult'; 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; }; } }; 'rejectGroupMembershipRequest': { name: 'rejectGroupMembershipRequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RejectGroupMembershipResult'; 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; }; } }; 'removeGroupMember': { name: 'removeGroupMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveGroupMemberResult'; 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; }; } }; 'requestGroupMembership': { name: 'requestGroupMembership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RequestGroupMembershipResult'; 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; }; } }; 'setSponsorshipMetadata': { name: 'setSponsorshipMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetSponsorshipMetadataResult'; 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; }; } }; 'unpauseSponsorship': { name: 'unpauseSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PausingResult'; ofType: null; }; } }; 'updateAccountFollowRules': { name: 'updateAccountFollowRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountFollowRulesResult'; ofType: null; }; } }; 'updateAccountManager': { name: 'updateAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountManagerResult'; ofType: null; }; } }; 'updateFeedRules': { name: 'updateFeedRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateFeedRulesResult'; ofType: null; }; } }; 'updateGraphRules': { name: 'updateGraphRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateGraphRulesResult'; ofType: null; }; } }; 'updateGroupRules': { name: 'updateGroupRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateGroupRulesResult'; ofType: null; }; } }; 'updateNamespaceRules': { name: 'updateNamespaceRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateNamespaceRulesResult'; ofType: null; }; } }; 'updatePostRules': { name: 'updatePostRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdatePostRulesResult'; ofType: null; }; } }; 'updateSponsorshipExclusionList': { name: 'updateSponsorshipExclusionList'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipExclusionListResult'; ofType: null; }; } }; 'updateSponsorshipLimits': { name: 'updateSponsorshipLimits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipLimitsResult'; ofType: null; }; } }; 'updateSponsorshipSigners': { name: 'updateSponsorshipSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipSignersResult'; 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; }; } }; 'addGroupMember': { name: 'addGroupMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AddGroupMemberResult'; 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; }; } }; 'banGroupAccount': { name: 'banGroupAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BanGroupAccountResult'; 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; }; } }; 'cancelGroupMembershipRequest': { name: 'cancelGroupMembershipRequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CancelGroupMembershipRequestResult'; ofType: null; }; } }; 'challenge': { name: 'challenge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AuthenticationChallenge'; ofType: null; }; } }; 'configureAccountAction': { name: 'configureAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ConfigureAccountActionResult'; ofType: null; }; } }; 'configurePostAction': { name: 'configurePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ConfigurePostActionResult'; 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; }; }; }; } }; 'createSponsorship': { name: 'createSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'CreateSponsorshipResult'; 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; }; } }; 'disableAccountAction': { name: 'disableAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DisableAccountActionResult'; ofType: null; }; } }; 'disablePostAction': { name: 'disablePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'DisablePostActionResult'; ofType: null; }; } }; 'editPost': { name: 'editPost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostResult'; ofType: null; }; } }; 'enableAccountAction': { name: 'enableAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableAccountActionResult'; ofType: null; }; } }; 'enablePostAction': { name: 'enablePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnablePostActionResult'; ofType: null; }; } }; 'enableSignless': { name: 'enableSignless'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EnableSignlessResult'; ofType: null; }; } }; 'executeAccountAction': { name: 'executeAccountAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecuteAccountActionResult'; ofType: null; }; } }; 'executePostAction': { name: 'executePostAction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutePostActionResult'; 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; }; } }; 'pauseSponsorship': { name: 'pauseSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PausingResult'; 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; }; } }; 'rejectGroupMembershipRequest': { name: 'rejectGroupMembershipRequest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RejectGroupMembershipResult'; 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; }; } }; 'removeGroupMember': { name: 'removeGroupMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RemoveGroupMemberResult'; 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; }; } }; 'requestGroupMembership': { name: 'requestGroupMembership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RequestGroupMembershipResult'; 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; }; } }; 'setSponsorshipMetadata': { name: 'setSponsorshipMetadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SetSponsorshipMetadataResult'; 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; }; } }; 'unbanGroupAccount': { name: 'unbanGroupAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnbanGroupAccountResult'; 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; }; } }; 'unpauseSponsorship': { name: 'unpauseSponsorship'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PausingResult'; ofType: null; }; } }; 'updateAccountFollowRules': { name: 'updateAccountFollowRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountFollowRulesResult'; ofType: null; }; } }; 'updateAccountManager': { name: 'updateAccountManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateAccountManagerResult'; ofType: null; }; } }; 'updateFeedRules': { name: 'updateFeedRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateFeedRulesResult'; ofType: null; }; } }; 'updateGraphRules': { name: 'updateGraphRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateGraphRulesResult'; ofType: null; }; } }; 'updateGroupRules': { name: 'updateGroupRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateGroupRulesResult'; ofType: null; }; } }; 'updateNamespaceRules': { name: 'updateNamespaceRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateNamespaceRulesResult'; ofType: null; }; } }; 'updatePostRules': { name: 'updatePostRules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdatePostRulesResult'; ofType: null; }; } }; 'updateSponsorshipExclusionList': { name: 'updateSponsorshipExclusionList'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipExclusionListResult'; ofType: null; }; } }; 'updateSponsorshipLimits': { name: 'updateSponsorshipLimits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipLimitsResult'; ofType: null; }; } }; 'updateSponsorshipSigners': { name: 'updateSponsorshipSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UpdateSponsorshipSignersResult'; 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 }]; }; 'NamespaceOperationValidationFailed': { kind: 'OBJECT'; name: 'NamespaceOperationValidationFailed'; fields: { 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'unsatisfiedRules': { name: 'unsatisfiedRules'; type: { kind: 'OBJECT'; name: 'NamespaceUnsatisfiedRules'; ofType: null; } }; }; }; 'NamespaceOperationValidationOutcome': { kind: 'UNION'; name: 'NamespaceOperationValidationOutcome'; fields: {}; possibleTypes: 'NamespaceOperationValidationFailed' | 'NamespaceOperationValidationPassed' | 'NamespaceOperationValidationUnknown'; }; @@ -412,7 +420,6 @@ export type introspection_types = { 'NotificationRequest': { kind: 'INPUT_OBJECT'; name: 'NotificationRequest'; isOneOf: false; inputFields: [{ name: 'filter'; type: { kind: 'INPUT_OBJECT'; name: 'NotificationFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NotificationOrderBy'; ofType: null; }; }; defaultValue: "DEFAULT" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; }; 'NotificationType': { name: 'NotificationType'; enumValues: 'REPOSTED' | 'QUOTED' | 'COMMENTED' | 'FOLLOWED' | 'MENTIONED' | 'REACTED'; }; 'OnboardingUserChallengeRequest': { kind: 'INPUT_OBJECT'; name: 'OnboardingUserChallengeRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x75eE97D12c168DD0d500Af5E2ada0Bd5823eD995\"" }, { name: 'wallet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; }; - 'OperationValidationRule': { kind: 'UNION'; name: 'OperationValidationRule'; fields: {}; possibleTypes: 'FeedRule' | 'PostRule'; }; 'PageSize': { name: 'PageSize'; enumValues: 'TEN' | 'FIFTY'; }; 'PaginatedAccountManagersResult': { kind: 'OBJECT'; name: 'PaginatedAccountManagersResult'; 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: 'AccountManager'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedAccountsAvailableResult': { kind: 'OBJECT'; name: 'PaginatedAccountsAvailableResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'AccountAvailable'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; @@ -429,6 +436,7 @@ export type introspection_types = { 'PaginatedFollowersResult': { kind: 'OBJECT'; name: 'PaginatedFollowersResult'; 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: 'Follower'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedFollowingResult': { kind: 'OBJECT'; name: 'PaginatedFollowingResult'; 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: 'Following'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedGraphsResult': { kind: 'OBJECT'; name: 'PaginatedGraphsResult'; 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: 'Graph'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; + 'PaginatedGroupBannedAccountsResult': { kind: 'OBJECT'; name: 'PaginatedGroupBannedAccountsResult'; 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: 'GroupBannedAccount'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedGroupMembersResult': { kind: 'OBJECT'; name: 'PaginatedGroupMembersResult'; 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: 'GroupMember'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedGroupMembershipRequestsResult': { kind: 'OBJECT'; name: 'PaginatedGroupMembershipRequestsResult'; 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: 'GroupMembershipRequest'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; 'PaginatedGroupsResult': { kind: 'OBJECT'; name: 'PaginatedGroupsResult'; 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: 'Group'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; }; @@ -472,7 +480,8 @@ export type introspection_types = { 'PostOperationValidationFailed': { kind: 'OBJECT'; name: 'PostOperationValidationFailed'; fields: { 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'unsatisfiedRules': { name: 'unsatisfiedRules'; type: { kind: 'OBJECT'; name: 'PostUnsatisfiedRules'; ofType: null; } }; }; }; 'PostOperationValidationOutcome': { kind: 'UNION'; name: 'PostOperationValidationOutcome'; fields: {}; possibleTypes: 'PostOperationValidationFailed' | 'PostOperationValidationPassed' | 'PostOperationValidationUnknown'; }; 'PostOperationValidationPassed': { kind: 'OBJECT'; name: 'PostOperationValidationPassed'; fields: { 'passed': { name: 'passed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'AlwaysTrue'; ofType: null; }; } }; }; }; - 'PostOperationValidationUnknown': { kind: 'OBJECT'; name: 'PostOperationValidationUnknown'; fields: { 'extraChecksRequired': { name: 'extraChecksRequired'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'OperationValidationRule'; ofType: null; }; }; }; } }; }; }; + 'PostOperationValidationRule': { kind: 'UNION'; name: 'PostOperationValidationRule'; fields: {}; possibleTypes: 'FeedRule' | 'PostRule'; }; + 'PostOperationValidationUnknown': { kind: 'OBJECT'; name: 'PostOperationValidationUnknown'; fields: { 'extraChecksRequired': { name: 'extraChecksRequired'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PostOperationValidationRule'; ofType: 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'; }; @@ -509,7 +518,7 @@ export type introspection_types = { 'PostsFilter': { kind: 'INPUT_OBJECT'; name: 'PostsFilter'; isOneOf: false; inputFields: [{ name: 'feeds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeedOneOf'; ofType: null; }; }; }; defaultValue: null }, { 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: '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 }]; }; 'PrimitiveData': { kind: 'UNION'; name: 'PrimitiveData'; fields: {}; possibleTypes: 'AddressKeyValue' | 'BigDecimalKeyValue' | 'BooleanKeyValue' | 'IntKeyValue' | 'IntNullableKeyValue' | 'RawKeyValue' | 'StringKeyValue'; }; - '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; }; } }; '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; }; } }; 'groupMembershipRequests': { name: 'groupMembershipRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupMembershipRequestsResult'; 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; }; } }; 'sponsorship': { name: 'sponsorship'; type: { kind: 'OBJECT'; name: 'Sponsorship'; ofType: null; } }; 'sponsorshipLimitsExclusions': { name: 'sponsorshipLimitsExclusions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipLimitsExclusionsResult'; ofType: null; }; } }; 'sponsorshipSigners': { name: 'sponsorshipSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipSignersResult'; ofType: null; }; } }; 'sponsorships': { name: 'sponsorships'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipsResult'; 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; }; } }; '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; } }; 'groupBannedAccounts': { name: 'groupBannedAccounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupBannedAccountsResult'; ofType: null; }; } }; 'groupMembers': { name: 'groupMembers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupMembersResult'; ofType: null; }; } }; 'groupMembershipRequests': { name: 'groupMembershipRequests'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedGroupMembershipRequestsResult'; 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; }; } }; 'sponsorship': { name: 'sponsorship'; type: { kind: 'OBJECT'; name: 'Sponsorship'; ofType: null; } }; 'sponsorshipLimitsExclusions': { name: 'sponsorshipLimitsExclusions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipLimitsExclusionsResult'; ofType: null; }; } }; 'sponsorshipSigners': { name: 'sponsorshipSigners'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipSignersResult'; ofType: null; }; } }; 'sponsorships': { name: 'sponsorships'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SponsorshipsResult'; 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; }; } }; }; }; 'RawKeyValue': { kind: 'OBJECT'; name: 'RawKeyValue'; fields: { 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; }; }; 'RawKeyValueInput': { kind: 'INPUT_OBJECT'; name: 'RawKeyValueInput'; isOneOf: false; inputFields: [{ name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; }; defaultValue: null }]; }; @@ -533,7 +542,7 @@ export type introspection_types = { 'RemoveAppGroupsResult': { kind: 'UNION'; name: 'RemoveAppGroupsResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'RemoveAppSignersRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveAppSignersRequest'; isOneOf: false; inputFields: [{ name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'signers'; 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 }]; }; 'RemoveAppSignersResult': { kind: 'UNION'; name: 'RemoveAppSignersResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; - 'RemoveGroupMemberRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveGroupMemberRequest'; isOneOf: false; inputFields: [{ name: 'group'; 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 }, { name: 'rulesProcessingParams'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupRulesProcessingParams'; ofType: null; }; }; }; defaultValue: null }]; }; + 'RemoveGroupMemberRequest': { kind: 'INPUT_OBJECT'; name: 'RemoveGroupMemberRequest'; isOneOf: false; inputFields: [{ name: 'group'; 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 }, { name: 'ban'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }, { name: 'rulesProcessingParams'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupRulesProcessingParams'; ofType: null; }; }; }; defaultValue: null }]; }; 'RemoveGroupMemberResponse': { kind: 'OBJECT'; name: 'RemoveGroupMemberResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'RemoveGroupMemberResult': { kind: 'UNION'; name: 'RemoveGroupMemberResult'; fields: {}; possibleTypes: 'RemoveGroupMemberResponse' | 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; 'RemoveSignlessResult': { kind: 'UNION'; name: 'RemoveSignlessResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail'; }; @@ -643,7 +652,7 @@ export type introspection_types = { 'TokenGatedNamespaceRuleConfig': { kind: 'INPUT_OBJECT'; name: 'TokenGatedNamespaceRuleConfig'; isOneOf: false; inputFields: [{ name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenAmountInput'; ofType: null; }; }; defaultValue: null }]; }; 'TokenStandard': { name: 'TokenStandard'; enumValues: 'ERC20' | 'ERC721' | 'ERC1155'; }; '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; }; } }; }; }; - 'TransactionOperation': { name: 'TransactionOperation'; enumValues: 'ACCESS_CONTROL_ROLE_GRANTED' | 'ACCESS_CONTROL_ROLE_REVOKED' | 'ACCESS_CONTROL_FACTORY_OWNER_ADMIN_DEPLOYMENT' | 'ACCOUNT_FACTORY_DEPLOYMENT' | 'ACCOUNT_MANAGER_ADDED' | 'ACCOUNT_MANAGER_REMOVED' | 'ACCOUNT_MANAGER_UPDATED' | 'ACCOUNT_OWNER_TRANSFERRED' | 'ACCOUNT_METADATA_URI_SET' | 'ACCOUNT_ACTION_CONFIGURED' | 'ACCOUNT_ACTION_RECONFIGURED' | 'ACCOUNT_ACTION_DISABLED' | 'ACCOUNT_ACTION_ENABLED' | 'ACCOUNT_ACTION_EXECUTED' | 'POST_ACTION_CONFIGURED' | 'POST_ACTION_RECONFIGURED' | 'POST_ACTION_DISABLED' | 'POST_ACTION_ENABLED' | 'POST_ACTION_EXECUTED' | 'ACTION_METADATA_URI_SET' | 'APP_FACTORY_DEPLOYMENT' | 'APP_ACCESS_CONTROL_ADDED' | 'APP_ACCESS_CONTROL_UPDATED' | 'APP_DEFAULT_FEED_SET' | 'APP_EXTRA_DATA_ADDED' | 'APP_EXTRA_DATA_REMOVED' | 'APP_EXTRA_DATA_UPDATED' | 'APP_FEED_ADDED' | 'APP_FEED_REMOVED' | 'APP_GRAPH_ADDED' | 'APP_GRAPH_REMOVED' | 'APP_GROUP_ADDED' | 'APP_GROUP_REMOVED' | 'APP_METADATA_URI_SET' | 'APP_SIGNER_ADDED' | 'APP_SIGNER_REMOVED' | 'APP_SOURCE_STAMP_VERIFICATION_SET' | 'APP_PAYMASTER_ADDED' | 'APP_PAYMASTER_REMOVED' | 'APP_TREASURY_SET' | 'APP_NAMESPACE_ADDED' | 'APP_NAMESPACE_REMOVED' | 'FEED_ACCESS_CONTROL_ADDED' | 'FEED_ACCESS_CONTROL_UPDATED' | 'FEED_EXTRA_DATA_ADDED' | 'FEED_EXTRA_DATA_REMOVED' | 'FEED_EXTRA_DATA_UPDATED' | 'FEED_METADATA_URI_SET' | 'FEED_POST_CREATED' | 'FEED_POST_DELETED' | 'FEED_POST_EDITED' | 'FEED_POST_EXTRA_DATA_ADDED' | 'FEED_POST_EXTRA_DATA_REMOVED' | 'FEED_POST_EXTRA_DATA_UPDATED' | 'FEED_RULE_CONFIGURED' | 'FEED_RULE_RECONFIGURED' | 'FEED_RULE_SELECTOR_ENABLED' | 'FEED_RULE_SELECTOR_DISABLED' | 'FEED_POST_RULE_CONFIGURED' | 'FEED_POST_RULE_RECONFIGURED' | 'FEED_POST_RULE_SELECTOR_ENABLED' | 'FEED_POST_RULE_SELECTOR_DISABLED' | 'GRAPH_FACTORY_DEPLOYMENT' | 'GRAPH_ACCESS_CONTROL_ADDED' | 'GRAPH_ACCESS_CONTROL_UPDATED' | 'GRAPH_EXTRA_DATA_ADDED' | 'GRAPH_EXTRA_DATA_REMOVED' | 'GRAPH_EXTRA_DATA_UPDATED' | 'GRAPH_FOLLOWED' | 'GRAPH_METADATA_URI_SET' | 'GRAPH_UNFOLLOWED' | 'GRAPH_RULE_CONFIGURED' | 'GRAPH_RULE_RECONFIGURED' | 'GRAPH_RULE_SELECTOR_ENABLED' | 'GRAPH_RULE_SELECTOR_DISABLED' | 'GRAPH_FOLLOW_RULE_CONFIGURED' | 'GRAPH_FOLLOW_RULE_RECONFIGURED' | 'GRAPH_FOLLOW_RULE_SELECTOR_ENABLED' | 'GRAPH_FOLLOW_RULE_SELECTOR_DISABLED' | 'GROUP_FACTORY_DEPLOYMENT' | 'GROUP_MEMBER_JOINED' | 'GROUP_MEMBER_LEFT' | 'GROUP_MEMBER_REMOVED' | 'GROUP_MEMBER_ADDED' | 'GROUP_ACCESS_CONTROL_ADDED' | 'GROUP_ACCESS_CONTROL_UPDATED' | 'GROUP_EXTRA_DATA_ADDED' | 'GROUP_EXTRA_DATA_REMOVED' | 'GROUP_EXTRA_DATA_UPDATED' | 'GROUP_METADATA_URI_SET' | 'GROUP_RULE_CONFIGURED' | 'GROUP_RULE_RECONFIGURED' | 'GROUP_RULE_SELECTOR_ENABLED' | 'GROUP_RULE_SELECTOR_DISABLED' | 'GROUP_MEMBERSHIP_APPROVAL_REQUESTED' | 'GROUP_MEMBERSHIP_APPROVAL_REQUEST_CANCELLED' | 'GROUP_MEMBERSHIP_APPROVAL_APPROVED' | 'GROUP_MEMBERSHIP_APPROVAL_REJECTED' | 'NAMESPACE_FACTORY_DEPLOYMENT' | 'SPONSOR_FREE_PAYMASTER_CREATED' | 'SPONSOR_ADDED_TO_APPROVED_SIGNERS' | 'SPONSOR_METADATA_URI_CHANGED' | 'USERNAME_ASSIGNED' | 'USERNAME_CREATED' | 'USERNAME_REMOVED' | 'USERNAME_UNASSIGNED' | 'USERNAME_ACCESS_CONTROL_ADDED' | 'USERNAME_ACCESS_CONTROL_UPDATED' | 'USERNAME_EXTRA_DATA_ADDED' | 'USERNAME_EXTRA_DATA_REMOVED' | 'USERNAME_EXTRA_DATA_UPDATED' | 'USERNAME_METADATA_URI_SET' | 'USERNAME_RULE_CONFIGURED' | 'USERNAME_RULE_RECONFIGURED' | 'USERNAME_RULE_SELECTOR_ENABLED' | 'USERNAME_RULE_SELECTOR_DISABLED' | 'SPONSORSHIP_FACTORY_DEPLOYMENT' | 'SPONSORSHIP_ACCESS_CONTROL_ADDED' | 'SPONSORSHIP_ACCESS_CONTROL_UPDATED' | 'SPONSORSHIP_ADDED_TO_EXCLUSION_LIST' | 'SPONSORSHIP_REMOVED_FROM_EXCLUSION_LIST' | 'SPONSORSHIP_FUNDS_SPENT' | 'SPONSORSHIP_GRANT_REVOKED' | 'SPONSORSHIP_GRANTED_FUNDS' | 'SPONSORSHIP_METADATA_URI_SET' | 'SPONSORSHIP_PAUSED' | 'SPONSORSHIP_RATE_LIMITS_CHANGED' | 'SPONSORSHIP_UNPAUSED' | 'SPONSORSHIP_SIGNER_ADDED' | 'SPONSORSHIP_SIGNER_REMOVED' | 'FEED_FACTORY_DEPLOYMENT'; }; + 'TransactionOperation': { name: 'TransactionOperation'; enumValues: 'ACCESS_CONTROL_ROLE_GRANTED' | 'ACCESS_CONTROL_ROLE_REVOKED' | 'ACCESS_CONTROL_FACTORY_OWNER_ADMIN_DEPLOYMENT' | 'ACCOUNT_FACTORY_DEPLOYMENT' | 'ACCOUNT_MANAGER_ADDED' | 'ACCOUNT_MANAGER_REMOVED' | 'ACCOUNT_MANAGER_UPDATED' | 'ACCOUNT_OWNER_TRANSFERRED' | 'ACCOUNT_METADATA_URI_SET' | 'ACCOUNT_ACTION_CONFIGURED' | 'ACCOUNT_ACTION_RECONFIGURED' | 'ACCOUNT_ACTION_DISABLED' | 'ACCOUNT_ACTION_ENABLED' | 'ACCOUNT_ACTION_EXECUTED' | 'POST_ACTION_CONFIGURED' | 'POST_ACTION_RECONFIGURED' | 'POST_ACTION_DISABLED' | 'POST_ACTION_ENABLED' | 'POST_ACTION_EXECUTED' | 'ACTION_METADATA_URI_SET' | 'APP_FACTORY_DEPLOYMENT' | 'APP_ACCESS_CONTROL_ADDED' | 'APP_ACCESS_CONTROL_UPDATED' | 'APP_DEFAULT_FEED_SET' | 'APP_EXTRA_DATA_ADDED' | 'APP_EXTRA_DATA_REMOVED' | 'APP_EXTRA_DATA_UPDATED' | 'APP_FEED_ADDED' | 'APP_FEED_REMOVED' | 'APP_GRAPH_ADDED' | 'APP_GRAPH_REMOVED' | 'APP_GROUP_ADDED' | 'APP_GROUP_REMOVED' | 'APP_METADATA_URI_SET' | 'APP_SIGNER_ADDED' | 'APP_SIGNER_REMOVED' | 'APP_SOURCE_STAMP_VERIFICATION_SET' | 'APP_PAYMASTER_ADDED' | 'APP_PAYMASTER_REMOVED' | 'APP_TREASURY_SET' | 'APP_NAMESPACE_ADDED' | 'APP_NAMESPACE_REMOVED' | 'FEED_ACCESS_CONTROL_ADDED' | 'FEED_ACCESS_CONTROL_UPDATED' | 'FEED_EXTRA_DATA_ADDED' | 'FEED_EXTRA_DATA_REMOVED' | 'FEED_EXTRA_DATA_UPDATED' | 'FEED_METADATA_URI_SET' | 'FEED_POST_CREATED' | 'FEED_POST_DELETED' | 'FEED_POST_EDITED' | 'FEED_POST_EXTRA_DATA_ADDED' | 'FEED_POST_EXTRA_DATA_REMOVED' | 'FEED_POST_EXTRA_DATA_UPDATED' | 'FEED_RULE_CONFIGURED' | 'FEED_RULE_RECONFIGURED' | 'FEED_RULE_SELECTOR_ENABLED' | 'FEED_RULE_SELECTOR_DISABLED' | 'FEED_POST_RULE_CONFIGURED' | 'FEED_POST_RULE_RECONFIGURED' | 'FEED_POST_RULE_SELECTOR_ENABLED' | 'FEED_POST_RULE_SELECTOR_DISABLED' | 'GRAPH_FACTORY_DEPLOYMENT' | 'GRAPH_ACCESS_CONTROL_ADDED' | 'GRAPH_ACCESS_CONTROL_UPDATED' | 'GRAPH_EXTRA_DATA_ADDED' | 'GRAPH_EXTRA_DATA_REMOVED' | 'GRAPH_EXTRA_DATA_UPDATED' | 'GRAPH_FOLLOWED' | 'GRAPH_METADATA_URI_SET' | 'GRAPH_UNFOLLOWED' | 'GRAPH_RULE_CONFIGURED' | 'GRAPH_RULE_RECONFIGURED' | 'GRAPH_RULE_SELECTOR_ENABLED' | 'GRAPH_RULE_SELECTOR_DISABLED' | 'GRAPH_FOLLOW_RULE_CONFIGURED' | 'GRAPH_FOLLOW_RULE_RECONFIGURED' | 'GRAPH_FOLLOW_RULE_SELECTOR_ENABLED' | 'GRAPH_FOLLOW_RULE_SELECTOR_DISABLED' | 'GROUP_FACTORY_DEPLOYMENT' | 'GROUP_MEMBER_JOINED' | 'GROUP_MEMBER_LEFT' | 'GROUP_MEMBER_REMOVED' | 'GROUP_MEMBER_ADDED' | 'GROUP_ACCESS_CONTROL_ADDED' | 'GROUP_ACCESS_CONTROL_UPDATED' | 'GROUP_EXTRA_DATA_ADDED' | 'GROUP_EXTRA_DATA_REMOVED' | 'GROUP_EXTRA_DATA_UPDATED' | 'GROUP_METADATA_URI_SET' | 'GROUP_RULE_CONFIGURED' | 'GROUP_RULE_RECONFIGURED' | 'GROUP_RULE_SELECTOR_ENABLED' | 'GROUP_RULE_SELECTOR_DISABLED' | 'GROUP_MEMBERSHIP_APPROVAL_REQUESTED' | 'GROUP_MEMBERSHIP_APPROVAL_REQUEST_CANCELLED' | 'GROUP_MEMBERSHIP_APPROVAL_APPROVED' | 'GROUP_MEMBERSHIP_APPROVAL_REJECTED' | 'GROUP_ACCOUNT_BANNED' | 'GROUP_ACCOUNT_UNBANNED' | 'NAMESPACE_FACTORY_DEPLOYMENT' | 'SPONSOR_FREE_PAYMASTER_CREATED' | 'SPONSOR_ADDED_TO_APPROVED_SIGNERS' | 'SPONSOR_METADATA_URI_CHANGED' | 'USERNAME_ASSIGNED' | 'USERNAME_CREATED' | 'USERNAME_REMOVED' | 'USERNAME_UNASSIGNED' | 'USERNAME_ACCESS_CONTROL_ADDED' | 'USERNAME_ACCESS_CONTROL_UPDATED' | 'USERNAME_EXTRA_DATA_ADDED' | 'USERNAME_EXTRA_DATA_REMOVED' | 'USERNAME_EXTRA_DATA_UPDATED' | 'USERNAME_METADATA_URI_SET' | 'USERNAME_RULE_CONFIGURED' | 'USERNAME_RULE_RECONFIGURED' | 'USERNAME_RULE_SELECTOR_ENABLED' | 'USERNAME_RULE_SELECTOR_DISABLED' | 'SPONSORSHIP_FACTORY_DEPLOYMENT' | 'SPONSORSHIP_ACCESS_CONTROL_ADDED' | 'SPONSORSHIP_ACCESS_CONTROL_UPDATED' | 'SPONSORSHIP_ADDED_TO_EXCLUSION_LIST' | 'SPONSORSHIP_REMOVED_FROM_EXCLUSION_LIST' | 'SPONSORSHIP_FUNDS_SPENT' | 'SPONSORSHIP_GRANT_REVOKED' | 'SPONSORSHIP_GRANTED_FUNDS' | 'SPONSORSHIP_METADATA_URI_SET' | 'SPONSORSHIP_PAUSED' | 'SPONSORSHIP_RATE_LIMITS_CHANGED' | 'SPONSORSHIP_UNPAUSED' | 'SPONSORSHIP_SIGNER_ADDED' | 'SPONSORSHIP_SIGNER_REMOVED' | 'FEED_FACTORY_DEPLOYMENT'; }; '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'; }; @@ -657,6 +666,9 @@ export type introspection_types = { 'UnassignUsernameFromAccountRequest': { kind: 'INPUT_OBJECT'; name: 'UnassignUsernameFromAccountRequest'; isOneOf: false; inputFields: [{ name: 'namespace'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: "\"0x9e8768B0d2fA8Cd1fbA8F2187Ddf2D81Cfd4CaeB\"" }, { name: 'rulesProcessingParams'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NamespaceRulesProcessingParams'; ofType: null; }; }; }; defaultValue: null }]; }; 'UnassignUsernameResponse': { kind: 'OBJECT'; name: 'UnassignUsernameResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; 'UnassignUsernameToAccountResult': { kind: 'UNION'; name: 'UnassignUsernameToAccountResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail' | 'UnassignUsernameResponse'; }; + 'UnbanGroupAccountRequest': { kind: 'INPUT_OBJECT'; name: 'UnbanGroupAccountRequest'; isOneOf: false; inputFields: [{ name: 'group'; 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 }]; }; + 'UnbanGroupAccountResponse': { kind: 'OBJECT'; name: 'UnbanGroupAccountResponse'; fields: { 'hash': { name: 'hash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; }; }; + 'UnbanGroupAccountResult': { kind: 'UNION'; name: 'UnbanGroupAccountResult'; fields: {}; possibleTypes: 'SelfFundedTransactionRequest' | 'SponsoredTransactionRequest' | 'TransactionWillFail' | 'UnbanGroupAccountResponse'; }; 'UnblockError': { kind: 'OBJECT'; name: 'UnblockError'; fields: { 'error': { name: 'error'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'UnblockErrorType'; ofType: null; }; } }; }; }; 'UnblockErrorType': { name: 'UnblockErrorType'; enumValues: 'UNKNOWN' | 'NOT_BLOCKED' | 'UNAUTHORIZED'; }; 'UnblockRequest': { kind: 'INPUT_OBJECT'; name: 'UnblockRequest'; isOneOf: false; inputFields: [{ name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };