From 100c31e151d5b4c746ce45d97ee9a863e76b0dc9 Mon Sep 17 00:00:00 2001 From: Benjamin Piouffle Date: Fri, 3 May 2024 10:52:59 +0200 Subject: [PATCH] enhancement(ConfirmEmail): move to GraphQL V2 --- components/UserProvider.js | 6 +- lib/graphql/schemaV2.graphql | 22 ++++++ lib/graphql/types/v2/gql.ts | 21 +++--- lib/graphql/types/v2/graphql.ts | 39 +++++++++-- lib/hooks/useLoggedInUser.ts | 6 +- pages/{confirmEmail.js => confirmEmail.tsx} | 76 +++++++++++++-------- 6 files changed, 120 insertions(+), 50 deletions(-) rename pages/{confirmEmail.js => confirmEmail.tsx} (59%) diff --git a/components/UserProvider.js b/components/UserProvider.js index 96d9eb57676..6f4d3f87cac 100644 --- a/components/UserProvider.js +++ b/components/UserProvider.js @@ -19,9 +19,9 @@ export const UserContext = React.createContext({ loadingLoggedInUser: true, errorLoggedInUser: null, LoggedInUser: null, - logout() {}, - login() {}, - refetchLoggedInUser() {}, + logout: async () => null, + login: async () => null, + async refetchLoggedInUser() {}, }); class UserProvider extends React.Component { diff --git a/lib/graphql/schemaV2.graphql b/lib/graphql/schemaV2.graphql index ee37ab2d324..eb650ecc1e7 100644 --- a/lib/graphql/schemaV2.graphql +++ b/lib/graphql/schemaV2.graphql @@ -17925,6 +17925,16 @@ type Mutation { currentPassword: String ): SetPasswordResponse! + """ + Confirm email for Individual. Scope: "account". + """ + confirmEmail( + """ + The token to confirm the email. + """ + token: String! + ): IndividualConfirmEmailResponse! + """ Submit a legal document """ @@ -20025,6 +20035,18 @@ type SetPasswordResponse { token: String } +type IndividualConfirmEmailResponse { + """ + The account that was confirmed + """ + individual: Individual! + + """ + A new session token to use for the account. Only returned if user is signed in already. + """ + sessionToken: String +} + """ The `Upload` scalar type represents a file upload. """ diff --git a/lib/graphql/types/v2/gql.ts b/lib/graphql/types/v2/gql.ts index b45ae8654e9..a28640c5020 100644 --- a/lib/graphql/types/v2/gql.ts +++ b/lib/graphql/types/v2/gql.ts @@ -44,7 +44,7 @@ const documents = { "\n fragment ConversationListFragment on ConversationCollection {\n totalCount\n offset\n limit\n nodes {\n id\n title\n summary\n slug\n createdAt\n tags\n fromAccount {\n id\n name\n type\n slug\n imageUrl\n }\n followers(limit: 5) {\n totalCount\n nodes {\n id\n slug\n type\n name\n imageUrl(height: 64)\n }\n }\n stats {\n id\n commentsCount\n }\n }\n }\n": types.ConversationListFragmentFragmentDoc, "\n query IsUserFollowingConversation($id: String!) {\n loggedInAccount {\n id\n slug\n imageUrl\n type\n name\n ... on Individual {\n isFollowingConversation(id: $id)\n }\n }\n }\n": types.IsUserFollowingConversationDocument, "\n mutation EditCrowdfundingRedesignSettings($account: AccountReferenceInput!, $value: JSON!) {\n editAccountSetting(account: $account, key: \"crowdfundingRedesign\", value: $value) {\n id\n settings\n }\n }\n": types.EditCrowdfundingRedesignSettingsDocument, - "\n query ProfilePage($slug: String!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n": types.ProfilePageDocument, + "\n query ProfilePage($slug: String!, $includeChildren: Boolean!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n updates(onlyPublishedUpdates: true) {\n totalCount\n nodes {\n id\n title\n html\n slug\n summary\n reactions\n userReactions\n userCanSeeUpdate\n publishedAt\n fromAccount {\n id\n name\n slug\n imageUrl\n type\n }\n comments {\n totalCount\n }\n }\n }\n expenses(limit: 20, direction: RECEIVED, status: PAID, includeChildrenExpenses: $includeChildren) {\n totalCount\n nodes {\n id\n description\n type\n status\n createdAt\n payee {\n id\n name\n type\n imageUrl\n slug\n }\n account {\n id\n name\n type\n imageUrl\n slug\n }\n amountV2 {\n valueInCents\n currency\n }\n }\n }\n\n contributionTransactions: transactions(\n limit: 20\n kind: [CONTRIBUTION, ADDED_FUNDS]\n isRefund: false\n type: CREDIT\n ) {\n totalCount\n nodes {\n id\n description\n createdAt\n type\n kind\n fromAccount {\n id\n name\n type\n slug\n imageUrl\n }\n toAccount {\n id\n name\n type\n slug\n imageUrl\n }\n amount {\n valueInCents\n currency\n }\n }\n }\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n": types.ProfilePageDocument, "\n query Account($slug: String!) {\n account(slug: $slug) {\n id\n ...AccountHoverCardFields\n }\n }\n \n": types.AccountDocument, "\n query AccountFilterSearch($searchTerm: String) {\n accounts(searchTerm: $searchTerm) {\n nodes {\n id\n ...AccountHoverCardFields\n }\n }\n }\n \n": types.AccountFilterSearchDocument, "\n query AccountingCategories($hostSlug: String) {\n host(slug: $hostSlug) {\n id\n accountingCategories {\n nodes {\n id\n code\n name\n kind\n }\n }\n }\n }\n": types.AccountingCategoriesDocument, @@ -82,7 +82,7 @@ const documents = { "\n query HostedCollectivesMetadata($hostSlug: String!) {\n host(slug: $hostSlug) {\n id\n currency\n all: hostedAccounts(limit: 1, accountType: [COLLECTIVE, FUND]) {\n totalCount\n currencies\n }\n active: hostedAccounts(limit: 1, accountType: [COLLECTIVE, FUND], isFrozen: false) {\n totalCount\n }\n frozen: hostedAccounts(limit: 1, isFrozen: true) {\n totalCount\n }\n unhosted: hostedAccounts(limit: 1, accountType: [COLLECTIVE, FUND], isUnhosted: true) {\n totalCount\n }\n }\n }\n": types.HostedCollectivesMetadataDocument, "\n query HostedCollectives(\n $hostSlug: String!\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $hostFeesStructure: HostFeeStructure\n $searchTerm: String\n $type: [AccountType]\n $isApproved: Boolean\n $isFrozen: Boolean\n $isUnhosted: Boolean\n $balance: AmountRangeInput\n $consolidatedBalance: AmountRangeInput\n $currencies: [String]\n ) {\n host(slug: $hostSlug) {\n id\n legacyId\n slug\n name\n currency\n isHost\n type\n settings\n hostFeePercent\n plan {\n id\n hostFees\n hostFeeSharePercent\n }\n hostedAccounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n hostFeesStructure: $hostFeesStructure\n accountType: $type\n orderBy: $sort\n isApproved: $isApproved\n isFrozen: $isFrozen\n isUnhosted: $isUnhosted\n balance: $balance\n consolidatedBalance: $consolidatedBalance\n currencies: $currencies\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n }\n\n \n": types.HostedCollectivesDocument, "\n query HostedCollectiveDetail($id: String!) {\n account(id: $id) {\n id\n ...HostedCollectiveFields\n transactions(limit: 10, offset: 0, kind: [ADDED_FUNDS, CONTRIBUTION, EXPENSE]) {\n nodes {\n id\n clearedAt\n createdAt\n type\n kind\n description\n isRefund\n isRefunded\n isInReview\n isDisputed\n isOrderRejected\n amount {\n valueInCents\n currency\n }\n netAmount {\n valueInCents\n currency\n }\n oppositeAccount {\n id\n slug\n name\n imageUrl\n }\n }\n }\n }\n activities(account: { id: $id }, limit: 5, offset: 0, type: [COLLECTIVE]) {\n nodes {\n id\n type\n createdAt\n data\n isSystem\n account {\n id\n slug\n name\n imageUrl\n }\n fromAccount {\n id\n slug\n name\n imageUrl\n }\n individual {\n id\n slug\n name\n imageUrl\n }\n }\n }\n }\n\n \n": types.HostedCollectiveDetailDocument, - "\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n": types.AllCollectivesDocument, + "\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n skipGuests: false\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n": types.AllCollectivesDocument, "\n query DashboardContributionsMetadata(\n $slug: String!\n $filter: AccountOrdersFilter!\n $onlyExpectedFunds: Boolean!\n $expectedFundsFilter: ExpectedFundsFilter\n $includeHostedAccounts: Boolean!\n ) {\n account(slug: $slug) {\n id\n legacyId\n slug\n name\n type\n settings\n imageUrl\n currency\n ... on AccountWithContributions {\n canStartResumeContributionsProcess\n hasResumeContributionsProcessStarted\n }\n ... on AccountWithParent {\n parent {\n id\n slug\n type\n }\n }\n ALL: orders(\n filter: $filter\n expectedFundsFilter: $expectedFundsFilter\n includeHostedAccounts: $includeHostedAccounts\n ) {\n totalCount\n }\n PENDING: orders(\n filter: $filter\n expectedFundsFilter: $expectedFundsFilter\n status: [PENDING]\n includeHostedAccounts: $includeHostedAccounts\n ) @include(if: $onlyExpectedFunds) {\n totalCount\n }\n EXPIRED: orders(\n filter: $filter\n expectedFundsFilter: $expectedFundsFilter\n status: [EXPIRED]\n includeHostedAccounts: $includeHostedAccounts\n ) @include(if: $onlyExpectedFunds) {\n totalCount\n }\n RECURRING: orders(\n filter: $filter\n onlyActiveSubscriptions: true\n includeIncognito: true\n includeHostedAccounts: $includeHostedAccounts\n ) @skip(if: $onlyExpectedFunds) {\n totalCount\n }\n PAID: orders(\n filter: $filter\n includeIncognito: true\n status: [PAID]\n includeHostedAccounts: $includeHostedAccounts\n expectedFundsFilter: $expectedFundsFilter\n ) @include(if: $onlyExpectedFunds) {\n totalCount\n }\n ONETIME: orders(\n filter: $filter\n frequency: ONETIME\n status: [PAID, PROCESSING]\n includeIncognito: true\n minAmount: 1\n includeHostedAccounts: $includeHostedAccounts\n ) @skip(if: $onlyExpectedFunds) {\n totalCount\n }\n CANCELED: orders(\n filter: $filter\n status: [CANCELLED]\n includeIncognito: true\n expectedFundsFilter: $expectedFundsFilter\n includeHostedAccounts: $includeHostedAccounts\n ) {\n totalCount\n }\n PAUSED: orders(\n filter: $filter\n status: [PAUSED]\n includeIncognito: true\n includeHostedAccounts: $includeHostedAccounts\n ) @skip(if: $onlyExpectedFunds) {\n totalCount\n }\n DISPUTED: orders(\n filter: $filter\n status: [DISPUTED]\n includeIncognito: true\n includeHostedAccounts: $includeHostedAccounts\n ) @skip(if: $onlyExpectedFunds) {\n totalCount\n }\n IN_REVIEW: orders(\n filter: $filter\n status: [IN_REVIEW]\n includeIncognito: true\n includeHostedAccounts: $includeHostedAccounts\n ) @skip(if: $onlyExpectedFunds) {\n totalCount\n }\n }\n }\n": types.DashboardContributionsMetadataDocument, "\n query DashboardRecurringContributions(\n $slug: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $filter: AccountOrdersFilter!\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $includeIncognito: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $includeHostedAccounts: Boolean!\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(slug: $slug) {\n id\n orders(\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n filter: $filter\n frequency: $frequency\n status: $status\n onlySubscriptions: $onlySubscriptions\n includeIncognito: $includeIncognito\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n includeHostedAccounts: $includeHostedAccounts\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n nodes {\n id\n ...ManagedOrderFields\n }\n }\n }\n }\n \n": types.DashboardRecurringContributionsDocument, "\n mutation ContributionsExpireOrder($orderId: Int) {\n processPendingOrder(order: { legacyId: $orderId }, action: MARK_AS_EXPIRED) {\n id\n status\n permissions {\n id\n canMarkAsPaid\n canMarkAsExpired\n }\n activities {\n nodes {\n id\n }\n }\n }\n }\n ": types.ContributionsExpireOrderDocument, @@ -116,10 +116,10 @@ const documents = { "\n query AccountReports(\n $accountSlug: String!\n $dateTo: DateTime\n $dateFrom: DateTime\n $timeUnit: TimeUnit\n $includeGroups: Boolean!\n ) {\n account(slug: $accountSlug) {\n id\n currency\n transactionReports(dateFrom: $dateFrom, dateTo: $dateTo, timeUnit: $timeUnit) {\n timeUnit\n nodes {\n date\n startingBalance {\n valueInCents\n currency\n }\n endingBalance {\n valueInCents\n currency\n }\n totalChange {\n valueInCents\n currency\n }\n groups @include(if: $includeGroups) {\n amount {\n valueInCents\n currency\n }\n netAmount {\n valueInCents\n currency\n }\n platformFee {\n valueInCents\n currency\n }\n paymentProcessorFee {\n valueInCents\n currency\n }\n hostFee {\n valueInCents\n currency\n }\n taxAmount {\n valueInCents\n currency\n }\n kind\n isHost\n type\n expenseType\n isRefund\n }\n }\n }\n }\n }\n": types.AccountReportsDocument, "\n mutation SubmitLegalDocument($account: AccountReferenceInput!, $type: LegalDocumentType!, $formData: JSON!) {\n submitLegalDocument(account: $account, type: $type, formData: $formData) {\n id\n type\n status\n isExpired\n }\n }\n": types.SubmitLegalDocumentDocument, "\n query AccountTaxInformation($id: String!) {\n account(id: $id) {\n id\n slug\n name\n legalName\n type\n usTaxForms: legalDocuments(type: US_TAX_FORM) {\n id\n year\n status\n updatedAt\n service\n type\n documentLink\n isExpired\n }\n location {\n address\n country\n structured\n }\n }\n }\n": types.AccountTaxInformationDocument, - "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n": types.SuggestExpectedFundsDocument, + "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n id\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n": types.SuggestExpectedFundsDocument, "\n query HostTransactionsImportsSources($accountSlug: String!) {\n host(slug: $accountSlug) {\n id\n transactionsImportsSources\n }\n }\n ": types.HostTransactionsImportsSourcesDocument, "\n mutation CreateTransactionsImport(\n $account: AccountReferenceInput!\n $type: TransactionsImportType!\n $source: NonEmptyString!\n $name: NonEmptyString!\n ) {\n createTransactionsImport(account: $account, source: $source, name: $name, type: $type) {\n id\n account {\n id\n ... on Host {\n id\n transactionsImportsSources\n }\n ... on Organization {\n host {\n id\n transactionsImportsSources\n }\n }\n }\n ...TransactionImportListFields\n }\n }\n \n ": types.CreateTransactionsImportDocument, - "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.UploadTransactionsImportDocument, + "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.UploadTransactionsImportDocument, "\n query TransactionsImport($importId: String!) {\n transactionsImport(id: $importId) {\n id\n source\n name\n file {\n id\n url\n name\n type\n size\n }\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n type\n csvConfig\n createdAt\n updatedAt\n account {\n id\n name\n legalName\n imageUrl\n legacyId\n slug\n currency\n type\n }\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n": types.TransactionsImportDocument, "\n query HostTransactionImports($accountSlug: String!, $limit: Int, $offset: Int) {\n host(slug: $accountSlug) {\n id\n transactionsImports(limit: $limit, offset: $offset) {\n totalCount\n limit\n offset\n nodes {\n id\n ...TransactionImportListFields\n }\n }\n }\n }\n \n": types.HostTransactionImportsDocument, "\n fragment TransactionImportListFields on TransactionsImport {\n id\n source\n name\n type\n createdAt\n updatedAt\n stats {\n total\n ignored\n expenses\n orders\n processed\n }\n account {\n ... on Host {\n id\n transactionsImportsSources\n }\n }\n }\n": types.TransactionImportListFieldsFragmentDoc, @@ -213,6 +213,7 @@ const documents = { "\n mutation RejectVirtualCardRequest($virtualCardRequest: VirtualCardRequestReferenceInput!) {\n rejectVirtualCardRequest(virtualCardRequest: $virtualCardRequest) {\n id\n status\n }\n }\n": types.RejectVirtualCardRequestDocument, "\n query VirtualCardDrawer($virtualCard: VirtualCardReferenceInput!) {\n virtualCard(virtualCard: $virtualCard) {\n id\n name\n last4\n data\n privateData\n provider\n spendingLimitAmount\n spendingLimitInterval\n spendingLimitRenewsOn\n remainingLimit\n currency\n createdAt\n status\n account {\n id\n name\n slug\n imageUrl\n ...AccountHoverCardFields\n }\n assignee {\n id\n name\n email\n slug\n imageUrl\n ...AccountHoverCardFields\n }\n host {\n id\n slug\n stripe {\n username\n }\n }\n }\n }\n \n": types.VirtualCardDrawerDocument, "\n query CollectiveContactPage($collectiveSlug: String!) {\n account(slug: $collectiveSlug, throwIfMissing: false) {\n id\n slug\n name\n type\n permissions {\n id\n contact {\n allowed\n }\n }\n description\n settings\n imageUrl\n twitterHandle\n features {\n id\n ...NavbarFields\n }\n }\n }\n \n": types.CollectiveContactPageDocument, + "\n mutation ConfirmEmail($token: String!) {\n confirmEmail(token: $token) {\n sessionToken\n individual {\n id\n email\n }\n }\n }\n": types.ConfirmEmailDocument, "\n query ExpensesPage(\n $collectiveSlug: String!\n $account: AccountReferenceInput\n $fromAccount: AccountReferenceInput\n $limit: Int!\n $offset: Int!\n $type: ExpenseType\n $tags: [String]\n $status: [ExpenseStatusFilter]\n $minAmount: Int\n $maxAmount: Int\n $payoutMethodType: PayoutMethodType\n $dateFrom: DateTime\n $dateTo: DateTime\n $searchTerm: String\n $orderBy: ChronologicalOrderInput\n $chargeHasReceipts: Boolean\n $virtualCards: [VirtualCardReferenceInput]\n $createdByAccount: AccountReferenceInput\n ) {\n account(slug: $collectiveSlug) {\n id\n legacyId\n slug\n type\n imageUrl\n backgroundImageUrl\n twitterHandle\n name\n currency\n isArchived\n isActive\n settings\n createdAt\n supportedExpenseTypes\n expensesTags {\n id\n tag\n }\n features {\n id\n ...NavbarFields\n }\n\n stats {\n id\n balanceWithBlockedFunds {\n valueInCents\n currency\n }\n }\n\n ... on AccountWithHost {\n isApproved\n host {\n id\n ...ExpenseHostFields\n }\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n imageUrl\n backgroundImageUrl\n twitterHandle\n }\n }\n\n ... on Organization {\n # We add that for hasFeature\n isHost\n isActive\n host {\n id\n ...ExpenseHostFields\n }\n }\n\n ... on Event {\n parent {\n id\n name\n slug\n type\n }\n }\n\n ... on Project {\n parent {\n id\n name\n slug\n type\n }\n }\n }\n expenses(\n account: $account\n fromAccount: $fromAccount\n limit: $limit\n offset: $offset\n type: $type\n tag: $tags\n status: $status\n minAmount: $minAmount\n maxAmount: $maxAmount\n payoutMethodType: $payoutMethodType\n dateFrom: $dateFrom\n dateTo: $dateTo\n searchTerm: $searchTerm\n orderBy: $orderBy\n chargeHasReceipts: $chargeHasReceipts\n virtualCards: $virtualCards\n createdByAccount: $createdByAccount\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...ExpensesListFieldsFragment\n }\n }\n # limit: 1 as current best practice to avoid the API fetching entries it doesn't need\n # TODO: We don't need to try and fetch this field on non-host accounts (should use a ... on Host)\n scheduledExpenses: expenses(\n host: { slug: $collectiveSlug }\n status: SCHEDULED_FOR_PAYMENT\n payoutMethodType: BANK_ACCOUNT\n limit: 1\n ) {\n totalCount\n }\n }\n\n \n \n \n": types.ExpensesPageDocument, "\n query OrderPage($legacyId: Int!, $collectiveSlug: String!) {\n order(order: { legacyId: $legacyId }) {\n id\n legacyId\n status\n description\n tags\n ...ConfirmContributionFields\n paymentMethod {\n id\n type\n }\n createdAt\n processedAt\n permissions {\n id\n canMarkAsExpired\n canMarkAsPaid\n canSetTags\n canEdit\n }\n transactions {\n id\n legacyId\n group\n description\n type\n kind\n createdAt\n order {\n id\n }\n amount {\n valueInCents\n currency\n }\n netAmount {\n valueInCents\n currency\n }\n taxAmount {\n valueInCents\n currency\n }\n taxInfo {\n id\n type\n rate\n }\n paymentProcessorFee {\n valueInCents\n currency\n }\n fromAccount {\n id\n slug\n type\n name\n imageUrl\n isIncognito\n ... on Individual {\n isGuest\n }\n }\n account {\n id\n slug\n type\n name\n imageUrl\n }\n }\n }\n account(slug: $collectiveSlug) {\n id\n legacyId\n slug\n name\n type\n isHost\n imageUrl\n backgroundImageUrl\n isActive\n description\n settings\n twitterHandle\n currency\n expensePolicy\n supportedExpenseTypes\n features {\n id\n ...NavbarFields\n MULTI_CURRENCY_EXPENSES\n }\n location {\n id\n address\n country\n }\n\n stats {\n id\n balanceWithBlockedFunds {\n valueInCents\n currency\n }\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n imageUrl\n backgroundImageUrl\n twitterHandle\n }\n }\n ... on AccountWithHost {\n host {\n id\n name\n slug\n imageUrl\n backgroundImageUrl\n }\n }\n ... on Organization {\n host {\n id\n name\n slug\n imageUrl\n backgroundImageUrl\n }\n }\n }\n }\n\n \n \n": types.OrderPageDocument, "\n query SubmittedExpensesPage(\n $collectiveSlug: String!\n $limit: Int!\n $offset: Int!\n $type: ExpenseType\n $tags: [String]\n $status: [ExpenseStatusFilter]\n $minAmount: Int\n $maxAmount: Int\n $payoutMethodType: PayoutMethodType\n $dateFrom: DateTime\n $dateTo: DateTime\n $searchTerm: String\n $orderBy: ChronologicalOrderInput\n ) {\n account(slug: $collectiveSlug) {\n id\n legacyId\n slug\n type\n imageUrl\n backgroundImageUrl\n twitterHandle\n name\n currency\n isArchived\n isActive\n settings\n createdAt\n supportedExpenseTypes\n isHost\n features {\n id\n ...NavbarFields\n }\n }\n expenses(\n createdByAccount: { slug: $collectiveSlug }\n limit: $limit\n offset: $offset\n type: $type\n tag: $tags\n status: $status\n minAmount: $minAmount\n maxAmount: $maxAmount\n payoutMethodType: $payoutMethodType\n dateFrom: $dateFrom\n dateTo: $dateTo\n searchTerm: $searchTerm\n orderBy: $orderBy\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n ...ExpensesListFieldsFragment\n amountInCreatedByAccountCurrency: amountV2(currencySource: CREATED_BY_ACCOUNT) {\n value\n valueInCents\n currency\n exchangeRate {\n date\n value\n source\n isApproximate\n }\n }\n host {\n id\n ...ExpenseHostFields\n }\n }\n }\n }\n\n \n \n \n": types.SubmittedExpensesPageDocument, @@ -364,7 +365,7 @@ export function graphql(source: "\n mutation EditCrowdfundingRedesignSettings($ /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query ProfilePage($slug: String!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n"): (typeof documents)["\n query ProfilePage($slug: String!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n activeRecurringContributionsBreakdown {\n label\n amount {\n valueInCents\n currency\n }\n count\n }\n\n contributorsCount\n }\n }\n }\n"]; +export function graphql(source: "\n query ProfilePage($slug: String!, $includeChildren: Boolean!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n updates(onlyPublishedUpdates: true) {\n totalCount\n nodes {\n id\n title\n html\n slug\n summary\n reactions\n userReactions\n userCanSeeUpdate\n publishedAt\n fromAccount {\n id\n name\n slug\n imageUrl\n type\n }\n comments {\n totalCount\n }\n }\n }\n expenses(limit: 20, direction: RECEIVED, status: PAID, includeChildrenExpenses: $includeChildren) {\n totalCount\n nodes {\n id\n description\n type\n status\n createdAt\n payee {\n id\n name\n type\n imageUrl\n slug\n }\n account {\n id\n name\n type\n imageUrl\n slug\n }\n amountV2 {\n valueInCents\n currency\n }\n }\n }\n\n contributionTransactions: transactions(\n limit: 20\n kind: [CONTRIBUTION, ADDED_FUNDS]\n isRefund: false\n type: CREDIT\n ) {\n totalCount\n nodes {\n id\n description\n createdAt\n type\n kind\n fromAccount {\n id\n name\n type\n slug\n imageUrl\n }\n toAccount {\n id\n name\n type\n slug\n imageUrl\n }\n amount {\n valueInCents\n currency\n }\n }\n }\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n"): (typeof documents)["\n query ProfilePage($slug: String!, $includeChildren: Boolean!) {\n account(slug: $slug) {\n id\n name\n slug\n imageUrl\n description\n longDescription\n backgroundImageUrl\n settings\n type\n currency\n isActive\n socialLinks {\n type\n url\n }\n\n updates(onlyPublishedUpdates: true) {\n totalCount\n nodes {\n id\n title\n html\n slug\n summary\n reactions\n userReactions\n userCanSeeUpdate\n publishedAt\n fromAccount {\n id\n name\n slug\n imageUrl\n type\n }\n comments {\n totalCount\n }\n }\n }\n expenses(limit: 20, direction: RECEIVED, status: PAID, includeChildrenExpenses: $includeChildren) {\n totalCount\n nodes {\n id\n description\n type\n status\n createdAt\n payee {\n id\n name\n type\n imageUrl\n slug\n }\n account {\n id\n name\n type\n imageUrl\n slug\n }\n amountV2 {\n valueInCents\n currency\n }\n }\n }\n\n contributionTransactions: transactions(\n limit: 20\n kind: [CONTRIBUTION, ADDED_FUNDS]\n isRefund: false\n type: CREDIT\n ) {\n totalCount\n nodes {\n id\n description\n createdAt\n type\n kind\n fromAccount {\n id\n name\n type\n slug\n imageUrl\n }\n toAccount {\n id\n name\n type\n slug\n imageUrl\n }\n amount {\n valueInCents\n currency\n }\n }\n }\n ... on AccountWithParent {\n parent {\n id\n slug\n name\n settings\n imageUrl\n }\n }\n ... on AccountWithHost {\n host {\n id\n slug\n name\n imageUrl\n }\n }\n\n ... on AccountWithContributions {\n tiers {\n totalCount\n nodes {\n id\n name\n slug\n type\n description\n button\n amount {\n valueInCents\n currency\n }\n currency\n minimumAmount {\n valueInCents\n currency\n }\n endsAt\n amountType\n frequency\n availableQuantity\n }\n }\n\n financialContributors: contributors(roles: [BACKER], limit: 150) {\n totalCount\n nodes {\n id\n name\n roles\n isAdmin\n isCore\n isBacker\n since\n image\n description\n collectiveSlug\n totalAmountDonated\n type\n publicMessage\n isIncognito\n }\n }\n }\n childrenAccounts {\n nodes {\n id\n name\n description\n type\n slug\n settings\n currency\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n\n stats {\n totalAmountReceived {\n valueInCents\n currency\n }\n yearlyBudget {\n valueInCents\n currency\n }\n contributorsCount\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -516,7 +517,7 @@ export function graphql(source: "\n query HostedCollectiveDetail($id: String!) /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n"): (typeof documents)["\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n"]; +export function graphql(source: "\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n skipGuests: false\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n"): (typeof documents)["\n query AllCollectives(\n $limit: Int!\n $offset: Int!\n $sort: OrderByInput\n $searchTerm: String\n $type: [AccountType]\n $isHost: Boolean\n $host: [AccountReferenceInput]\n $isActive: Boolean\n $consolidatedBalance: AmountRangeInput\n ) {\n accounts(\n limit: $limit\n offset: $offset\n searchTerm: $searchTerm\n type: $type\n orderBy: $sort\n isHost: $isHost\n isActive: $isActive\n host: $host\n consolidatedBalance: $consolidatedBalance\n skipGuests: false\n ) {\n offset\n limit\n totalCount\n nodes {\n id\n ...HostedCollectiveFields\n }\n }\n }\n\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -652,7 +653,7 @@ export function graphql(source: "\n query AccountTaxInformation($id: String!) { /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"): (typeof documents)["\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"]; +export function graphql(source: "\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n id\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"): (typeof documents)["\n query SuggestExpectedFunds(\n $hostId: String!\n $searchTerm: String\n $offset: Int\n $limit: Int\n $frequency: ContributionFrequency\n $status: [OrderStatus!]\n $onlySubscriptions: Boolean\n $minAmount: Int\n $maxAmount: Int\n $paymentMethod: PaymentMethodReferenceInput\n $dateFrom: DateTime\n $dateTo: DateTime\n $expectedDateFrom: DateTime\n $expectedDateTo: DateTime\n $expectedFundsFilter: ExpectedFundsFilter\n ) {\n account(id: $hostId) {\n id\n orders(\n filter: INCOMING\n includeIncognito: true\n includeHostedAccounts: true\n status: $status\n frequency: $frequency\n onlySubscriptions: $onlySubscriptions\n dateFrom: $dateFrom\n dateTo: $dateTo\n expectedDateFrom: $expectedDateFrom\n expectedDateTo: $expectedDateTo\n minAmount: $minAmount\n maxAmount: $maxAmount\n searchTerm: $searchTerm\n offset: $offset\n limit: $limit\n paymentMethod: $paymentMethod\n expectedFundsFilter: $expectedFundsFilter\n ) {\n totalCount\n offset\n limit\n nodes {\n id\n legacyId\n totalAmount {\n value\n valueInCents\n currency\n }\n platformTipAmount {\n value\n valueInCents\n }\n pendingContributionData {\n expectedAt\n paymentMethod\n ponumber\n memo\n fromAccountInfo {\n name\n email\n }\n }\n status\n description\n createdAt\n processedAt\n tier {\n id\n name\n }\n paymentMethod {\n id\n service\n type\n }\n fromAccount {\n id\n name\n legalName\n slug\n isIncognito\n type\n ...AccountHoverCardFields\n ... on Individual {\n isGuest\n }\n }\n toAccount {\n id\n slug\n name\n legalName\n type\n imageUrl\n ...AccountHoverCardFields\n }\n ...ConfirmContributionFields\n }\n }\n }\n }\n \n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -664,7 +665,7 @@ export function graphql(source: "\n mutation CreateTransactionsImport(\n /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; +export function graphql(source: "\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"): (typeof documents)["\n mutation UploadTransactionsImport(\n $importId: NonEmptyString!\n $csvConfig: JSONObject\n $data: [TransactionsImportRowCreateInput!]!\n $file: Upload\n ) {\n importTransactions(id: $importId, csvConfig: $csvConfig, data: $data, file: $file) {\n id\n rows {\n totalCount\n offset\n limit\n nodes {\n ...TransactionsImportRowFields\n }\n }\n }\n }\n \n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -1037,6 +1038,10 @@ export function graphql(source: "\n query VirtualCardDrawer($virtualCard: Virtu * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function graphql(source: "\n query CollectiveContactPage($collectiveSlug: String!) {\n account(slug: $collectiveSlug, throwIfMissing: false) {\n id\n slug\n name\n type\n permissions {\n id\n contact {\n allowed\n }\n }\n description\n settings\n imageUrl\n twitterHandle\n features {\n id\n ...NavbarFields\n }\n }\n }\n \n"): (typeof documents)["\n query CollectiveContactPage($collectiveSlug: String!) {\n account(slug: $collectiveSlug, throwIfMissing: false) {\n id\n slug\n name\n type\n permissions {\n id\n contact {\n allowed\n }\n }\n description\n settings\n imageUrl\n twitterHandle\n features {\n id\n ...NavbarFields\n }\n }\n }\n \n"]; +/** + * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. + */ +export function graphql(source: "\n mutation ConfirmEmail($token: String!) {\n confirmEmail(token: $token) {\n sessionToken\n individual {\n id\n email\n }\n }\n }\n"): (typeof documents)["\n mutation ConfirmEmail($token: String!) {\n confirmEmail(token: $token) {\n sessionToken\n individual {\n id\n email\n }\n }\n }\n"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/lib/graphql/types/v2/graphql.ts b/lib/graphql/types/v2/graphql.ts index a64e6ebbe7a..a0ce71e86a6 100644 --- a/lib/graphql/types/v2/graphql.ts +++ b/lib/graphql/types/v2/graphql.ts @@ -6404,6 +6404,14 @@ export type IndividualWebhooksArgs = { offset?: Scalars['Int']['input']; }; +export type IndividualConfirmEmailResponse = { + __typename?: 'IndividualConfirmEmailResponse'; + /** The account that was confirmed */ + individual: Individual; + /** A new session token to use for the account. Only returned if user is signed in already. */ + sessionToken?: Maybe; +}; + export type IndividualCreateInput = { email: Scalars['String']['input']; name: Scalars['String']['input']; @@ -6674,6 +6682,8 @@ export type Mutation = { clearCacheForAccount: Account; /** Confirm a credit card is ready for use after strong customer authentication. Scope: "orders". */ confirmCreditCard: CreditCardWithStripeError; + /** Confirm email for Individual. Scope: "account". */ + confirmEmail: IndividualConfirmEmailResponse; /** Mark an account as confirmed */ confirmGuestAccount: ConfirmGuestAccountResponse; /** Confirm an order (strong customer authentication). Scope: "orders". */ @@ -6994,6 +7004,12 @@ export type MutationConfirmCreditCardArgs = { }; +/** This is the root mutation */ +export type MutationConfirmEmailArgs = { + token: Scalars['String']['input']; +}; + + /** This is the root mutation */ export type MutationConfirmGuestAccountArgs = { email: Scalars['EmailAddress']['input']; @@ -11845,10 +11861,11 @@ export type EditCrowdfundingRedesignSettingsMutation = { __typename?: 'Mutation' export type ProfilePageQueryVariables = Exact<{ slug: Scalars['String']['input']; + includeChildren: Scalars['Boolean']['input']; }>; -export type ProfilePageQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, parent?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | null, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, parent?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | null, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, activeRecurringContributionsBreakdown: Array<{ __typename?: 'AmountStats', label: string, count?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } }> } | null } | null }; +export type ProfilePageQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, parent?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | null, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive: boolean, parent?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, settings: any, imageUrl?: string | null } | null, host?: { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, description?: string | null, longDescription?: string | null, backgroundImageUrl?: string | null, settings: any, type: AccountType, currency?: string | null, isActive?: boolean | null, tiers: { __typename?: 'TierCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Tier', id: string, name?: string | null, slug?: string | null, type: TierType, description?: string | null, button?: string | null, currency?: string | null, endsAt?: any | null, amountType: TierAmountType, frequency: TierFrequency, availableQuantity?: number | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, minimumAmount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, financialContributors: { __typename?: 'ContributorCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Contributor', id: string, name: string, roles?: Array | null, isAdmin: boolean, isCore: boolean, isBacker: boolean, since: any, image?: string | null, description?: string | null, collectiveSlug?: string | null, totalAmountDonated: number, type: string, publicMessage?: string | null, isIncognito: boolean } | null> | null }, socialLinks: Array<{ __typename?: 'SocialLink', type: SocialLinkType, url: any }>, updates: { __typename?: 'UpdateCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Update', id: string, title: string, html?: string | null, slug: string, summary?: string | null, reactions?: any | null, userReactions?: Array | null, userCanSeeUpdate: boolean, publishedAt?: any | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Collective', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Event', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Fund', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Host', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Individual', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Organization', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Project', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | { __typename?: 'Vendor', id: string, name?: string | null, slug: string, imageUrl?: string | null, type: AccountType } | null, comments?: { __typename?: 'CommentCollection', totalCount?: number | null } | null }> | null }, expenses: { __typename?: 'ExpenseCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Expense', id: string, description: string, type: ExpenseType, status: ExpenseStatus, createdAt: any, payee: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, account: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, imageUrl?: string | null, slug: string }, amountV2?: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } | null } | null> | null }, contributionTransactions: { __typename?: 'TransactionCollection', totalCount?: number | null, nodes?: Array<{ __typename?: 'Credit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | { __typename?: 'Debit', id: string, description?: string | null, createdAt?: any | null, type: TransactionType, kind?: TransactionKind | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, toAccount?: { __typename?: 'Bot', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Collective', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Event', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Fund', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Host', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Individual', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Organization', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Project', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, name?: string | null, type: AccountType, slug: string, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null> | null }, childrenAccounts: { __typename?: 'AccountCollection', nodes?: Array<{ __typename?: 'Bot', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Collective', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Event', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Fund', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Host', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Individual', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Organization', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Project', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | { __typename?: 'Vendor', id: string, name?: string | null, description?: string | null, type: AccountType, slug: string, settings: any, currency?: string | null, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null> | null }, stats?: { __typename?: 'AccountStats', contributorsCount: number, totalAmountReceived: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, yearlyBudget: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null } } | null } | null }; export type AccountQueryVariables = Exact<{ slug: Scalars['String']['input']; @@ -12602,7 +12619,7 @@ export type SuggestExpectedFundsQueryVariables = Exact<{ }>; -export type SuggestExpectedFundsQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Collective', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Event', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Fund', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Host', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Individual', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Organization', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Project', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Vendor', orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | null }; +export type SuggestExpectedFundsQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Collective', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Event', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Fund', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Host', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Individual', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Organization', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Project', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | { __typename?: 'Vendor', id: string, orders: { __typename?: 'OrderCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'Order', id: string, legacyId: number, status?: OrderStatus | null, description?: string | null, createdAt?: any | null, processedAt?: any | null, hostFeePercent?: number | null, memo?: string | null, platformTipEligible?: boolean | null, totalAmount: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null }, platformTipAmount?: { __typename?: 'Amount', value?: number | null, valueInCents?: number | null, currency?: Currency | null } | null, pendingContributionData?: { __typename?: 'PendingOrderData', expectedAt?: any | null, paymentMethod?: string | null, ponumber?: string | null, memo?: string | null, fromAccountInfo?: { __typename?: 'PendingOrderFromAccountInfo', name?: string | null, email?: string | null } | null } | null, tier?: { __typename?: 'Tier', id: string, name?: string | null } | null, paymentMethod?: { __typename?: 'PaymentMethod', id?: string | null, service?: PaymentMethodService | null, type?: PaymentMethodType | null } | null, fromAccount?: { __typename?: 'Bot', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Event', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null } | { __typename?: 'Host', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', isGuest: boolean, id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Project', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, name?: string | null, legalName?: string | null, slug: string, isIncognito: boolean, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, isGuest: boolean, description?: string | null, isHost: boolean, isArchived: boolean } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean, host?: { __typename?: 'Host', id: string, settings: any } | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, approvedAt?: any | null, description?: string | null, isHost: boolean, isArchived: boolean, bankTransfersHostFeePercent?: number | null, host?: { __typename?: 'Host', id: string, settings: any, slug: string } | null, parent?: { __typename?: 'Bot', id: string, slug: string } | { __typename?: 'Collective', id: string, slug: string } | { __typename?: 'Event', id: string, slug: string } | { __typename?: 'Fund', id: string, slug: string } | { __typename?: 'Host', id: string, slug: string } | { __typename?: 'Individual', id: string, slug: string } | { __typename?: 'Organization', id: string, slug: string } | { __typename?: 'Project', id: string, slug: string } | { __typename?: 'Vendor', id: string, slug: string } | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, legalName?: string | null, type: AccountType, imageUrl?: string | null, description?: string | null, isHost: boolean, isArchived: boolean } | null, createdByAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, imageUrl?: string | null } | null, amount: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null }, taxAmount?: { __typename?: 'Amount', currency?: Currency | null, valueInCents?: number | null } | null, tax?: { __typename?: 'TaxInfo', id: string, type: OrderTaxType, rate: number } | null } | null> | null } } | null }; export type HostTransactionsImportsSourcesQueryVariables = Exact<{ accountSlug: Scalars['String']['input']; @@ -12629,7 +12646,7 @@ export type UploadTransactionsImportMutationVariables = Exact<{ }>; -export type UploadTransactionsImportMutation = { __typename?: 'Mutation', importTransactions: { __typename?: 'TransactionsImport', id: string, rows: { __typename?: 'TransactionsImportRowCollection', nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number, account: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null } | null }> | null } } }; +export type UploadTransactionsImportMutation = { __typename?: 'Mutation', importTransactions: { __typename?: 'TransactionsImport', id: string, rows: { __typename?: 'TransactionsImportRowCollection', totalCount?: number | null, offset?: number | null, limit?: number | null, nodes?: Array<{ __typename?: 'TransactionsImportRow', id: string, sourceId: any, isDismissed: boolean, description: string, date: any, rawValue?: any | null, amount: { __typename?: 'Amount', valueInCents?: number | null, currency?: Currency | null }, expense?: { __typename?: 'Expense', id: string, legacyId: number, account: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } } | null, order?: { __typename?: 'Order', id: string, legacyId: number, toAccount?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, imageUrl?: string | null } | null } | null }> | null } } }; export type TransactionsImportQueryVariables = Exact<{ importId: Scalars['String']['input']; @@ -13409,6 +13426,13 @@ export type CollectiveContactPageQueryVariables = Exact<{ export type CollectiveContactPageQuery = { __typename?: 'Query', account?: { __typename?: 'Bot', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Collective', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Event', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Fund', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Host', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Individual', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Organization', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Project', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | { __typename?: 'Vendor', id: string, slug: string, name?: string | null, type: AccountType, description?: string | null, settings: any, imageUrl?: string | null, twitterHandle?: string | null, permissions: { __typename?: 'AccountPermissions', id: string, contact: { __typename?: 'Permission', allowed: boolean } }, features: { __typename?: 'CollectiveFeatures', id: string, ABOUT?: CollectiveFeatureStatus | null, CONNECTED_ACCOUNTS?: CollectiveFeatureStatus | null, RECEIVE_FINANCIAL_CONTRIBUTIONS?: CollectiveFeatureStatus | null, RECURRING_CONTRIBUTIONS?: CollectiveFeatureStatus | null, EVENTS?: CollectiveFeatureStatus | null, PROJECTS?: CollectiveFeatureStatus | null, USE_EXPENSES?: CollectiveFeatureStatus | null, RECEIVE_EXPENSES?: CollectiveFeatureStatus | null, COLLECTIVE_GOALS?: CollectiveFeatureStatus | null, TOP_FINANCIAL_CONTRIBUTORS?: CollectiveFeatureStatus | null, CONVERSATIONS?: CollectiveFeatureStatus | null, UPDATES?: CollectiveFeatureStatus | null, TEAM?: CollectiveFeatureStatus | null, CONTACT_FORM?: CollectiveFeatureStatus | null, RECEIVE_HOST_APPLICATIONS?: CollectiveFeatureStatus | null, HOST_DASHBOARD?: CollectiveFeatureStatus | null, TRANSACTIONS?: CollectiveFeatureStatus | null, REQUEST_VIRTUAL_CARDS?: CollectiveFeatureStatus | null } } | null }; +export type ConfirmEmailMutationVariables = Exact<{ + token: Scalars['String']['input']; +}>; + + +export type ConfirmEmailMutation = { __typename?: 'Mutation', confirmEmail: { __typename?: 'IndividualConfirmEmailResponse', sessionToken?: string | null, individual: { __typename?: 'Individual', id: string, email?: string | null } } }; + export type ExpensesPageQueryVariables = Exact<{ collectiveSlug: Scalars['String']['input']; account?: InputMaybe; @@ -13577,7 +13601,7 @@ export const ConfirmContributionDocument = {"kind":"Document","definitions":[{"k export const ContributionDrawerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ContributionDrawer"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"legacyId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"nextChargeDate"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"idNumber"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activities"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"individual"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"transaction"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"customData"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"needsConfirmation"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canResume"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canEdit"}},{"kind":"Field","name":{"kind":"Name","value":"canComment"}},{"kind":"Field","name":{"kind":"Name","value":"canSeePrivateActivities"}},{"kind":"Field","name":{"kind":"Name","value":"canSetTags"}},{"kind":"Field","name":{"kind":"Name","value":"canUpdateAccountingCategory"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerAccountFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ContributionDrawerTransactionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Transaction"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"uuid"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"isRefunded"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}},{"kind":"Field","name":{"kind":"Name","value":"isOrderRejected"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"oppositeAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ContributionDrawerAccountFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canRefund"}},{"kind":"Field","name":{"kind":"Name","value":"canDownloadInvoice"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorUrl"}}]}}]} as unknown as DocumentNode; export const IsUserFollowingConversationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"IsUserFollowingConversation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"loggedInAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isFollowingConversation"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}]}}]}}]}}]} as unknown as DocumentNode; export const EditCrowdfundingRedesignSettingsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"EditCrowdfundingRedesignSettings"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"value"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"editAccountSetting"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"key"},"value":{"kind":"StringValue","value":"crowdfundingRedesign","block":false}},{"kind":"Argument","name":{"kind":"Name","value":"value"},"value":{"kind":"Variable","name":{"kind":"Name","value":"value"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]} as unknown as DocumentNode; -export const ProfilePageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ProfilePage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"longDescription"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tiers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"button"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"minimumAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"amountType"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"availableQuantity"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"financialContributors"},"name":{"kind":"Name","value":"contributors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"roles"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"BACKER"}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"150"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"roles"}},{"kind":"Field","name":{"kind":"Name","value":"isAdmin"}},{"kind":"Field","name":{"kind":"Name","value":"isCore"}},{"kind":"Field","name":{"kind":"Name","value":"isBacker"}},{"kind":"Field","name":{"kind":"Name","value":"since"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"collectiveSlug"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmountDonated"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"publicMessage"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalAmountReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"yearlyBudget"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activeRecurringContributionsBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"count"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributorsCount"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalAmountReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"yearlyBudget"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activeRecurringContributionsBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"count"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributorsCount"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ProfilePageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ProfilePage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeChildren"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"longDescription"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"updates"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"onlyPublishedUpdates"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"html"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"summary"}},{"kind":"Field","name":{"kind":"Name","value":"reactions"}},{"kind":"Field","name":{"kind":"Name","value":"userReactions"}},{"kind":"Field","name":{"kind":"Name","value":"userCanSeeUpdate"}},{"kind":"Field","name":{"kind":"Name","value":"publishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"comments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"20"}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"EnumValue","value":"RECEIVED"}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"EnumValue","value":"PAID"}},{"kind":"Argument","name":{"kind":"Name","value":"includeChildrenExpenses"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeChildren"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"payee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amountV2"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"contributionTransactions"},"name":{"kind":"Name","value":"transactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"20"}},{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"ADDED_FUNDS"}]}},{"kind":"Argument","name":{"kind":"Name","value":"isRefund"},"value":{"kind":"BooleanValue","value":false}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"CREDIT"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tiers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"button"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"minimumAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endsAt"}},{"kind":"Field","name":{"kind":"Name","value":"amountType"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"availableQuantity"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"financialContributors"},"name":{"kind":"Name","value":"contributors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"roles"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"BACKER"}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"150"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"roles"}},{"kind":"Field","name":{"kind":"Name","value":"isAdmin"}},{"kind":"Field","name":{"kind":"Name","value":"isCore"}},{"kind":"Field","name":{"kind":"Name","value":"isBacker"}},{"kind":"Field","name":{"kind":"Name","value":"since"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"collectiveSlug"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmountDonated"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"publicMessage"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalAmountReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"yearlyBudget"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributorsCount"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalAmountReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"yearlyBudget"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"contributorsCount"}}]}}]}}]}}]} as unknown as DocumentNode; export const AccountDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Account"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const AccountFilterSearchDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountFilterSearch"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const AccountingCategoriesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountingCategories"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}}]}}]}}]}}]}}]} as unknown as DocumentNode; @@ -13610,7 +13634,7 @@ export const ProcessHostApplicationDocument = {"kind":"Document","definitions":[ export const HostedCollectivesMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostedCollectivesMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","alias":{"kind":"Name","value":"all"},"name":{"kind":"Name","value":"hostedAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"accountType"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE"},{"kind":"EnumValue","value":"FUND"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"currencies"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"active"},"name":{"kind":"Name","value":"hostedAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"accountType"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE"},{"kind":"EnumValue","value":"FUND"}]}},{"kind":"Argument","name":{"kind":"Name","value":"isFrozen"},"value":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"frozen"},"name":{"kind":"Name","value":"hostedAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"isFrozen"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"unhosted"},"name":{"kind":"Name","value":"hostedAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"accountType"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE"},{"kind":"EnumValue","value":"FUND"}]}},{"kind":"Argument","name":{"kind":"Name","value":"isUnhosted"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}}]}}]} as unknown as DocumentNode; export const HostedCollectivesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostedCollectives"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderByInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostFeesStructure"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"HostFeeStructure"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isApproved"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isFrozen"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isUnhosted"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"balance"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountRangeInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountRangeInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencies"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"plan"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFees"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeeSharePercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostedAccounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"hostFeesStructure"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostFeesStructure"}}},{"kind":"Argument","name":{"kind":"Name","value":"accountType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"isApproved"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isApproved"}}},{"kind":"Argument","name":{"kind":"Name","value":"isFrozen"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isFrozen"}}},{"kind":"Argument","name":{"kind":"Name","value":"isUnhosted"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isUnhosted"}}},{"kind":"Argument","name":{"kind":"Name","value":"balance"},"value":{"kind":"Variable","name":{"kind":"Name","value":"balance"}}},{"kind":"Argument","name":{"kind":"Name","value":"consolidatedBalance"},"value":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}}},{"kind":"Argument","name":{"kind":"Name","value":"currencies"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencies"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HostedCollectiveFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HostedCollectiveFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]},{"kind":"Field","name":{"kind":"Name","value":"isFrozen"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"consolidatedBalance"},"name":{"kind":"Name","value":"balance"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"includeChildren"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostAgreements"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalFinancialContributors"}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]}}]} as unknown as DocumentNode; export const HostedCollectiveDetailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostedCollectiveDetail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HostedCollectiveFields"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"10"}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"IntValue","value":"0"}},{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADDED_FUNDS"},{"kind":"EnumValue","value":"CONTRIBUTION"},{"kind":"EnumValue","value":"EXPENSE"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"clearedAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}},{"kind":"Field","name":{"kind":"Name","value":"isRefunded"}},{"kind":"Field","name":{"kind":"Name","value":"isInReview"}},{"kind":"Field","name":{"kind":"Name","value":"isDisputed"}},{"kind":"Field","name":{"kind":"Name","value":"isOrderRejected"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"oppositeAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"activities"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"5"}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"IntValue","value":"0"}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"COLLECTIVE"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"isSystem"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"individual"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HostedCollectiveFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]},{"kind":"Field","name":{"kind":"Name","value":"isFrozen"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"consolidatedBalance"},"name":{"kind":"Name","value":"balance"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"includeChildren"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostAgreements"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalFinancialContributors"}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]}}]} as unknown as DocumentNode; -export const AllCollectivesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AllCollectives"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderByInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isHost"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"host"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountRangeInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"isHost"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isHost"}}},{"kind":"Argument","name":{"kind":"Name","value":"isActive"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}}},{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"kind":"Argument","name":{"kind":"Name","value":"consolidatedBalance"},"value":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HostedCollectiveFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HostedCollectiveFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]},{"kind":"Field","name":{"kind":"Name","value":"isFrozen"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"consolidatedBalance"},"name":{"kind":"Name","value":"balance"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"includeChildren"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostAgreements"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalFinancialContributors"}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]}}]} as unknown as DocumentNode; +export const AllCollectivesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AllCollectives"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderByInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isHost"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"host"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AmountRangeInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accounts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"isHost"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isHost"}}},{"kind":"Argument","name":{"kind":"Name","value":"isActive"},"value":{"kind":"Variable","name":{"kind":"Name","value":"isActive"}}},{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"Variable","name":{"kind":"Name","value":"host"}}},{"kind":"Argument","name":{"kind":"Name","value":"consolidatedBalance"},"value":{"kind":"Variable","name":{"kind":"Name","value":"consolidatedBalance"}}},{"kind":"Argument","name":{"kind":"Name","value":"skipGuests"},"value":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"HostedCollectiveFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"HostedCollectiveFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]},{"kind":"Field","name":{"kind":"Name","value":"isFrozen"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"consolidatedBalance"},"name":{"kind":"Name","value":"balance"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"includeChildren"},"value":{"kind":"BooleanValue","value":true}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostAgreements"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"attachment"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"96"}}]}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalFinancialContributors"}}]}},{"kind":"Field","name":{"kind":"Name","value":"childrenAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hostFeesStructure"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"members"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"ADMIN"}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"Field","name":{"kind":"Name","value":"emails"}}]}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]}}]} as unknown as DocumentNode; export const DashboardContributionsMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DashboardContributionsMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountOrdersFilter"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpectedFundsFilter"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithContributions"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"canStartResumeContributionsProcess"}},{"kind":"Field","name":{"kind":"Name","value":"hasResumeContributionsProcessStarted"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"ALL"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"PENDING"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PENDING"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"EXPIRED"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"EXPIRED"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"RECURRING"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"onlyActiveSubscriptions"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"PAID"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PAID"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"ONETIME"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"frequency"},"value":{"kind":"EnumValue","value":"ONETIME"}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PAID"},{"kind":"EnumValue","value":"PROCESSING"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"IntValue","value":"1"}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"CANCELED"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"CANCELLED"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"PAUSED"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"PAUSED"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"DISPUTED"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"DISPUTED"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"IN_REVIEW"},"name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"ListValue","values":[{"kind":"EnumValue","value":"IN_REVIEW"}]}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}}],"directives":[{"kind":"Directive","name":{"kind":"Name","value":"skip"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlyExpectedFunds"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}}]}}]} as unknown as DocumentNode; export const DashboardRecurringContributionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DashboardRecurringContributions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"slug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountOrdersFilter"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ContributionFrequency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderStatus"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeIncognito"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentMethodReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"slug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"frequency"},"value":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"onlySubscriptions"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeIncognito"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentMethod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeHostedAccounts"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ManagedOrderFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"UpdatePaymentMethodFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentMethod"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expiryDate"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ManagedOrderFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"nextChargeDate"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"UpdatePaymentMethodFragment"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"frequency"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canResume"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canEdit"}},{"kind":"Field","name":{"kind":"Name","value":"canComment"}},{"kind":"Field","name":{"kind":"Name","value":"canSeePrivateActivities"}},{"kind":"Field","name":{"kind":"Name","value":"canSetTags"}},{"kind":"Field","name":{"kind":"Name","value":"canUpdateAccountingCategory"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalDonations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"256"}}]},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"paypalClientId"}},{"kind":"Field","name":{"kind":"Name","value":"supportedPaymentMethods"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}}]}}]} as unknown as DocumentNode; export const ContributionsExpireOrderDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ContributionsExpireOrder"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"processPendingOrder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"legacyId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderId"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"action"},"value":{"kind":"EnumValue","value":"MARK_AS_EXPIRED"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}}]}},{"kind":"Field","name":{"kind":"Name","value":"activities"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}}]}}]} as unknown as DocumentNode; @@ -13643,10 +13667,10 @@ export const HostReportsDocument = {"kind":"Document","definitions":[{"kind":"Op export const AccountReportsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountReports"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timeUnit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TimeUnit"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"includeGroups"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"transactionReports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"timeUnit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timeUnit"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"startingBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endingBalance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"groups"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"include"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"if"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeGroups"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"expenseType"}},{"kind":"Field","name":{"kind":"Name","value":"isRefund"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const SubmitLegalDocumentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SubmitLegalDocument"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LegalDocumentType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"formData"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"submitLegalDocument"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"formData"},"value":{"kind":"Variable","name":{"kind":"Name","value":"formData"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"isExpired"}}]}}]}}]} as unknown as DocumentNode; export const AccountTaxInformationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AccountTaxInformation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","alias":{"kind":"Name","value":"usTaxForms"},"name":{"kind":"Name","value":"legalDocuments"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"EnumValue","value":"US_TAX_FORM"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"year"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"documentLink"}},{"kind":"Field","name":{"kind":"Name","value":"isExpired"}}]}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"country"}},{"kind":"Field","name":{"kind":"Name","value":"structured"}}]}}]}}]}}]} as unknown as DocumentNode; -export const SuggestExpectedFundsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SuggestExpectedFunds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ContributionFrequency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderStatus"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentMethodReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"INCOMING"}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"frequency"},"value":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}}},{"kind":"Argument","name":{"kind":"Name","value":"onlySubscriptions"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentMethod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ConfirmContributionFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}}]} as unknown as DocumentNode; +export const SuggestExpectedFundsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SuggestExpectedFunds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ContributionFrequency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OrderStatus"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentMethodReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"hostId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"orders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"EnumValue","value":"INCOMING"}},{"kind":"Argument","name":{"kind":"Name","value":"includeIncognito"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"includeHostedAccounts"},"value":{"kind":"BooleanValue","value":true}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"frequency"},"value":{"kind":"Variable","name":{"kind":"Name","value":"frequency"}}},{"kind":"Argument","name":{"kind":"Name","value":"onlySubscriptions"},"value":{"kind":"Variable","name":{"kind":"Name","value":"onlySubscriptions"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedDateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedDateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"paymentMethod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paymentMethod"}}},{"kind":"Argument","name":{"kind":"Name","value":"expectedFundsFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"expectedFundsFilter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"tier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"service"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ConfirmContributionFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}}]} as unknown as DocumentNode; export const HostTransactionsImportsSourcesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostTransactionsImportsSources"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]} as unknown as DocumentNode; export const CreateTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"source"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"name"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createTransactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"source"},"value":{"kind":"Variable","name":{"kind":"Name","value":"source"}}},{"kind":"Argument","name":{"kind":"Name","value":"name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"name"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionImportListFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionImportListFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImport"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}}]} as unknown as DocumentNode; -export const UploadTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UploadTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSONObject"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowCreateInput"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"file"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Upload"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importTransactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"csvConfig"},"value":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}}},{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}},{"kind":"Argument","name":{"kind":"Name","value":"file"},"value":{"kind":"Variable","name":{"kind":"Name","value":"file"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; +export const UploadTransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UploadTransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSONObject"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowCreateInput"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"file"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Upload"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importTransactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"csvConfig"},"value":{"kind":"Variable","name":{"kind":"Name","value":"csvConfig"}}},{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}},{"kind":"Argument","name":{"kind":"Name","value":"file"},"value":{"kind":"Variable","name":{"kind":"Name","value":"file"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; export const TransactionsImportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TransactionsImport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactionsImport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"file"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"size"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"csvConfig"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; export const HostTransactionImportsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"HostTransactionImports"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"accountSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionImportListFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionImportListFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImport"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"transactionsImportsSources"}}]}}]}}]}}]} as unknown as DocumentNode; export const UpdateTransactionsImportRowDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateTransactionsImportRow"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"importId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NonEmptyString"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rows"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRowUpdateInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateTransactionsImportRows"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"importId"}}},{"kind":"Argument","name":{"kind":"Name","value":"rows"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rows"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"total"}},{"kind":"Field","name":{"kind":"Name","value":"ignored"}},{"kind":"Field","name":{"kind":"Name","value":"expenses"}},{"kind":"Field","name":{"kind":"Name","value":"orders"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rows"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"TransactionsImportRowFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"TransactionsImportRowFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TransactionsImportRow"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"sourceId"}},{"kind":"Field","name":{"kind":"Name","value":"isDismissed"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"rawValue"}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expense"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"height"},"value":{"kind":"IntValue","value":"48"}}]}]}}]}}]}}]} as unknown as DocumentNode; @@ -13722,6 +13746,7 @@ export const VirtualCardRequestDocument = {"kind":"Document","definitions":[{"ki export const RejectVirtualCardRequestDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RejectVirtualCardRequest"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"virtualCardRequest"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VirtualCardRequestReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"rejectVirtualCardRequest"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"virtualCardRequest"},"value":{"kind":"Variable","name":{"kind":"Name","value":"virtualCardRequest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} as unknown as DocumentNode; export const VirtualCardDrawerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"VirtualCardDrawer"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"virtualCard"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VirtualCardReferenceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"virtualCard"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"virtualCard"},"value":{"kind":"Variable","name":{"kind":"Name","value":"virtualCard"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"last4"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"privateData"}},{"kind":"Field","name":{"kind":"Name","value":"provider"}},{"kind":"Field","name":{"kind":"Name","value":"spendingLimitAmount"}},{"kind":"Field","name":{"kind":"Name","value":"spendingLimitInterval"}},{"kind":"Field","name":{"kind":"Name","value":"spendingLimitRenewsOn"}},{"kind":"Field","name":{"kind":"Name","value":"remainingLimit"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"assignee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"stripe"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"username"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]} as unknown as DocumentNode; export const CollectiveContactPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"CollectiveContactPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}},{"kind":"Argument","name":{"kind":"Name","value":"throwIfMissing"},"value":{"kind":"BooleanValue","value":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"contact"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavbarFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavbarFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CollectiveFeatures"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"ABOUT"}},{"kind":"Field","name":{"kind":"Name","value":"CONNECTED_ACCOUNTS"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_FINANCIAL_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"RECURRING_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"EVENTS"}},{"kind":"Field","name":{"kind":"Name","value":"PROJECTS"}},{"kind":"Field","name":{"kind":"Name","value":"USE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"COLLECTIVE_GOALS"}},{"kind":"Field","name":{"kind":"Name","value":"TOP_FINANCIAL_CONTRIBUTORS"}},{"kind":"Field","name":{"kind":"Name","value":"CONVERSATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"UPDATES"}},{"kind":"Field","name":{"kind":"Name","value":"TEAM"}},{"kind":"Field","name":{"kind":"Name","value":"CONTACT_FORM"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_HOST_APPLICATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"HOST_DASHBOARD"}},{"kind":"Field","name":{"kind":"Name","value":"TRANSACTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"REQUEST_VIRTUAL_CARDS"}}]}}]} as unknown as DocumentNode; +export const ConfirmEmailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ConfirmEmail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"token"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"confirmEmail"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"token"},"value":{"kind":"Variable","name":{"kind":"Name","value":"token"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sessionToken"}},{"kind":"Field","name":{"kind":"Name","value":"individual"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}}]}}]} as unknown as DocumentNode; export const ExpensesPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ExpensesPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"account"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"fromAccount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tags"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseStatusFilter"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"payoutMethodType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PayoutMethodType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ChronologicalOrderInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"chargeHasReceipts"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"virtualCards"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VirtualCardReferenceInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"createdByAccount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"AccountReferenceInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"supportedExpenseTypes"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"tag"}}]}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavbarFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balanceWithBlockedFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isApproved"}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpenseHostFields"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpenseHostFields"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Event"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Project"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"account"},"value":{"kind":"Variable","name":{"kind":"Name","value":"account"}}},{"kind":"Argument","name":{"kind":"Name","value":"fromAccount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fromAccount"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"tag"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tags"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"payoutMethodType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"payoutMethodType"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}},{"kind":"Argument","name":{"kind":"Name","value":"chargeHasReceipts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"chargeHasReceipts"}}},{"kind":"Argument","name":{"kind":"Name","value":"virtualCards"},"value":{"kind":"Variable","name":{"kind":"Name","value":"virtualCards"}}},{"kind":"Argument","name":{"kind":"Name","value":"createdByAccount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"createdByAccount"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpensesListFieldsFragment"}}]}}]}},{"kind":"Field","alias":{"kind":"Name","value":"scheduledExpenses"},"name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"host"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"EnumValue","value":"SCHEDULED_FOR_PAYMENT"}},{"kind":"Argument","name":{"kind":"Name","value":"payoutMethodType"},"value":{"kind":"EnumValue","value":"BANK_ACCOUNT"}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountingCategoryFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountingCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"instructions"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTypes"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpenseValuesByRoleFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseValuesByRole"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"submitter"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountAdmin"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostAdmin"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavbarFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CollectiveFeatures"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"ABOUT"}},{"kind":"Field","name":{"kind":"Name","value":"CONNECTED_ACCOUNTS"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_FINANCIAL_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"RECURRING_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"EVENTS"}},{"kind":"Field","name":{"kind":"Name","value":"PROJECTS"}},{"kind":"Field","name":{"kind":"Name","value":"USE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"COLLECTIVE_GOALS"}},{"kind":"Field","name":{"kind":"Name","value":"TOP_FINANCIAL_CONTRIBUTORS"}},{"kind":"Field","name":{"kind":"Name","value":"CONVERSATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"UPDATES"}},{"kind":"Field","name":{"kind":"Name","value":"TEAM"}},{"kind":"Field","name":{"kind":"Name","value":"CONTACT_FORM"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_HOST_APPLICATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"HOST_DASHBOARD"}},{"kind":"Field","name":{"kind":"Name","value":"TRANSACTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"REQUEST_VIRTUAL_CARDS"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpenseHostFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"expensePolicy"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"MULTI_CURRENCY_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"PAYPAL_PAYOUTS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paypalPreApproval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"country"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transferwise"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"availableCurrencies"}}]}},{"kind":"Field","name":{"kind":"Name","value":"supportedPayoutMethods"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"plan"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"expenseAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"EnumValue","value":"EXPENSE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"EXPENSE_CATEGORIZATION"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"requiredForExpenseSubmitters"}},{"kind":"Field","name":{"kind":"Name","value":"requiredForCollectiveAdmins"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpensesListFieldsFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Expense"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"comments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"valuesByRole"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpenseValuesByRoleFragment"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"amountInAccountCurrency"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"ACCOUNT"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeRate"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"isApproximate"}},{"kind":"Field","name":{"kind":"Name","value":"fromCurrency"}},{"kind":"Field","name":{"kind":"Name","value":"toCurrency"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"requiredLegalDocuments"}},{"kind":"Field","name":{"kind":"Name","value":"feesPayer"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balanceWithBlockedFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canDelete"}},{"kind":"Field","name":{"kind":"Name","value":"canApprove"}},{"kind":"Field","name":{"kind":"Name","value":"canUnapprove"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsSpam"}},{"kind":"Field","name":{"kind":"Name","value":"canPay"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsUnpaid"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsIncomplete"}},{"kind":"Field","name":{"kind":"Name","value":"canSeeInvoiceInfo"}},{"kind":"Field","name":{"kind":"Name","value":"canEditTags"}},{"kind":"Field","name":{"kind":"Name","value":"canEditAccountingCategory"}},{"kind":"Field","name":{"kind":"Name","value":"canUnschedulePayment"}},{"kind":"Field","name":{"kind":"Name","value":"canHold"}},{"kind":"Field","name":{"kind":"Name","value":"canRelease"}},{"kind":"Field","name":{"kind":"Name","value":"approve"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}},{"kind":"Field","name":{"kind":"Name","value":"reason"}},{"kind":"Field","name":{"kind":"Name","value":"reasonDetails"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"isSaved"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isAdmin"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isApproved"}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}}]} as unknown as DocumentNode; export const OrderPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"OrderPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"legacyId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"legacyId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"legacyId"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ConfirmContributionFields"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"processedAt"}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsExpired"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsPaid"}},{"kind":"Field","name":{"kind":"Name","value":"canSetTags"}},{"kind":"Field","name":{"kind":"Name","value":"canEdit"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"order"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"netAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paymentProcessorFee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"expensePolicy"}},{"kind":"Field","name":{"kind":"Name","value":"supportedExpenseTypes"}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavbarFields"}},{"kind":"Field","name":{"kind":"Name","value":"MULTI_CURRENCY_EXPENSES"}}]}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"country"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balanceWithBlockedFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ConfirmContributionFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Order"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"hostFeePercent"}},{"kind":"Field","name":{"kind":"Name","value":"pendingContributionData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expectedAt"}},{"kind":"Field","name":{"kind":"Name","value":"paymentMethod"}},{"kind":"Field","name":{"kind":"Name","value":"ponumber"}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccountInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"memo"}},{"kind":"Field","name":{"kind":"Name","value":"fromAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isIncognito"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"toAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"bankTransfersHostFeePercent"},"name":{"kind":"Name","value":"hostFeePercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paymentMethodType"},"value":{"kind":"EnumValue","value":"MANUAL"}}]},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}},{"kind":"Field","name":{"kind":"Name","value":"amount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"taxAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tax"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"rate"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipAmount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}},{"kind":"Field","name":{"kind":"Name","value":"platformTipEligible"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavbarFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CollectiveFeatures"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"ABOUT"}},{"kind":"Field","name":{"kind":"Name","value":"CONNECTED_ACCOUNTS"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_FINANCIAL_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"RECURRING_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"EVENTS"}},{"kind":"Field","name":{"kind":"Name","value":"PROJECTS"}},{"kind":"Field","name":{"kind":"Name","value":"USE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"COLLECTIVE_GOALS"}},{"kind":"Field","name":{"kind":"Name","value":"TOP_FINANCIAL_CONTRIBUTORS"}},{"kind":"Field","name":{"kind":"Name","value":"CONVERSATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"UPDATES"}},{"kind":"Field","name":{"kind":"Name","value":"TEAM"}},{"kind":"Field","name":{"kind":"Name","value":"CONTACT_FORM"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_HOST_APPLICATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"HOST_DASHBOARD"}},{"kind":"Field","name":{"kind":"Name","value":"TRANSACTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"REQUEST_VIRTUAL_CARDS"}}]}}]} as unknown as DocumentNode; export const SubmittedExpensesPageDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SubmittedExpensesPage"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"type"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tags"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"status"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseStatusFilter"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"payoutMethodType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PayoutMethodType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ChronologicalOrderInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"account"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"backgroundImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"twitterHandle"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"supportedExpenseTypes"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavbarFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"expenses"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"createdByAccount"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"slug"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectiveSlug"}}}]}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"type"},"value":{"kind":"Variable","name":{"kind":"Name","value":"type"}}},{"kind":"Argument","name":{"kind":"Name","value":"tag"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tags"}}},{"kind":"Argument","name":{"kind":"Name","value":"status"},"value":{"kind":"Variable","name":{"kind":"Name","value":"status"}}},{"kind":"Argument","name":{"kind":"Name","value":"minAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"minAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"maxAmount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"maxAmount"}}},{"kind":"Argument","name":{"kind":"Name","value":"payoutMethodType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"payoutMethodType"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateFrom"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateFrom"}}},{"kind":"Argument","name":{"kind":"Name","value":"dateTo"},"value":{"kind":"Variable","name":{"kind":"Name","value":"dateTo"}}},{"kind":"Argument","name":{"kind":"Name","value":"searchTerm"},"value":{"kind":"Variable","name":{"kind":"Name","value":"searchTerm"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"Variable","name":{"kind":"Name","value":"orderBy"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"limit"}},{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpensesListFieldsFragment"}},{"kind":"Field","alias":{"kind":"Name","value":"amountInCreatedByAccountCurrency"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"CREATED_BY_ACCOUNT"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeRate"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"isApproximate"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpenseHostFields"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountingCategoryFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountingCategory"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"kind"}},{"kind":"Field","name":{"kind":"Name","value":"instructions"}},{"kind":"Field","name":{"kind":"Name","value":"friendlyName"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"expensesTypes"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpenseValuesByRoleFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ExpenseValuesByRole"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"submitter"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountAdmin"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"hostAdmin"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AccountHoverCardFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Account"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"isArchived"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Individual"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isGuest"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvedAt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavbarFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"CollectiveFeatures"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"ABOUT"}},{"kind":"Field","name":{"kind":"Name","value":"CONNECTED_ACCOUNTS"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_FINANCIAL_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"RECURRING_CONTRIBUTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"EVENTS"}},{"kind":"Field","name":{"kind":"Name","value":"PROJECTS"}},{"kind":"Field","name":{"kind":"Name","value":"USE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"COLLECTIVE_GOALS"}},{"kind":"Field","name":{"kind":"Name","value":"TOP_FINANCIAL_CONTRIBUTORS"}},{"kind":"Field","name":{"kind":"Name","value":"CONVERSATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"UPDATES"}},{"kind":"Field","name":{"kind":"Name","value":"TEAM"}},{"kind":"Field","name":{"kind":"Name","value":"CONTACT_FORM"}},{"kind":"Field","name":{"kind":"Name","value":"RECEIVE_HOST_APPLICATIONS"}},{"kind":"Field","name":{"kind":"Name","value":"HOST_DASHBOARD"}},{"kind":"Field","name":{"kind":"Name","value":"TRANSACTIONS"}},{"kind":"Field","name":{"kind":"Name","value":"REQUEST_VIRTUAL_CARDS"}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpensesListFieldsFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Expense"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"legacyId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"comments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"accountingCategory"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"valuesByRole"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"ExpenseValuesByRoleFragment"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"amountInAccountCurrency"},"name":{"kind":"Name","value":"amountV2"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencySource"},"value":{"kind":"EnumValue","value":"ACCOUNT"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeRate"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"date"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"source"}},{"kind":"Field","name":{"kind":"Name","value":"isApproximate"}},{"kind":"Field","name":{"kind":"Name","value":"fromCurrency"}},{"kind":"Field","name":{"kind":"Name","value":"toCurrency"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"requiredLegalDocuments"}},{"kind":"Field","name":{"kind":"Name","value":"feesPayer"}},{"kind":"Field","name":{"kind":"Name","value":"account"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balanceWithBlockedFunds"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithParent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"parent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"permissions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"canDelete"}},{"kind":"Field","name":{"kind":"Name","value":"canApprove"}},{"kind":"Field","name":{"kind":"Name","value":"canUnapprove"}},{"kind":"Field","name":{"kind":"Name","value":"canReject"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsSpam"}},{"kind":"Field","name":{"kind":"Name","value":"canPay"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsUnpaid"}},{"kind":"Field","name":{"kind":"Name","value":"canMarkAsIncomplete"}},{"kind":"Field","name":{"kind":"Name","value":"canSeeInvoiceInfo"}},{"kind":"Field","name":{"kind":"Name","value":"canEditTags"}},{"kind":"Field","name":{"kind":"Name","value":"canEditAccountingCategory"}},{"kind":"Field","name":{"kind":"Name","value":"canUnschedulePayment"}},{"kind":"Field","name":{"kind":"Name","value":"canHold"}},{"kind":"Field","name":{"kind":"Name","value":"canRelease"}},{"kind":"Field","name":{"kind":"Name","value":"approve"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allowed"}},{"kind":"Field","name":{"kind":"Name","value":"reason"}},{"kind":"Field","name":{"kind":"Name","value":"reasonDetails"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"payoutMethod"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"data"}},{"kind":"Field","name":{"kind":"Name","value":"isSaved"}}]}},{"kind":"Field","name":{"kind":"Name","value":"payee"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isAdmin"}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AccountWithHost"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isApproved"}},{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Organization"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdByAccount"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountHoverCardFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ExpenseHostFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Host"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"legalName"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"isHost"}},{"kind":"Field","name":{"kind":"Name","value":"expensePolicy"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"settings"}},{"kind":"Field","name":{"kind":"Name","value":"features"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"MULTI_CURRENCY_EXPENSES"}},{"kind":"Field","name":{"kind":"Name","value":"PAYPAL_PAYOUTS"}}]}},{"kind":"Field","name":{"kind":"Name","value":"paypalPreApproval"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"balance"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"valueInCents"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"location"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"country"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transferwise"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"availableCurrencies"}}]}},{"kind":"Field","name":{"kind":"Name","value":"supportedPayoutMethods"}},{"kind":"Field","name":{"kind":"Name","value":"isTrustedHost"}},{"kind":"Field","name":{"kind":"Name","value":"plan"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"expenseAccountingCategories"},"name":{"kind":"Name","value":"accountingCategories"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"kind"},"value":{"kind":"EnumValue","value":"EXPENSE"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"AccountingCategoryFields"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"policies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"EXPENSE_CATEGORIZATION"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"requiredForExpenseSubmitters"}},{"kind":"Field","name":{"kind":"Name","value":"requiredForCollectiveAdmins"}}]}}]}}]}}]} as unknown as DocumentNode; diff --git a/lib/hooks/useLoggedInUser.ts b/lib/hooks/useLoggedInUser.ts index e5f21dbb13e..f00f5bac953 100644 --- a/lib/hooks/useLoggedInUser.ts +++ b/lib/hooks/useLoggedInUser.ts @@ -8,9 +8,9 @@ export type UserContextProps = { errorLoggedInUser?: Error; loadingLoggedInUser: boolean; LoggedInUser: LoggedInUserType | null; - login: () => void; - logout: (arg?: { redirect?: string; skipQueryRefetch?: boolean }) => void; - refetchLoggedInUser: () => void; + login: (token?: string) => Promise; + logout: (arg?: { redirect?: string; skipQueryRefetch?: boolean }) => Promise; + refetchLoggedInUser: () => Promise; }; const useLoggedInUser = (): UserContextProps => React.useContext(UserContext); diff --git a/pages/confirmEmail.js b/pages/confirmEmail.tsx similarity index 59% rename from pages/confirmEmail.js rename to pages/confirmEmail.tsx index 7735f968185..7f4f69bd56c 100644 --- a/pages/confirmEmail.js +++ b/pages/confirmEmail.tsx @@ -1,34 +1,34 @@ import React from 'react'; -import PropTypes from 'prop-types'; +import type { MutationFunction } from '@apollo/client'; import { graphql } from '@apollo/client/react/hoc'; import { Email } from '@styled-icons/material/Email'; import { get } from 'lodash'; +import { ArrowLeft } from 'lucide-react'; import { FormattedMessage } from 'react-intl'; -import { gqlV1 } from '../lib/graphql/helpers'; +import { API_V2_CONTEXT, gql } from '../lib/graphql/helpers'; +import type { Mutation, MutationConfirmEmailArgs } from '../lib/graphql/types/v2/graphql'; +import type { UserContextProps } from '../lib/hooks/useLoggedInUser'; import Container from '../components/Container'; import { Box } from '../components/Grid'; +import Link from '../components/Link'; import MessageBox from '../components/MessageBox'; import Page from '../components/Page'; +import { Button } from '../components/ui/Button'; import { withUser } from '../components/UserProvider'; -class ConfirmEmailPage extends React.Component { +class ConfirmEmailPage extends React.Component<{ + token: string; + loadingLoggedInUser: boolean; + confirmEmail: MutationFunction; + refetchLoggedInUser: UserContextProps['refetchLoggedInUser']; + login: UserContextProps['login']; +}> { static getInitialProps({ query }) { return { token: query.token }; } - static propTypes = { - /** Token to validate, given in URL */ - token: PropTypes.string.isRequired, - // from graphql - confirmUserEmail: PropTypes.func.isRequired, - // from withUser - loadingLoggedInUser: PropTypes.bool.isRequired, - // from withUser - refetchLoggedInUser: PropTypes.func.isRequired, - }; - state = { status: 'submitting', error: null, validationTriggered: false }; componentDidMount() { @@ -50,8 +50,13 @@ class ConfirmEmailPage extends React.Component { async triggerEmailValidation() { try { this.setState({ validationTriggered: true }); - await this.props.confirmUserEmail({ variables: { token: this.props.token } }); - setTimeout(this.props.refetchLoggedInUser, 3000); + const result = await this.props.confirmEmail({ variables: { token: this.props.token } }); + if (result.data.sessionToken) { + await this.props.login(result.data.sessionToken); + } else { + await this.props.refetchLoggedInUser(); + } + this.setState({ status: 'success' }); } catch (e) { const error = get(e, 'graphQLErrors.0') || e; @@ -86,17 +91,25 @@ class ConfirmEmailPage extends React.Component { {status === 'submitting' && ( - + )} {status === 'success' && ( - - - + + + + + + + + )} {status === 'error' && ( - + {error.extensions?.code === 'INVALID_TOKEN' ? (